diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-03-25 20:24:20 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-03-25 20:24:20 +0800 |
commit | 51ea599cd9cba5a771a482c491431800468e709f (patch) | |
tree | ccfed942339c8694482e6cf890239d6121342270 /math/freefem/files | |
parent | 7be129467d1206ae19952868faa8a15c5eba8f1d (diff) | |
download | freebsd-ports-gnome-51ea599cd9cba5a771a482c491431800468e709f.tar.gz freebsd-ports-gnome-51ea599cd9cba5a771a482c491431800468e709f.tar.zst freebsd-ports-gnome-51ea599cd9cba5a771a482c491431800468e709f.zip |
upgrade to 3.4.5
PR: 36293
Submitted by: Ports Fury
Diffstat (limited to 'math/freefem/files')
-rw-r--r-- | math/freefem/files/patch-admin:ltmain.sh | 41 | ||||
-rw-r--r-- | math/freefem/files/patch-ah | 11 |
2 files changed, 41 insertions, 11 deletions
diff --git a/math/freefem/files/patch-admin:ltmain.sh b/math/freefem/files/patch-admin:ltmain.sh new file mode 100644 index 000000000000..8ec30a2068dc --- /dev/null +++ b/math/freefem/files/patch-admin:ltmain.sh @@ -0,0 +1,41 @@ +--- admin/ltmain.sh.orig Mon Oct 8 11:27:21 2001 ++++ admin/ltmain.sh Thu Mar 21 13:38:17 2002 +@@ -1043,14 +1043,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 + ;; +@@ -2441,7 +2441,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. + ;; + *) +@@ -4210,10 +4210,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" diff --git a/math/freefem/files/patch-ah b/math/freefem/files/patch-ah deleted file mode 100644 index 3fc46551eb83..000000000000 --- a/math/freefem/files/patch-ah +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig Mon Nov 27 23:54:52 2000 -+++ configure Mon Nov 27 23:57:18 2000 -@@ -4014,7 +4014,7 @@ - withval="$with_optimization" - - if test "$CXX" = "g++" || test "$CXX" = "c++" || test "$host_os" = "linux" ; then -- CXXFLAGS="-O3 -fforce-mem -fforce-addr -fomit-frame-pointer" -+ CXXFLAGS="$CXXFLAGS -fforce-mem -fforce-addr -fomit-frame-pointer" - fi - if test "$CXX" = "CC" && test "$host_os" = "hpux" ; then - CXXFLAGS="+O3 +a1" |