[mapserver-commits] r8998 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Sat May 2 07:06:40 EDT 2009


Author: tbonfort
Date: 2009-05-02 07:06:40 -0400 (Sat, 02 May 2009)
New Revision: 8998

Modified:
   trunk/mapserver/configure
   trunk/mapserver/configure.in
Log:
be a bit more explicit in the error message when checking for freetype


Modified: trunk/mapserver/configure
===================================================================
--- trunk/mapserver/configure	2009-05-02 10:13:43 UTC (rev 8997)
+++ trunk/mapserver/configure	2009-05-02 11:06:40 UTC (rev 8998)
@@ -9534,8 +9534,16 @@
 
 
     if test "$FT_BIN" == "no" ; then
-      { { $as_echo "$as_me:$LINENO: error: freetype-config required for agg support - please configure --with-freetype." >&5
-$as_echo "$as_me: error: freetype-config required for agg support - please configure --with-freetype." >&2;}
+      { { $as_echo "$as_me:$LINENO: error: the freetype-config executable could not be found and is required for agg support
+        to fix this, you should either:
+        * install the freetype development headers
+        * rerun configure with --with-freetype=/path/to/freetype-config
+        * disable agg support with --with-agg=no " >&5
+$as_echo "$as_me: error: the freetype-config executable could not be found and is required for agg support
+        to fix this, you should either:
+        * install the freetype development headers
+        * rerun configure with --with-freetype=/path/to/freetype-config
+        * disable agg support with --with-agg=no " >&2;}
    { (exit 1); exit 1; }; }
     fi
   fi

Modified: trunk/mapserver/configure.in
===================================================================
--- trunk/mapserver/configure.in	2009-05-02 10:13:43 UTC (rev 8997)
+++ trunk/mapserver/configure.in	2009-05-02 11:06:40 UTC (rev 8998)
@@ -844,7 +844,11 @@
   if test -z "$FT_BIN" ; then
     AC_PATH_PROG(FT_BIN, freetype-config, no)
     if test "$FT_BIN" == "no" ; then
-      AC_MSG_ERROR([freetype-config required for agg support - please configure --with-freetype.])
+      AC_MSG_ERROR([the freetype-config executable could not be found and is required for agg support
+        to fix this, you should either:
+        * install the freetype development headers
+        * rerun configure with --with-freetype=/path/to/freetype-config
+        * disable agg support with --with-agg=no ])
     fi
   fi
   



More information about the mapserver-commits mailing list