diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-12-27 06:07:15 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-12-27 06:07:15 +0800 |
commit | 1af369e1e8ab89cbd812e181a34c22f1be847441 (patch) | |
tree | ae0fbaa44f80975d735db8c32be7622a9852625d /databases/evolution-data-server | |
parent | c3f2ba8b44319e59fb10968527f15796f75a0fab (diff) | |
download | marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.tar marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.tar.gz marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.tar.bz2 marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.tar.lz marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.tar.xz marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.tar.zst marcuscom-ports-1af369e1e8ab89cbd812e181a34c22f1be847441.zip |
Fix NSS detection by making sure to link with PTHREAD_LIBS.
Reported by: kwm
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@3333 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'databases/evolution-data-server')
-rw-r--r-- | databases/evolution-data-server/Makefile | 6 | ||||
-rw-r--r-- | databases/evolution-data-server/files/patch-calendar_libical_configure | 11 |
2 files changed, 15 insertions, 2 deletions
diff --git a/databases/evolution-data-server/Makefile b/databases/evolution-data-server/Makefile index 68e82f4c5..ae769067b 100644 --- a/databases/evolution-data-server/Makefile +++ b/databases/evolution-data-server/Makefile @@ -7,6 +7,7 @@ PORTNAME= evolution-data-server PORTVERSION= 1.1.2 +PORTREVISION= 1 CATEGORIES= databases gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/1.1 @@ -27,13 +28,14 @@ USE_REINPLACE= yes USE_LIBTOOL_VER=15 INSTALLS_SHLIB= yes CONFIGURE_ARGS= --enable-static \ + --enable-nss=yes \ --with-nss-includes=${LOCALBASE}/include/nss/nss \ --with-nss-libs=${LOCALBASE}/lib \ --with-nspr-includes=${LOCALBASE}/include/nspr \ --with-nspr-libs=${LOCALBASE}/lib \ --with-krb5=/usr -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" PLIST_SUB= VERSION="1.2" EVO_VERSION="1.2" diff --git a/databases/evolution-data-server/files/patch-calendar_libical_configure b/databases/evolution-data-server/files/patch-calendar_libical_configure new file mode 100644 index 000000000..19028e5d4 --- /dev/null +++ b/databases/evolution-data-server/files/patch-calendar_libical_configure @@ -0,0 +1,11 @@ +--- calendar/libical/configure.orig Sun Dec 26 16:54:57 2004 ++++ calendar/libical/configure Sun Dec 26 16:55:23 2004 +@@ -19736,7 +19736,7 @@ + + + +-if test "x$USE_MAINTAINER_MODE" == xyes; then ++if test "x$USE_MAINTAINER_MODE" = xyes; then + DEV="yes" + echo "$as_me:$LINENO: result: Setting up for development: -Wall, flex, bison" >&5 + echo "${ECHO_T}Setting up for development: -Wall, flex, bison" >&6 |