1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

r18514: fix configure caching of AC_VERIFY_C_PROTOTYPE() macro

metze
(This used to be commit 8e49dc69e7d588c85c9e9e7b24b595c61c1da95a)
This commit is contained in:
Stefan Metzmacher 2006-09-14 10:34:03 +00:00 committed by Gerald (Jerry) Carter
parent a0e87e5dc7
commit cbb1975c8c

View File

@ -282,9 +282,9 @@ AC_DEFUN(AC_VERIFY_C_PROTOTYPE,
}
],[
AS_TR_SH([ac_cv_c_prototype_$1])=yes
$3
],[
AS_TR_SH([ac_cv_c_prototype_$1])=no
$4
])
)])
)
AS_IF([test $AS_TR_SH([ac_cv_c_prototype_$1]) = yes],[$3],[$4])
])