diff options
author | adam <adam> | 2006-01-20 07:38:12 +0000 |
---|---|---|
committer | adam <adam> | 2006-01-20 07:38:12 +0000 |
commit | a3eb372f87ba6bd83f597ada6524c5f4f4a5e39e (patch) | |
tree | 32726e9ab6a9456d1c2a39f1e344b1069495e23d /emulators/atari800/patches | |
parent | 679dbfab52f391968f153974de56b29ed23ae942 (diff) | |
download | pkgsrc-a3eb372f87ba6bd83f597ada6524c5f4f4a5e39e.tar.gz |
Changes 2.0.1:
Just a quick UI bugfixes release.
Changes 2.0.0:
This release brings major source code clean up, numerous bug fixes and
many great new features and important improvements. 98% of changes since
last release have been made by Piotr Fusik - admire his dedication
to Atari800 project while you will be browsing through the impressive list
of changes below.
Run-time configuration (via the .atari800.cfg file) has been improved.
All configuration options are now available in the User Interface.
Remember to use "Save configuration file" when necessary.
If you are new to Atari800, press F1 and select "Emulator Configuration"
to configure the ROM images. This can be easily done with
"Find ROM images in a directory".
DISK_DIR, ROM_DIR, EXE_DIR and STATE_DIR configuration options are no longer
supported in this version. You need to re-select your directories
using "Emulator Configuration" -> "Configure directories".
Diffstat (limited to 'emulators/atari800/patches')
-rw-r--r-- | emulators/atari800/patches/patch-aa | 20 | ||||
-rw-r--r-- | emulators/atari800/patches/patch-ab | 12 | ||||
-rw-r--r-- | emulators/atari800/patches/patch-ad | 36 |
3 files changed, 16 insertions, 52 deletions
diff --git a/emulators/atari800/patches/patch-aa b/emulators/atari800/patches/patch-aa index 107b60b541a..6c5241e2c01 100644 --- a/emulators/atari800/patches/patch-aa +++ b/emulators/atari800/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.4 2004/01/08 15:24:42 adam Exp $ +$NetBSD: patch-aa,v 1.5 2006/01/20 07:38:13 adam Exp $ ---- sound.c.orig 2003-02-24 09:33:10.000000000 +0000 -+++ sound.c -@@ -44,7 +44,7 @@ +--- sound_oss.c.orig 2005-12-28 19:22:06.000000000 +0100 ++++ sound_oss.c +@@ -39,7 +39,7 @@ + #include "pokeysnd.h" + #include "util.h" - #define DEFDSPRATE 22050 +-static const char * const dspname = "/dev/dsp"; ++static const char * const dspname = DEVOSSAUDIO; + static int dsprate = 22050; --static char *dspname = "/dev/dsp"; -+static char *dspname = DEVOSSAUDIO; - static int dsprate = DEFDSPRATE; - static int fragstofill = 0; - static int snddelay = 60; /* delay in milliseconds */ + static int sound_enabled = TRUE; diff --git a/emulators/atari800/patches/patch-ab b/emulators/atari800/patches/patch-ab index a9732e2ce67..b723d8cd7c3 100644 --- a/emulators/atari800/patches/patch-ab +++ b/emulators/atari800/patches/patch-ab @@ -1,13 +1,13 @@ -$NetBSD: patch-ab,v 1.5 2005/01/05 11:00:26 adam Exp $ +$NetBSD: patch-ab,v 1.6 2006/01/20 07:38:13 adam Exp $ ---- rt-config.c.orig 2004-11-26 18:10:29.000000000 +0000 -+++ rt-config.c -@@ -81,7 +81,7 @@ int stereo_enabled; +--- atari.c.orig 2005-11-26 21:11:19.000000000 +0100 ++++ atari.c +@@ -635,7 +635,7 @@ void Atari800_FindROMImages(const char * #endif #ifndef SYSTEM_WIDE_CFG_FILE --#define SYSTEM_WIDE_CFG_FILE "/etc/atari800.cfg" -+#define SYSTEM_WIDE_CFG_FILE PREFIX "/share/atari800/atari800.cfg" +-#define SYSTEM_WIDE_CFG_FILE "/etc/atari800.cfg" ++#define SYSTEM_WIDE_CFG_FILE PREFIX "/share/atari800/atari800.cfg" #endif static char rtconfig_filename[FILENAME_MAX]; diff --git a/emulators/atari800/patches/patch-ad b/emulators/atari800/patches/patch-ad deleted file mode 100644 index 93f09c0362c..00000000000 --- a/emulators/atari800/patches/patch-ad +++ /dev/null @@ -1,36 +0,0 @@ -$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 |