diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 860c8c2891..e8d2cdb627 100644 --- a/configure.ac +++ b/configure.ac @@ -48,7 +48,7 @@ AM_COND_IF([DEBUG_ENABLED], [AC_DEFINE([ENABLE_DEBUG], [1], [Enable low-performi # libtool cannot handle spaces in paths, so exit early if there is one if [ test `echo $PWD | grep -c ' '` != "0" ]; then - AC_MSG_ERROR([BIND 10 cannot be built in a directory that contains spaces, because of libtool limitations. Please change the directory name, or use a symbolic link that does not contain spaces.]) + AC_MSG_ERROR([Kea cannot be built in a directory that contains spaces, because of libtool limitations. Please change the directory name, or use a symbolic link that does not contain spaces.]) fi # On FreeBSD (and probably some others), clang++ does not meet an autoconf @@ -204,7 +204,7 @@ AC_HELP_STRING([--enable-static-link], [build programs with static link [[default=no]]]), [enable_static_link=yes], [enable_static_link=no]) AM_CONDITIONAL(USE_STATIC_LINK, test $enable_static_link = yes) -AM_COND_IF([USE_STATIC_LINK], [AC_DEFINE([USE_STATIC_LINK], [1], [BIND 10 was statically linked?])]) +AM_COND_IF([USE_STATIC_LINK], [AC_DEFINE([USE_STATIC_LINK], [1], [Was Kea statically linked?])]) # Check validity about some libtool options if test $enable_static_link = yes -a $enable_static = no; then @@ -1608,7 +1608,7 @@ END cat config.report cat <<EOF - Now you can type "make" to build BIND 10. Note that if you intend to + Now you can type "make" to build Kea. Note that if you intend to run "make check", you must run "make" first as some files need to be generated by "make" before "make check" can be run. |