Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
8c1eae32
Commit
8c1eae32
authored
Sep 21, 1998
by
Kurt Zeilenga
Browse files
Use more portable sh if statement to resolve include problem.
parent
b2d96932
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
build/top.mk
View file @
8c1eae32
...
...
@@ -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
"
;
\
...
...
configure
View file @
8c1eae32
This diff is collapsed.
Click to expand it.
configure.in
View file @
8c1eae32
...
...
@@ -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],
aut
o)dnl
OL_ARG_ENABLE(dns,[ --enable-dns enable dns support],
n
o)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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment