aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-18 22:51:56 +0000
committerJim Blandy1993-05-18 22:51:56 +0000
commit00c564b505d1d02afee6f57262c375ea806f721b (patch)
treecd5d8ac3b30e0851e835534dd012ceaad6d837fd
parenta785758151de2f2aeb5ebecbf7375ffe862ffc1c (diff)
downloademacs-00c564b505d1d02afee6f57262c375ea806f721b.tar.gz
emacs-00c564b505d1d02afee6f57262c375ea806f721b.zip
* configure.in: Include remarks saying what order the autoconf
tests should go in, and remind people to change config.h.in whenever they add autoconf tests which make #definitions.
-rwxr-xr-xconfigure1.in21
1 files changed, 20 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in
index e4b93d02d1c..d5a226bdfa8 100755
--- a/configure1.in
+++ b/configure1.in
@@ -815,18 +815,37 @@ if test -n "${GCC}"; then
815 CFLAGS='-g -O' 815 CFLAGS='-g -O'
816fi 816fi
817 817
818#### Some other nice autoconf tests. 818#### Some other nice autoconf tests. If you add a test here which
819#### should make an entry in src/config.h, don't forget to add an
820#### #undef clause to src/config.h.in for autoconf to modify.
819] 821]
822dnl checks for programs
820AC_LN_S 823AC_LN_S
821AC_PROG_CPP 824AC_PROG_CPP
825
826dnl checks for UNIX variants that set `DEFS'
827
828dnl checks for header files
822AC_HAVE_HEADERS(sys/timeb.h sys/time.h) 829AC_HAVE_HEADERS(sys/timeb.h sys/time.h)
823AC_STDC_HEADERS 830AC_STDC_HEADERS
824AC_TIME_WITH_SYS_TIME 831AC_TIME_WITH_SYS_TIME
832
833dnl checks for typedefs
825AC_RETSIGTYPE 834AC_RETSIGTYPE
835
836dnl checks for functions
826AC_ALLOCA 837AC_ALLOCA
827AC_HAVE_FUNCS(gettimeofday gethostname dup2) 838AC_HAVE_FUNCS(gettimeofday gethostname dup2)
839
840dnl checks for structure members
828AC_STRUCT_TM 841AC_STRUCT_TM
842
843dnl checks for compiler characteristics
829AC_CONST 844AC_CONST
845
846dnl checks for operating system services
847
848dnl other checks for UNIX variants
830[ 849[
831 850
832 851