Seeding from the 1.2 tree.

This commit is contained in:
Dan Mashal
2013-01-01 03:00:55 -08:00
parent d8c87c4ded
commit 87b806a563
1424 changed files with 260320 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
dnl AC_CHKDECL(pretty, unpretty, regexp, header)
dnl Copyright (c) David Walluck 2000
dnl All rights reserved.
AC_DEFUN(AC_CHECK_DECLARATION, [
AC_CACHE_CHECK(for $1 in $4, ac_cv_$2_declared, [
AC_EGREP_HEADER($3, $4, ac_cv_$2_declared="yes", ac_cv_$2_declared="no",)
])
if test x"$ac_cv_$2_declared" = x"yes"; then
AC_DEFINE($5, 1, Define this if $2 is declared in $4.)
fi
])