diff options
author | pat <pat@FreeBSD.org> | 2002-03-03 15:24:56 +0800 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-03-03 15:24:56 +0800 |
commit | e4112dc74b5f258379331cd8cdff2c25e318f490 (patch) | |
tree | f2767c7fbb31143fa73ac09f96109cf03dd2cdf0 /x11-toolkits/paragui-devel/files | |
parent | 3452eb5ce5d7b42a569fa1b2c18a909fd01a7e1a (diff) | |
download | freebsd-ports-gnome-e4112dc74b5f258379331cd8cdff2c25e318f490.tar.gz freebsd-ports-gnome-e4112dc74b5f258379331cd8cdff2c25e318f490.tar.zst freebsd-ports-gnome-e4112dc74b5f258379331cd8cdff2c25e318f490.zip |
Update to 1.0.0
PR: 35501
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'x11-toolkits/paragui-devel/files')
-rw-r--r-- | x11-toolkits/paragui-devel/files/patch-ltmain.sh | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/x11-toolkits/paragui-devel/files/patch-ltmain.sh b/x11-toolkits/paragui-devel/files/patch-ltmain.sh new file mode 100644 index 000000000000..5204c4e61246 --- /dev/null +++ b/x11-toolkits/paragui-devel/files/patch-ltmain.sh @@ -0,0 +1,41 @@ +--- ltmain.sh.orig Mon Feb 11 17:35:31 2002 ++++ ltmain.sh Fri Mar 1 06:01:48 2002 +@@ -1056,14 +1056,14 @@ + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; +- *-*-openbsd*) ++ *-*-openbsd* | *-*-freebsd*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in +- *-*-openbsd*) ++ *-*-openbsd* | *-*-freebsd*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; +@@ -2494,7 +2494,7 @@ + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; +- *-*-openbsd*) ++ *-*-openbsd* | *-*-freebsd*) + # Do not include libc due to us having libc/libc_r. + ;; + *) +@@ -4281,10 +4281,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" |