patches/ltrace/0.4/120-alpha-support.patch
author Remy Bohmer <linux@bohmer.net>
Sun Jul 11 22:23:34 2010 +0200 (2010-07-11)
changeset 2021 3e52a1510f87
permissions -rw-r--r--
debug/gdb: Fix compilation for Mingw hosts

GDB requires PDcurses instead of ncurses while running on Windows.
So, do not always compile ncurses in case GDB needs to build.

PDcurses is provided by an earlier build step and is not described in
this file.

Signed-off-by: Remy Bohmer <linux@bohmer.net>
[yann.morin.1998@anciense.nib.fr: we already have a way to detect ncurses usage]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@988
     1
diff -durN ltrace-0.4.orig/Makefile.in ltrace-0.4/Makefile.in
yann@988
     2
--- ltrace-0.4.orig/Makefile.in	2008-10-26 15:34:21.000000000 +0100
yann@988
     3
+++ ltrace-0.4/Makefile.in	2008-10-26 15:37:40.000000000 +0100
yann@988
     4
@@ -5,6 +5,7 @@
yann@988
     5
 OS		:= @HOST_OS@
yann@988
     6
 ARCH		:= $(shell echo "@HOST_ARCH@" |sed -e s/i.86/i386/      \
yann@988
     7
 						   -e s/sun4u/sparc64/  \
yann@988
     8
+						   -e s/alpha.*/alpha/  \
yann@988
     9
 						   -e s/arm.*/arm/      \
yann@988
    10
 						   -e s/sa110/arm/      \
yann@988
    11
 						   -e s/ppc64/ppc/      \