diff options
author | dougb <dougb@FreeBSD.org> | 2001-03-24 14:37:25 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2001-03-24 14:37:25 +0800 |
commit | 67046db3c0658a0b9336e29d828e826f0a891475 (patch) | |
tree | ead3dfaf0048ea8686f6d0f4c9143d0cf52f5b3c /mail/fetchmail | |
parent | 0f2e700e3eb8e5454ff69b46e37cb543d7c695a9 (diff) | |
download | freebsd-ports-gnome-67046db3c0658a0b9336e29d828e826f0a891475.tar.gz freebsd-ports-gnome-67046db3c0658a0b9336e29d828e826f0a891475.tar.zst freebsd-ports-gnome-67046db3c0658a0b9336e29d828e826f0a891475.zip |
Commit the least objectionable of the possible fixes... maintainer, et al
can argue about the rest later, let's get the thing fixed first. This is
a combination of my fix and Peter Pentchev's.
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/Makefile | 5 | ||||
-rw-r--r-- | mail/fetchmail/distinfo | 2 | ||||
-rw-r--r-- | mail/fetchmail/files/patch-aclocal.m4 | 12 |
3 files changed, 16 insertions, 3 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 2318bf99989c..64d6c14e1ce8 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -10,7 +10,7 @@ # want fetchmailconf to work, define WITH_X11 PORTNAME= fetchmail -PORTVERSION= 5.7.4 +PORTVERSION= 5.7.6 CATEGORIES= mail ipv6 MASTER_SITES= http://www.tuxedo.org/~esr/fetchmail/ \ ftp://ftp.ccil.org/pub/esr/fetchmail/ @@ -37,9 +37,10 @@ MLINKS= fetchmail.1 fetchmailconf.1 .if ${OSVERSION} >= 400014 CONFIGURE_ARGS+=--enable-inet6 +.endif + .if exists(/usr/lib/libssl.a) && exists(/usr/lib/libcrypto.a) CONFIGURE_ARGS+=--with-ssl=/usr -.endif .elif exists(${LOCALBASE}/lib/libssl.a) && exists(${LOCALBASE}/lib/libcrypto.a) CONFIGURE_ARGS+=-with-includes=${LOCALBASE}/include/openssl --with-ssl=${LOCALBASE} .endif diff --git a/mail/fetchmail/distinfo b/mail/fetchmail/distinfo index 201b864bc0ba..bbd3a70ae360 100644 --- a/mail/fetchmail/distinfo +++ b/mail/fetchmail/distinfo @@ -1 +1 @@ -MD5 (fetchmail-5.7.4.tar.gz) = 9aeb8702da10b8309cfc07d7e22283aa +MD5 (fetchmail-5.7.6.tar.gz) = b2103e7729b933c0eff4c16d531eb072 diff --git a/mail/fetchmail/files/patch-aclocal.m4 b/mail/fetchmail/files/patch-aclocal.m4 new file mode 100644 index 000000000000..c7aac731d7a8 --- /dev/null +++ b/mail/fetchmail/files/patch-aclocal.m4 @@ -0,0 +1,12 @@ +--- aclocal.m4 2001/03/20 09:46:26 1.3 ++++ aclocal.m4 2001/03/23 11:09:05 +@@ -177,6 +177,9 @@ + INSTOBJEXT=.mo + fi + fi ++ if test "$gt_cv_func_gettext_libintl" = "yes"; then ++ INTLLIBS='-lintl' ++ fi + ]) + + if test "$CATOBJEXT" = "NONE"; then |