gdb/gdb.patch

Tue, 28 Aug 2012 18:28:45 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 28 Aug 2012 18:28:45 +0200
changeset 528
3b08e6396b45
permissions
-rw-r--r--

Massively update from 5.1 to 5.5 release, completely changing from
autotools to cmake build configuration along with the corresponding
corrections. Correct some less important problems like typical german
english mistakes, as well as use parallel make for faster builds with
SMP and multicore architectures. Warning, the 5.5 releases of MySQL
seem to be equally bug ridden as the 5.1 are, for example building
the NDBCluster storage engine fails.

michael@421 1 Index: Makefile.in
michael@421 2 --- Makefile.in.orig 2009-10-06 18:38:07 +0200
michael@421 3 +++ Makefile.in 2009-10-07 19:36:16 +0200
michael@421 4 @@ -610,10 +610,6 @@
michael@421 5 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
michael@421 6 "EXPECT=$(EXPECT)" \
michael@421 7 "FLEX=$(FLEX)" \
michael@421 8 - "INSTALL=$(INSTALL)" \
michael@421 9 - "INSTALL_DATA=$(INSTALL_DATA)" \
michael@421 10 - "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
michael@421 11 - "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
michael@421 12 "LDFLAGS_FOR_BUILD=$(LDFLAGS_FOR_BUILD)" \
michael@421 13 "LEX=$(LEX)" \
michael@421 14 "M4=$(M4)" \
michael@421 15 Index: gdb/configure
michael@421 16 --- gdb/configure.orig 2009-10-01 21:37:31 +0200
michael@421 17 +++ gdb/configure 2009-10-07 19:37:09 +0200
michael@421 18 @@ -9732,7 +9732,7 @@
michael@421 19
michael@421 20 fi ;;
michael@421 21 esac
michael@421 22 -for ac_header in curses.h cursesX.h ncurses.h ncurses/ncurses.h ncurses/term.h
michael@421 23 +for ac_header in ncurses.h ncurses/ncurses.h ncurses/term.h curses.h cursesX.h
michael@421 24 do :
michael@421 25 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
michael@421 26 ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"

mercurial