diff options
author | derex_tri <none@none> | 2008-10-06 04:14:44 -0500 |
---|---|---|
committer | derex_tri <none@none> | 2008-10-06 04:14:44 -0500 |
commit | 2a5f169f6258a560d64e227d3179a1eb1b321603 (patch) | |
tree | c5ac6a23bfc2ded8cf40eec8e64dda939a13ab70 /configure.ac | |
parent | c2dc0b62ce4bfd34f0678bc9c9e4c4ae7eb99e4b (diff) |
[svn] * Remove debugging code from WorldSocket.cpp.
* Small cleanup fix in configure.ac.
--HG--
branch : trunk
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 6407c951fb4..2b986a3c438 100644 --- a/configure.ac +++ b/configure.ac @@ -18,20 +18,21 @@ AC_CONFIG_SRCDIR([src/shared/Base.cpp]) ## Prelude, basic settings for Automake # Turn on all warnings and error messages, and enforce GNU # standards for the package. -AM_INIT_AUTOMAKE([-Wall -Werror]) +AM_INIT_AUTOMAKE([-Wall -Werror gnu]) AM_MAINTAINER_MODE ## Prevent the configure script from continuing any further if # configuration is being performed in the top-level directory. # The idea is to prevent this ,because some maintainers tend -# to break "off src dir" builds. +# to break parallel build trees (a.k.a. VPATH builds). if test "$srcdir" = "." && test "$enable_maintainer_mode" != "yes"; then AC_MSG_ERROR( [ Please configure and build in a directory other than the top-level source directory. This is needed because a lot - of maintainers tend to break "off src dir" builds. This - is kinda real ensurance they wont do it. + of maintainers tend to break parallel build trees + (a.k.a. VPATH builds). This is kinda real ensurance they + will not do it (by enforcing everybody to do VPATH builds). For example, try the following from the top-level source directory: @@ -44,8 +45,8 @@ if test "$srcdir" = "." && test "$enable_maintainer_mode" != "yes"; then This will create a build space in the directory `objdir' and start a build in that directory. - If however you realy want to build in src dir, - then use --enable-maintainer-mode switch. + If however you realy want to disable this error, + use --enable-maintainer-mode switch. ]) fi |