Updated libsidplay to version 2.3.1
This commit is contained in:
parent
112a20132b
commit
16b1bfea03
5 changed files with 26 additions and 7 deletions
16
Frameworks/libsidplayfp/README.md
Normal file
16
Frameworks/libsidplayfp/README.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
update-generated.sh requires the following:
|
||||||
|
|
||||||
|
```
|
||||||
|
brew install libgcrypt xa coreutils
|
||||||
|
```
|
||||||
|
|
||||||
|
For these needs:
|
||||||
|
|
||||||
|
1) libgcrypt is required by the autoreconf process, even if it is
|
||||||
|
being configured as excluded or disabled.
|
||||||
|
2) xa is required to assemble the SID player binary objects in the
|
||||||
|
repository.
|
||||||
|
3) coreutils is required for GNU od, because BSD od as included
|
||||||
|
with macOS does not support the -w switch. The included autoconf
|
||||||
|
scripts will prefer `god` if found.
|
||||||
|
|
|
@ -51,7 +51,7 @@ extern "C"
|
||||||
#ifndef __VERSION_CC__
|
#ifndef __VERSION_CC__
|
||||||
extern const char* residfp_version_string;
|
extern const char* residfp_version_string;
|
||||||
#else
|
#else
|
||||||
const char* residfp_version_string = "2.2.0";
|
const char* residfp_version_string = "2.3.1";
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -91,6 +91,9 @@
|
||||||
/* define if the compiler supports basic C++11 syntax */
|
/* define if the compiler supports basic C++11 syntax */
|
||||||
#define HAVE_CXX11 1
|
#define HAVE_CXX11 1
|
||||||
|
|
||||||
|
/* define if the compiler supports basic C++14 syntax */
|
||||||
|
#define HAVE_CXX14 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
#define HAVE_DLFCN_H 1
|
#define HAVE_DLFCN_H 1
|
||||||
|
|
||||||
|
@ -176,7 +179,7 @@
|
||||||
#define PACKAGE_NAME "libsidplayfp"
|
#define PACKAGE_NAME "libsidplayfp"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "libsidplayfp 2.2.0"
|
#define PACKAGE_STRING "libsidplayfp 2.3.1"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "libsidplayfp"
|
#define PACKAGE_TARNAME "libsidplayfp"
|
||||||
|
@ -185,7 +188,7 @@
|
||||||
#define PACKAGE_URL "https://github.com/libsidplayfp/libsidplayfp/"
|
#define PACKAGE_URL "https://github.com/libsidplayfp/libsidplayfp/"
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "2.2.0"
|
#define PACKAGE_VERSION "2.3.1"
|
||||||
|
|
||||||
/* Define to necessary symbol if this constant uses a non-standard name on
|
/* Define to necessary symbol if this constant uses a non-standard name on
|
||||||
your system. */
|
your system. */
|
||||||
|
@ -206,7 +209,7 @@
|
||||||
#define STDC_HEADERS 1
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.2.0"
|
#define VERSION "2.3.1"
|
||||||
|
|
||||||
/* Path to VICE testsuite. */
|
/* Path to VICE testsuite. */
|
||||||
/* #undef VICE_TESTSUITE */
|
/* #undef VICE_TESTSUITE */
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
|
|
||||||
#define LIBSIDPLAYFP_VERSION_MAJ 2
|
#define LIBSIDPLAYFP_VERSION_MAJ 2
|
||||||
#define LIBSIDPLAYFP_VERSION_MIN 2
|
#define LIBSIDPLAYFP_VERSION_MIN 3
|
||||||
#define LIBSIDPLAYFP_VERSION_LEV 0
|
#define LIBSIDPLAYFP_VERSION_LEV 1
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit a16ffd1580aa32095b7e9df45795031b2e211906
|
Subproject commit 4dbd7dce6212674f75478be40057b3e6e5d9aab5
|
Loading…
Reference in a new issue