This is a discussion on Re: [courier-users] error makeing on freebsd (probably something with pcre) within the Courier-Imap forums, part of the Mail Servers and Related category; On Thursday 22 September 2005 12:55, Thomas von Hassel wrote: > I get this: > > -- > > DEPDIR=....
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
On Thursday 22 September 2005 12:55, Thomas von Hassel wrote:
> I get this: > > -- > > DEPDIR=.deps depmode=gcc /bin/sh ./../depcomp \ > gcc -DHAVE_CONFIG_H -I. -I. -I. -g -O2 -Wall -I./.. -I.. -c > testmaildirfilter.c > Linking testmaildirfilter > /usr/libexec/elf/ld: cannot find -lpcre > gmake[2]: *** [testmaildirfilter] Error 1 > gmake[2]: Leaving directory `/usr/home/thomas/courier-0.52.0/maildir' > gmake[1]: *** [all] Error 2 > gmake[1]: Leaving directory `/usr/home/thomas/courier-0.52.0/maildir' > gmake: *** [all-recursive] Error 1 > > -- > > > > when tryiing to make on freebsd > > So it's obviusly something to do with PCRE, but what ? > > > > /thomas Use current port with following patch to update it to 0.52 or install devel/pcre manually before continuing. Regards, Milan diff -urN courier/Makefile courier-0.52.0/Makefile --- courier/Makefile Sun Jul 17 00:52:34 2005 +++ courier-0.52.0/Makefile Sat Sep 17 17:18:05 2005 @@ -6,7 +6,7 @@ # PORTNAME= courier -PORTVERSION= 0.50.1 +PORTVERSION= 0.52.0 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= courier @@ -15,7 +15,8 @@ COMMENT= Courier SMTP IMAP POP3 HTTP mail server suite BUILD_DEPENDS= courierauthconfig:${PORTSDIR}/security/courier-authlib-base -LIB_DEPENDS= fam.0:${PORTSDIR}/devel/fam +LIB_DEPENDS= fam.0:${PORTSDIR}/devel/fam \ + pcre:${PORTSDIR}/devel/pcre RUN_DEPENDS= courierauthconfig:${PORTSDIR}/security/courier-authlib-base \ ${LOCALBASE}/share/sysconftool/sysconftool: ${PORTSDIR}/devel/sysconftool \ ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support \ diff -urN courier/distinfo courier-0.52.0/distinfo --- courier/distinfo Sun Jul 17 00:52:34 2005 +++ courier-0.52.0/distinfo Sat Sep 17 16:13:06 2005 @@ -1,2 +1,2 @@ -MD5 (courier-0.50.1.tar.bz2) = 6fb2b188bba8fbf244f2feb80ad99a70 -SIZE (courier-0.50.1.tar.bz2) = 5913551 +MD5 (courier-0.52.0.tar.bz2) = 6046be4fb3392bd0f9da3a71628a14ef +SIZE (courier-0.52.0.tar.bz2) = 6600449 ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free - -and be entered to win a 42" plasma tv or your very own Sony(tm)PSP. Click here to play: http://sourceforge.net/geronimo.php _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/.../courier-users |