diff options
author | unknown <lenz@kallisto.local> | 2003-06-18 23:13:29 +0200 |
---|---|---|
committer | unknown <lenz@kallisto.local> | 2003-06-18 23:13:29 +0200 |
commit | 76a06a4742764e08409251590145891cbbc9d4d5 (patch) | |
tree | 6e8d990174d49bdb247fdef241a515b22d757043 /configure.in | |
parent | 1875eedb714955949a3dbcc8a93b70e9e1f44eee (diff) | |
download | mariadb-git-76a06a4742764e08409251590145891cbbc9d4d5.tar.gz |
- added sql-common subdirectory and sql_common.h to source distribution
Makefile.am:
- added sql-common directory to distribution
configure.in:
- minor fixes
- added sql-common/Makefile to AC_OUTPUT
include/Makefile.am:
- added sql_common.h to distribution
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.in b/configure.in index bddeeb6c989..63b33e391b2 100644 --- a/configure.in +++ b/configure.in @@ -2176,8 +2176,8 @@ AC_ARG_WITH(libedit, [ with_libedit=undefined ] ) -compile_readline= no -compile_libedit= no +compile_readline="no" +compile_libedit="no" if [test "$with_libedit" = "yes"] && [test "$with_readline" = "yes"] then @@ -2820,6 +2820,7 @@ AC_OUTPUT(Makefile extra/Makefile mysys/Makefile isam/Makefile dnl libmysql_r/Makefile libmysqld/Makefile libmysqld/examples/Makefile dnl libmysql/Makefile client/Makefile dnl pstack/Makefile pstack/aout/Makefile sql/Makefile sql/share/Makefile dnl + sql-common/Makefile dnl merge/Makefile dbug/Makefile scripts/Makefile dnl include/Makefile sql-bench/Makefile tools/Makefile dnl tests/Makefile Docs/Makefile support-files/Makefile dnl @@ -2840,6 +2841,7 @@ echo "Remember to check the platform specific part of the reference manual for" echo "hints about installing MySQL on your platform. Also have a look at the" echo "files in the Docs directory." echo -# The following text is checked in ./Do-compile to se that the configure ends. +# The following text is checked in ./Do-compile to verify that configure +# ended sucessfully - don't remove it. echo "Thank you for choosing MySQL!" echo |