diff options
author | Oliver Eikemeier <eik@FreeBSD.org> | 2004-08-15 18:18:46 +0000 |
---|---|---|
committer | Oliver Eikemeier <eik@FreeBSD.org> | 2004-08-15 18:18:46 +0000 |
commit | 47acbb6df71ce04caee06b7dcc15c02bc201e720 (patch) | |
tree | f587c33ae7256bbb352b3dcf9e675416302f9036 /net/openldap22-server/files/patch-build::ltmain.sh | |
parent | Fix build with gcc 3.4 (diff) |
update to 2.2.15
- new switch WITH_DYNAMIC_BACKENDS
- WITH_ODBC has to be specified, even when WITH_ODBC_TYPE is set
- 5.x users: when you need to start the daemon early, build with
WITH_RCORDER=yes to put the start script into /etc/rc.d
Notes
Notes:
svn path=/head/; revision=116303
Diffstat (limited to 'net/openldap22-server/files/patch-build::ltmain.sh')
-rw-r--r-- | net/openldap22-server/files/patch-build::ltmain.sh | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/net/openldap22-server/files/patch-build::ltmain.sh b/net/openldap22-server/files/patch-build::ltmain.sh deleted file mode 100644 index 515dd96d8756..000000000000 --- a/net/openldap22-server/files/patch-build::ltmain.sh +++ /dev/null @@ -1,46 +0,0 @@ ---- build/ltmain.sh.orig Thu Jan 1 19:16:25 2004 -+++ build/ltmain.sh Sun Mar 28 14:58:06 2004 -@@ -1076,7 +1076,7 @@ - esac - elif test "X$arg" = "X-lc_r"; then - case $host in -- *-*-openbsd* | *-*-freebsd*) -+ *-*-openbsd* | *-*-freebsd4*) - # Do not include libc_r directly, use -pthread flag. - continue - ;; -@@ -1088,6 +1088,12 @@ - - -module) - module=yes -+ case $host in -+ *-*-freebsd*) -+ # Do not build the useless static library -+ build_old_libs=no -+ ;; -+ esac - continue - ;; - -@@ -4296,10 +4302,17 @@ - fi - - # Install the pseudo-library for information purposes. -- name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` -- instname="$dir/$name"i -- $show "$install_prog $instname $destdir/$name" -- $run eval "$install_prog $instname $destdir/$name" || exit $? -+ case $host in -+ *-*-freebsd*) -+ # Do not install the useless pseudo-library -+ ;; -+ *) -+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` -+ instname="$dir/$name"i -+ $show "$install_prog $instname $destdir/$name" -+ $run eval "$install_prog $instname $destdir/$name" || exit $? -+ ;; -+ esac - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |