avoid busting bash's stack with a too big if body in configure
[m6w6/ext-psi] / m4 / psi_decl.m4
index 3bc2558d593cbf60cc23a121c29cff6a71ef64bb..c331bbecc658fa4aa8a6f3e7655323cc6e15962d 100644 (file)
@@ -1,5 +1,5 @@
 AC_DEFUN(PSI_REDIR, [psi_symbol=ifelse([$2],[],[$1],[$2])
-       PSI_REDIRS="{\"$1\", (void(*)(void))$psi_symbol}, $PSI_REDIRS"])
+       cat >>$PSI_REDIRS <<<"  {\"$1\", (void(*)(void))$psi_symbol}, "])
 
 AC_DEFUN(PSI_FUNC_LIBC_MAIN, [
        AC_REQUIRE([AC_PROG_NM])
@@ -51,7 +51,7 @@ AC_DEFUN(PSI_DECL_ARG, [
     psi_decl_args="[$psi_decl_args{]PSI_TYPE_PAIR(member_type)[, \"]member_name[\",] $pl, $as[}]"
 ])
 
-dnl PSI_DECL(type func, args)
+dnl PSI_DECL(type func, args, flags)
 AC_DEFUN(PSI_DECL, [
        psi_decl_args=
        PSI_DECL_ARG($1)
@@ -60,10 +60,15 @@ AC_DEFUN(PSI_DECL, [
                [()], [],
                [m4_map_args_sep([PSI_DECL_ARG(m4_normalize(], [))], [], m4_bregexp([$2], [(\(.*\))], [\1]))])
        PSI_FUNC(PSI_VAR_NAME($1), [
-               PSI_DECLS="$psi_decl_args, {0}, $PSI_DECLS"
+               ifelse([$3], vararg, [
+                       cat >>$PSI_VA_DECLS <<<"        $psi_decl_args, {0}, "
+               ], [
+                       cat >>$PSI_DECLS <<<"   $psi_decl_args, {0}, "
+               ])
        ], [
                PSI_MACRO($1, $2, [
-                       PSI_DECLS="$psi_decl_args, {0}, $PSI_DECLS"
+                       ifelse([$3], vararg, AC_MSG_ERROR(varargs macro support is not implemented),[])
+                       cat >>$PSI_DECLS <<<"   $psi_decl_args, {0}, "
                ])
        ])
 ])