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
Thierry Pubellier
OpenLDAP
Commits
2f54bd18
Commit
2f54bd18
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Import REENTRANT define fix from -devel.
parent
bbf92983
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
+5
-4
5 additions, 4 deletions
acconfig.h
configure
+200
-188
200 additions, 188 deletions
configure
configure.in
+3
-0
3 additions, 0 deletions
configure.in
include/portable.h.in
+5
-4
5 additions, 4 deletions
include/portable.h.in
with
213 additions
and
196 deletions
acconfig.h
+
5
−
4
View file @
2f54bd18
...
...
@@ -7,13 +7,14 @@
/* define this if needed to get reentrant functions */
#undef REENTRANT
#undef _REENTRANT
/* define this if needed to get thread safe functions */
#undef _THREAD_SAFE
/* define this if needed to get thread safe functions */
/* define this if needed to get threadsafe functions */
#undef THREADSAFE
#undef _THREADSAFE
#undef THREAD_SAFE
#undef _THREAD_SAFE
/* define this if cross compiling */
#undef CROSS_COMPILING
...
...
This diff is collapsed.
Click to expand it.
configure
+
200
−
188
View file @
2f54bd18
This diff is collapsed.
Click to expand it.
configure.in
+
3
−
0
View file @
2f54bd18
...
...
@@ -750,8 +750,11 @@ fi
if test $ol_with_threads != no ; then
dnl needed to get reentrant/threadsafe versions
dnl
AC_DEFINE(REENTRANT,1)
AC_DEFINE(_REENTRANT,1)
AC_DEFINE(THREAD_SAFE,1)
AC_DEFINE(_THREAD_SAFE,1)
AC_DEFINE(THREADSAFE,1)
AC_DEFINE(_THREADSAFE,1)
dnl this might cause the errno symbol to be
...
...
This diff is collapsed.
Click to expand it.
include/portable.h.in
+
5
−
4
View file @
2f54bd18
...
...
@@ -111,13 +111,14 @@ is provided ``as is'' without express or implied warranty.
#undef WORDS_BIGENDIAN
/* define this if needed to get reentrant functions */
#undef REENTRANT
#undef _REENTRANT
/* define this if needed to get thread safe functions */
#undef _THREAD_SAFE
/* define this if needed to get thread safe functions */
/* define this if needed to get threadsafe functions */
#undef THREADSAFE
#undef _THREADSAFE
#undef THREAD_SAFE
#undef _THREAD_SAFE
/* define this if cross compiling */
#undef CROSS_COMPILING
...
...
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