Skip to content

Commit cfa827a

Browse files
committed
Updated to version 2.0.4
1 parent c02f808 commit cfa827a

File tree

10 files changed

+123
-115
lines changed

10 files changed

+123
-115
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
2.0.3:
1+
2.0.4:
22
Ozkan Sezer - Wed, 10 Oct 2018 14:56:10
33
* Removed smpeg support for mp3 music, now that it's replaced by libmpg123
44
Ozkan Sezer - Sun, 07 Oct 2018 08:50:02
55
* Fixed mp3 mad decoder to skip tags, which otherwise would lead to crashes
66
Ozkan Sezer - Fri, 15 Jun 2018 05:32:56
77
* Added support for Opus music playback using opusfile library
8+
9+
2.0.3:
810
Sam Lantinga - Thu, Mar 1, 2018 9:06:58 AM
911
* Fixed regression where Mix_Init() would return 0 for available music formats
1012

SDL_mixer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extern "C" {
3838
*/
3939
#define SDL_MIXER_MAJOR_VERSION 2
4040
#define SDL_MIXER_MINOR_VERSION 0
41-
#define SDL_MIXER_PATCHLEVEL 3
41+
#define SDL_MIXER_PATCHLEVEL 4
4242

4343
/* This macro can be used to fill a version structure with the compile-time
4444
* version of the SDL_mixer library.

VisualC/Version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2828
//
2929

3030
VS_VERSION_INFO VERSIONINFO
31-
FILEVERSION 2,0,3,0
32-
PRODUCTVERSION 2,0,3,0
31+
FILEVERSION 2,0,4,0
32+
PRODUCTVERSION 2,0,4,0
3333
FILEFLAGSMASK 0x3fL
3434
#ifdef _DEBUG
3535
FILEFLAGS 0x1L
@@ -46,12 +46,12 @@ BEGIN
4646
BEGIN
4747
VALUE "CompanyName", "\0"
4848
VALUE "FileDescription", "SDL_mixer\0"
49-
VALUE "FileVersion", "2, 0, 3, 0\0"
49+
VALUE "FileVersion", "2, 0, 4, 0\0"
5050
VALUE "InternalName", "SDL_mixer\0"
5151
VALUE "LegalCopyright", "Copyright � 2018 Sam Lantinga\0"
5252
VALUE "OriginalFilename", "SDL_mixer.dll\0"
5353
VALUE "ProductName", "Simple DirectMedia Layer\0"
54-
VALUE "ProductVersion", "2, 0, 3, 0\0"
54+
VALUE "ProductVersion", "2, 0, 4, 0\0"
5555
END
5656
END
5757
BLOCK "VarFileInfo"

Xcode/Info-Framework.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.3</string>
18+
<string>2.0.4</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.0.3</string>
20+
<string>2.0.4</string>
2121
</dict>
2222
</plist>

Xcode/SDL_mixer.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -640,8 +640,8 @@
640640
isa = XCBuildConfiguration;
641641
buildSettings = {
642642
COMBINE_HIDPI_IMAGES = YES;
643-
DYLIB_COMPATIBILITY_VERSION = 1;
644-
DYLIB_CURRENT_VERSION = 1.1.0;
643+
DYLIB_COMPATIBILITY_VERSION = 3.0.0;
644+
DYLIB_CURRENT_VERSION = 3.2.0;
645645
FRAMEWORK_SEARCH_PATHS = (
646646
"$(inherited)",
647647
"\"$(SRCROOT)/Frameworks\"",
@@ -682,8 +682,8 @@
682682
isa = XCBuildConfiguration;
683683
buildSettings = {
684684
COMBINE_HIDPI_IMAGES = YES;
685-
DYLIB_COMPATIBILITY_VERSION = 1;
686-
DYLIB_CURRENT_VERSION = 1.1.0;
685+
DYLIB_COMPATIBILITY_VERSION = 3.0.0;
686+
DYLIB_CURRENT_VERSION = 3.2.0;
687687
FRAMEWORK_SEARCH_PATHS = (
688688
"$(inherited)",
689689
"\"$(SRCROOT)/Frameworks\"",

aclocal.m4

Lines changed: 93 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -7371,99 +7371,6 @@ _LT_EOF
73717371
esac
73727372
])
73737373

7374-
##############################################################################
7375-
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
7376-
#
7377-
# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
7378-
# Written by Scott James Remnant, 2004.
7379-
#
7380-
# This file is free software; the Free Software Foundation gives
7381-
# unlimited permission to copy and/or distribute it, with or without
7382-
# modifications, as long as this notice is preserved.
7383-
7384-
# serial 4 lt~obsolete.m4
7385-
7386-
# These exist entirely to fool aclocal when bootstrapping libtool.
7387-
#
7388-
# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
7389-
# which have later been changed to m4_define as they aren't part of the
7390-
# exported API, or moved to Autoconf or Automake where they belong.
7391-
#
7392-
# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
7393-
# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
7394-
# using a macro with the same name in our local m4/libtool.m4 it'll
7395-
# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
7396-
# and doesn't know about Autoconf macros at all.)
7397-
#
7398-
# So we provide this file, which has a silly filename so it's always
7399-
# included after everything else. This provides aclocal with the
7400-
# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
7401-
# because those macros already exist, or will be overwritten later.
7402-
# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
7403-
#
7404-
# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
7405-
# Yes, that means every name once taken will need to remain here until
7406-
# we give up compatibility with versions before 1.7, at which point
7407-
# we need to keep only those names which we still refer to.
7408-
7409-
# This is to help aclocal find these macros, as it can't see m4_define.
7410-
AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
7411-
7412-
m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
7413-
m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
7414-
m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
7415-
m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
7416-
m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
7417-
m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
7418-
m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
7419-
m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
7420-
m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
7421-
m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
7422-
m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
7423-
m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
7424-
m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
7425-
m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
7426-
m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
7427-
m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
7428-
m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
7429-
m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
7430-
m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
7431-
m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
7432-
m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
7433-
m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
7434-
m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
7435-
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
7436-
m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
7437-
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
7438-
m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
7439-
m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
7440-
m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
7441-
m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
7442-
m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
7443-
m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
7444-
m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
7445-
m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
7446-
m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
7447-
m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
7448-
m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
7449-
m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
7450-
m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
7451-
m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
7452-
m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
7453-
m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
7454-
m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])])
7455-
m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
7456-
m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
7457-
m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
7458-
m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
7459-
m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
7460-
m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
7461-
m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
7462-
m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
7463-
m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
7464-
m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
7465-
m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
7466-
m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
74677374
##############################################################################
74687375
# Helper functions for option handling. -*- Autoconf -*-
74697376
#
@@ -7984,6 +7891,99 @@ _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
79847891
_LT_DECL(, macro_revision, 0)
79857892
])
79867893
7894+
##############################################################################
7895+
# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
7896+
#
7897+
# Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
7898+
# Written by Scott James Remnant, 2004.
7899+
#
7900+
# This file is free software; the Free Software Foundation gives
7901+
# unlimited permission to copy and/or distribute it, with or without
7902+
# modifications, as long as this notice is preserved.
7903+
7904+
# serial 4 lt~obsolete.m4
7905+
7906+
# These exist entirely to fool aclocal when bootstrapping libtool.
7907+
#
7908+
# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
7909+
# which have later been changed to m4_define as they aren't part of the
7910+
# exported API, or moved to Autoconf or Automake where they belong.
7911+
#
7912+
# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
7913+
# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
7914+
# using a macro with the same name in our local m4/libtool.m4 it'll
7915+
# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
7916+
# and doesn't know about Autoconf macros at all.)
7917+
#
7918+
# So we provide this file, which has a silly filename so it's always
7919+
# included after everything else. This provides aclocal with the
7920+
# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
7921+
# because those macros already exist, or will be overwritten later.
7922+
# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
7923+
#
7924+
# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
7925+
# Yes, that means every name once taken will need to remain here until
7926+
# we give up compatibility with versions before 1.7, at which point
7927+
# we need to keep only those names which we still refer to.
7928+
7929+
# This is to help aclocal find these macros, as it can't see m4_define.
7930+
AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
7931+
7932+
m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
7933+
m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
7934+
m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
7935+
m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
7936+
m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
7937+
m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
7938+
m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
7939+
m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
7940+
m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
7941+
m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
7942+
m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
7943+
m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
7944+
m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
7945+
m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
7946+
m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
7947+
m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
7948+
m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
7949+
m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
7950+
m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
7951+
m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
7952+
m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
7953+
m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
7954+
m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
7955+
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
7956+
m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
7957+
m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
7958+
m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
7959+
m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
7960+
m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
7961+
m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
7962+
m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
7963+
m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
7964+
m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
7965+
m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
7966+
m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
7967+
m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
7968+
m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
7969+
m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
7970+
m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
7971+
m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
7972+
m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
7973+
m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
7974+
m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])])
7975+
m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
7976+
m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
7977+
m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
7978+
m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
7979+
m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
7980+
m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
7981+
m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
7982+
m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
7983+
m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
7984+
m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
7985+
m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
7986+
m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
79877987
# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
79887988
#
79897989
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,9 +2445,9 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
24452445
#
24462446
MAJOR_VERSION=2
24472447
MINOR_VERSION=0
2448-
MICRO_VERSION=3
2449-
INTERFACE_AGE=1
2450-
BINARY_AGE=3
2448+
MICRO_VERSION=4
2449+
INTERFACE_AGE=2
2450+
BINARY_AGE=4
24512451
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
24522452

24532453

configure.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ dnl Set various version strings - taken gratefully from the GTk sources
1414
#
1515
MAJOR_VERSION=2
1616
MINOR_VERSION=0
17-
MICRO_VERSION=3
18-
INTERFACE_AGE=1
19-
BINARY_AGE=3
17+
MICRO_VERSION=4
18+
INTERFACE_AGE=2
19+
BINARY_AGE=4
2020
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
2121

2222
AC_SUBST(MAJOR_VERSION)

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
libsdl2-mixer (2.0.4) UNRELEASED; urgency=medium
2+
3+
* Updated to version 2.0.4
4+
5+
-- Sam Lantinga <slouken@libsdl.org> Fri, 26 Oct 2018 11:01:42 -0800
6+
17
libsdl2-mixer (2.0.3) UNRELEASED; urgency=medium
28

39
* Updated to version 2.0.3

version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
99
//
1010

1111
VS_VERSION_INFO VERSIONINFO
12-
FILEVERSION 2,0,3,0
13-
PRODUCTVERSION 2,0,3,0
12+
FILEVERSION 2,0,4,0
13+
PRODUCTVERSION 2,0,4,0
1414
FILEFLAGSMASK 0x3fL
1515
FILEFLAGS 0x0L
1616
FILEOS 0x40004L
@@ -23,12 +23,12 @@ BEGIN
2323
BEGIN
2424
VALUE "CompanyName", "\0"
2525
VALUE "FileDescription", "SDL_mixer\0"
26-
VALUE "FileVersion", "2, 0, 3, 0\0"
26+
VALUE "FileVersion", "2, 0, 4, 0\0"
2727
VALUE "InternalName", "SDL_mixer\0"
2828
VALUE "LegalCopyright", "Copyright � 2018 Sam Lantinga\0"
2929
VALUE "OriginalFilename", "SDL_mixer.dll\0"
3030
VALUE "ProductName", "Simple DirectMedia Layer\0"
31-
VALUE "ProductVersion", "2, 0, 3, 0\0"
31+
VALUE "ProductVersion", "2, 0, 4, 0\0"
3232
END
3333
END
3434
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)