diff options
author | marcus <marcus@FreeBSD.org> | 2002-04-24 16:07:53 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-04-24 16:07:53 +0000 |
commit | be8126396ab720e177b8218c65607205c63b5647 (patch) | |
tree | 6707648aa0ae6efb0520d5af6c4d7efd7214f441 /x11/gnomedesktop/files | |
parent | 914a7ad9403c2d6d3f34d8093e9ec448c8c10139 (diff) | |
download | FreeBSD-ports-be8126396ab720e177b8218c65607205c63b5647.zip FreeBSD-ports-be8126396ab720e177b8218c65607205c63b5647.tar.gz |
Add gnomedesktop, part of the GNOME 2.0 Desktop API.
Reviewed by: sobomax
Approved by: sobomax
Diffstat (limited to 'x11/gnomedesktop/files')
-rw-r--r-- | x11/gnomedesktop/files/patch-ltmain.sh | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/x11/gnomedesktop/files/patch-ltmain.sh b/x11/gnomedesktop/files/patch-ltmain.sh new file mode 100644 index 0000000..91713d2 --- /dev/null +++ b/x11/gnomedesktop/files/patch-ltmain.sh @@ -0,0 +1,45 @@ + +$FreeBSD$ + +--- ltmain.sh.orig Wed Jan 23 11:38:40 2002 ++++ ltmain.sh Sun Feb 3 01:44:17 2002 +@@ -1037,8 +1037,16 @@ + continue + ;; + ++ -pthread) ++ compile_command="$compile_command -pthread" ++ finalize_command="$finalize_command -pthread" ++ compiler_flags="$compiler_flags -pthread" ++ continue ++ ;; ++ + -module) + module=yes ++ build_old_libs=no + continue + ;; + +@@ -2412,6 +2420,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 +4190,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" |