diff options
author | unknown <lenz@kallisto.local> | 2003-08-20 16:39:11 +0200 |
---|---|---|
committer | unknown <lenz@kallisto.local> | 2003-08-20 16:39:11 +0200 |
commit | 0e34c128da785dc1dbba9133adaee9cbfdc43a5b (patch) | |
tree | b7184e76aa7e95bc9372a48c112e18561e0edd1b /configure.in | |
parent | a215238536848c1512ec0dd4c98739c090c473c1 (diff) | |
download | mariadb-git-0e34c128da785dc1dbba9133adaee9cbfdc43a5b.tar.gz |
- make sure that both libedit and readline are added to the source
distribution. libedit is used by default, one needs to use
"--with-readline" when compiling with readline instead.
cmd-line-utils/Makefile.am:
- add both libedit and readline to the source distribution
configure.in:
- create both Makefiles for libedit and libedit
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/configure.in b/configure.in index 40d3c0ba6f6..f376e77e09a 100644 --- a/configure.in +++ b/configure.in @@ -2797,22 +2797,6 @@ esac AC_SUBST(MAKE_BINARY_DISTRIBUTION_OPTIONS) # Output results - -if test "$compile_readline" = "yes" -then - AC_OUTPUT(cmd-line-utils/readline/Makefile) -fi - -if test "$compile_libedit" = "yes" -then - AC_OUTPUT(cmd-line-utils/libedit/Makefile) -fi - -if [test "$compile_libedit" = "yes"] || [test "$compile_readline" = "yes"] -then - AC_OUTPUT(cmd-line-utils/Makefile) -fi - AC_OUTPUT(Makefile extra/Makefile mysys/Makefile isam/Makefile dnl strings/Makefile regex/Makefile heap/Makefile dnl bdb/Makefile dnl @@ -2828,6 +2812,9 @@ AC_OUTPUT(Makefile extra/Makefile mysys/Makefile isam/Makefile dnl tests/Makefile Docs/Makefile support-files/Makefile dnl support-files/MacOSX/Makefile mysql-test/Makefile dnl include/mysql_version.h dnl + cmd-line-utils/Makefile dnl + cmd-line-utils/libedit/Makefile dnl + cmd-line-utils/readline/Makefile dnl , , [ test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h ]) |