25327dac55
* different color palette used by default * PNG screenshots added * added sector counter and speedometer * F6 is Atari HELP key on Curses, Falcon and in X11 * added missing combinations of ANTIC modes with GTIA modes * keyboard joystick works in more games (doesn't pause the game) in SDL * mouse joystick emulation works in X11 * cassette loading by hardware registers (Ninja and Elektraglide are examples of games that load correctly now) * blank boot ATR disk image can be created in the Disk Management menu * many small fixes and major source code clean up
36 lines
832 B
Text
36 lines
832 B
Text
$NetBSD: patch-ad,v 1.3 2005/05/17 15:08:57 adam Exp $
|
|
|
|
--- configure.orig 2005-04-30 14:18:04.000000000 +0000
|
|
+++ configure
|
|
@@ -1369,7 +1369,7 @@ case "$target" in
|
|
a8_target="UNKNOWN"
|
|
;;
|
|
esac
|
|
-if [ "$a8_target" == "UNKNOWN" ]; then
|
|
+if [ "$a8_target" = "UNKNOWN" ]; then
|
|
echo
|
|
echo "Usage: configure --target=<target> <other options>"
|
|
echo
|
|
@@ -1569,11 +1569,11 @@ _ACEOF
|
|
;;
|
|
esac
|
|
|
|
-if [ "X_$CFLAGS" == "X_" ]; then
|
|
+if [ "X_$CFLAGS" = "X_" ]; then
|
|
CFLAGS="-O2 -Wall"
|
|
fi
|
|
|
|
-if [ "X_$LDFLAGS" == "X_" ]; then
|
|
+if [ "X_$LDFLAGS" = "X_" ]; then
|
|
LDFLAGS="-s"
|
|
fi
|
|
|
|
@@ -4386,7 +4386,7 @@ fi
|
|
|
|
|
|
OBJS=
|
|
-if [ "$a8_host" == "win" ]; then
|
|
+if [ "$a8_host" = "win" ]; then
|
|
|
|
as_ac_Lib=`echo "ac_cv_lib_gdi32''_main" | $as_tr_sh`
|
|
echo "$as_me:$LINENO: checking for main in -lgdi32" >&5
|