comparison configure.ac @ 991:34259889b2b1 dev-0_9_1

Add support for libSIDPlay-FP v1.1.x.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 11 Oct 2013 14:37:20 +0300
parents ea3889c40011
children 9feda7db56d7
comparison
equal deleted inserted replaced
990:15995c18e410 991:34259889b2b1
20 dnl *** 20 dnl ***
21 AH_TEMPLATE([HAVE_SONG_POSITION], [Define if you have XMMS patched with the songpos patch.]) 21 AH_TEMPLATE([HAVE_SONG_POSITION], [Define if you have XMMS patched with the songpos patch.])
22 AH_TEMPLATE([HAVE_SIDPLAY1], [Define if you have and want to use libSIDPlay 1.]) 22 AH_TEMPLATE([HAVE_SIDPLAY1], [Define if you have and want to use libSIDPlay 1.])
23 AH_TEMPLATE([HAVE_SIDPLAY2], [Define if you have and want to use libSIDPlay 2.]) 23 AH_TEMPLATE([HAVE_SIDPLAY2], [Define if you have and want to use libSIDPlay 2.])
24 AH_TEMPLATE([HAVE_SIDPLAYFP], [Define if you have and want to use libSIDPlay2-FP http://sourceforge.net/projects/sidplay-residfp/]) 24 AH_TEMPLATE([HAVE_SIDPLAYFP], [Define if you have and want to use libSIDPlay2-FP http://sourceforge.net/projects/sidplay-residfp/])
25 AH_TEMPLATE([HAVE_SIDPLAYFP_V1], [Define if you are using v1.0.0 API of libSIDPlay2-FP.]) 25 AH_TEMPLATE([HAVE_SIDPLAYFP_V10], [Define if you are using v1.0.x API of libSIDPlay2-FP.])
26 AH_TEMPLATE([HAVE_SIDPLAYFP_V11], [Define if you are using v1.1.x API of libSIDPlay2-FP.])
26 AH_TEMPLATE([HAVE_THEMETUNE], [Define if you want to build code to play XMMS-SID theme SID-tune. The tune needs to be installed too, though.]) 27 AH_TEMPLATE([HAVE_THEMETUNE], [Define if you want to build code to play XMMS-SID theme SID-tune. The tune needs to be installed too, though.])
27 AH_TEMPLATE([DEBUG], [Define if you wish to enable debug output to terminal.]) 28 AH_TEMPLATE([DEBUG], [Define if you wish to enable debug output to terminal.])
28 29
29 30
30 dnl *** 31 dnl ***
132 if test "x$xs_have_sidplayfp" = "xyes"; then 133 if test "x$xs_have_sidplayfp" = "xyes"; then
133 AC_DEFINE([HAVE_SIDPLAYFP]) 134 AC_DEFINE([HAVE_SIDPLAYFP])
134 AC_DEFINE([HAVE_HARDSID_BUILDER]) 135 AC_DEFINE([HAVE_HARDSID_BUILDER])
135 AC_DEFINE([HAVE_RESID_BUILDER]) 136 AC_DEFINE([HAVE_RESID_BUILDER])
136 AC_DEFINE([HAVE_RESID_FP_BUILDER]) 137 AC_DEFINE([HAVE_RESID_FP_BUILDER])
137 if test "x$xs_pkg_sidplayfp_v1" = "xyes"; then 138 if test "x$xs_pkg_sidplayfp_v10" = "xyes"; then
138 AC_DEFINE([HAVE_SIDPLAYFP_V1]) 139 AC_DEFINE([HAVE_SIDPLAYFP_V10])
140 fi
141 if test "x$xs_pkg_sidplayfp_v11" = "xyes"; then
142 AC_DEFINE([HAVE_SIDPLAYFP_V11])
139 fi 143 fi
140 dnl fi 144 dnl fi
141 else 145 else
142 xs_have_sidplay2_api="" 146 xs_have_sidplay2_api=""
143 XS_ARG_WITH([sidplay2], [libSIDPlay2], [XS_PATH_LIBSIDPLAY2]) 147 XS_ARG_WITH([sidplay2], [libSIDPlay2], [XS_PATH_LIBSIDPLAY2])
224 libSIDPlay 2-FP support : $xs_have_sidplayfp 228 libSIDPlay 2-FP support : $xs_have_sidplayfp
225 XMMS-SID theme SID-tune : $xs_have_themetune 229 XMMS-SID theme SID-tune : $xs_have_themetune
226 Translations (i18n/nls) : $USE_NLS 230 Translations (i18n/nls) : $USE_NLS
227 Debugging enabled : $xs_enable_debug 231 Debugging enabled : $xs_enable_debug
228 ]) 232 ])
229
230 if test "x$xs_pkg_sidplayfp_v1" = "xyes"; then
231 echo ""
232 echo "WARNING! You seem to be using libSIDPlayFP v1.x, which is, at the"
233 echo "time of this release, still in alpha state. The API may not be compatible."
234 echo "If you experience any problems, downgrade to libSIDPlayFP 0.3.7 or 0.3.5."
235 echo ""
236 echo "Or check if there are any newer releases of XMMS-SID that might support"
237 echo "the newer versions of libSIDPlayFP."
238 echo ""
239 echo "Or just use plain old libSIDPlay2."
240 fi