From bc9cda5ce7c146d77ffca803857649b8551bcbed Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sun, 26 Apr 2009 15:42:55 +0000 Subject: configure: fix htmltidy detection when making it detect tidy/tidy.h I seem to have broken non-subdired detection. Signed-off-by: Michael Krelin --- diff --git a/configure.ac b/configure.ac index 2ded490..9fc5c9d 100644 --- a/configure.ac +++ b/configure.ac @@ -153,7 +153,7 @@ AC_CHECK_HEADER([expat.h],[ ]) AC_CHECK_HEADERS([tidy.h tidy/tidy.h],[ - AC_CHECK_LIB([tidy],[tidyParseBuffer],[ + test -z "$TIDY_LIBS" && AC_CHECK_LIB([tidy],[tidyParseBuffer],[ TIDY_LIBS=-ltidy TIDY_CFLAGS= AC_SUBST([TIDY_LIBS]) @@ -162,7 +162,7 @@ AC_CHECK_HEADERS([tidy.h tidy/tidy.h],[ AC_MSG_ERROR([no required htmltidy library found. get one from http://tidy.sourceforge.net/]) ]) ],[ - test "$ac_header" = "tidy/tidy.h" \ + test -z "$TIDY_LIBS" -a "$ac_header" = "tidy/tidy.h" \ && AC_MSG_ERROR([no required htmltidy library found. get one from http://tidy.sourceforge.net/]) ]) -- cgit v0.9.0.2