diff options
author | smace <smace@FreeBSD.org> | 2002-04-15 18:38:18 +0000 |
---|---|---|
committer | smace <smace@FreeBSD.org> | 2002-04-15 18:38:18 +0000 |
commit | 734fa5cccf87dd5fa18d6b317a89c63abd5ed4c2 (patch) | |
tree | c54830b89a50b4548f5bab8efc69a2a27edc9065 /devel/libredblack/files/patch-aa | |
parent | 7428b524b709e8a29093d7e16b83a8b6e5ce0af6 (diff) | |
download | FreeBSD-ports-734fa5cccf87dd5fa18d6b317a89c63abd5ed4c2.zip FreeBSD-ports-734fa5cccf87dd5fa18d6b317a89c63abd5ed4c2.tar.gz |
Add libredblack 1.1.0
Library that provides the red-black balanced tree algorithm
Diffstat (limited to 'devel/libredblack/files/patch-aa')
-rw-r--r-- | devel/libredblack/files/patch-aa | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/devel/libredblack/files/patch-aa b/devel/libredblack/files/patch-aa new file mode 100644 index 0000000..73f0454 --- /dev/null +++ b/devel/libredblack/files/patch-aa @@ -0,0 +1,25 @@ +--- ltmain.sh.orig Fri Mar 3 10:50:28 2000 ++++ ltmain.sh Mon Apr 15 12:52:12 2002 +@@ -1795,6 +1795,9 @@ + *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) + # these systems don't actually have a c library (as such)! + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems. + deplibs="$deplibs -lc" +@@ -3348,10 +3351,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + 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 $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |