Commit 30598fe2 authored by Sam Lantinga's avatar Sam Lantinga

Check for strtod

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401351
parent 940b3988
...@@ -180,7 +180,7 @@ AC_CHECK_FUNCS(memset memcpy memmove memcmp) ...@@ -180,7 +180,7 @@ AC_CHECK_FUNCS(memset memcpy memmove memcmp)
AC_CHECK_FUNCS(strlen strcpy strncpy strcat strncat strdup) AC_CHECK_FUNCS(strlen strcpy strncpy strcat strncat strdup)
AC_CHECK_FUNCS(_strrev _strupr _strlwr) AC_CHECK_FUNCS(_strrev _strupr _strlwr)
AC_CHECK_FUNCS(strchr strrchr strstr) AC_CHECK_FUNCS(strchr strrchr strstr)
AC_CHECK_FUNCS(itoa _ltoa _uitoa _ultoa strtol _i64toa _ui64toa strtoll atoi atof) AC_CHECK_FUNCS(itoa _ltoa _uitoa _ultoa strtol _i64toa _ui64toa strtoll strtod atoi atof)
AC_CHECK_FUNCS(strcmp strncmp stricmp strcasecmp) AC_CHECK_FUNCS(strcmp strncmp stricmp strcasecmp)
AC_CHECK_FUNCS(sscanf snprintf vsnprintf) AC_CHECK_FUNCS(sscanf snprintf vsnprintf)
......
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#ifdef HAVE_LIBC #ifdef HAVE_LIBC
/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems. systems. This function is required for `alloca.c' support on those systems.
*/ */
...@@ -177,6 +176,9 @@ ...@@ -177,6 +176,9 @@
/* Define to 1 if you have the `strstr' function. */ /* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR #undef HAVE_STRSTR
/* Define to 1 if you have the `strtod' function. */
#undef HAVE_STRTOD
/* Define to 1 if you have the `strtol' function. */ /* Define to 1 if you have the `strtol' function. */
#undef HAVE_STRTOL #undef HAVE_STRTOL
...@@ -282,7 +284,6 @@ ...@@ -282,7 +284,6 @@
#undef size_t #undef size_t
#endif /* HAVE_LIBC */ #endif /* HAVE_LIBC */
#endif /* _SDL_config_h */ #endif /* _SDL_config_h */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment