diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-01-24 15:04:27 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-01-24 15:04:27 +0000 |
commit | ca8c81f24a6b40e8c07663baa8dcc8d9cf7fdff8 (patch) | |
tree | afd1f135a2612666685e3ea018b4ae711b5ffb1e /devel/ORBit2/files/patch-ltmain.sh | |
parent | - Update to version 1.20 (diff) |
Prevent libc from linking in explicitly. Bump PORTREVISION.
Diffstat (limited to '')
-rw-r--r-- | devel/ORBit2/files/patch-ltmain.sh | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/devel/ORBit2/files/patch-ltmain.sh b/devel/ORBit2/files/patch-ltmain.sh index 98cb05e4ddb3..c6c98237ec0f 100644 --- a/devel/ORBit2/files/patch-ltmain.sh +++ b/devel/ORBit2/files/patch-ltmain.sh @@ -1,19 +1,19 @@ $FreeBSD$ ---- ltmain.sh 2001/08/27 09:51:26 1.1 -+++ 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 @@ +--- ltmain.sh.orig Mon Jan 7 11:09:55 2002 ++++ ltmain.sh Thu Jan 24 16:32:50 2002 +@@ -1795,6 +1795,9 @@ + *-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*) + # these systems don't actually have a c library (as such)! + ;; ++ *-*-freebsd*) ++ # has libc, but it shouldn't be explicitly linked in ++ ;; + *-*-rhapsody*) + # rhapsody is a little odd... + deplibs="$deplibs -framework System" +@@ -3360,10 +3366,12 @@ fi # Install the pseudo-library for information purposes. |