diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-10-13 04:42:36 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-10-13 04:42:36 +0000 |
commit | f9f42cfaaf58cc7139df2b761fa72bcbde56c9eb (patch) | |
tree | 15ab4d3fbad8e501bcbad63cdf73ac2c3627874c /net-im | |
parent | Add USE_AUTOMAKE to the ports Makefile (diff) |
*Sigh* let's try this again. Link all of gaim to ${PTHREAD_LIBS} to ensure
that the loaded plug-in modules can resolve all threading symbols. This
should fix the problem with the MSN plug-in not loading on 4.x.
Notes
Notes:
svn path=/head/; revision=90983
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile index e51dfc096fe3..aa48e94f67e7 100644 --- a/net-im/gaim/Makefile +++ b/net-im/gaim/Makefile @@ -6,7 +6,7 @@ PORTNAME= gaim PORTVERSION= 0.71 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -25,8 +25,8 @@ USE_BZIP2= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-static=yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS}" \ PTHREAD_LIB="${PTHREAD_LIBS}" MAN1= gaim.1 gaim-remote.1 |