diff options
author | Adam Chlipala <adamc@csail.mit.edu> | 2015-12-31 11:50:53 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@csail.mit.edu> | 2015-12-31 11:50:53 -0500 |
commit | 0ef442f42279b3637e91fff45c45048cd1b594a1 (patch) | |
tree | 5e62fc5655b3cdb23e2bb22199f3850bd003b7b9 | |
parent | 51fabece10b4f35fb8f8490ff1fd97ca68e7ad51 (diff) | |
parent | 6155dea6b97d066f148439bcc93134bc9f566a11 (diff) |
Merge pull request #6 from JasonGross/autoconf
Move some things around in configure.ac
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1b7e8aa5..9f7aebbc 100644 --- a/configure.ac +++ b/configure.ac @@ -5,10 +5,10 @@ AC_USE_SYSTEM_EXTENSIONS # automake 1.12 requires this, but automake 1.11 doesn't recognize it m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) +AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign no-define]) AC_PROG_CC() AC_PROG_LIBTOOL() -AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([include/urweb/config.h]) AX_PTHREAD([echo >/dev/null], [echo "Your C compiler does not support POSIX threads."; exit 1]) @@ -160,7 +160,7 @@ Ur/Web configuration: include directory: INCLUDE $INCLUDE site-lisp directory: SITELISP $SITELISP C compiler: CC $CC - Extra CC args: CCARGS $CCARGS + Extra CC args: CCARGS $CCARGS Extra MLTON args: MLTONARGS $MLTONARGS Postgres C header: PGHEADER $PGHEADER MySQL C header: MSHEADER $MSHEADER |