configure: add --enable-psi-maintainer-mode
[m6w6/ext-psi] / m4 / psi / psi_decl.m4
index fa2bf55ec6e8c87045db63689f3a730cd47c9af1..3cf8cc286ceb8e8180ed4a6a3d1af1f983b9c8bc 100644 (file)
@@ -10,7 +10,7 @@ EOF
 # Add a pre-defined decl to $PSI_VA_DECLS/$PSI_DECLS.
 psi_add_decl() {
        case "$2" in
- *functor*)
      *functor*)
                cat >>$PSI_FN_DECLS <<EOF
        $1, {0},
 EOF
@@ -61,6 +61,7 @@ AC_DEFUN(PSI_DECL_ARGS, [
        m4_case([$2],
                [(void)], [],
                [()], [],
+               [], [],
                [m4_map_args_sep([PSI_DECL_ARG(m4_normalize(], [))], [], m4_bregexp([$2], [(\(.*\))], [\1]))])
 ])
 
@@ -77,33 +78,64 @@ 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, flags)
+dnl PSI_DECL(type func, args, flags, libs)
 dnl Check for a function or macro declaration and a possible asm redirection.
 dnl Adds a pre-defined (vararg) decl to $PSI_VA_DECLS/$PSI_DECLS.
 dnl Calls PSI_MACRO if PSI_FUNC fails.
 AC_DEFUN(PSI_DECL, [
-       AC_REQUIRE([PSI_FUNC_LIBC_MAIN])
+       AC_REQUIRE([PSI_FUNC_LIBC_MAIN])dnl
+
        PSI_DECL_ARGS($1, $2)
 
        psi_symbol="PSI_VAR_NAME($1)"
        AC_CACHE_CHECK(for PSI_VAR_NAME($1), [psi_cv_fn_]PSI_VAR_NAME($1), [
+               psi_decl_check=
                psi_symbol_redirect=
-               AC_TRY_LINK(PSI_INCLUDES, [
-                       void (*fn)(void) = (void (*)(void)) $psi_symbol; (*fn)()
-               ], [
-                       psi_symbol_redirect=`nm -g conftest$ac_exeext | $AWK -F ' *|@' '/^@<:@@<:@:space:@:>@@:>@+U '$psi_cv_libc_main'/ {next} /^@<:@@<:@:space:@:>@@:>@+U / {print$[]3; exit}'`
-               ])
-               [psi_cv_fn_]PSI_VAR_NAME($1)=$psi_symbol_redirect
+               for lib in "" $4; do
+                       decl_save_LIBS=$LIBS
+                       LIBS=$lib
+                       AC_TRY_LINK(PSI_INCLUDES, [
+                               void (*fn)(long, long, long) = (void (*)(long,long,long)) $psi_symbol;
+                               fn(1,2,3);
+                       ], [
+                               psi_symbol_redirect=`nm -g conftest$ac_exeext | $AWK -F ' *|@' '/^@<:@@<:@:space:@:>@@:>@+U '$psi_cv_libc_main'/ {next} /^@<:@@<:@:space:@:>@@:>@+U / {print$[]3; exit}'`
+                       ])
+                       LIBS=$decl_save_LIBS
+
+                       if test -n "$psi_symbol_redirect"; then
+                               if test -n "$lib"; then
+                                       psi_decl_check="$psi_symbol_redirect in $lib"
+                               else
+                                       psi_decl_check="$psi_symbol_redirect"
+                               fi
+                               break
+                       fi
+               done
+               [psi_cv_fn_]PSI_VAR_NAME($1)=$psi_decl_check
        ])
-       case "$[psi_cv_fn_]PSI_VAR_NAME($1)" in
+
+       psi_symbol_redirect=`AS_ECHO("$[psi_cv_fn_]PSI_VAR_NAME($1)") | $AWK -F " in " '{print [$]1}'`
+       psi_symbol_libflag=`AS_ECHO("$[psi_cv_fn_]PSI_VAR_NAME($1)") | $AWK -F " in " '{print [$]2}'`
+
+       if test -n "$psi_symbol_libflag"; then
+               if ! expr "X$LIBS" : "X.*\b$psi_symbol_libflag\b" >/dev/null; then
+                       LIBS="$psi_symbol_libflag $LIBS"
+               fi
+       fi
+
+       case "$psi_symbol_redirect" in
        "$psi_symbol"|"_$psi_symbol")
-               case "$PHP_DEBUG-$3" in
-               "1-")
+               case "$PSI_EXTRA_REDIRS-$3" in
+               "true-")
                        PSI_MACRO($1, $2, [
                                psi_add_decl "$psi_decl_args"
                        ])
                        ;;
                *)
+                       if test -n "$psi_symbol_libflag"
+                       then
+                               PSI_REDIR($psi_symbol)
+                       fi
                        psi_add_decl "$psi_decl_args" $3
                        ;;
                esac