diff options
author | Petteri Räty <petsku@petteriraty.eu> | 2010-08-30 01:16:10 +0300 |
---|---|---|
committer | Petteri Räty <petsku@petteriraty.eu> | 2010-08-30 01:27:57 +0300 |
commit | 6ca2a52a9c7dcf574ba0ed54946a1e33e4580d2b (patch) | |
tree | dc3d40d70b7a83dd578323ed14a73d406b0e98d2 /configure.ac | |
parent | Fix output supression escapes (diff) | |
download | libbash-6ca2a52a9c7dcf574ba0ed54946a1e33e4580d2b.tar.gz libbash-6ca2a52a9c7dcf574ba0ed54946a1e33e4580d2b.tar.bz2 libbash-6ca2a52a9c7dcf574ba0ed54946a1e33e4580d2b.zip |
Add ability to dynamically execute builtins
Builtins can now be executed with a string lookup. There's a static
function in cppbash_builtin for executing builtins.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index de60050..7b361f9 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_INIT([libbash],[0.1],[powerofazure@gmail.com]) AM_INIT_AUTOMAKE([parallel-tests subdir-objects]) AC_PROG_CXX LT_INIT -AX_BOOST_BASE +AX_BOOST_BASE(1.43.0,[:],[AC_MSG_ERROR([Needed boost not found])]) AC_PATH_PROG([JAVA],[java],"no") if test "$JAVA" = "no"; then AC_MSG_ERROR([No java executable found]) |