summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-12-17 22:54:33 -0500
committerDavid Thompson <dthompson2@worcester.edu>2015-12-17 22:54:33 -0500
commit4129070b6a39ffba8e7cf8860c40a831235d9f62 (patch)
tree3ec603be33d93dfde4e824d357ea9b6be9d49dc5
parent9400aa25bcd5810766d3d32405183e8d5b0f2474 (diff)
build: Add SDL2_mixer detection.
-rw-r--r--configure.ac38
-rw-r--r--sdl2/config.scm.in6
2 files changed, 43 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a91406b..46b81e0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -133,4 +133,42 @@ AC_SUBST([LIBSDL2_TTF])
AC_SUBST([LIBSDL2_TTF_PREFIX])
AC_SUBST([LIBSDL2_TTF_LIBDIR])
+# SDL2_mixer
+AC_ARG_WITH([libsdl2_mixer],
+ AS_HELP_STRING([--with-libsdl2-mixer],
+ [Build with the SDL2_mixer library]),
+ [], [with_libsdl2_mixer=yes])
+
+if test "x$with_libsdl2_mixer" = "xyes"; then
+ PKG_CHECK_MODULES([SDL2_mixer], [SDL2_mixer])
+fi
+
+LIBSDL2_MIXER="libSDL2_mixer"
+LIBSDL2_MIXER_LIBDIR="no"
+LIBSDL2_MIXER_PREFIX="no"
+
+AC_ARG_WITH([libsdl2-mixer-prefix],
+ [AS_HELP_STRING([--with-libsdl2-mixer-prefix=DIR],
+ [search for SDL2_mixer in DIR])],
+ [case "$withval" in
+ yes|no)
+ ;;
+ *)
+ LIBSDL2_MIXER="$withval/lib/libSDL2_mixer"
+ LIBSDL2_MIXER_PREFIX="$withval"
+ LIBSDL2_MIXER_LIBDIR="$withval/lib"
+ ;;
+ esac])
+
+AM_CONDITIONAL([WITH_LIBSDL2_MIXER], [test "x$with_libsdl2_mixer" = "xyes"])
+
+if test "x$with_libsdl2_mixer" = "xyes"; then
+ AC_MSG_CHECKING([for libSDL2_mixer shared library name])
+ AC_MSG_RESULT([$LIBSDL2_MIXER])
+fi
+
+AC_SUBST([LIBSDL2_MIXER])
+AC_SUBST([LIBSDL2_MIXER_PREFIX])
+AC_SUBST([LIBSDL2_MIXER_LIBDIR])
+
AC_OUTPUT
diff --git a/sdl2/config.scm.in b/sdl2/config.scm.in
index f43a2e7..fb6194a 100644
--- a/sdl2/config.scm.in
+++ b/sdl2/config.scm.in
@@ -1,7 +1,8 @@
(define-module (sdl2 config)
#:export (%libsdl2
%libsdl2-image
- %libsdl2-ttf))
+ %libsdl2-ttf
+ %libsdl2-mixer))
(define %libsdl2
"@LIBSDL2@")
@@ -11,3 +12,6 @@
(define %libsdl2-ttf
"@LIBSDL2_TTF@")
+
+(define %libsdl2-mixer
+ "@LIBSDL2_MIXER@")