diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2005-12-24 01:55:20 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2005-12-24 01:55:20 +0000 |
commit | 50b20c73632bf0e2bc0474e4eba57cb20e53ed3a (patch) | |
tree | 7788ecd5627667d4d65902832948bb78493d6962 /x11/libgnome | |
parent | 5830881278dd428e2e80f55665d020a88ae97985 (diff) | |
download | ports-50b20c73632bf0e2bc0474e4eba57cb20e53ed3a.tar.gz ports-50b20c73632bf0e2bc0474e4eba57cb20e53ed3a.zip |
Add ${PTHREAD_CFLAGS}/${PTHREAD_LIBS} to the CONFIGURE_ENV. There
appears to be some debate as to whether the root of this problem
is the libtool 1.5.22 update, but adding pthread stuff here fixes
the build problems I've been getting on 5-STABLE.
Notes
Notes:
svn path=/head/; revision=151947
Diffstat (limited to 'x11/libgnome')
-rw-r--r-- | x11/libgnome/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/libgnome/Makefile b/x11/libgnome/Makefile index 9c95010e7c45..7d9e96acb640 100644 --- a/x11/libgnome/Makefile +++ b/x11/libgnome/Makefile @@ -29,8 +29,8 @@ USE_GNOME= gnomeprefix gnomehack intlhack esound \ USE_BISON= yes INSTALLS_SHLIB= yes USE_AUTOTOOLS= libtool:15 -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" SUB_FILES= pkg-deinstall |