patches/gcc/3.2.3/160-gcc-3.2.3-trap-posix.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
     1 # 
     2 # Submitted-By: Marc Kleine-Budde <mkl@pengutronix.de>, 2005-04-20
     3 #
     4 # Error:
     5 #
     6 # creating libintl.h
     7 # Configuring etc...
     8 # loading cache ../config.cache
     9 # checking for a BSD compatible install... (cached) /usr/bin/install -c
    10 # creating ./config.status
    11 # creating Makefile
    12 # trap: usage: trap [-lp] [[arg] signal_spec ...]
    13 #
    14 # Description:
    15 #
    16 # non-posix conform usage of trap causes bash >= 3.0 to fail
    17 #
    18 # e.g.: http://sourceware.org/ml/crossgcc/2004-12/msg00132.html
    19 #
    20 # Status:
    21 #
    22 # fixed in gcc >= 3.3.5
    23 # backport of gcc-3.3.5 fix
    24 #
    25 diff -ruN gcc-3.2.3-orig/configure gcc-3.2.3/configure
    26 --- gcc-3.2.3-orig/configure	2002-06-24 18:14:28.000000000 +0200
    27 +++ gcc-3.2.3/configure	2005-04-20 18:42:49.000000000 +0200
    28 @@ -697,7 +697,7 @@
    29  if test -f skip-this-dir; then
    30  	# Perform the same cleanup as the trap handler, minus the "exit 1" of course,
    31  	# and reset the trap handler.
    32 -	trap 0
    33 +	trap '' 0
    34  	rm -rf Makefile* ${tmpdir}
    35  	# Execute the final clean-up actions
    36  	${config_shell} skip-this-dir
    37 @@ -1615,7 +1615,7 @@
    38  # Perform the same cleanup as the trap handler, minus the "exit 1" of course,
    39  # and reset the trap handler.
    40  rm -rf ${tmpdir}
    41 -trap 0
    42 +trap '' 0
    43  
    44  exit 0
    45