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;
{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;
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;
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;
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;
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;
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
])
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
psi_add_str_const() {
grep -q "\"psi\\\\\\\\$1\"" $PSI_CONSTS \
|| cat >>$PSI_CONSTS <<EOF
- {PSI_T_STRING, "string", "psi\\$1", $2, PSI_T_QUOTED_STRING},
-EOF
+ {PSI_T_STRING, "string", "psi\\\\$1", $2, PSI_T_QUOTED_STRING},
+EOF
}
# psi_add_int_const(name, value)