[Bug 191081] New: Fix for editors/pico-alpine on 8.4

bz-noreply at freebsd.org bz-noreply at freebsd.org
Mon Jun 16 09:57:36 UTC 2014


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 at FreeBSD.org
          Reporter: michelle at 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.


More information about the freebsd-ports-bugs mailing list