Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Joe Martin
OpenLDAP
Commits
fb45c9ba
Commit
fb45c9ba
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add LDAPD library checks.
Remove AC_GCC_TRADITIONAL check. Likely to cause more harm than good.
parent
c63938a1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
acconfig.h
+9
-0
9 additions, 0 deletions
acconfig.h
configure
+414
-389
414 additions, 389 deletions
configure
configure.in
+19
-1
19 additions, 1 deletion
configure.in
include/portable.h.in
+9
-0
9 additions, 0 deletions
include/portable.h.in
with
451 additions
and
390 deletions
acconfig.h
+
9
−
0
View file @
fb45c9ba
...
...
@@ -30,9 +30,15 @@
/* define if you have DCE */
#undef HAVE_DCE
/* define if you have DSAP */
#undef HAVE_DSAP
/* define if you have GDBM */
#undef HAVE_GDBM
/* define if you have ISODE */
#undef HAVE_ISODE
/* define if you have Kerberos */
#undef HAVE_KERBEROS
...
...
@@ -81,6 +87,9 @@
/* define if you have Sun LWP (Solaris style) */
#undef HAVE_THR
/* define if you have XTPP */
#undef HAVE_XTPP
/* define this for connectionless LDAP support */
#undef LDAP_CONNECTIONLESS
...
...
This diff is collapsed.
Click to expand it.
configure
+
414
−
389
View file @
fb45c9ba
This diff is collapsed.
Click to expand it.
configure.in
+
19
−
1
View file @
fb45c9ba
...
...
@@ -215,7 +215,8 @@ elif test $cross_compiling = yes -a $ol_enable_x_compile = no; then
AC_ERROR([ if cross compiling, add --enable-x-compile.])
fi
AC_PROG_GCC_TRADITIONAL
dnl OpenLDAP requires STDC features
dnl AC_PROG_GCC_TRADITIONAL
AC_PROG_CPP
...
...
@@ -242,6 +243,23 @@ dnl
AC_CHECK_LIB(gen, main)
])
# LDAPD tests
if test $ol_enable_ldapd != no ; then
dnl look for ISODE libraries
AC_CHECK_LIB(dsap, main, [
AC_DEFINE(HAVE_DSAP,1)
LDAPD_LIBS="$LDAPD_LIBS -ldsap"
],:)
AC_CHECK_LIB(isode, main, [
AC_DEFINE(HAVE_ISODE,1)
LDAPD_LIBS="$LDAPD_LIBS -lisode"
],:)
AC_CHECK_LIB(xtpp, main, [
AC_DEFINE(HAVE_XTPP,1)
LDAPD_LIBS="$LDAPD_LIBS -lxtpp"
],:)
fi
dnl HP-UX requires -lV3
AC_CHECK_LIB(V3, sigset)
...
...
This diff is collapsed.
Click to expand it.
include/portable.h.in
+
9
−
0
View file @
fb45c9ba
...
...
@@ -130,9 +130,15 @@ is provided ``as is'' without express or implied warranty.
/* define if you have DCE */
#undef HAVE_DCE
/* define if you have DSAP */
#undef HAVE_DSAP
/* define if you have GDBM */
#undef HAVE_GDBM
/* define if you have ISODE */
#undef HAVE_ISODE
/* define if you have Kerberos */
#undef HAVE_KERBEROS
...
...
@@ -178,6 +184,9 @@ is provided ``as is'' without express or implied warranty.
/* define if you have Sun LWP (Solaris style) */
#undef HAVE_THR
/* define if you have XTPP */
#undef HAVE_XTPP
/* define this for connectionless LDAP support */
#undef LDAP_CONNECTIONLESS
...
...
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