diff options
author | ache <ache@FreeBSD.org> | 1999-05-28 09:09:20 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1999-05-28 09:09:20 +0800 |
commit | 4a4d080674591b38fa72b4eac94d40ea4448e1fe (patch) | |
tree | a13cb3cdcf915788b9924ec6af84912643ceec41 /shells/bash2/files | |
parent | 016b36de6624159c0427edaa0022580c5d2c9bac (diff) | |
download | freebsd-ports-gnome-4a4d080674591b38fa72b4eac94d40ea4448e1fe.tar.gz freebsd-ports-gnome-4a4d080674591b38fa72b4eac94d40ea4448e1fe.tar.zst freebsd-ports-gnome-4a4d080674591b38fa72b4eac94d40ea4448e1fe.zip |
Fixes for freebsd,ELF,-current
Upgrade docs to 2.03
Diffstat (limited to 'shells/bash2/files')
-rw-r--r-- | shells/bash2/files/patch-ac | 20 | ||||
-rw-r--r-- | shells/bash2/files/patch-ad | 18 |
2 files changed, 38 insertions, 0 deletions
diff --git a/shells/bash2/files/patch-ac b/shells/bash2/files/patch-ac new file mode 100644 index 000000000000..86e8472b2263 --- /dev/null +++ b/shells/bash2/files/patch-ac @@ -0,0 +1,20 @@ +--- configure.orig Thu Feb 18 21:12:00 1999 ++++ configure Fri May 28 04:35:33 1999 +@@ -733,7 +733,7 @@ + sparc-netbsd*) opt_gnu_malloc=no ;; # needs 8-byte alignment + mips-irix6*) opt_gnu_malloc=no ;; # needs 8-byte alignment + sparc-linux*) opt_gnu_malloc=no ;; # sparc running linux; requires ELF +-#*-freebsd*) opt_gnu_malloc=no ;; # they claim it's better ++*-freebsd*) opt_gnu_malloc=no ;; # they claim it's better + *-aix*) opt_gnu_malloc=no ;; # AIX machines + *-nextstep*) opt_gnu_malloc=no ;; # NeXT machines running NeXTstep + *-rhapsody*) opt_gnu_malloc=no ;; # Apple Rhapsody +@@ -7086,7 +7086,7 @@ + then + echo $ac_n "checking shared object configuration for loadable builtins""... $ac_c" 1>&6 + echo "configure:7089: checking shared object configuration for loadable builtins" >&5 +- eval `${CONFIG_SHELL-/bin/sh} ${srcdir}/support/shobj-conf -C ${CC} -c ${host_cpu} -o ${host_os} -v ${host_vendor}` ++ eval `${CONFIG_SHELL-/bin/sh} ${srcdir}/support/shobj-conf -C "${CC}" -c "${host_cpu}" -o "${host_os}" -v "${host_vendor}"` + + + diff --git a/shells/bash2/files/patch-ad b/shells/bash2/files/patch-ad new file mode 100644 index 000000000000..b24eada42810 --- /dev/null +++ b/shells/bash2/files/patch-ad @@ -0,0 +1,18 @@ +--- support/shobj-conf.bak Tue Dec 29 23:05:29 1998 ++++ support/shobj-conf Fri May 28 04:34:07 1999 +@@ -86,13 +86,13 @@ + SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)$(SHLIB_MINOR)' + ;; + +-freebsd3*) ++freebsd[34]*) + SHOBJ_CFLAGS=-fpic + SHOBJ_LD='${CC}' + SHOBJ_LDFLAGS='-shared' + + SHLIB_XLDFLAGS='-R$(libdir)' +- SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)$(SHLIB_MINOR)' ++ SHLIB_LIBVERSION='$(SHLIB_LIBSUFF).$(SHLIB_MAJOR)' + ;; + + linux*) |