Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
8c1eae32
Commit
8c1eae32
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Use more portable sh if statement to resolve include problem.
parent
b2d96932
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
build/top.mk
+1
-1
1 addition, 1 deletion
build/top.mk
configure
+202
-206
202 additions, 206 deletions
configure
configure.in
+5
-5
5 additions, 5 deletions
configure.in
with
208 additions
and
212 deletions
build/top.mk
+
1
−
1
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
"
;
\
...
...
This diff is collapsed.
Click to expand it.
configure
+
202
−
206
View file @
8c1eae32
This diff is collapsed.
Click to expand it.
configure.in
+
5
−
5
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment