| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- --- config.guess.orig Thu Jan 30 23:32:36 2003
- +++ config.guess Wed Feb 5 09:54:43 2003
- @@ -188,7 +188,7 @@
- release='-gnu'
- ;;
- *)
- - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
- + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
- ;;
- esac
- # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
- --- gcc/config/i386/sol2.h.dist Thu Feb 27 15:00:54 2003
- +++ gcc/config/i386/sol2.h Thu Feb 27 14:20:50 2003
- @@ -160,3 +160,5 @@
-
- /* The Solaris assembler does not support .quad. Do not use it. */
- #undef ASM_QUAD
- +#undef DEFAULT_PCC_STRUCT_RETURN
- +#define DEFAULT_PCC_STRUCT_RETURN 1
- --- gcc/configure.dist 2003-06-11 11:23:53.000000000 +0200
- +++ gcc/configure 2003-06-11 11:23:53.000000000 +0200
- @@ -8259,7 +8259,7 @@
- && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
- conftest2.o conftest3.o; then
- gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
- - | grep -A1 myfoosect`
- + | sed -ne '/myfoosect/{N;p;}'`
- if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
- if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
- gcc_cv_ld_ro_rw_mix=read-only
- --- gcc/configure.in.dist 2003-06-11 11:23:53.000000000 +0200
- +++ gcc/configure.in 2003-06-11 11:23:53.000000000 +0200
- @@ -2319,7 +2319,7 @@
- && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
- conftest2.o conftest3.o; then
- gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
- - | grep -A1 myfoosect`
- + | sed -ne '/myfoosect/{N;p;}'`
- if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
- if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
- gcc_cv_ld_ro_rw_mix=read-only
|