flush
[m6w6/ext-psi] / config.m4
1 PHP_ARG_ENABLE(psi, whether to enable PHP System Interface support,
2 [ --enable-psi Enable PHP System Interface support])
3 PHP_ARG_WITH(psi-libjit, where to find libjit,
4 [ --with-psi-libjit=DIR PSI: path to libjit], [], no)
5 PHP_ARG_WITH(psi-libffi, where to find libjit,
6 [ --with-psi-libffi=DIR PSI: path to libffi], [], no)
7
8 if test "$PHP_PSI" != "no"; then
9 AC_ARG_VAR(LEMON, The lemon parser generator of the SQLite project)
10 AC_PATH_PROG(LEMON, lemon, ./lemon)
11 PHP_SUBST(LEMON)
12
13 if test -z "$PKG_CONFIG"
14 then
15 AC_PATH_PROG(PKG_CONFIG, pkg-config, false)
16 fi
17
18 export PKG_CONFIG_PATH="$PHP_PSI_LIBFFI/lib/pkgconfig:$PHP_PSI_LIBJIT/lib/pkgconfig:$PKG_CONFIG_PATH"
19
20 AC_CACHE_CHECK(for libffi through pkg-config, PSI_cv_LIBFFI, [
21 if $PKG_CONFIG --exists libffi
22 then
23 PSI_cv_LIBFFI=true
24 else
25 PSI_cv_LIBFFI=false
26 fi])
27 if $PSI_cv_LIBFFI
28 then
29 AC_MSG_CHECKING(for libffi)
30 PSI_cv_LIBFFI_DIR=`$PKG_CONFIG --variable=prefix libffi`
31 AC_MSG_RESULT($PSI_cv_LIBFFI_DIR)
32 PHP_EVAL_INCLINE(`$PKG_CONFIG --cflags libffi`)
33 PHP_EVAL_LIBLINE(`$PKG_CONFIG --libs libffi`, PSI_SHARED_LIBADD)
34 else
35 AC_CACHE_CHECK(for libffi, PSI_cv_LIBFFI_DIR, [
36 for PSI_cv_LIBFFI_DIR in $PHP_PSI_LIBFFI {/usr{,/local},/opt}{,/libffi}
37 do
38 if test -e $PSI_cv_LIBFFI_DIR/include/ffi/ffi.h
39 then
40 break
41 fi
42 PSI_cv_LIBFFI_DIR=
43 done])
44 if test -n "$PSI_cv_LIBFFI_DIR"
45 then
46 PHP_ADD_INCLUDE($PSI_cv_LIBFFI_DIR/include/ffi)
47 PHP_ADD_LIBRARY_WITH_PATH(ffi, $PSI_cv_LIBFFI_DIR/$PHP_LIBDIR, PSI_SHARED_LIBADD)
48 else
49 AC_MSG_WARN([Could not find libffi, please provide the base install path])
50 fi
51 fi
52 PHP_CHECK_LIBRARY(ffi, ffi_closure_alloc, [
53 PHP_CHECK_LIBRARY(ffi, ffi_prep_closure_loc, [
54 AC_DEFINE(PSI_HAVE_FFI_PREP_CLOSURE_LOC, 1, [ ])
55 ], [], -L$PSI_cv_LIBFFI_DIR/$PHP_LIBDIR)
56 AC_DEFINE(PSI_HAVE_FFI_CLOSURE_ALLOC, 1, [ ])
57 ], [
58 PHP_CHECK_LIBRARY(ffi, ffi_prep_closure, [
59 AC_CHECK_HEADERS(sys/mman.h)
60 PHP_CHECK_FUNC(mmap)
61 AC_DEFINE(PSI_HAVE_FFI_PREP_CLOSURE, 1, [ ])
62 ], [
63 ], -L$PSI_cv_LIBFFI_DIR/$PHP_LIBDIR)
64 ], -L$PSI_cv_LIBFFI_DIR/$PHP_LIBDIR)
65
66 AC_CACHE_CHECK(for libjit, PSI_cv_LIBJIT_DIR, [
67 for PSI_cv_LIBJIT_DIR in $PHP_PSI_LIBJIT {/usr{,/local},/opt}{,/libjit}
68 do
69 if test -e $PSI_cv_LIBJIT_DIR/include/jit/jit.h
70 then
71 break
72 fi
73 PSI_cv_LIBJIT_DIR=
74 done])
75 if test -n "$PSI_cv_LIBJIT_DIR"
76 then
77 PHP_ADD_INCLUDE($PSI_cv_LIBJIT_DIR/include)
78 PHP_ADD_LIBRARY_WITH_PATH(jit, $PSI_cv_LIBJIT_DIR/$PHP_LIBDIR, PSI_SHARED_LIBADD)
79 else
80 AC_MSG_WARN([Could not find libjit, please provide the base install path])
81 fi
82
83 PHP_SUBST(PSI_SHARED_LIBADD)
84
85 dnl PSI_INCLUDES_DEFAULT(include, defines)
86 AC_DEFUN(PSI_INCLUDES_DEFAULT, [
87 AC_INCLUDES_DEFAULT()
88 $2
89 m4_ifnblank($1,
90 m4_expand([#include <]$1[>])
91 )
92 ])
93
94 psi_type_pair() { # (type, size)
95 local psi_type_name=`tr -cd A-Za-z <<<$1`
96 local psi_type_lower=`tr A-Z a-z <<<$psi_type_name`
97 case $psi_type_lower in
98 int*|uint*)
99 local psi_type_upper=`tr a-z A-Z <<<$1`
100 local psi_type_bits=`expr $2 \* 8`
101 echo "PSI_T_${psi_type_upper}${psi_type_bits}, \"${psi_type_lower}${psi_type_bits}_t\""
102 ;;
103 struct*)
104 echo "PSI_T_STRUCT, \"$2\""
105 ;;
106 *)
107 echo "PSI_T_NAME, \"$psi_type_name\""
108 ;;
109 esac
110 }
111
112 PSI_TYPES=""
113 dnl PSI_TYPE(type name, basic type, includes)
114 AC_DEFUN(PSI_TYPE, [
115 ifdef(AC_TYPE_[]patsubst(translit($1,a-z,A-Z),\W,_),AC_TYPE_[]patsubst(translit($1,a-z,A-Z),\W,_))
116 AC_CHECK_SIZEOF($1, [], PSI_INCLUDES_DEFAULT($3))
117 if test "$2" && test "$ac_cv_sizeof_[]$1" -gt 0; then
118 PSI_TYPES="{`psi_type_pair $2 $ac_cv_sizeof_[]$1`, \""$1"\"}, $PSI_TYPES"
119 fi
120 ])
121
122
123 dnl PSI_COMPUTE_STR(variable, string or expression, includes)
124 AC_DEFUN(PSI_COMPUTE_STR, [
125 AC_TRY_RUN([
126 $3
127 int main() {
128 return EOF == fputs($2, fopen("conftest.out", "w"));
129 }
130 ], [
131 eval $1=\\\"`cat conftest.out`\\\"
132 ])
133 ])
134
135 PSI_CONSTS=""
136 dnl PSI_CONST(const name, type, headers to include)
137 AC_DEFUN(PSI_CONST, [
138 AC_CACHE_CHECK(value of $1, psi_cv_const_$1, [
139 psi_const_val=
140 case $2 in
141 str*|quoted_str*)
142 if test "$cross_compiling" = "yes"
143 then
144 AC_TRY_CPP(PSI_INCLUDES_DEFAULT($3)$1, psi_const_val=`eval "$ac_try|tail -n1"`, psi_const_val=)
145 else
146 PSI_COMPUTE_STR(psi_const_val, $1, PSI_INCLUDES_DEFAULT($3))
147 fi
148 ;;
149 *)
150 AC_COMPUTE_INT(psi_const_val, $1, PSI_INCLUDES_DEFAULT($3))
151 ;;
152 esac
153 psi_cv_const_$1=$psi_const_val
154 ])
155 if test "$psi_cv_const_$1"
156 then
157 case $2 in
158 str*|quoted_str*)
159 PSI_CONSTS="{PSI_T_STRING, \"string\", \"psi\\\\$1\", $psi_cv_const_$1, PSI_T_QUOTED_STRING}, $PSI_CONSTS"
160 ;;
161 *)
162 PSI_CONSTS="{PSI_T_INT, \"int\", \"psi\\\\$1\", \"$psi_cv_const_$1\", PSI_T_NUMBER}, $PSI_CONSTS"
163 ;;
164 esac
165 fi
166 ])
167
168 AC_DEFUN([AX_CHECK_SIGN], [
169 typename=`echo $1 | sed "s/@<:@^a-zA-Z0-9_@:>@/_/g"`
170 AC_CACHE_CHECK([whether $1 is signed], ax_cv_decl_${typename}_signed, [
171 AC_TRY_COMPILE([$4],
172 [ int foo @<:@ 1 - 2 * !((($1) -1) < 0) @:>@ ],
173 [ eval "ax_cv_decl_${typename}_signed=\"yes\"" ],
174 [ eval "ax_cv_decl_${typename}_signed=\"no\"" ])])
175 symbolname=`echo $1 | sed "s/@<:@^a-zA-Z0-9_@:>@/_/g" | tr "a-z" "A-Z"`
176 if eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"yes\""; then
177 $2
178 elif eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"no\""; then
179 $3
180 fi
181 ])
182 dnl PSI_CHECK_OFFSETOF(struct, member, include)
183 dnl[AS_LITERAL_IF([$1], [], [m4_fatal([$0: requires literal arguments])])]dnl
184 dnl[AS_LITERAL_IF([$2], [], [m4_fatal([$0: requires literal arguments])])]dnl
185 AC_DEFUN(PSI_CHECK_OFFSETOF, [
186 _AC_CACHE_CHECK_INT(
187 [offset of $2 in $1],
188 [AS_TR_SH([ac_cv_offsetof_$1_$2])],
189 [(long int) (offsetof ($1, $2))],
190 [AC_INCLUDES_DEFAULT([$3])],
191 [AC_MSG_FAILURE([cannot compute offsetof ($1, $2)])]
192 )
193 AC_DEFINE_UNQUOTED(
194 AS_TR_CPP(offsetof_$1_$2),
195 $AS_TR_SH([ac_cv_offsetof_$1_$2]),
196 [The offset of `$2' in `$1', as computed by offsetof.]
197 )
198 ])
199
200 dnl PSI_STRUCT(name, members, member type cases, includes)
201 PSI_STRUCTS=
202 AC_DEFUN(PSI_STRUCT, [
203 AC_CHECK_SIZEOF(struct $1, [], PSI_INCLUDES_DEFAULT($4))
204 psi_struct_size=$ac_cv_sizeof_struct_$1
205 psi_struct_members=
206 m4_foreach(member, [$2], [
207 AC_CHECK_MEMBER(struct $1.member, [
208 psi_member_name=member
209 AC_CHECK_SIZEOF(struct_$1[_]member, [], PSI_INCLUDES_DEFAULT($4,
210 [#define struct_$1_]member ((struct $1 *)0)->member
211 ))
212 psi_member_size=$ac_cv_sizeof_struct_$1[]_[]member
213 PSI_CHECK_OFFSETOF(struct $1, member, PSI_INCLUDES_DEFAULT($4))
214 psi_member_offset=$ac_cv_offsetof_struct_$1[]_[]member
215 # type
216 case member in
217 $3
218 *) psi_member_type=int ;;
219 esac
220 # pointer level
221 psi_struct_member_pl=`echo $psi_member_type | tr -cd '*' | wc -c`
222 # array size
223 psi_struct_member_as=`echo $psi_member_type | $AWK -F'@<:@@:>@@<:@@:>@' 'END {if(!found)print 0} /\@<:@@<:@@<:@:digit:@:>@@:>@+\@:>@/ {found=1; print$[]2}'`
224 if test $psi_struct_member_as -gt 0
225 then
226 psi_struct_member_pl=`expr $psi_struct_member_pl + 1`
227 fi
228 psi_struct_member="{`psi_type_pair $psi_member_type $psi_member_size`, \"$psi_member_name\", $psi_member_offset, $psi_member_size, $psi_struct_member_pl, $psi_struct_member_as}"
229 if test "$psi_struct_members"
230 then
231 psi_struct_members="$psi_struct_members, $psi_struct_member"
232 else
233 psi_struct_members="$psi_struct_member"
234 fi
235 ], [], PSI_INCLUDES_DEFAULT($4))
236 ])
237 PSI_STRUCTS="{\"$1\", $psi_struct_size, {$psi_struct_members}}, $PSI_STRUCTS"
238 ])
239
240 PSI_INCLUDES=
241 AC_PROG_NM
242 AC_PROG_AWK
243 PSI_FUNCS=
244 dnl PSI_FUNC(fn)
245 AC_DEFUN(PSI_FUNC, [
246 psi_symbol=$1
247 AC_CACHE_CHECK(for $1, psi_cv_fn_$1, [
248 psi_symbol_redirect=
249 AC_TRY_LINK_FUNC($1, [
250 psi_symbol_redirect=`$NM -g conftest$ac_exeext | $AWK -F" *|@" '/ U .*$1.*/ {print$[]3}'`
251 ])
252 case "$psi_symbol_redirect" in
253 "_$psi_symbol"|"$psi_symbol"|"")
254 psi_cv_fn_$1=$psi_symbol
255 ;;
256 *)
257 psi_cv_fn_$1=$psi_symbol_redirect
258 ;;
259 esac
260 ])
261 if test "$psi_cv_fn_$1" != "$psi_symbol"
262 then
263 PSI_FUNCS="{\"$psi_symbol\", (void *) $psi_symbol}, $PSI_FUNCS"
264 fi
265 ])
266
267 PSI_MACROS=
268 dnl PSI_MACRO(macro, return type, decl args, call args, include)
269 AC_DEFUN(PSI_MACRO, [
270 AC_CHECK_DECL($1$3, [
271 PSI_MACROS="static $2 psi_macro_$1$3 {return $1$4;} $PSI_MACROS"
272 PSI_FUNCS="{\"$1\", (void *) psi_macro_$1}, $PSI_FUNCS"
273 ], [], PSI_INCLUDES_DEFAULT($5))
274 ])
275
276 AC_TYPE_INT8_T
277 AC_CHECK_ALIGNOF(int8_t)
278 AC_TYPE_UINT8_T
279 AC_CHECK_ALIGNOF(uint8_t)
280 AC_TYPE_INT16_T
281 AC_CHECK_ALIGNOF(int16_t)
282 AC_TYPE_UINT16_T
283 AC_CHECK_ALIGNOF(uint16_t)
284 AC_TYPE_INT32_T
285 AC_CHECK_ALIGNOF(int32_t)
286 AC_TYPE_UINT32_T
287 AC_CHECK_ALIGNOF(uint32_t)
288 AC_TYPE_INT64_T
289 AC_CHECK_ALIGNOF(int64_t)
290 AC_TYPE_UINT64_T
291 AC_CHECK_ALIGNOF(uint64_t)
292
293 PSI_TYPE(char, int)
294 PSI_TYPE(short, int)
295 PSI_TYPE(int, int)
296 PSI_TYPE(long, int)
297 PSI_TYPE(float)
298 PSI_TYPE(double)
299 PSI_TYPE(void *)
300
301 dnl errno.h
302 PSI_MACRO(errno, int, [()], [], errno.h)
303 PSI_CONST(E2BIG, int, errno.h)
304 PSI_CONST(EACCES, int, errno.h)
305 PSI_CONST(EADDRINUSE, int, errno.h)
306 PSI_CONST(EADDRNOTAVAIL, int, errno.h)
307 PSI_CONST(EAFNOSUPPORT, int, errno.h)
308 PSI_CONST(EAGAIN, int, errno.h)
309 PSI_CONST(EALREADY, int, errno.h)
310 PSI_CONST(EBADF, int, errno.h)
311 PSI_CONST(EBADMSG, int, errno.h)
312 PSI_CONST(EBUSY, int, errno.h)
313 PSI_CONST(ECANCELED, int, errno.h)
314 PSI_CONST(ECHILD, int, errno.h)
315 PSI_CONST(ECONNABORTED, int, errno.h)
316 PSI_CONST(ECONNREFUSED, int, errno.h)
317 PSI_CONST(ECONNRESET, int, errno.h)
318 PSI_CONST(EDEADLK, int, errno.h)
319 PSI_CONST(EDESTADDRREQ, int, errno.h)
320 PSI_CONST(EDOM, int, errno.h)
321 PSI_CONST(EDQUOT, int, errno.h)
322 PSI_CONST(EEXIST, int, errno.h)
323 PSI_CONST(EFAULT, int, errno.h)
324 PSI_CONST(EFBIG, int, errno.h)
325 PSI_CONST(EHOSTUNREACH, int, errno.h)
326 PSI_CONST(EIDRM, int, errno.h)
327 PSI_CONST(EILSEQ, int, errno.h)
328 PSI_CONST(EINPROGRESS, int, errno.h)
329 PSI_CONST(EINTR, int, errno.h)
330 PSI_CONST(EINVAL, int, errno.h)
331 PSI_CONST(EIO, int, errno.h)
332 PSI_CONST(EISCONN, int, errno.h)
333 PSI_CONST(EISDIR, int, errno.h)
334 PSI_CONST(ELOOP, int, errno.h)
335 PSI_CONST(EMFILE, int, errno.h)
336 PSI_CONST(EMLINK, int, errno.h)
337 PSI_CONST(EMSGSIZE, int, errno.h)
338 PSI_CONST(EMULTIHOP, int, errno.h)
339 PSI_CONST(ENAMETOOLONG, int, errno.h)
340 PSI_CONST(ENETDOWN, int, errno.h)
341 PSI_CONST(ENETRESET, int, errno.h)
342 PSI_CONST(ENETUNREACH, int, errno.h)
343 PSI_CONST(ENFILE, int, errno.h)
344 PSI_CONST(ENOBUFS, int, errno.h)
345 PSI_CONST(ENODATA, int, errno.h)
346 PSI_CONST(ENODEV, int, errno.h)
347 PSI_CONST(ENOENT, int, errno.h)
348 PSI_CONST(ENOEXEC, int, errno.h)
349 PSI_CONST(ENOLCK, int, errno.h)
350 PSI_CONST(ENOLINK, int, errno.h)
351 PSI_CONST(ENOMEM, int, errno.h)
352 PSI_CONST(ENOMSG, int, errno.h)
353 PSI_CONST(ENOPROTOOPT, int, errno.h)
354 PSI_CONST(ENOSPC, int, errno.h)
355 PSI_CONST(ENOSR, int, errno.h)
356 PSI_CONST(ENOSTR, int, errno.h)
357 PSI_CONST(ENOSYS, int, errno.h)
358 PSI_CONST(ENOTCONN, int, errno.h)
359 PSI_CONST(ENOTDIR, int, errno.h)
360 PSI_CONST(ENOTEMPTY, int, errno.h)
361 PSI_CONST(ENOTRECOVERABLE, int, errno.h)
362 PSI_CONST(ENOTSOCK, int, errno.h)
363 PSI_CONST(ENOTSUP, int, errno.h)
364 PSI_CONST(ENOTTY, int, errno.h)
365 PSI_CONST(ENXIO, int, errno.h)
366 PSI_CONST(EOPNOTSUPP, int, errno.h)
367 PSI_CONST(EOVERFLOW, int, errno.h)
368 PSI_CONST(EOWNERDEAD, int, errno.h)
369 PSI_CONST(EPERM, int, errno.h)
370 PSI_CONST(EPIPE, int, errno.h)
371 PSI_CONST(EPROTO, int, errno.h)
372 PSI_CONST(EPROTONOSUPPORT, int, errno.h)
373 PSI_CONST(EPROTOTYPE, int, errno.h)
374 PSI_CONST(ERANGE, int, errno.h)
375 PSI_CONST(EROFS, int, errno.h)
376 PSI_CONST(ESPIPE, int, errno.h)
377 PSI_CONST(ESRCH, int, errno.h)
378 PSI_CONST(ESTALE, int, errno.h)
379 PSI_CONST(ETIME, int, errno.h)
380 PSI_CONST(ETIMEDOUT, int, errno.h)
381 PSI_CONST(ETXTBSY, int, errno.h)
382 PSI_CONST(EWOULDBLOCK, int, errno.h)
383 PSI_CONST(EXDEV, int, errno.h)
384 dnl stdint.h
385 PSI_TYPE(int_least8_t, int)
386 PSI_TYPE(int_least16_t, int)
387 PSI_TYPE(int_least32_t, int)
388 PSI_TYPE(int_least64_t, int)
389 PSI_TYPE(uint_least8_t, uint)
390 PSI_TYPE(uint_least16_t, uint)
391 PSI_TYPE(uint_least32_t, uint)
392 PSI_TYPE(uint_least64_t, uint)
393 PSI_TYPE(int_fast8_t, int)
394 PSI_TYPE(int_fast16_t, int)
395 PSI_TYPE(int_fast32_t, int)
396 PSI_TYPE(int_fast64_t, int)
397 PSI_TYPE(uint_fast8_t, uint)
398 PSI_TYPE(uint_fast16_t, uint)
399 PSI_TYPE(uint_fast32_t, uint)
400 PSI_TYPE(uint_fast64_t, uint)
401 PSI_TYPE(intptr_t, int)
402 PSI_TYPE(uintptr_t, uint)
403 PSI_TYPE(intmax_t, int)
404 PSI_TYPE(uintmax_t, uint)
405
406 PSI_CONST(INT8_MIN, int)
407 PSI_CONST(INT8_MAX, int)
408 PSI_CONST(UINT8_MAX, int)
409 PSI_CONST(INT16_MIN, int)
410 PSI_CONST(INT16_MAX, int)
411 PSI_CONST(UINT16_MAX, int)
412 PSI_CONST(INT32_MIN, int)
413 PSI_CONST(INT32_MAX, int)
414 PSI_CONST(UINT32_MAX, int)
415 PSI_CONST(INT64_MIN, int)
416 PSI_CONST(INT64_MAX, int)
417 PSI_CONST(UINT64_MAX, int)
418
419 PSI_CONST(INT_LEAST8_MIN, int)
420 PSI_CONST(INT_LEAST8_MAX, int)
421 PSI_CONST(UINT_LEAST8_MAX, int)
422 PSI_CONST(INT_LEAST16_MIN, int)
423 PSI_CONST(INT_LEAST16_MAX, int)
424 PSI_CONST(UINT_LEAST16_MAX, int)
425 PSI_CONST(INT_LEAST32_MIN, int)
426 PSI_CONST(INT_LEAST32_MAX, int)
427 PSI_CONST(UINT_LEAST32_MAX, int)
428 PSI_CONST(INT_LEAST64_MIN, int)
429 PSI_CONST(INT_LEAST64_MAX, int)
430 PSI_CONST(UINT_LEAST64_MAX, int)
431
432 PSI_CONST(INT_FAST8_MIN, int)
433 PSI_CONST(INT_FAST8_MAX, int)
434 PSI_CONST(UINT_FAST8_MAX, int)
435 PSI_CONST(INT_FAST16_MIN, int)
436 PSI_CONST(INT_FAST16_MAX, int)
437 PSI_CONST(UINT_FAST16_MAX, int)
438 PSI_CONST(INT_FAST32_MIN, int)
439 PSI_CONST(INT_FAST32_MAX, int)
440 PSI_CONST(UINT_FAST32_MAX, int)
441 PSI_CONST(INT_FAST64_MIN, int)
442 PSI_CONST(INT_FAST64_MAX, int)
443 PSI_CONST(UINT_FAST64_MAX, int)
444
445 PSI_CONST(INTPTR_MIN, int)
446 PSI_CONST(INTPTR_MAX, int)
447 PSI_CONST(UINTPTR_MAX, int)
448 PSI_CONST(INTMAX_MIN, int)
449 PSI_CONST(INTMAX_MAX, int)
450 PSI_CONST(UINTMAX_MAX, int)
451
452 dnl stddef.h
453 PSI_TYPE(ptrdiff_t, int)
454 PSI_CONST(PTRDIFF_MIN, int)
455 PSI_CONST(PTRDIFF_MAX, int)
456 PSI_TYPE(size_t, uint)
457 PSI_CONST(SIZE_MAX, int)
458 AC_CHECK_TYPE(wchar_t, [
459 AX_CHECK_SIGN(wchar_t, psi_wchar_t=int, psi_wchar_t=uint)
460 PSI_TYPE(wchar_t, $psi_wchar_t)
461 PSI_CONST(WCHAR_MIN, int)
462 PSI_CONST(WCHAR_MAX, int)
463 ])
464
465 dnl stdio.h
466 PSI_CONST(BUFSIZ, int)
467 PSI_CONST(_IOFBF, int)
468 PSI_CONST(_IOLBF, int)
469 PSI_CONST(_IONBF, int)
470 PSI_CONST(SEEK_CUR, int)
471 PSI_CONST(SEEK_END, int)
472 PSI_CONST(SEEK_SET, int)
473 PSI_CONST(FILENAME_MAX, int)
474 PSI_CONST(FOPEN_MAX, int)
475 PSI_CONST(TMP_MAX, int)
476 PSI_CONST(EOF, int)
477 PSI_CONST(P_tmpdir, string)
478 PSI_CONST(L_ctermid, int)
479 PSI_CONST(L_tmpnam, int)
480 PSI_FUNC(clearerr)
481 PSI_FUNC(ctermid)
482 PSI_FUNC(dprintf)
483 PSI_FUNC(fclose)
484 PSI_FUNC(fdopen)
485 PSI_FUNC(feof)
486 PSI_FUNC(ferror)
487 PSI_FUNC(fflush)
488 PSI_FUNC(fgetc)
489 PSI_FUNC(fgetpos)
490 PSI_FUNC(fgets)
491 PSI_FUNC(fileno)
492 PSI_FUNC(flockfile)
493 PSI_FUNC(fmemopen)
494 PSI_FUNC(fopen)
495 PSI_FUNC(fprintf)
496 PSI_FUNC(fputc)
497 PSI_FUNC(fputs)
498 PSI_FUNC(fread)
499 PSI_FUNC(freopen)
500 PSI_FUNC(fscanf)
501 PSI_FUNC(fseek)
502 PSI_FUNC(fseeko)
503 PSI_FUNC(fsetpos)
504 PSI_FUNC(ftell)
505 PSI_FUNC(ftello)
506 PSI_FUNC(ftrylockfile)
507 PSI_FUNC(funlockfile)
508 PSI_FUNC(fwrite)
509 PSI_FUNC(getc)
510 PSI_FUNC(getchar)
511 PSI_FUNC(getc_unlocked)
512 PSI_FUNC(getchar_unlocked)
513 PSI_FUNC(getdelim)
514 PSI_FUNC(getline)
515 PSI_FUNC(gets)
516 PSI_FUNC(open_memstream)
517 PSI_FUNC(pclose)
518 PSI_FUNC(perror)
519 PSI_FUNC(popen)
520 PSI_FUNC(printf)
521 PSI_FUNC(putc)
522 PSI_FUNC(putchar)
523 PSI_FUNC(putc_unlocked)
524 PSI_FUNC(putchar_unlocked)
525 PSI_FUNC(puts)
526 PSI_FUNC(remove)
527 PSI_FUNC(rename)
528 PSI_FUNC(renameat)
529 PSI_FUNC(rewind)
530 PSI_FUNC(scanf)
531 PSI_FUNC(setbuf)
532 PSI_FUNC(setvbuf)
533 PSI_FUNC(snprintf)
534 PSI_FUNC(sprintf)
535 PSI_FUNC(sscanf)
536 PSI_FUNC(tempnam)
537 PSI_FUNC(tmpfile)
538 PSI_FUNC(tmpnam)
539 PSI_FUNC(ungetc)
540 PSI_FUNC(vdprintf)
541 PSI_FUNC(vfprintf)
542 PSI_FUNC(vfscanf)
543 PSI_FUNC(vprintf)
544 PSI_FUNC(vscanf)
545 PSI_FUNC(vsnprintf)
546 PSI_FUNC(vsprintf)
547 PSI_FUNC(vsscanf)
548
549 dnl stdlib.h
550 PSI_CONST(EXIT_FAILURE, int)
551 PSI_CONST(EXIT_SUCCESS, int)
552 PSI_CONST(RAND_MAX, int)
553 PSI_CONST(MB_CUR_MAX, int)
554 dnl sys/stat.h
555 PSI_FUNC(chmod)
556 PSI_FUNC(fchmod)
557 PSI_FUNC(fchmodat)
558 PSI_FUNC(fstat)
559 PSI_FUNC(fstatat)
560 PSI_FUNC(futimens)
561 PSI_FUNC(lstat)
562 PSI_FUNC(mkdir)
563 PSI_FUNC(mkdirat)
564 PSI_FUNC(mkfifo)
565 PSI_FUNC(mkfifoat)
566 PSI_FUNC(mknod)
567 PSI_FUNC(mknodat)
568 PSI_FUNC(stat)
569 PSI_FUNC(umask)
570 PSI_FUNC(utimensat)
571 PSI_STRUCT(stat, [
572 [st_dev],
573 [st_ino],
574 [st_mode],
575 [st_nlink],
576 [st_uid],
577 [st_gid],
578 [st_rdev],
579 [st_size],
580 [st_atim], [st_atimespec],
581 [st_mtim], [st_mtimespec],
582 [st_ctim], [st_ctimespec],
583 [st_birthtimespec],
584 [st_blksize],
585 [st_blocks],
586 [st_flags],
587 [st_gen]], [
588 st_?tim) psi_member_type="struct timespec" ;;
589 st_*timespec) psi_member_type="struct timespec" ;;
590 ], sys/stat.h)
591 PSI_CONST(S_IFMT, int, sys/stat.h)
592 PSI_CONST(S_IFBLK, int, sys/stat.h)
593 PSI_CONST(S_IFCHR, int, sys/stat.h)
594 PSI_CONST(S_IFIFO, int, sys/stat.h)
595 PSI_CONST(S_IFREG, int, sys/stat.h)
596 PSI_CONST(S_IFDIR, int, sys/stat.h)
597 PSI_CONST(S_IFLNK, int, sys/stat.h)
598 PSI_CONST(S_IFSOCK, int, sys/stat.h)
599 PSI_CONST(S_IRWXU, int, sys/stat.h)
600 PSI_CONST(S_IRUSR, int, sys/stat.h)
601 PSI_CONST(S_IWUSR, int, sys/stat.h)
602 PSI_CONST(S_IXUSR, int, sys/stat.h)
603 PSI_CONST(S_IRWXG, int, sys/stat.h)
604 PSI_CONST(S_IRGRP, int, sys/stat.h)
605 PSI_CONST(S_IWGRP, int, sys/stat.h)
606 PSI_CONST(S_IXGRP, int, sys/stat.h)
607 PSI_CONST(S_IRWXO, int, sys/stat.h)
608 PSI_CONST(S_IROTH, int, sys/stat.h)
609 PSI_CONST(S_IWOTH, int, sys/stat.h)
610 PSI_CONST(S_IXOTH, int, sys/stat.h)
611 PSI_CONST(S_ISUID, int, sys/stat.h)
612 PSI_CONST(S_ISGID, int, sys/stat.h)
613 PSI_CONST(UTIME_NOW, int, sys/stat.h)
614 PSI_CONST(UTIME_OMIT, int, sys/stat.h)
615 PSI_MACRO(S_ISBLK, int, [(mode_t m)], [(m)], sys/stat.h)
616 PSI_MACRO(S_ISCHR, int, [(mode_t m)], [(m)], sys/stat.h)
617 PSI_MACRO(S_ISDIR, int, [(mode_t m)], [(m)], sys/stat.h)
618 PSI_MACRO(S_ISFIFO, int, [(mode_t m)], [(m)], sys/stat.h)
619 PSI_MACRO(S_ISREG, int, [(mode_t m)], [(m)], sys/stat.h)
620 PSI_MACRO(S_ISLNK, int, [(mode_t m)], [(m)], sys/stat.h)
621 PSI_MACRO(S_ISSOCK, int, [(mode_t m)], [(m)], sys/stat.h)
622 PSI_MACRO(S_TYPEISMQ, int, [(mode_t m)], [(m)], sys/stat.h)
623 PSI_MACRO(S_TYPEISSEM, int, [(mode_t m)], [(m)], sys/stat.h)
624 PSI_MACRO(S_TYPEISSHM, int, [(mode_t m)], [(m)], sys/stat.h)
625 PSI_MACRO(S_TYPEISTMO, int, [(mode_t m)], [(m)], sys/stat.h)
626 dnl sys/time.h
627 PSI_STRUCT(timeval, [
628 [tv_sec],
629 [tv_usec]], [
630 ], sys/time.h)
631 PSI_STRUCT(itimerval, [
632 [it_interval],
633 [it_value]], [
634 it_*) psi_member_type="struct timeval" ;;
635 ], sys/time.h)
636 PSI_STRUCT(timezone, [
637 [tz_minuteswest],
638 [tz_dsttime]], [
639 ], sys/time.h)
640 PSI_CONST(ITIMER_REAL, int, sys/time.h)
641 PSI_CONST(ITIMER_VIRTUAL, int, sys/time.h)
642 PSI_CONST(ITIMER_PROF, int, sys/time.h)
643 dnl sys/times.h
644 PSI_FUNC(times)
645 PSI_STRUCT(tms, [
646 [tms_utime],
647 [tms_stime],
648 [tms_cutime],
649 [tms_cstime]], [
650 ], sys/times.h)
651 dnl sys/types.h
652 PSI_TYPE(blkcnt_t, int)
653 PSI_TYPE(blksize_t, int)
654 PSI_TYPE(clock_t, int)
655 PSI_TYPE(clockid_t, int)
656 PSI_TYPE(dev_t, int)
657 PSI_TYPE(fsblkcnt_t, uint)
658 PSI_TYPE(fsfilcnt_t, uint)
659 PSI_TYPE(gid_t, int)
660 PSI_TYPE(id_t, int)
661 PSI_TYPE(ino_t, uint)
662 PSI_TYPE(key_t, int)
663 PSI_TYPE(mode_t, int)
664 PSI_TYPE(nlink_t, int)
665 PSI_TYPE(off_t, int)
666 PSI_TYPE(pid_t, int)
667 PSI_TYPE(ssize_t, int)
668 PSI_TYPE(suseconds_t, int)
669 PSI_TYPE(time_t, int)
670 PSI_TYPE(timer_t, int)
671 PSI_TYPE(uid_t)
672 dnl sys/utsname.h
673 PSI_FUNC(uname)
674 PSI_STRUCT(utsname, [
675 [sysname],
676 [nodename],
677 [release],
678 [version],
679 [machine],
680 [domainname]], [
681 *) psi_member_type="char@<:@$psi_member_size@:>@" ;;
682 ], sys/utsname.h)
683 dnl time.h
684 PSI_STRUCT(tm, [
685 [tm_sec],
686 [tm_min],
687 [tm_hour],
688 [tm_mday],
689 [tm_mon],
690 [tm_year],
691 [tm_wday],
692 [tm_yday],
693 [tm_isdst]], [
694 ], time.h)
695 PSI_STRUCT(timespec, [
696 [tv_sec],
697 [tv_nsec]], [
698 ], time.h)
699 PSI_CONST(CLOCKS_PER_SEC, int, time.h)
700 PSI_CONST(CLOCK_MONOTONIC, int, time.h)
701 PSI_CONST(CLOCK_PROCESS_CPUTIME_ID, int, time.h)
702 PSI_CONST(CLOCK_REALTIME, int, time.h)
703 PSI_CONST(CLOCK_THREAD_CPUTIME_ID, int, time.h)
704 PSI_CONST(TIMER_ABSTIME, int, time.h)
705 dnl wchar.h
706 AC_CHECK_TYPE(wint_t, [
707 AX_CHECK_SIGN(wint_t, psi_wint_t=int, psi_wint_t=uint)
708 PSI_TYPE(wint_t, $psi_wint_t, wchar.h)
709 PSI_CONST(WINT_MIN, int, wchar.h)
710 PSI_CONST(WINT_MAX, int, wchar.h)
711 PSI_CONST(WEOF, int, wchar.h)
712 ], [], [
713 AC_INCLUDES_DEFAULT()
714 #include <wchar.h>
715 ])
716
717
718 AC_DEFINE_UNQUOTED(PHP_PSI_FUNCS, $PSI_FUNCS, Redirected functions)
719 AC_DEFINE_UNQUOTED(PHP_PSI_MACROS, $PSI_MACROS, Exported macros)
720 AC_DEFINE_UNQUOTED(PHP_PSI_TYPES, $PSI_TYPES, Predefined types)
721 AC_DEFINE_UNQUOTED(PHP_PSI_CONSTS, $PSI_CONSTS, Predefined constants)
722 AC_DEFINE_UNQUOTED(PHP_PSI_STRUCTS, $PSI_STRUCTS, Predefined structs)
723
724 AC_DEFINE_UNQUOTED(PHP_PSI_SHLIB_SUFFIX, $SHLIB_SUFFIX_NAME, DL suffix)
725
726 PHP_PSI_SRCDIR=PHP_EXT_SRCDIR(psi)
727 PHP_PSI_BUILDDIR=PHP_EXT_BUILDDIR(psi)
728
729 PHP_ADD_INCLUDE($PHP_PSI_SRCDIR/src)
730 PHP_ADD_BUILD_DIR($PHP_PSI_BUILDDIR/src)
731
732 PHP_PSI_HEADERS=`(cd $PHP_PSI_SRCDIR/src && echo *.h)`
733 PHP_PSI_SOURCES="src/parser_proc.c src/parser.c src/module.c src/context.c"
734 PHP_PSI_SOURCES="$PHP_PSI_SOURCES src/libjit.c src/libffi.c"
735
736 PHP_NEW_EXTENSION(psi, $PHP_PSI_SOURCES, $ext_shared)
737 PHP_INSTALL_HEADERS(ext/psi, php_psi.h $PHP_PSI_HEADERS)
738
739 PHP_SUBST(PHP_PSI_HEADERS)
740 PHP_SUBST(PHP_PSI_SOURCES)
741
742 PHP_SUBST(PHP_PSI_SRCDIR)
743 PHP_SUBST(PHP_PSI_BUILDDIR)
744
745 PHP_ADD_MAKEFILE_FRAGMENT
746 fi