Wed, 08 Feb 2012 20:07:00 +0200
Update version, adapt patch, correct PID writing, correct build on newer
FreeBSD releases, and most importantly introduce new patch to try to
avoid segfault caused by multiple network interfaces with the same (or
no) address. This is common when configuring bridges and tunnels.
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" |