summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2011-03-06 17:35:06 +0100
committerHans Ulrich Niedermann <hun@n-dimensional.de>2011-03-07 20:57:50 +0100
commit99b7fd24c2631f030dab249f89b5a15326459fcb (patch)
tree3813fe7bd2543718388fbac659a54d436ead47c5 /configure.ac
parent02bf6022d153b9abeb513b0055510559f873da93 (diff)
downloadrasdaman-upstream-99b7fd24c2631f030dab249f89b5a15326459fcb.tar.gz
rasdaman-upstream-99b7fd24c2631f030dab249f89b5a15326459fcb.tar.xz
rasdaman-upstream-99b7fd24c2631f030dab249f89b5a15326459fcb.zip
nonrecbuild: Make "autoreconf" and "configure" run
We still need to adapt the actual make rules and vars so that an actual build might work.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b299fd4..29e9cec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,6 +10,7 @@ AM_INIT_AUTOMAKE([
foreign
no-dist-gzip
dist-xz
+subdir-objects
])
# Save original CFLAGS, CPPFLAGS, CXXFLAGS values.
@@ -59,7 +60,8 @@ dnl we prefer java
AC_PROG_JAVA_CC
AC_CHECK_PROGS([JAR_TOOL], [jar], [${am_missing_run} jar])
dnl we need bison not yacc
-AC_CHECK_PROGS(YACC, bison, [${am_missing_run} bison])
+AC_ARG_VAR([YACC], [bison executable (we need bison, not yacc)])
+AC_PATH_PROG([YACC], [bison], [${am_missing_run} bison])
# Find/use given doxygen executable
AC_ARG_VAR([DOXYGEN], [doxygen executable to build docs with])