Browse Source

Configure: rename XML backend selection options

Rename the XML backend selection option to make them more
coherent. Each option is now of the form --with-libxxx, where
xxx is the backend name.
Emmanuel Deloget 12 years ago
parent
commit
cfbeadbb12
1 changed files with 4 additions and 4 deletions
  1. 4 4
      configure.ac

+ 4 - 4
configure.ac

@@ -54,14 +54,14 @@ AM_CONDITIONAL(DEBUG,test x$enable_debug = xyes)
 ################################
 # Check for the roxml library
 ################################
-AC_ARG_WITH(roxml,
-            [AS_HELP_STRING([--with-roxml=DIR],
+AC_ARG_WITH(libroxml,
+            [AS_HELP_STRING([--with-libroxml=DIR],
                             [Use roxml as the XML parser implementation [default=no]])],
             [use_roxml=$withval],
             [use_roxml=no])
 
-AC_ARG_WITH(expat,
-            [AS_HELP_STRING([--with-expat=DIR],
+AC_ARG_WITH(libexpat,
+            [AS_HELP_STRING([--with-libexpat=DIR],
                             [Use expat as the XML parser implementation [default=no]])],
             [use_expat=$withval],
             [use_expat=no])