From: Peter Johnson Date: Fri, 29 Jun 2001 02:13:08 +0000 (-0000) Subject: Add additional checks: const, size_t, vprintf() family, strtoul, and toascii. X-Git-Tag: v0.1.0~442 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93c75c63a522090f89878485686c9542cb1a1630;p=yasm Add additional checks: const, size_t, vprintf() family, strtoul, and toascii. svn path=/trunk/yasm/; revision=69 --- diff --git a/configure.ac b/configure.ac index c2104189..458a6b77 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,12 @@ AC_PROG_YACC AC_PROG_INSTALL AC_HEADER_STDC -AC_CHECK_FUNCS(memcpy) -AC_REPLACE_FUNCS(strdup) + +AC_C_CONST +AC_TYPE_SIZE_T + +AC_FUNC_VPRINTF +AC_CHECK_FUNCS(memcpy toascii) +AC_REPLACE_FUNCS(strdup strtoul) AC_OUTPUT(Makefile src/Makefile include/Makefile) diff --git a/configure.in b/configure.in index c2104189..458a6b77 100644 --- a/configure.in +++ b/configure.in @@ -11,7 +11,12 @@ AC_PROG_YACC AC_PROG_INSTALL AC_HEADER_STDC -AC_CHECK_FUNCS(memcpy) -AC_REPLACE_FUNCS(strdup) + +AC_C_CONST +AC_TYPE_SIZE_T + +AC_FUNC_VPRINTF +AC_CHECK_FUNCS(memcpy toascii) +AC_REPLACE_FUNCS(strdup strtoul) AC_OUTPUT(Makefile src/Makefile include/Makefile)