Branch
Hash :
94046104
Author :
Thomas de Grivel
Date :
2020-02-24T15:19:27
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
AC_INIT(rtaudio/float_sys.pw13p.cc)
AM_INIT_AUTOMAKE(pw13_stk-0,1.0.0)
AC_CANONICAL_HOST
AC_MSG_CHECKING([for native Win32])
case "$host" in
*-*-mingw*)
if test `uname -s` != Linux; then
os_win32=yes
AC_DEFINE(WIN32)
fi
;;
*)
os_win32=no
;;
esac
AC_MSG_RESULT([$os_win32])
AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes")
if test "$os_win32" = "yes"; then
if test x$enable_static = xyes -o x$enable_static = x; then
AC_MSG_WARN([Disabling static library build, must build as DLL on Windows.])
enable_static=no
fi
if test x$enable_shared = xno; then
AC_MSG_WARN([Enabling shared library build, must build as DLL on Windows.])
fi
enable_shared=yes
fi
AC_LANG([C++])
AC_CHECK_HEADER([stk/RtAudio.h])
stk_CFLAGS=''
stk_LIBS='-lstk'
PKG_CHECK_MODULES(pw13, libpw13-0)
#PKG_CHECK_MODULES(stk, libstk-4.2.1)
PW13_CFLAGS="$pw13_CFLAGS $stk_CFLAGS"
PW13_LIBS="$pw13_LIBS $stk_LIBS"
AC_SUBST(PW13_CFLAGS)
AC_SUBST(PW13_LIBS)
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)
dnl AC_CONFIG_SUBDIRS(stk-4.2.1)
AC_MSG_CHECKING([if we want debugging])
AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug], [Activate debugging]),
[if test "x$debug" = x; then debug=yes; fi], [debug=no])
if test "x$debug" = xyes; then
export CFLAGS='-W -Wall -O0 -g'
else
debug=no
export CFLAGS='-W -Wall -O3'
fi
AC_MSG_RESULT([$debug])
AC_OUTPUT([
Makefile
rtaudio/Makefile
])