diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-06-03 23:29:52 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-06-03 23:29:52 +0000 |
commit | 3e9b7398390a7bc395f9ecfd7ac05d4f04de8cb6 (patch) | |
tree | 790860d2941e3f68d28ae9248ed3bed3f57b181e /devel/allegro/patches | |
parent | 3e3b354121eaad8c88ee05d39baffbc2e5094969 (diff) | |
download | pkgsrc-3e9b7398390a7bc395f9ecfd7ac05d4f04de8cb6.tar.gz |
Update devel/allegro to 4.1.14.
Changes:
# Fixed a couple of problems in dat2c.
# Polished the MacOS X package builder script.
# Added a Jack sound driver to the Unix port.
# Added support for debugging with DMalloc under Unix.
# Fixed detection of the ALSA 1.0 MIDI driver.
# Fixed compilation with --enable-color8=no under Unix.
# Now it is possible to link against the Allegro framework with the
allegro-config script under MacOS X.
# Fixed a bug in fixbundle with 32bpp icons and alpha channel under MacOS X.
# Restored the compensation code for end-of-frame in the FLI player.
Diffstat (limited to 'devel/allegro/patches')
-rw-r--r-- | devel/allegro/patches/patch-aa | 26 | ||||
-rw-r--r-- | devel/allegro/patches/patch-ab | 30 | ||||
-rw-r--r-- | devel/allegro/patches/patch-ac | 13 |
3 files changed, 4 insertions, 65 deletions
diff --git a/devel/allegro/patches/patch-aa b/devel/allegro/patches/patch-aa index 5f31ac07323..8b0d6dbc30c 100644 --- a/devel/allegro/patches/patch-aa +++ b/devel/allegro/patches/patch-aa @@ -1,26 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/04/05 05:02:42 xtraeme Exp $ +$NetBSD: patch-aa,v 1.2 2004/06/03 23:29:53 xtraeme Exp $ ---- makefile.in.orig Sun Jun 29 16:27:00 2003 -+++ makefile.in Wed Jul 2 13:50:49 2003 -@@ -59,7 +59,7 @@ - - INCLUDES = - DEFS = @DEFS@ -Iinclude -Iinclude/allegro -I$(srcdir)/include -I$(srcdir)/include/allegro -I. --CPPFLAGS = @CPPFLAGS@ -+CPPFLAGS = @CPPFLAGS@ -DDEVOSSAUDIO=\"${DEVOSSAUDIO}\" - LDFLAGS = @LDFLAGS@ - PROG_LDFLAGS = @PROG_LDFLAGS@ - COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) -@@ -82,7 +82,7 @@ - COMPILE_S_PROGRAM = $(@COMPILE_S_PROGRAM@) - - LIBALLEG = @LIBALLEG@ --LINK_LIBALLEG = @LINK_LIBALLEG@ -+LINK_LIBALLEG = @LINK_LIBALLEG@ ${LIBOSSAUDIO} - ALLEGRO_LIB_TARGETS = @ALLEGRO_LIB_TARGETS@ - ALLEGRO_MODULE_TARGETS = @ALLEGRO_MODULE_TARGETS@ - -@@ -417,17 +417,7 @@ +--- makefile.in.orig 2004-06-04 01:24:37.000000000 +0200 ++++ makefile.in 2004-06-04 01:25:15.000000000 +0200 +@@ -472,17 +472,7 @@ fi $(mkinstalldirs) $(DESTDIR)$(bindir) @echo Installing allegro-config to $(DESTDIR)$(bindir) diff --git a/devel/allegro/patches/patch-ab b/devel/allegro/patches/patch-ab deleted file mode 100644 index 325714be295..00000000000 --- a/devel/allegro/patches/patch-ab +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-ab,v 1.1.1.1 2004/04/05 05:02:42 xtraeme Exp $ - ---- src/unix/uoss.c.orig Sun Jun 29 16:27:04 2003 -+++ src/unix/uoss.c Wed Jul 2 13:25:43 2003 -@@ -176,6 +176,8 @@ - _mix_some_samples((unsigned long) oss_bufdata, 0, oss_signed); - } - } -+ -+ yield_timeslice(); - } - - -@@ -191,7 +193,7 @@ - - ustrzcpy(_oss_driver, sizeof(_oss_driver), get_config_string(uconvert_ascii("sound", tmp1), - uconvert_ascii("oss_driver", tmp2), -- uconvert_ascii("/dev/dsp", tmp3))); -+ uconvert_ascii(DEVOSSAUDIO, tmp3))); - - ustrzcpy(_oss_mixer_driver, sizeof(_oss_mixer_driver), get_config_string(uconvert_ascii("sound", tmp1), - uconvert_ascii("oss_mixer_driver", tmp2), -@@ -583,6 +585,7 @@ - p[i] ^= 0x80; - } - -+ yield_timeslice(); - return 1; - } - diff --git a/devel/allegro/patches/patch-ac b/devel/allegro/patches/patch-ac deleted file mode 100644 index 08385384e4d..00000000000 --- a/devel/allegro/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.1.1.1 2004/04/05 05:02:42 xtraeme Exp $ - ---- setup/setup.c.orig Sun Jun 29 16:27:02 2003 -+++ setup/setup.c Wed Jul 2 13:02:28 2003 -@@ -211,7 +211,7 @@ - #endif - - #ifdef DIGI_OSS -- { "oss_driver", param_str, "", "/dev/dsp", NULL, "Drv:", "", NULL, "Name of the driver (e.g. /dev/dsp)" }, -+ { "oss_driver", param_str, "", DEVOSSAUDIO, NULL, "Drv:", "", NULL, "Name of the driver (e.g. /dev/dsp)" }, - { "oss_numfrags", param_int, "", "-1", &_oss_numfrags, "NumFr:", NULL, NULL, "Number of fragments (use 2, other values make little difference)" }, - { "oss_fragsize", param_num, "", "-1", &_oss_fragsize, "Siz:", NULL, NULL, "Size of fragment (small values -- choppy sound, large values -- delayed sound)" }, - #endif |