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
Nadezhda Ivanova
OpenLDAP
Commits
1376d2a8
Commit
1376d2a8
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Update libtool for FreeBSD elf support.
parent
339c2354
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/ltconfig
+12
-1
12 additions, 1 deletion
build/ltconfig
build/ltmain.sh
+10
-0
10 additions, 0 deletions
build/ltmain.sh
with
22 additions
and
1 deletion
build/ltconfig
+
12
−
1
View file @
1376d2a8
...
...
@@ -1123,13 +1123,24 @@ amigaos*)
finish_eval
=
'for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '
\'
's%^.*/\([^/]*\)\.ixlibrary$%\1%'
\'
'`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done'
;;
freebsd2
*
|
freebsd3
*
)
freebsd2
*
)
version_type
=
sunos
library_names_spec
=
'${libname}${release}.so.$versuffix $libname.so'
finish_cmds
=
'PATH="$PATH:/sbin" ldconfig -m $libdir'
shlibpath_var
=
LD_LIBRARY_PATH
;;
freebsd3
*
)
version_type
=
freebsd
library_names_spec
=
'${libname}${release}.so.$versuffix $libname.so'
if
[
$PORTOBJFORMAT
=
elf
]
;
then
finish_cmds
=
'PATH="$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir'
else
finish_cmds
=
'PATH="$PATH:/sbin" ldconfig -m $libdir'
fi
shlibpath_var
=
LD_LIBRARY_PATH
;;
gnu
*
)
version_type
=
sunos
library_names_spec
=
'${libname}${release}.so.$versuffix'
...
...
This diff is collapsed.
Click to expand it.
build/ltmain.sh
+
10
−
0
View file @
1376d2a8
...
...
@@ -967,6 +967,16 @@ if test -z "$show_help"; then
versuffix
=
"
$current
.
$revision
"
;;
freebsd
)
version_vars
=
"
$version_vars
major versuffix"
major
=
"
$current
"
if
[
$PORTOBJFORMAT
=
elf
]
;
then
versuffix
=
"
$current
"
;
else
versuffix
=
"
$current
.
$revision
"
;
fi
;;
*
)
$echo
"
$modename
: unknown library version type
\`
$version_type
'"
1>&2
echo
"Fatal configuration error. See the
$PACKAGE
docs for more information."
1>&2
...
...
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