Skip to content

Commit 3f7d090

Browse files
committed
patch 8.0.0082
Problem: Extension for configure should be ".ac". Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173)
1 parent d4db771 commit 3f7d090

File tree

11 files changed

+17
-15
lines changed

11 files changed

+17
-15
lines changed

Filelist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ SRC_UNIX = \
207207
src/config.mk.dist \
208208
src/config.mk.in \
209209
src/configure \
210-
src/configure.in \
210+
src/configure.ac \
211211
src/gui_at_fs.c \
212212
src/gui_at_sb.c \
213213
src/gui_at_sb.h \

src/INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ diffs or instructions to the address given in the `README' so they can
221221
be considered for the next release. If at some point `config.cache'
222222
contains results you don't want to keep, you may remove or edit it.
223223

224-
The file `configure.in' is used to create `configure' by a program
225-
called `autoconf'. You only need `configure.in' if you want to change
224+
The file `configure.ac' is used to create `configure' by a program
225+
called `autoconf'. You only need `configure.ac' if you want to change
226226
it or regenerate `configure' using a newer version of `autoconf'.
227227

228228
The simplest way to compile this package is:

src/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -690,8 +690,8 @@ SANITIZER_LIBS = $(SANITIZER_CFLAGS)
690690
#####################################################
691691

692692
### Uncomment things here only if the values chosen by configure are wrong.
693-
### It's better to adjust configure.in and "make autoconf", if you can!
694-
### Then send the required changes to configure.in to the bugs list.
693+
### It's better to adjust configure.ac and "make autoconf", if you can!
694+
### Then send the required changes to configure.ac to the bugs list.
695695

696696
### (1) BSD/OS 2.0.1, 2.1 or 3.0 using shared libraries
697697
###
@@ -1832,7 +1832,7 @@ reconfig: scratch clean
18321832
# - DO NOT RUN autoconf MANUALLY! It will overwrite ./configure instead of
18331833
# producing auto/configure.
18341834
# - autoconf is not run automatically, because a patch usually changes both
1835-
# configure.in and auto/configure but can't update the timestamps. People
1835+
# configure.ac and auto/configure but can't update the timestamps. People
18361836
# who do not have (the correct version of) autoconf would run into trouble.
18371837
#
18381838
# Two tricks are required to make autoconf put its output in the "auto" dir:

src/blowfish.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ typedef union {
3838
/* MS-Windows is always little endian */
3939
#else
4040
# ifdef HAVE_CONFIG_H
41-
/* in configure.in AC_C_BIGENDIAN() defines WORDS_BIGENDIAN when needed */
41+
/* in configure.ac AC_C_BIGENDIAN() defines WORDS_BIGENDIAN when needed */
4242
# else
4343
error!
4444
Please change this code to define WORDS_BIGENDIAN for big-endian machines.

src/channel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# define CH_HAS_GUI (gui.in_use || gui.starting)
2020
#endif
2121

22-
/* Note: when making changes here also adjust configure.in. */
22+
/* Note: when making changes here also adjust configure.ac. */
2323
#ifdef WIN32
2424
/* WinSock API is separated from C API, thus we can't use read(), write(),
2525
* errno... */

src/config.h.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* config.h.in. Generated automatically from configure.in by autoheader, and
3-
* manually changed after that.
2+
* config.h.in. Originally generated automatically from configure.ac by
3+
* autoheader and manually changed after that.
44
*/
55

66
/* Define if we have EBCDIC code */

src/configure.in renamed to src/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dnl configure.in: autoconf script for Vim
1+
dnl configure.ac: autoconf script for Vim
22

33
dnl Process this file with autoconf 2.12 or 2.13 to produce "configure".
44
dnl Should also work with autoconf 2.54 and later.

src/main.aap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
# A U T O C O N F
2323
#
2424

25-
# Run autoconf when configure.in has been changed since it was last run.
25+
# Run autoconf when configure.ac has been changed since it was last run.
2626
# This is skipped when the signatures in "mysign" are up-to-date. When
2727
# there is no autoconf program skip this (the signature is often the only
2828
# thing that's outdated)
29-
auto/configure {signfile = mysign} : configure.in
29+
auto/configure {signfile = mysign} : configure.ac
3030
@if not program_path("autoconf"):
3131
:print Can't find autoconf, using existing configure script.
3232
@else:

src/mysign

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
=auto/configure-lastupdate=1178970549.78-@buildcheck=dfc15c059b7ce88a951584995c49a201=configure.in@md5=e0d6e9a7d7b986d63ce4e8e7362fd0b9
1+
=auto/configure-lastupdate=1178970549.78-@buildcheck=dfc15c059b7ce88a951584995c49a201=configure.ac@md5=e0d6e9a7d7b986d63ce4e8e7362fd0b9

src/os_unix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ static xsmp_config_T xsmp;
265265
* that describe the signals. That is nearly what we want here. But
266266
* autoconf does only check for sys_siglist (without the underscore), I
267267
* do not want to change everything today.... jw.
268-
* This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
268+
* This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac.
269269
*/
270270
#endif
271271

0 commit comments

Comments
 (0)