mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 16:50:06 +02:00
16 lines
465 B
Plaintext
16 lines
465 B
Plaintext
From: fbrosson <fbrosson@users.noreply.github.com>
|
|
Subject: fix pthread detection in configure.ac for Haiku
|
|
|
|
diff -upr libburn-1.4.2/configure.ac libburn-1.4.2-haiku/configure.ac
|
|
--- libburn-1.4.2/configure.ac 2016-01-29 11:10:12.000000000 +0000
|
|
+++ libburn-1.4.2-haiku/configure.ac
|
|
@@ -192,7 +192,7 @@ AC_PROG_INSTALL
|
|
|
|
AC_CHECK_HEADERS()
|
|
|
|
-THREAD_LIBS=-lpthread
|
|
+AC_CHECK_LIB(pthread,pthread_self,THREAD_LIBS=-lpthread)
|
|
AC_SUBST(THREAD_LIBS)
|
|
|
|
TARGET_SHIZZLE
|