diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2010-11-26 15:23:45 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2010-11-26 15:23:45 +0000 |
commit | d97299712d8d73a58de21f06b16e8550d478f06d (patch) | |
tree | e98364a535d49ee87b03d58b1c7a5516031b7158 /mail/cyrus-imapd24/files/patch-configure | |
parent | - Fix build. (diff) |
Use PCRE explicitly. If PCRE was installed, the header of PCRE was
picked upped. However, since there was bash-ism in the configure
script, libpcre was not linked, correctly. As the result, the regex
in our libc was used, but the header of PCRE was referred.
Diffstat (limited to 'mail/cyrus-imapd24/files/patch-configure')
-rw-r--r-- | mail/cyrus-imapd24/files/patch-configure | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/mail/cyrus-imapd24/files/patch-configure b/mail/cyrus-imapd24/files/patch-configure index 81f6e51577ce..76c769f66c62 100644 --- a/mail/cyrus-imapd24/files/patch-configure +++ b/mail/cyrus-imapd24/files/patch-configure @@ -1,8 +1,17 @@ Index: configure diff -u configure.orig configure ---- configure.orig 2010-10-18 23:52:21.754710579 +0900 -+++ configure 2010-10-18 23:53:29.402517775 +0900 -@@ -10372,7 +10372,7 @@ +--- configure.orig 2010-11-26 15:06:26.419690432 +0900 ++++ configure 2010-11-26 15:27:39.897910842 +0900 +@@ -7162,7 +7162,7 @@ + + done + +- if test "$ac_cv_header_pcreposix_h" == "yes"; then ++ if test "$ac_cv_header_pcreposix_h" = "yes"; then + LIBS="$LIBS -lpcre -lpcreposix"; + + $as_echo "#define ENABLE_REGEX /**/" >>confdefs.h +@@ -10411,7 +10411,7 @@ PERL_SUBDIRS="imap" PERL="${with_perl}" case "${target_os}" in |