From d2fe2937fdceb2308a81c7ec87987866b8f019e8 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 3 May 2003 20:15:25 +0000 Subject: [PATCH] Kyle Davenport - Sat, 19 Apr 2003 17:13:31 -0500 * Added .la files to the development RPM, fixing RPM build on RedHat 8 --- CHANGES | 4 ++++ SDL_mixer.h | 2 +- SDL_mixer.spec.in | 1 + configure.in | 6 +++--- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index f326de31..ba43df72 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +1.2.6: +Kyle Davenport - Sat, 19 Apr 2003 17:13:31 -0500 + * Added .la files to the development RPM, fixing RPM build on RedHat 8 + 1.2.5: Darrell Walisser - Tue Mar 4 09:24:01 PST 2003 * Worked around MacOS X deadlock between CoreAudio and QuickTime diff --git a/SDL_mixer.h b/SDL_mixer.h index 6b318580..3862cd3b 100644 --- a/SDL_mixer.h +++ b/SDL_mixer.h @@ -41,7 +41,7 @@ extern "C" { */ #define MIX_MAJOR_VERSION 1 #define MIX_MINOR_VERSION 2 -#define MIX_PATCHLEVEL 5 +#define MIX_PATCHLEVEL 6 /* This macro can be used to fill a version structure with the compile-time * version of the SDL_mixer library. diff --git a/SDL_mixer.spec.in b/SDL_mixer.spec.in index 378b2263..a34b70b0 100644 --- a/SDL_mixer.spec.in +++ b/SDL_mixer.spec.in @@ -51,6 +51,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root) %{prefix}/lib/lib*.a +%{prefix}/lib/lib*.la %{prefix}/lib/lib*.so %{prefix}/include/SDL/ diff --git a/configure.in b/configure.in index 029c89c4..40c39ee8 100644 --- a/configure.in +++ b/configure.in @@ -13,9 +13,9 @@ dnl Set various version strings - taken gratefully from the GTk sources MAJOR_VERSION=1 MINOR_VERSION=2 -MICRO_VERSION=5 -INTERFACE_AGE=3 -BINARY_AGE=5 +MICRO_VERSION=6 +INTERFACE_AGE=4 +BINARY_AGE=6 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION AC_SUBST(MAJOR_VERSION)