| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- Index: config.guess
- --- config.guess.orig Thu Jan 30 23:32:36 2003
- +++ config.guess Wed Feb 5 09:54:43 2003
- @@ -189,7 +189,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:
- Index: gcc/config/i386/sol2.h
- --- gcc/config/i386/sol2.h.orig 2004-06-14 19:31:27 +0200
- +++ gcc/config/i386/sol2.h 2004-06-21 09:53:21 +0200
- @@ -64,6 +64,8 @@
-
- /* 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
-
- /* The Solaris assembler wants a .local for non-exported aliases. */
- #define ASM_OUTPUT_DEF_FROM_DECLS(FILE, DECL, TARGET) \
- Index: gcc/system.h
- --- gcc/system.h.orig 2003-08-23 20:03:05.000000000 +0200
- +++ gcc/system.h 2003-09-03 20:02:11.000000000 +0200
- @@ -319,10 +319,6 @@
- extern char *strstr (const char *, const char *);
- #endif
-
- -#ifdef HAVE_MALLOC_H
- -#include <malloc.h>
- -#endif
- -
- #if defined (HAVE_DECL_MALLOC) && !HAVE_DECL_MALLOC
- extern void *malloc (size_t);
- #endif
- Index: gcc/config/alpha/osf.h
- --- gcc/config/alpha/osf.h.orig 2003-12-12 02:19:23.000000000 +0100
- +++ gcc/config/alpha/osf.h 2004-04-26 21:25:14.000000000 +0200
- @@ -78,7 +78,7 @@
- constructor and call-frame data structures are not accidentally
- overridden. */
- #define LINK_SPEC \
- - "-G 8 %{O*:-O3} %{!O*:-O1} -S %{static:-non_shared} \
- + "-oldstyle_liblookup %{!o:-o a.out} -G 8 %{O*:-O3} %{!O*:-O1} -S %{static:-non_shared} \
- %{!static:%{shared:-shared -hidden_symbol _GLOBAL_*} \
- %{!shared:-call_shared}} %{pg} %{taso} %{rpath*}"
-
|