diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-09-02 15:24:16 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-09-02 15:24:16 +0000 |
commit | c9647848093ab4a467ad38433dcb72a0c2b94778 (patch) | |
tree | e8eeffee27d0dca51e11973eb9c27d2846ab4e8e /security/clamav-devel/files/patch-ltmain.sh | |
parent | - Update to 4.2 (diff) |
- Update to 20040826 snapshot
- Fix fetching
- Fix -pthread/-lc_r issue for good
(courtesy of bsd.autotools.mk, who'd have guessed...)
PR: ports/71168
Submitted by: Rob Evers (maintainer), me
Notes
Notes:
svn path=/head/; revision=117945
Diffstat (limited to 'security/clamav-devel/files/patch-ltmain.sh')
-rw-r--r-- | security/clamav-devel/files/patch-ltmain.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/security/clamav-devel/files/patch-ltmain.sh b/security/clamav-devel/files/patch-ltmain.sh deleted file mode 100644 index 74d32db0b279..000000000000 --- a/security/clamav-devel/files/patch-ltmain.sh +++ /dev/null @@ -1,23 +0,0 @@ ---- ltmain.sh.orig Sat Sep 27 05:20:20 2003 -+++ ltmain.sh Sat Sep 27 05:24:02 2003 -@@ -4259,10 +4259,16 @@ - 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 $? -+ case $host in -+ *-*-freebsd*) -+ # Do not install the useless pseudo-library -+ ;; -+ *) -+ 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 $? -+ esac - - # Maybe install the static library, too. - test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" |