[xiph-cvs] cvs commit: ao configure.in
Ralph Giles
giles at xiph.org
Tue Feb 27 16:19:45 PST 2001
giles 01/02/27 16:19:45
Modified: . configure.in
Log:
Unconditionally link with libpthread (if available) to work around
a problem with segfault on dlclose()ing a driver that itself links
with libpthread.
(actually, it's the arts driver, which links with libarts which in
turn links with libpthread)
Revision Changes Path
1.17 +4 -0 ao/configure.in
Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/ao/configure.in,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- configure.in 2001/02/24 01:31:45 1.16
+++ configure.in 2001/02/28 00:19:45 1.17
@@ -73,6 +73,10 @@
dnl Check for libraries
dnl ==============================
+# we link to libpthread just in case one of our plugins does
+# in which case this is required to avoid problems on dlclose()
+AC_CHECK_LIB(pthread, pthread_kill)
+
dnl ==============================
dnl Checks for header files
dnl ==============================
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list