Skip to content
Snippets Groups Projects
Commit 13453366 authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Don't bail out if unsetenv is not found.

parent 7598d9d7
Branches
Tags
No related merge requests found
......@@ -64,12 +64,13 @@ AC_PREFIX_DEFAULT([`pwd`])
AC_CHECK_LIB([m],[main],,
[AC_MSG_ERROR([no math library, exiting...!])] )
AC_CHECK_FUNCS([alarm pow sqrt strdup strchr strstr unsetenv],,
AC_CHECK_FUNCS([alarm pow sqrt strdup strchr strstr],,
[AC_MSG_ERROR([Sorry, these are needed..])])
AC_FUNC_MALLOC
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([unsetenv])
AC_CHECK_FUNCS([getopt_long],[],
[AC_LIBOBJ([getopt])
AC_LIBOBJ([getopt1])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment