diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-10-31 08:32:30 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-10-31 08:32:30 +0000 |
commit | 77dda1e20f392bf1e986b85e6bc710c341848dcd (patch) | |
tree | 701526b50f57eaec020def444fd19d1f79d5fe81 /x11/rxvt-devel | |
parent | 859cc877c55e8134ecb7f6d27e61638a40f58e2e (diff) | |
download | FreeBSD-ports-77dda1e20f392bf1e986b85e6bc710c341848dcd.zip FreeBSD-ports-77dda1e20f392bf1e986b85e6bc710c341848dcd.tar.gz |
Don't link in libc - FreeBSD doesn't need this.
PRs: 31601, 31602, 31603, ...
Submitted by: Ports Fury
Diffstat (limited to 'x11/rxvt-devel')
-rw-r--r-- | x11/rxvt-devel/files/patch-autoconf::ltmain.sh | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/x11/rxvt-devel/files/patch-autoconf::ltmain.sh b/x11/rxvt-devel/files/patch-autoconf::ltmain.sh index d1a302d..830fb75 100644 --- a/x11/rxvt-devel/files/patch-autoconf::ltmain.sh +++ b/x11/rxvt-devel/files/patch-autoconf::ltmain.sh @@ -1,14 +1,28 @@ ---- autoconf/ltmain.sh.orig Sat Oct 6 11:24:55 2001 -+++ autoconf/ltmain.sh Sat Oct 6 11:29:53 2001 -@@ -4093,11 +4093,6 @@ - IFS="$save_ifs" + +$FreeBSD$ + +--- autoconf/ltmain.sh 2001/08/27 09:51:26 1.1 ++++ autoconf/ltmain.sh 2001/08/27 09:51:42 +@@ -2408,6 +2408,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 +@@ -4175,10 +4178,12 @@ 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 $? + # 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" |