1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#
# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
#
--- gawk-3.0.4/./configure.in~configure
+++ gawk-3.0.4/./configure.in
@@ -27,8 +27,9 @@
dnl define(AC_CONFIG_AUX_DIR,)
dnl This is the configure.in script proper
-AC_INIT(awk.h)
-AC_PREREQ(2.12)
+AC_INIT
+AC_CONFIG_SRCDIR([awk.h])
+AC_PREREQ(2.57)
AC_CONFIG_HEADER(config.h:configh.in)
AC_CANONICAL_HOST
@@ -91,7 +92,7 @@
dnl checks for typedefs
AC_TYPE_PID_T
AC_TYPE_SIGNAL
-AC_SIZE_T
+AC_TYPE_SIZE_T([])
AC_TYPE_GETGROUPS
AC_EGREP_HEADER([int.*sprintf], stdio.h,
AC_DEFINE(SPRINTF_RET, int),
@@ -145,7 +146,15 @@
fi
dnl checks for structure members
-AC_STRUCT_ST_BLKSIZE
+AC_DIAGNOSE([obsolete],[AC_STRUCT_ST_BLKSIZE:
+ your code should no longer depend upon `HAVE_ST_BLKSIZE', but
+ `HAVE_STRUCT_STAT_ST_BLKSIZE'. Remove this warning and
+ the `AC_DEFINE' when you adjust the code.])
+AC_CHECK_MEMBERS([struct stat.st_blksize],[AC_DEFINE(HAVE_ST_BLKSIZE, 1,
+ [Define to 1 if your `struct stat' has
+ `st_blksize'. Deprecated, use
+ `HAVE_STRUCT_STAT_ST_BLKSIZE' instead.])])
+
AC_HEADER_TIME
AC_STRUCT_TM
AC_STRUCT_TIMEZONE
@@ -155,4 +164,6 @@
AC_C_CONST
GAWK_AC_C_STRINGIZE
-AC_OUTPUT(Makefile doc/Makefile test/Makefile awklib/Makefile, [date > stamp-h])
+AC_CONFIG_FILES([Makefile doc/Makefile test/Makefile awklib/Makefile])
+AC_CONFIG_COMMANDS([default],[[date > stamp-h]],[[]])
+AC_OUTPUT
|