Changeset 16 for trunk/configure.ac
- Timestamp:
- 11/19/08 13:23:17 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r8 r16 19 19 # Turn on all warnings and error messages, and enforce GNU 20 20 # standards for the package. 21 AM_INIT_AUTOMAKE([-Wall -Werror ])21 AM_INIT_AUTOMAKE([-Wall -Werror gnu]) 22 22 AM_MAINTAINER_MODE 23 23 … … 25 25 # configuration is being performed in the top-level directory. 26 26 # The idea is to prevent this ,because some maintainers tend 27 # to break "off src dir" builds.27 # to break parallel build trees (a.k.a. VPATH builds). 28 28 if test "$srcdir" = "." && test "$enable_maintainer_mode" != "yes"; then 29 29 AC_MSG_ERROR( … … 31 31 Please configure and build in a directory other than the 32 32 top-level source directory. This is needed because a lot 33 of maintainers tend to break "off src dir" builds. This 34 is kinda real ensurance they wont do it. 33 of maintainers tend to break parallel build trees 34 (a.k.a. VPATH builds). This is kinda real ensurance they 35 will not do it (by enforcing everybody to do VPATH builds). 35 36 36 37 For example, try the following from the top-level source … … 45 46 start a build in that directory. 46 47 47 If however you realy want to build in src dir,48 thenuse --enable-maintainer-mode switch.48 If however you realy want to disable this error, 49 use --enable-maintainer-mode switch. 49 50 ]) 50 51 fi