diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-06-13 23:40:43 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-06-13 23:40:43 +0000 |
commit | 337cba4ee0d4caed7ad6a075c58e93bc3271a6ce (patch) | |
tree | ef47762d02bbc44bee88a0b2d03f7e075c540485 | |
parent | c4f663a1d4a7391db5648d0d098ae86fd77d1cc2 (diff) | |
download | xine-lib-337cba4ee0d4caed7ad6a075c58e93bc3271a6ce.tar.gz xine-lib-337cba4ee0d4caed7ad6a075c58e93bc3271a6ce.tar.bz2 |
Fix FreeBSD /usr/local prefix problem.
CVS patchset: 173
CVS date: 2001/06/13 23:40:43
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0385f5fa5..f4f6061a6 100644 --- a/configure.in +++ b/configure.in @@ -105,6 +105,8 @@ dnl case $host in *-*-freebsd*) THREAD_LIBS="-pthread" + CFLAGS="$CFLAGS -I/usr/local/include -L/usr/local/lib" + CPPFLAGS="$CPPFLAGS -I/usr/local/include -L/usr/local/lib" ;; *) AC_CHECK_LIB(pthread, pthread_create, |