conditional compilation QSORT

This commit is contained in:
Francesco Lannutti 2012-11-17 12:44:19 +01:00 committed by rlar
parent d98d18afe4
commit 71a7e47e2d
2 changed files with 2 additions and 2 deletions

View File

@ -650,7 +650,7 @@ AC_CHECK_FUNCS([strchr index], [break])
AC_CHECK_FUNCS([strrchr rindex], [break])
AC_CHECK_FUNCS([getcwd getwd], [break])
AC_CHECK_FUNC([qsort], [qsort_checked=true])
AM_CONDITIONAL([HAVE_QSORT_WANTED], [test "x$qsort_checked" = xtrue])
AM_CONDITIONAL([HAVE_QSORT], [test "x$qsort_checked" = xtrue])
AC_MSG_RESULT([Checking mathematical features of the system:])
# Look for math library:

View File

@ -21,7 +21,7 @@ libparser_la_SOURCES = \
unixcom.h
if !HAVE_QSORT_WANTED
if !HAVE_QSORT
libparser_la_SOURCES += std.c
endif