diff options
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/configure.ac b/configure.ac deleted file mode 100755 index 332a6df..0000000 --- a/configure.ac +++ /dev/null @@ -1,44 +0,0 @@ -AC_PREREQ(2.52) - -AC_INIT([alsa-scenario-scn-data-0-codec], [1.0]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign]) -AC_CONFIG_HEADERS([config.h:config.hin]) - -AC_CONFIG_MACRO_DIR([m4]) - -# Checks for programs. -PLATFORM_INIT - -AC_ARG_ENABLE(aquila, AC_HELP_STRING([--enable-aquila], [using enable-aquila]), - [ - case "${enableval}" in - yes) IS_AQUILA=yes ;; - no) IS_AQUILA=no ;; - *) AC_MSG_ERROR(bad value ${enableval} for --enable-aquila) ;; - esac - ], - [IS_AQUILA=yes]) -AM_CONDITIONAL([IS_AQUILA], [test "x$IS_AQUILA" = "xyes"]) - -AC_ARG_ENABLE(sdk, AC_HELP_STRING([--enable-sdk], [sdk build]), - [ - case "${enableval}" in - yes) IS_SDK=yes ;; - no) IS_SDK=no ;; - *) AC_MSG_ERROR(bad value ${enableval} for --enable-sdk) ;; - esac - ], - [IS_SDK=no]) -AM_CONDITIONAL([IS_SDK], [test "x$IS_SDK" = "xyes"]) - -# Checks for libraries. -#PKG_CHECK_MODULES(ASCN, libascenario) - -AC_CONFIG_FILES([ -Makefile -files/Makefile -files/default/Makefile -files/mc1n2/Makefile -files/mfld/Makefile -]) -AC_OUTPUT |