Skip to content
Snippets Groups Projects
Commit 8c1eae32 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Use more portable sh if statement to resolve include problem.

parent b2d96932
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ lint-local:
lint5-local:
Makefile: Makefile.in ${top_srcdir}/config.status
@if [ $(top_srcdir) = $(srcdir) ]; then ; \
@if test "$(top_srcdir)" = "$(srcdir)" ; then ; \
./config.status ; \
else ; \
echo "Makefile out of date, run config.status from $top_srcdir" ; \
......
This diff is collapsed.
......@@ -23,10 +23,10 @@ AC_PREFIX_DEFAULT(/usr/local)
dnl General "enable" options
OL_ARG_ENABLE(debug,[ --enable-debug enable debugging], yes)dnl
#OL_ARG_ENABLE(syslog,[ --enable-syslog enable syslog support], auto)dnl
dnl OL_ARG_ENABLE(syslog,[ --enable-syslog enable syslog support], auto)dnl
OL_ARG_ENABLE(libui,[ --enable-libui enable library user interface], yes)dnl
OL_ARG_ENABLE(cache,[ --enable-cache enable caching], yes)dnl
OL_ARG_ENABLE(dns,[ --enable-dns enable dns support], auto)dnl
OL_ARG_ENABLE(dns,[ --enable-dns enable dns support], no)dnl
OL_ARG_ENABLE(referrals,[ --enable-referrals enable referrals], yes)dnl
OL_ARG_ENABLE(cldap,[ --enable-clapd enable connectionless ldap], no)dnl
......@@ -547,9 +547,9 @@ dnl Sort out defines
if test $ol_enable_debug != no ; then
LDAP_DEFS="$LDAP_DEFS -DLDAP_DEBUG"
fi
#if test $ol_enable_syslog != no ; then
# LDAP_DEFS="$LDAP_DEFS -DLDAP_SYSLOG"
#fi
dnl if test $ol_enable_syslog != no ; then
dnl LDAP_DEFS="$LDAP_DEFS -DLDAP_SYSLOG"
dnl fi
if test $ol_enable_libui = no ; then
LDAP_DEFS="$LDAP_DEFS -DNO_USERINTERFACE"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment