1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 06:22:58 +02:00

Update configure.ac for modules.

This commit is contained in:
James Crook
2018-04-06 10:04:25 +01:00
parent 2004aa2be2
commit b24dae713b
5 changed files with 199 additions and 6 deletions

View File

@@ -38,7 +38,7 @@ AC_ARG_ENABLE(debug,
debug_preference="no")
AC_ARG_WITH(wx-version,
[AS_HELP_STRING([--with-wx-version],[override default wxWidgets version [2.6,2.8]])],
[AS_HELP_STRING([--with-wx-version],[override default wxWidgets version [3.1,3.0]])],
wx_preference="--version=$withval",
wx_preference="")
@@ -48,7 +48,7 @@ AC_ARG_WITH(wx-config,
wx_config="")
dnl wxWidgets -- we assume that if wx-config is found, wxWidgets is successfully installed.
AC_PATH_PROGS(WX_CONFIG, wx-config wx-config-3.0, no, $PATH:/usr/local/bin )
AC_PATH_PROGS(WX_CONFIG, wx-config wx-config-3.1, no, $PATH:/usr/local/bin )
if [[ "$WX_CONFIG" = "no" ]] ; then
AC_MSG_ERROR("Could not find wx-config: is wxWidgets installed? is wx-config in your path?")
fi