diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-13 04:42:36 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-13 04:42:36 +0000 |
commit | 84aa4313b58661cfb589981607a3c5700fbb157c (patch) | |
tree | e251b4806f839b71ebc2e7ecab5e7e3975dce167 /net/gaim | |
parent | 388fabdb5f5cfe9a2fb7e876ec8b8639218aa4c5 (diff) | |
download | FreeBSD-ports-84aa4313b58661cfb589981607a3c5700fbb157c.zip FreeBSD-ports-84aa4313b58661cfb589981607a3c5700fbb157c.tar.gz |
*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.
Diffstat (limited to 'net/gaim')
-rw-r--r-- | net/gaim/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/gaim/Makefile b/net/gaim/Makefile index e51dfc0..aa48e94 100644 --- a/net/gaim/Makefile +++ b/net/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 |