diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2002-01-22 16:31:58 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2002-01-22 16:31:58 +0000 |
commit | a90f852e222cda40cf391178ee60dd4110571077 (patch) | |
tree | b427feb02a7dbc763222c27e1bf97ef089cdaaf8 /cad/oregano/files | |
parent | 78408d7e13ff83fe12b7b4c24d66d4c472a05008 (diff) |
Notes
Diffstat (limited to 'cad/oregano/files')
-rw-r--r-- | cad/oregano/files/patch-ltmain.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cad/oregano/files/patch-ltmain.sh b/cad/oregano/files/patch-ltmain.sh new file mode 100644 index 000000000000..941b2a0c015a --- /dev/null +++ b/cad/oregano/files/patch-ltmain.sh @@ -0,0 +1,25 @@ +--- ltmain.sh.orig Thu Dec 13 19:09:47 2001 ++++ ltmain.sh Wed Jan 23 01:14:10 2002 +@@ -2412,6 +2412,9 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; ++ *-*-freebsd*) ++ # FreeBSD doesn't need this... ++ ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then +@@ -4179,10 +4182,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" |