improve/fix build
[m6w6/ext-psi] / m4 / psi.m4
index 63407beb24bb9fd0c61856c65668475fd0da3aed..41acc565fbdaf7ac31b22eb86ecc851efe96b53e 100644 (file)
--- a/m4/psi.m4
+++ b/m4/psi.m4
@@ -15,8 +15,13 @@ dnl Creates stubs of the headers with pre-defined types etc.
 dnl These headers are included by src/context.c.
 dnl This macro must be called prior any checks for a type, struct, decl etc.
 AC_DEFUN(PSI_CONFIG_INIT, [
-       cat >$PSI_STDTYPES <<EOF
+       for i in $PSI_STDTYPES $PSI_TYPES $PSI_STRUCTS $PSI_UNIONS $PSI_CONSTS $PSI_REDIRS $PSI_MACROS $PSI_DECLS $PSI_VA_DECLS; do
+               cat >$i <<EOF
 /* generated by configure */
+#include "php_psi_stdinc.h"
+EOF
+       done
+       cat >>$PSI_STDTYPES <<EOF
 static struct psi_std_type {
        token_t type_tag;
        const char *type_name;
@@ -31,16 +36,14 @@ static struct psi_std_type {
        {PSI_T_UINT32, "uint32_t", NULL},
        {PSI_T_UINT64, "uint64_t", NULL},
 EOF
-       cat >$PSI_TYPES <<EOF
-/* generated by configure */
+       cat >>$PSI_TYPES <<EOF
 static struct psi_predef_type {
        token_t type_tag;
        const char *type_name;
        const char *alias;
 } psi_predef_types@<:@@:>@ = {
 EOF
-       cat >$PSI_STRUCTS <<EOF
-/* generated by configure */
+       cat >>$PSI_STRUCTS <<EOF
 static struct psi_predef_struct {
        token_t type_tag;
        const char *type_name;
@@ -51,8 +54,7 @@ static struct psi_predef_struct {
        size_t array_size;
 } psi_predef_structs@<:@@:>@ = {
 EOF
-       cat >$PSI_UNIONS <<EOF
-/* generated by configure */
+       cat >>$PSI_UNIONS <<EOF
 static struct psi_predef_union {
        token_t type_tag;
        const char *type_name;
@@ -63,8 +65,7 @@ static struct psi_predef_union {
        size_t array_size;
 } psi_predef_unions@<:@@:>@ = {
 EOF
-       cat >$PSI_CONSTS <<EOF
-/* generated by configure */
+       cat >>$PSI_CONSTS <<EOF
 static struct psi_predef_const {
        token_t type_tag;
        const char *type_name;
@@ -73,16 +74,16 @@ static struct psi_predef_const {
        token_t val_type_tag;
 } psi_predef_consts@<:@@:>@ = {
 EOF
-       cat >$PSI_REDIRS <<EOF
-/* generated by configure */
+       cat >>$PSI_REDIRS <<EOF
+typedef void (*psi_func_ptr)();
 static struct psi_func_redir {
        const char *name;
-       void (*func)(void);
+       psi_func_ptr func;
 } psi_func_redirs@<:@@:>@ = {
 EOF
-       cat >$PSI_MACROS </dev/null
-       cat >$PSI_DECLS <<EOF
-/* generated by configure */
+       cat >>$PSI_MACROS <<EOF
+EOF
+       cat >>$PSI_DECLS <<EOF
 static struct psi_predef_decl {
        token_t type_tag;
        const char *type_name;
@@ -91,8 +92,7 @@ static struct psi_predef_decl {
        size_t array_size;
 } psi_predef_decls@<:@@:>@ = {
 EOF
-       cat >$PSI_VA_DECLS <<EOF
-/* generated by configure */
+       cat >>$PSI_VA_DECLS <<EOF
 static struct psi_predef_decl psi_predef_vararg_decls@<:@@:>@ = {
 EOF
 ])
@@ -102,7 +102,16 @@ dnl Finish the headers with the pre-defined types etc.
 AC_DEFUN(PSI_CONFIG_DONE, [
        cat >$PSI_STDINC <<EOF
 /* generated by configure */
+#ifndef _PSI_STDINC
+#define _PSI_STDINC
+#ifndef _GNU_SOURCE
+#define _GNU_SOURCE
+#endif
+#ifndef _XOPEN_SOURCE
+#define _XOPEN_SOURCE
+#endif
 PSI_INCLUDES
+#endif
 EOF
        for i in $PSI_STDTYPES $PSI_TYPES $PSI_STRUCTS $PSI_UNIONS $PSI_CONSTS $PSI_REDIRS $PSI_DECLS $PSI_VA_DECLS; do
                cat >>$i <<EOF
@@ -151,7 +160,7 @@ dnl PSI_CONFIG_POSIX(section, headers)
 AC_DEFUN(PSI_CONFIG_POSIX, [
        PSI_CONFIG_POSIX_ENABLED($1, [
                PHP_CONFIGURE_PART(Configuring PSI POSIX: $1)
-               ifelse([$2],,,AC_CHECK_HEADERS($2))
+               ifelse([$2],,:,[AC_CHECK_HEADERS($2)])
        ], [
                return 0
        ])