diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-06 01:19:47 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-04-06 01:19:47 +0000 |
commit | 643e83f4e66f10025e41103a13e792b7f2dea24e (patch) | |
tree | f1676675462d87c06971d3538d2529ec9d4096c6 /configure.in | |
parent | d94fd93b439ffdbc7a299258f1b5d3ba90f95424 (diff) | |
download | ATCD-643e83f4e66f10025e41103a13e792b7f2dea24e.tar.gz |
* configure.in:
* m4/acinclude.m4:
Created the macro ACE_CHECK_FOR_CVS_DIR to prevent the configure
script from continuing the configuration if the current
configuration directory is in a CVS controlled directory. The
idea is to prevent automatically generated files from being
checked into the repository. This will prevent accidental
overwrites of ACE's current Makefiles by the automatically
generated ones, for example.
In addition, this should ease the transition from the current
Makefile scheme to the new Auto{conf,make}/libtool scheme since
the current Makefiles can remain under CVS control without
the generate Makefiles interfering with them.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 0be9bab159f..213f08829c9 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl dnl $Id$ -AC_REVISION($Revision 0.58 $)dnl +AC_REVISION($Revision 0.59 $)dnl dnl dnl An autoconf script to automatically configure ACE. @@ -41,6 +41,13 @@ AC_INIT(ace/ACE.cpp) dnl Require GNU Autoconf 2.13 or better. AC_PREREQ(2.13) +dnl If we are configuring in a CVS controlled directory then don't +dnl continue any further. The idea is to prevent automatically +dnl generated files from being checked into the repository. This +dnl will prevent accidental overwrites of ACE's current Makefiles by +dnl the automatically generated ones, for example. +ACE_CHECK_FOR_CVS_DIR + dnl Check what platform we are running on. AC_CANONICAL_SYSTEM @@ -129,7 +136,7 @@ AC_SUBST(ACE_AGE) AC_SUBST(ACE_REVISION) dnl Do the usual install settings; don't forget to include a -dnl install-sh script, in case the is no BDS compatible install +dnl `install-sh' script, in case there is no BSD compatible `install' dnl installed (no pun intended) in your machine. dnl dnl We don't need this anymore since AM_INIT_AUTOMAKE calls AC_PROG_INSTALL. |