e1f053b92a
2007-10-17 Christian Mauduit (ufoot@ufoot.org) * Released 5.6.4. * Updated config.guess & config.sub * NSIS packaging (windows .exe installer). 2007-10-15 Christian Mauduit (ufoot@ufoot.org) * MSVC -> MinGW * src/base.h now included in source tarball (for MS platforms...) 2007-10-06 Christian Mauduit (ufoot@ufoot.org) * Minor packaging & doc fixes. 2007-09-07 Christian Mauduit (ufoot@ufoot.org) * Included the (old) exploit http://www.securityfocus.com/bid/8629/ 2007-09-06 Christian Mauduit (ufoot@ufoot.org) * Copyright 2006 -> 2007 * Minor Makefile fix 2006-10-17 Christian Mauduit (ufoot@ufoot.org) * Gcc option -mpcu (deprecated) -> -march. 2006-10-16 Christian Mauduit (ufoot@ufoot.org) * Makefile patch for BSD by Thomas Klausner. 2006-04-04 Christian Mauduit (ufoot@ufoot.org) * Fixed atrocious bug in group_mesher. Almost 8 years old. 2006-04-02 Christian Mauduit (ufoot@ufoot.org) * Deleted lwtabto3.pcx which was a duplicate of lwtab006.pcx 2006-04-01 Christian Mauduit (ufoot@ufoot.org) * Deleted lwtab007.pcx which was a duplicate of lwtabto4.pcx 2006-03-08 Christian Mauduit (ufoot@ufoot.org) * Fixed segfault when graphics mode are not available. 2006-03-07 Christian Mauduit (ufoot@ufoot.org) * Created an NSIS installer script (not working yet). * Copyright 2005 -> 2006. * Minor patch, removed accent (ascii>127) from doc. 2005-12-11 Christian Mauduit (ufoot@ufoot.org) * Move Arch depot to Savannah. 2005-12-04 Christian Mauduit (ufoot@ufoot.org) * Changed ufoot.org/liquidwar to ufoot.org/liquidwar/v5
22 lines
780 B
Text
22 lines
780 B
Text
$NetBSD: patch-ab,v 1.2 2007/11/29 17:28:24 wiz Exp $
|
|
|
|
--- configure.orig 2007-11-29 17:22:02.000000000 +0000
|
|
+++ configure
|
|
@@ -6392,7 +6392,7 @@ echo $ECHO_N "checking for target specif
|
|
# Check whether --enable-target-opt was given.
|
|
if test "${enable_target_opt+set}" = set; then
|
|
enableval=$enable_target_opt;
|
|
- if test "$I386" == "yes" && test "$enableval" != "no" ; then
|
|
+ if test "$I386" = "yes" && test "$enableval" != "no" ; then
|
|
TARGET_OPT=yes
|
|
{ echo "$as_me:$LINENO: result: enabled" >&5
|
|
echo "${ECHO_T}enabled" >&6; }
|
|
@@ -6404,7 +6404,7 @@ echo "${ECHO_T}disabled" >&6; }
|
|
|
|
else
|
|
|
|
- if test "$I386" == "yes" ; then
|
|
+ if test "$I386" = "yes" ; then
|
|
TARGET_OPT=yes
|
|
{ echo "$as_me:$LINENO: result: enabled" >&5
|
|
echo "${ECHO_T}enabled" >&6; }
|