Date: Mon, 16 Jun 2014 09:57:36 +0000 From: bz-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 191081] New: Fix for editors/pico-alpine on 8.4 Message-ID: <bug-191081-13@https.bugs.freebsd.org/bugzilla/>
next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191081 Bug ID: 191081 Summary: Fix for editors/pico-alpine on 8.4 Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: Needs Triage Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: freebsd-ports-bugs@FreeBSD.org Reporter: michelle@sorbs.net Compile error on 8.4-RELEASE. Building bundled tools... cd mtest;make cc -I../c-client `cat ../c-client/CFLAGS` -c mtest.c ${CTFCONVERT_CMD} expands to empty string cc -I../c-client `cat ../c-client/CFLAGS` -o mtest mtest.o ../c-client/c-client.a `cat ../c-client/LDFLAGS` /usr/bin/ld: cannot find -lregex *** Error code 1 Stop in /usr/ports/editors/pico-alpine/work/alpine-2.11/imap/mtest. *** Error code 1 Stop in /usr/ports/editors/pico-alpine/work/alpine-2.11/imap. *** Error code 1 Stop in /usr/ports/editors/pico-alpine/work/alpine-2.11/imap. *** Error code 1 Stop in /usr/ports/editors/pico-alpine/work/alpine-2.11. *** Error code 1 Stop in /usr/ports/editors/pico-alpine. *** Error code 1 Stop in /usr/ports/editors/pico-alpine. Fix: diff -Nur mail/alpine.orig/Makefile mail/alpine/Makefile --- mail/alpine.orig/Makefile 2014-06-16 04:46:37.000000000 -0500 +++ mail/alpine/Makefile 2014-06-16 04:52:29.000000000 -0500 @@ -49,11 +49,11 @@ CONFIGURE_ARGS+=--with-system-pinerc=${PREFIX}/etc/alpine.conf \ --with-system-fixed-pinerc=${PREFIX}/etc/alpine.conf.fixed \ --with-password-prog=/usr/bin/passwd \ - --with-system-mail-directory=/var/mail \ - --enable-background-post --without-krb5 --without-tcl + --with-system-mail-directory=/var/mail .endif -CONFIGURE_ARGS+=--with-debug-level=2 +CONFIGURE_ARGS+=--with-debug-level=2 \ + --enable-background-post --without-krb5 --without-tcl MAKE_ARGS+= CC="${CC}" CXX="${CXX}" GCCCFLAGS="${CFLAGS}" -- You are receiving this mail because: You are the assignee for the bug.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-191081-13>