summaryrefslogtreecommitdiff
path: root/libast-am18.patch
blob: 86ae7949082aacba97edc7eddbbff454a51b640d (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
--- libast-0.5/libast.m4.orig	Tue Aug 20 03:09:46 2002
+++ libast-0.5/libast.m4	Fri Apr  2 15:46:20 2004
@@ -8,7 +8,7 @@
 dnl#    - arg 1 is the env variable to set
 dnl#    - arg 2 is the LIBS variable to use
 dnl#
-AC_DEFUN(AST_CHECK_LIBAST, [
+AC_DEFUN([AST_CHECK_LIBAST], [
     AC_CHECK_PROG(LIBAST_CONFIG, libast-config, libast-config, false)
     if test "$LIBAST_CONFIG" = "false"; then
         $1=0
@@ -69,7 +69,7 @@
 dnl#
 dnl# LibAST macro for determining integer types by size
 dnl#
-AC_DEFUN(AST_SIZE_TYPE, [
+AC_DEFUN([AST_SIZE_TYPE], [
     BIT_SIZE=[$1]
     BYTE_SIZE=`expr $BIT_SIZE '/' 8`
     case $BYTE_SIZE in
@@ -86,7 +86,7 @@
 dnl# LibAST macro for determining regexp support
 dnl#    - arg 1 is the name of the env var to use
 dnl#
-AC_DEFUN(AST_REGEXP_SUPPORT, [
+AC_DEFUN([AST_REGEXP_SUPPORT], [
     if test "${$1}" != "no"; then
         if test "${$1}" = "pcre" -o "${$1}" = "yes" ; then
             GOT_PCRE_HEADER=0
@@ -150,7 +150,7 @@
 dnl#
 dnl# LibAST macro for X11 support
 dnl#
-AC_DEFUN(AST_X11_SUPPORT, [
+AC_DEFUN([AST_X11_SUPPORT], [
     AC_PATH_XTRA
     if test ! -z "$X_CFLAGS"; then
         if test -z "$CPPFLAGS"; then
@@ -180,7 +180,7 @@
 dnl#
 dnl# LibAST macro for Imlib2 support
 dnl#
-AC_DEFUN(AST_IMLIB2_SUPPORT, [
+AC_DEFUN([AST_IMLIB2_SUPPORT], [
     AC_ARG_WITH(imlib,
     [  --with-imlib[=DIR]      compile with Imlib support (Imlib residing in DIR/lib) (default)],
     [
@@ -216,7 +216,7 @@
 dnl#
 dnl# LibAST macro for MMX support
 dnl#
-AC_DEFUN(AST_MMX_SUPPORT, [
+AC_DEFUN([AST_MMX_SUPPORT], [
     AC_MSG_CHECKING(for MMX support)
     HAVE_MMX=""
     AC_ARG_ENABLE(mmx, [  --enable-mmx            enable MMX assembly routines], [
@@ -240,7 +240,7 @@
 dnl#
 dnl# LibAST macros for standard checks
 dnl#
-AC_DEFUN(AST_STD_CHECKS, [
+AC_DEFUN([AST_STD_CHECKS], [
     AC_PROG_CPP
 
     dnl# These must be run after AC_PROG_CC but before any other macros that use
@@ -276,7 +276,7 @@
     dnl# If it's there, what the hell?
     AM_WITH_DMALLOC
 ])
-AC_DEFUN(AST_PROG_CHECKS, [
+AC_DEFUN([AST_PROG_CHECKS], [
     AC_CHECK_PROG(SED, sed, sed, false)
     AC_CHECK_PROG(RM, rm, rm, true)
     AC_CHECK_PROG(CP, cp, cp, false)
@@ -288,7 +288,7 @@
     AC_CHECK_PROG(MV, mv, mv, true)
     AC_LN_S
 ])
-AC_DEFUN(AST_VAR_CHECKS, [
+AC_DEFUN([AST_VAR_CHECKS], [
     AC_CHECK_SIZEOF(char, 1)
     AC_CHECK_SIZEOF(short, 2)
     AC_CHECK_SIZEOF(int, 4)
@@ -308,14 +308,14 @@
     AC_C_CONST
     AC_C_INLINE
 ])
-AC_DEFUN(AST_HEADER_CHECKS, [
+AC_DEFUN([AST_HEADER_CHECKS], [
     AC_HEADER_SYS_WAIT
     AC_CHECK_HEADERS(fcntl.h termios.h sys/ioctl.h sys/select.h sys/time.h \
                      sys/sockio.h sys/byteorder.h malloc.h utmpx.h unistd.h \
                      bsd/signal.h stdarg.h errno.h)
     AC_HEADER_TIME
 ])
-AC_DEFUN(AST_FUNC_CHECKS, [
+AC_DEFUN([AST_FUNC_CHECKS], [
     AC_TYPE_SIGNAL
     AC_CHECK_FUNCS(memmove putenv strsep memmem usleep snprintf vsnprintf \
                    strcasestr strcasechr strcasepbrk strrev strnlen)
@@ -325,7 +325,7 @@
     dps_rlimit_nproc()
     dps_rlimit_memlock()
 ])
-AC_DEFUN(AST_TYPE_CHECKS, [
+AC_DEFUN([AST_TYPE_CHECKS], [
     AC_TYPE_MODE_T
     AC_CHECK_TYPE(off_t, long)
     AC_TYPE_PID_T
@@ -336,7 +336,7 @@
 dnl# LibAST argument macros
 dnl#    - arg 1 is the name of the env var to use
 dnl#
-AC_DEFUN(AST_ARG_DEBUG, [
+AC_DEFUN([AST_ARG_DEBUG], [
     AC_MSG_CHECKING(for debugging level)
     AC_ARG_WITH(debugging, [  --with-debugging[=num]  compile in debugging support.  num >= 0], [
                     if test "$withval" = "yes"; then
@@ -357,7 +357,7 @@
                     $1=4
     ])
 ])
-AC_DEFUN(AST_ARG_REGEXP, [
+AC_DEFUN([AST_ARG_REGEXP], [
     AC_ARG_WITH(regexp,
     [  --with-regexp[=TYPE]  specify the type of regular expression support (bsd, posix, pcre)],
     [$1=$withval], [$1=yes])
@@ -365,7 +365,7 @@
     AC_MSG_CHECKING(for regular expression support)
     AC_MSG_RESULT(${$1})
 ])
-AC_DEFUN(AST_ARG_BACKQUOTE_EXEC, [
+AC_DEFUN([AST_ARG_BACKQUOTE_EXEC], [
     AC_MSG_CHECKING(if backquote execution support should be enabled)
     AC_ARG_WITH(backquote-exec,
         [  --without-backquote-exec   disables the execution of commands from inside config files],
@@ -388,7 +388,7 @@
 dnl#
 dnl# LibAST macro for flag post-processing
 dnl#
-AC_DEFUN(AST_FLAGS, [
+AC_DEFUN([AST_FLAGS], [
     CPPFLAGS=`eval eval eval eval eval echo "-I$includedir -I$prefix/include $CPPFLAGS"`
     CPPFLAGS=`echo $CPPFLAGS | tr ' ' '\n' | uniq | grep -v NONE | tr '\n' ' '`
     CFLAGS=${CFLAGS--O}
@@ -400,7 +400,7 @@
 dnl#
 dnl# LibAST macro for final status report
 dnl#
-AC_DEFUN(AST_STATUS, [
+AC_DEFUN([AST_STATUS], [
     echo ""
     echo "$PACKAGE $VERSION"
     echo "Configuration:"
@@ -426,7 +426,7 @@
 dnl#
 
 dnl Check snprintf for overrun potential
-AC_DEFUN(dps_snprintf_oflow, [
+AC_DEFUN([dps_snprintf_oflow], [
     AC_MSG_CHECKING(whether snprintf ignores n)
     AC_CACHE_VAL(dps_cv_snprintf_bug, [
         AC_TRY_RUN(
@@ -463,7 +463,7 @@
 ])
 
 dnl Check vsnprintf for overrun potential
-AC_DEFUN(dps_vsnprintf_oflow, [
+AC_DEFUN([dps_vsnprintf_oflow], [
     AC_MSG_CHECKING(whether vsnprintf ignores n)
     AC_CACHE_VAL(dps_cv_vsnprintf_bug, [
         AC_TRY_RUN(
@@ -509,7 +509,7 @@
 ])
 
 dnl open and symlink interaction bug test
-AC_DEFUN(dps_symlink_open_bug, [
+AC_DEFUN([dps_symlink_open_bug], [
     AC_MSG_CHECKING(security of interaction between symlink and open)
     AC_CACHE_VAL(dps_cv_symlink_open_bug, [
         mkdir conftest.d
@@ -583,7 +583,7 @@
 ])
 
 dnl Check to RLIMIT_NPROC resource limit
-AC_DEFUN(dps_rlimit_nproc, [
+AC_DEFUN([dps_rlimit_nproc], [
     AC_MSG_CHECKING(for working RLIMIT_NPROC resource limit)
     AC_CACHE_VAL(dps_cv_rlimit_nproc, [
         AC_TRY_RUN(
@@ -631,7 +631,7 @@
 ])
 
 dnl Check to RLIMIT_MEMLOCK resource limit
-AC_DEFUN(dps_rlimit_memlock, [
+AC_DEFUN([dps_rlimit_memlock], [
     AC_MSG_CHECKING(for working RLIMIT_MEMLOCK resource limit)
     AC_CACHE_VAL(dps_cv_rlimit_memlock, [
         AC_TRY_RUN(