diff options
author | Eduardo Chappa <chappa@washington.edu> | 2017-12-02 13:14:20 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2017-12-02 13:14:20 -0700 |
commit | 04458e1f15f6e50d03325a89d30eeb63d90ff6c3 (patch) | |
tree | ee2c03d2c3e7ba8cad121830b13376aab38b8c40 | |
parent | 0f9fea5d15563bb92c376aede610a5e7bc677ac8 (diff) | |
download | alpine-04458e1f15f6e50d03325a89d30eeb63d90ff6c3.tar.xz |
* Add /usr/local to add automatic support for ldap in Freebsd,
in case the user has ldap installed.
-rwxr-xr-x | configure | 27 | ||||
-rw-r--r-- | configure.ac | 27 | ||||
-rwxr-xr-x | imap/mailutil/mailutil.exe | bin | 1025024 -> 0 bytes | |||
-rw-r--r-- | pith/pine.hlp | 2 |
4 files changed, 45 insertions, 11 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.ac Rev:25 by chappa@washington.edu. +# From configure.ac Rev:26 by chappa@washington.edu. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for alpine 2.21.9. # @@ -17623,14 +17623,24 @@ if test "x$with_ldap" = "xno" ; then $as_echo "$as_me: Excluding LDAP Support" >&6;} else + case $host in + *-*-freebsd*) + alpine_LDAPDIR="/usr/local" + alpine_LDAPINCLUDE="${LDAPDIR}/include" + alpine_LDAPLIB="${LDAPDIR}/lib" + ;; + esac; + alpine_with_ldap=yes + # Check whether --with-ldap-dir was given. if test "${with_ldap_dir+set}" = set; then : withval=$with_ldap_dir; if test "x$withval" != "xno" ; then - CPPFLAGS="$CPPFLAGS -I${withval}/include" - LDFLAGS="$LDFLAGS -L${withval}/lib" + alpine_LDAPDIR="${withval}" + alpine_LDAPINCLUDE="${LDAPDIR}/include" + alpine_LDAPLIB="${LDAPDIR}/lib" fi fi @@ -17641,7 +17651,7 @@ fi if test "${with_ldap_include_dir+set}" = set; then : withval=$with_ldap_include_dir; if test "x$withval" != "xno" ; then - CPPFLAGS="$CPPFLAGS -I$withval" + alpine_LDAPINCLUDE="$withval" fi fi @@ -17652,11 +17662,18 @@ fi if test "${with_ldap_lib_dir+set}" = set; then : withval=$with_ldap_lib_dir; if test "x$withval" != "xno" ; then - LDFLAGS="$LDFLAGS -L$withval" + alpine_LDAPLIB="${withval}" fi fi + + if test -n "$alpine_LDAPINCLUDE" ; then + CPPFLAGS="$CPPFLAGS -I${alpine_LDAPINCLUDE}/include" + fi + if test -n "$alpine_LDAPLIB" ; then + LDFLAGS="$LDFLAGS -L${alpine_LDAPLIB}/lib" + fi fi diff --git a/configure.ac b/configure.ac index 5a391d82..cc4392b6 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ dnl */ AC_PREREQ([2.69]) -AC_REVISION([Rev:25 by chappa@washington.edu]) +AC_REVISION([Rev:26 by chappa@washington.edu]) dnl Alpine Version Number is in $srcdir/VERSION AC_INIT([alpine],[m4_esyscmd(tr -d \\n < VERSION)],[chappa@washington.edu]) @@ -1000,13 +1000,23 @@ if test "x$with_ldap" = "xno" ; then else dnl Do stuff to figure out where OpenLDAP is + case $host in + *-*-freebsd*) + alpine_LDAPDIR="/usr/local" + alpine_LDAPINCLUDE="${LDAPDIR}/include" + alpine_LDAPLIB="${LDAPDIR}/lib" + ;; + esac; + alpine_with_ldap=yes + AC_ARG_WITH(ldap-dir, AS_HELP_STRING([--with-ldap-dir=DIR],[Root of LDAP lib/include path]), [ if test "x$withval" != "xno" ; then - CPPFLAGS="$CPPFLAGS -I${withval}/include" - LDFLAGS="$LDFLAGS -L${withval}/lib" + alpine_LDAPDIR="${withval}" + alpine_LDAPINCLUDE="${LDAPDIR}/include" + alpine_LDAPLIB="${LDAPDIR}/lib" fi ]) @@ -1014,7 +1024,7 @@ else AS_HELP_STRING([--with-ldap-include-dir=DIR],[Directory containing LDAP include files]), [ if test "x$withval" != "xno" ; then - CPPFLAGS="$CPPFLAGS -I$withval" + alpine_LDAPINCLUDE="$withval" fi ]) @@ -1022,9 +1032,16 @@ else AS_HELP_STRING([--with-ldap-lib-dir=DIR],[LDAP library path]), [ if test "x$withval" != "xno" ; then - LDFLAGS="$LDFLAGS -L$withval" + alpine_LDAPLIB="${withval}" fi ]) + + if test -n "$alpine_LDAPINCLUDE" ; then + CPPFLAGS="$CPPFLAGS -I${alpine_LDAPINCLUDE}/include" + fi + if test -n "$alpine_LDAPLIB" ; then + LDFLAGS="$LDFLAGS -L${alpine_LDAPLIB}/lib" + fi fi dnl Include SMIME? diff --git a/imap/mailutil/mailutil.exe b/imap/mailutil/mailutil.exe Binary files differdeleted file mode 100755 index 526a0688..00000000 --- a/imap/mailutil/mailutil.exe +++ /dev/null diff --git a/pith/pine.hlp b/pith/pine.hlp index 8c36eeca..c421bad6 100644 --- a/pith/pine.hlp +++ b/pith/pine.hlp @@ -140,7 +140,7 @@ with help text for the config screen and the composer that didn't have any reasonable place to be called from. Dummy change to get revision in pine.hlp ============= h_revision ================= -Alpine Commit 236 2017-12-02 10:37:44 +Alpine Commit 237 2017-12-02 13:14:15 ============= h_news ================= <HTML> <HEAD> |