diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-24 02:20:23 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-11-24 02:20:23 +0800 |
commit | ec9a5241d70f4c40f6c1d4e793ad405787627222 (patch) | |
tree | 3d11982ac1811299b5918a46695a0b370341f04c /mail/thunderbird | |
parent | 0da5277211d6b4d756f2a496a74bb5e6e58b72eb (diff) | |
download | marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.tar marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.tar.gz marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.tar.bz2 marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.tar.lz marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.tar.xz marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.tar.zst marcuscom-ports-ec9a5241d70f4c40f6c1d4e793ad405787627222.zip |
Link Thunderbird against pangox to fix problems with undefined symbols.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5195 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'mail/thunderbird')
-rw-r--r-- | mail/thunderbird/Makefile | 4 | ||||
-rw-r--r-- | mail/thunderbird/files/patch-configure | 17 |
2 files changed, 19 insertions, 2 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 7cf361b42..bcb3dbba2 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -3,12 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/mail/thunderbird/Makefile,v 1.10 2005/11/23 04:54:57 ahze Exp $ +# $MCom: ports/mail/thunderbird/Makefile,v 1.11 2005/11/23 05:00:52 ahze Exp $ # PORTNAME= thunderbird PORTVERSION= 1.0.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTVERSION}/source diff --git a/mail/thunderbird/files/patch-configure b/mail/thunderbird/files/patch-configure new file mode 100644 index 000000000..cdf04c84a --- /dev/null +++ b/mail/thunderbird/files/patch-configure @@ -0,0 +1,17 @@ +--- configure.orig Wed Nov 23 13:17:02 2005 ++++ configure Wed Nov 23 13:17:20 2005 +@@ -11417,12 +11417,12 @@ + + echo $ac_n "checking MOZ_GTK2_CFLAGS""... $ac_c" 1>&6 + echo "configure:11420: checking MOZ_GTK2_CFLAGS" >&5 +- MOZ_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 1.3.7"` ++ MOZ_GTK2_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 1.3.7" "pangox >= 1.1.0"` + echo "$ac_t""$MOZ_GTK2_CFLAGS" 1>&6 + + echo $ac_n "checking MOZ_GTK2_LIBS""... $ac_c" 1>&6 + echo "configure:11425: checking MOZ_GTK2_LIBS" >&5 +- MOZ_GTK2_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 1.3.7"` ++ MOZ_GTK2_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 1.3.7" "pangox >= 1.1.0"` + echo "$ac_t""$MOZ_GTK2_LIBS" 1>&6 + else + MOZ_GTK2_CFLAGS="" |