From: Richard Kreckel Date: Mon, 3 Apr 2000 22:02:54 +0000 (+0000) Subject: - NOT building the documentation is the default now. X-Git-Tag: release_0-6-0~35 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=44ff7efafe7cb3e3f64ee907907062a68eb95b9e - NOT building the documentation is the default now. --- diff --git a/configure b/configure index ecd447e9..76eed5b1 100755 --- a/configure +++ b/configure @@ -25,9 +25,9 @@ ac_help="$ac_help ac_help="$ac_help --disable-libtool-lock avoid locking (might break parallel builds)" ac_help="$ac_help - --enable-html-doc build HTML documentation [default=yes]" + --enable-html-doc build HTML documentation [default=no]" ac_help="$ac_help - --enable-ps-doc build PostScript documentation [default=yes]" + --enable-ps-doc build PostScript documentation [default=no]" ac_help="$ac_help --with-cint=CINTSYSDIR build GiNaC-cint C++ interpreter [default=no]" @@ -2084,7 +2084,7 @@ if test "${enable_html_doc+set}" = set; then enableval="$enable_html_doc" : else - enable_html_doc=yes + enable_html_doc=no fi # Check whether --enable-ps-doc or --disable-ps-doc was given. @@ -2092,7 +2092,7 @@ if test "${enable_ps_doc+set}" = set; then enableval="$enable_ps_doc" : else - enable_ps_doc=yes + enable_ps_doc=no fi # Check whether --with-cint or --without-cint was given. diff --git a/configure.in b/configure.in index 7d5aa722..80330af8 100644 --- a/configure.in +++ b/configure.in @@ -73,8 +73,8 @@ AM_PROG_LEX AC_PROG_YACC dnl Configure options. -AC_ARG_ENABLE(html-doc, [ --enable-html-doc build HTML documentation [default=yes]], , enable_html_doc=yes) -AC_ARG_ENABLE(ps-doc, [ --enable-ps-doc build PostScript documentation [default=yes]], , enable_ps_doc=yes) +AC_ARG_ENABLE(html-doc, [ --enable-html-doc build HTML documentation [default=no]], , enable_html_doc=no) +AC_ARG_ENABLE(ps-doc, [ --enable-ps-doc build PostScript documentation [default=no]], , enable_ps_doc=no) AC_ARG_WITH(cint, [ --with-cint=CINTSYSDIR build GiNaC-cint C++ interpreter [default=no]], , with_cint=no) dnl Check for data types which are needed by the hash function (golden_ratio_hash).