several autoheader define fixes

This patch was taken from Debian's libmxml 2.11-1 source:
	06_autoheader-fixes.patch
pull/223/head
Richard Leitner 6 years ago
parent e0c0252684
commit f77da2043c
  1. 8
      configure.ac

@ -28,7 +28,7 @@ AC_CONFIG_HEADER(config.h)
dnl Version number... dnl Version number...
VERSION="AC_PACKAGE_VERSION" VERSION="AC_PACKAGE_VERSION"
AC_SUBST(VERSION) AC_SUBST(VERSION)
AC_DEFINE_UNQUOTED(MXML_VERSION, "Mini-XML v$VERSION") AC_DEFINE_UNQUOTED(MXML_VERSION, "Mini-XML v$VERSION", "MXML VERSION")
dnl Clear default debugging options and set normal optimization by dnl Clear default debugging options and set normal optimization by
dnl default unless the user asks for debugging specifically. dnl default unless the user asks for debugging specifically.
@ -113,7 +113,7 @@ AC_CACHE_CHECK(for long long int, ac_cv_c_long_long,
fi]) fi])
if test $ac_cv_c_long_long = yes; then if test $ac_cv_c_long_long = yes; then
AC_DEFINE(HAVE_LONG_LONG) AC_DEFINE(HAVE_LONG_LONG, 1, "long long int support")
fi fi
dnl EPUB support (via libz and zipc) dnl EPUB support (via libz and zipc)
@ -122,7 +122,7 @@ AC_SUBST(MXML_EPUB)
ZIPC="" ZIPC=""
AC_SUBST(ZIPC) AC_SUBST(ZIPC)
AC_SEARCH_LIBS(gzgets,z,[ AC_SEARCH_LIBS(gzgets,z,[
AC_DEFINE(HAVE_ZLIB_H) AC_DEFINE(HAVE_ZLIB_H, 1, "<zlib.h> present")
ZIPC="zipc.o" ZIPC="zipc.o"
MXML_EPUB="mxml.epub" MXML_EPUB="mxml.epub"
LIBS="-lz $LIBS"]) LIBS="-lz $LIBS"])
@ -135,7 +135,7 @@ PTHREAD_FLAGS=""
PTHREAD_LIBS="" PTHREAD_LIBS=""
if test "x$enable_threads" != xno; then if test "x$enable_threads" != xno; then
AC_CHECK_HEADER(pthread.h, AC_DEFINE(HAVE_PTHREAD_H)) AC_CHECK_HEADER(pthread.h, AC_DEFINE(HAVE_PTHREAD_H, 1, "pthreads headers available"))
if test x$ac_cv_header_pthread_h = xyes; then if test x$ac_cv_header_pthread_h = xyes; then
dnl Check various threading options for the platforms we support dnl Check various threading options for the platforms we support

Loading…
Cancel
Save