# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/ntp/hotfix-gcc14-pthread.patch # Copyright (C) 2024 - 2026 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- --- ntp-4.2.8p18/configure.vanilla 2024-07-17 21:11:10.935639739 +0200 +++ ntp-4.2.8p18/configure 2024-07-17 21:11:48.147636153 +0200 @@ -23131,7 +23131,8 @@ int main (void) { -pthread_detach(NULL); +pthread_t tid; +pthread_detach(tid); ; return 0; } --- ntp-4.2.8p18/sntp/configure.vanilla 2024-12-24 13:37:25.849970941 +0100 +++ ntp-4.2.8p18/sntp/configure 2024-12-24 13:38:13.050973173 +0100 @@ -13732,7 +13732,8 @@ int main (void) { -pthread_detach(NULL); +pthread_t tid; +pthread_detach(tid); ; return 0; }