diff options
| author | Jim Blandy | 1993-05-18 22:51:56 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-18 22:51:56 +0000 |
| commit | 00c564b505d1d02afee6f57262c375ea806f721b (patch) | |
| tree | cd5d8ac3b30e0851e835534dd012ceaad6d837fd | |
| parent | a785758151de2f2aeb5ebecbf7375ffe862ffc1c (diff) | |
| download | emacs-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-x | configure1.in | 21 |
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' |
| 816 | fi | 816 | fi |
| 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 | ] |
| 822 | dnl checks for programs | ||
| 820 | AC_LN_S | 823 | AC_LN_S |
| 821 | AC_PROG_CPP | 824 | AC_PROG_CPP |
| 825 | |||
| 826 | dnl checks for UNIX variants that set `DEFS' | ||
| 827 | |||
| 828 | dnl checks for header files | ||
| 822 | AC_HAVE_HEADERS(sys/timeb.h sys/time.h) | 829 | AC_HAVE_HEADERS(sys/timeb.h sys/time.h) |
| 823 | AC_STDC_HEADERS | 830 | AC_STDC_HEADERS |
| 824 | AC_TIME_WITH_SYS_TIME | 831 | AC_TIME_WITH_SYS_TIME |
| 832 | |||
| 833 | dnl checks for typedefs | ||
| 825 | AC_RETSIGTYPE | 834 | AC_RETSIGTYPE |
| 835 | |||
| 836 | dnl checks for functions | ||
| 826 | AC_ALLOCA | 837 | AC_ALLOCA |
| 827 | AC_HAVE_FUNCS(gettimeofday gethostname dup2) | 838 | AC_HAVE_FUNCS(gettimeofday gethostname dup2) |
| 839 | |||
| 840 | dnl checks for structure members | ||
| 828 | AC_STRUCT_TM | 841 | AC_STRUCT_TM |
| 842 | |||
| 843 | dnl checks for compiler characteristics | ||
| 829 | AC_CONST | 844 | AC_CONST |
| 845 | |||
| 846 | dnl checks for operating system services | ||
| 847 | |||
| 848 | dnl other checks for UNIX variants | ||
| 830 | [ | 849 | [ |
| 831 | 850 | ||
| 832 | 851 | ||