Fri, 07 Sep 2012 19:08:07 +0200
Correct build configuration in Solaris subdir, correct english grammar,
remove irrelevant strip notice, introduce custom CFLAG logic, facilitate
use of Solaris Studio compiler with needed build configuration
adjustments, conditionally build 64 bit position independent code,
and accommodate tun(7) in newer Solaris releases by renaming driver
and module from conflicting 'tun' to 'vtun'. These changes include
some nonstandard 'I give up' logic causing out of tree builds by
manipulating the PATH, for example.
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" |