diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-06-27 00:33:19 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-06-27 00:33:19 +0000 |
commit | 8f786b2f02c225d41d397aaf7f826623eb1b7181 (patch) | |
tree | 3ac75c2d4267b301c7ba18ea848e8c699cab06b3 /configure.ac | |
parent | 6589b8f9ac0f57dc543b255d66b0d1b5a242b1e2 (diff) | |
download | mana-8f786b2f02c225d41d397aaf7f826623eb1b7181.tar.gz mana-8f786b2f02c225d41d397aaf7f826623eb1b7181.tar.bz2 mana-8f786b2f02c225d41d397aaf7f826623eb1b7181.tar.xz mana-8f786b2f02c225d41d397aaf7f826623eb1b7181.zip |
Fixed initialisation of Being*. The problem is that the attack() function is
since recently being called with up to 8 directions while it is written to only
handle 4.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index cef1a5eb..efad0033 100755 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT([The Mana World], [0.0.13], [umperio@users.sourceforge.net], [tmw]) +AC_INIT([The Mana World], [0.0.14], [umperio@users.sourceforge.net], [tmw]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS @@ -71,7 +71,7 @@ fi # FIND_PATH(programm-name, variable-name, list of directories, # if-not-found, test-parameter) -AC_DEFUN(FIND_PATH, +AC_DEFUN([FIND_PATH], [ AC_MSG_CHECKING([for $1]) if test -n "$$2"; then |