[gs-cvs] rev 8073 - trunk/gs/src

till at ghostscript.com till at ghostscript.com
Fri Jun 22 15:05:57 PDT 2007


Author: till
Date: 2007-06-22 15:05:56 -0700 (Fri, 22 Jun 2007)
New Revision: 8073

Modified:
   trunk/gs/src/configure.ac
Log:
Small corrections on "./configure" checks for pkg-config.


Modified: trunk/gs/src/configure.ac
===================================================================
--- trunk/gs/src/configure.ac	2007-06-22 15:44:43 UTC (rev 8072)
+++ trunk/gs/src/configure.ac	2007-06-22 22:05:56 UTC (rev 8073)
@@ -180,9 +180,9 @@
 	# We MUST NOT use PKG_CHECK_MODULES since it is a) not a standard
 	# autoconf macro and b) requires pkg-config on the system, which is
 	# NOT standard on ANY OS, including Linux!
-	AC_PATH_PROG(PKGCONFIG, pkg-config, no)
+	AC_PATH_PROG(PKGCONFIG, pkg-config)
 
-	if test "$PKGCONFIG" != no; then
+	if test "x$PKGCONFIG" != x; then
 		AC_MSG_CHECKING(for fontconfig)
 		if $PKGCONFIG --exists fontconfig; then
 			AC_MSG_RESULT(yes)



More information about the gs-cvs mailing list