diff options
author | Derick Huth <derickhuth@gmail.com> | 2016-02-10 11:13:08 -0700 |
---|---|---|
committer | Derick Huth <derickhuth@gmail.com> | 2016-02-10 11:13:08 -0700 |
commit | 1dd03ee01bff2a70e758ce984476527f3ff42c68 (patch) | |
tree | 9731867c7019ec9b6ee111c8fa9f92a92119b5ec /configure.ac | |
parent | 4631ad76927d433da5d55c3c373a1dfd0f74c9d4 (diff) | |
parent | d68532f2f3ba332199f84818cb047d69a3f33588 (diff) | |
download | chill-1dd03ee01bff2a70e758ce984476527f3ff42c68.tar.gz chill-1dd03ee01bff2a70e758ce984476527f3ff42c68.tar.bz2 chill-1dd03ee01bff2a70e758ce984476527f3ff42c68.zip |
Merge pull request #8 from dhuth/master
w/ python test suite
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index c8296b4..1dfedbc 100644 --- a/configure.ac +++ b/configure.ac @@ -90,9 +90,11 @@ AS_IF([test "x$interface_lang" == xdefault],[ AS_IF([test "x$enable_cuda" == xyes],[ AC_SUBST([use_python],[yes]) AC_SUBST([use_lua],[no]) + AC_SUBST([interface_lang],[python]) ],[ AC_SUBST([use_python],[yes]) - AC_SUBST([use_lua],[no])])],[]) + AC_SUBST([use_lua],[no]) + AC_SUBST([interface_lang],[python])])],[]) AS_IF([test "x$interface_lang" == xlua],[ AC_SUBST([use_python],[no]) @@ -101,8 +103,8 @@ AS_IF([test "x$interface_lang" == xpython],[ AC_SUBST([use_python],[yes]) AC_SUBST([use_lua],[no])],[]) -AM_CONDITIONAL([PYTHON_OPT],[test "x$use_python" == xyes]) -AM_CONDITIONAL([LUA_OPT],[test "x$use_lua" == xyes]) +AM_CONDITIONAL([PYTHON_OPT],[test "x$use_python" = xyes]) +AM_CONDITIONAL([LUA_OPT],[test "x$use_lua" = xyes]) AC_CONFIG_HEADERS([include/config.h]) AC_CONFIG_FILES([Makefile]) |