Update yaz.m4. Update to new --with-yaz-config
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 9 Sep 2004 09:43:20 +0000 (09:43 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 9 Sep 2004 09:43:20 +0000 (09:43 +0000)
doc/installation.xml
yaz.m4

index 28e84f4..9b4872c 100644 (file)
@@ -1,5 +1,5 @@
 <chapter id="installation">
-  <!-- $Id: installation.xml,v 1.12 2004-04-11 17:54:48 adam Exp $ -->
+  <!-- $Id: installation.xml,v 1.13 2004-09-09 09:43:20 adam Exp $ -->
   <title>Installation</title>
   <para>
    You need a C++ compiler to compile and use YAZ++.
@@ -38,7 +38,7 @@
        </para></listitem>
      </varlistentry>
      <varlistentry>
-      <term><literal>--with-yazconfig </literal>directory</term>
+      <term><literal>--with-yaz-config </literal>directory</term>
       <listitem><para>
         Specifies the location of <filename>yaz-config</filename>.
         The <filename>yaz-config</filename> program is generated in
diff --git a/yaz.m4 b/yaz.m4
index 72b93ed..d07efba 100644 (file)
--- a/yaz.m4
+++ b/yaz.m4
@@ -1,4 +1,4 @@
-## $Id: yaz.m4,v 1.8 2004-08-16 12:40:14 adam Exp $
+## $Id: yaz.m4,v 1.9 2004-09-09 09:43:20 adam Exp $
 ## 
 # Use this m4 function for autoconf if you use YAZ in your own
 # configure script.
@@ -7,7 +7,7 @@ dnl ----- Setup Docbook documentation for YAZ
 AC_DEFUN([YAZ_DOC],
 [
 AC_SUBST(DTD_DIR)      
-AC_ARG_WITH(dtd, [  --with-dtd[=DIR]        use docbookx.dtd in DIR],
+AC_ARG_WITH(docbook-dtd, [  --with-docbook-dtd[=DIR]  use docbookx.dtd in DIR],
 [
        if test -f "$withval/docbookx.dtd"; then
                DTD_DIR=$withva l
@@ -32,7 +32,7 @@ AC_ARG_WITH(dtd, [  --with-dtd[=DIR]        use docbookx.dtd in DIR],
        fi
 ])
 AC_SUBST(DSSSL_DIR)
-AC_ARG_WITH(dsssl,[  --with-dsssl[=DIR]      use Docbook DSSSL in DIR/{html,print}/docbook.dsl],
+AC_ARG_WITH(docbook-dsssl,[  --with-docbook-dsssl[=DIR] use Docbook DSSSL in DIR/{html,print}/docbook.dsl],
 [
        if test -f "$withval/html/docbook.dsl"; then
                DSSSL_DIR=$withval
@@ -55,7 +55,7 @@ AC_ARG_WITH(dsssl,[  --with-dsssl[=DIR]      use Docbook DSSSL in DIR/{html,prin
        fi
 ])
 AC_SUBST(XSL_DIR)
-AC_ARG_WITH(xsl,[  --with-xsl[=DIR]        use Docbook XSL in DIR/{htmlhelp,xhtml}],
+AC_ARG_WITH(docbook-xsl,[  --with-docbook-xsl[=DIR]  use Docbook XSL in DIR/{htmlhelp,xhtml}],
 [
        if test -f "$withval/htmlhelp/htmlhelp.xsl"; then
                XSL_DIR=$withval
@@ -85,7 +85,7 @@ AC_DEFUN([YAZ_INIT],
        AC_SUBST(YAZVERSION)
        yazconfig=NONE
        yazpath=NONE
-       AC_ARG_WITH(yazconfig, [  --with-yazconfig=DIR    yaz-config in DIR (example /home/yaz-1.7)], [yazpath=$withval])
+       AC_ARG_WITH(yaz-config, [  --with-yaz-config=DIR   use yaz-config in DIR (example /home/yaz-1.7)], [yazpath=$withval])
        if test "x$yazpath" != "xNONE"; then
                yazconfig=$yazpath/yaz-config
        else