Document -absname; remove references to Dbm.

git-svn-id: http://caml.inria.fr/svn/ocamldoc/trunk@11893 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Alain Frisch 2011-12-20 10:49:55 +00:00
parent 4900e0f585
commit 298354c177
7 changed files with 12 additions and 46 deletions

View File

@ -15,7 +15,6 @@ TEXT=-fix -exec xxdate.exe -text -w 79
SRC2=../$(SRC)
MLIS=$(SRC2)/stdlib/*.mli \
$(SRC2)/otherlibs/bigarray/bigarray.mli \
$(SRC2)/otherlibs/dbm/dbm.mli \
$(SRC2)/otherlibs/dynlink/dynlink.mli \
$(SRC2)/otherlibs/graph/graphics.mli \
$(SRC2)/otherlibs/graph/graphicsX11.mli \
@ -50,7 +49,6 @@ html: files
-d libref \
-I $(SRC2)/stdlib \
-I $(SRC2)/otherlibs/bigarray \
-I $(SRC2)/otherlibs/dbm \
-I $(SRC2)/otherlibs/dynlink \
-I $(SRC2)/otherlibs/graph \
-I $(SRC2)/otherlibs/num \

View File

@ -81,7 +81,6 @@ and as a
\input{libstr.tex}
\input{libthreads.tex}
\input{libgraph.tex}
\input{libdbm.tex}
\input{libdynlink.tex}
\input{liblabltk.tex}
\input{libbigarray.tex}

View File

@ -119,6 +119,9 @@ linking with this library automatically adds back the "-custom",
"-cclib" and "-ccopt" options as if they had been provided on the
command line, unless the "-noautolink" option is given.
\item["-absname"]
Force error messages to show absolute paths for file names.
\item["-annot"]
Dump detailed information about the compilation (types, bindings,
tail-calls, etc). The information for file \var{src}".ml"

View File

@ -105,6 +105,9 @@ linking with this library automatically adds back the
"-cclib" and "-ccopt" options as if they had been provided on the
command line, unless the "-noautolink" option is given.
\item["-absname"]
Force error messages to show absolute paths for file names.
\item["-annot"]
Dump detailed information about the compilation (types, bindings,
tail-calls, etc). The information for file \var{src}".ml"

View File

@ -130,6 +130,9 @@ The following command-line options are recognized by the "ocaml" command.
\begin{options}
\item["-absname"]
Force error messages to show absolute paths for file names.
\item["-I" \var{directory}]
Add the given directory to the list of directories searched for
source and compiled files. By default, the current directory is

View File

@ -13,14 +13,13 @@ OTHERLIB_INTF=Unix.tex UnixLabels.tex Str.tex \
Num.tex Arithstatus.tex Bigint.tex \
Graphics.tex GraphicsX11.tex \
Thread.tex Mutex.tex Condition.tex Event.tex ThreadUnix.tex \
Dbm.tex Dynlink.tex Bigarray.tex Tk.tex
Dynlink.tex Bigarray.tex Tk.tex
INTF=$(CORE_INTF) $(STDLIB_INTF) $(OTHERLIB_INTF)
MLIS=$(CSLDIR)/stdlib/*.mli \
$(CSLDIR)/otherlibs/bigarray/bigarray.mli \
$(CSLDIR)/otherlibs/dbm/dbm.mli \
$(CSLDIR)/otherlibs/dynlink/dynlink.mli \
$(CSLDIR)/otherlibs/graph/graphics.mli \
$(CSLDIR)/otherlibs/graph/graphicsX11.mli \
@ -34,7 +33,7 @@ MLIS=$(CSLDIR)/stdlib/*.mli \
BLURB=core.tex builtin.tex stdlib.tex \
libunix.tex libstr.tex libnum.tex libgraph.tex \
libthreads.tex libdbm.tex libdynlink.tex liblabltk.tex libbigarray.tex
libthreads.tex libdynlink.tex liblabltk.tex libbigarray.tex
FILES=$(BLURB) $(INTF)
@ -43,7 +42,7 @@ TEXQUOTE=../../tools/texquote2
CSLDIR=../../../release
VPATH=.:$(CSLDIR)/stdlib:$(CSLDIR)/otherlibs/unix:$(CSLDIR)/otherlibs/str:$(CSLDIR)/otherlibs/num:$(CSLDIR)/otherlibs/graph:$(CSLDIR)/otherlibs/threads:$(CSLDIR)/otherlibs/dbm:$(CSLDIR)/otherlibs/dynlink:$(CSLDIR)/otherlibs/bigarray
VPATH=.:$(CSLDIR)/stdlib:$(CSLDIR)/otherlibs/unix:$(CSLDIR)/otherlibs/str:$(CSLDIR)/otherlibs/num:$(CSLDIR)/otherlibs/graph:$(CSLDIR)/otherlibs/threads:$(CSLDIR)/otherlibs/dynlink:$(CSLDIR)/otherlibs/bigarray
all: libs
@ -52,7 +51,6 @@ libs: $(FILES)
$(INTF): $(MLIS)
$(CSLDIR)/ocamldoc/ocamldoc.opt -latex -I $(CSLDIR)/stdlib \
-I $(CSLDIR)/otherlibs/bigarray \
-I $(CSLDIR)/otherlibs/dbm \
-I $(CSLDIR)/otherlibs/dynlink \
-I $(CSLDIR)/otherlibs/graph \
-I $(CSLDIR)/otherlibs/num \

View File

@ -1,38 +0,0 @@
\chapter{The dbm library: access to NDBM databases}
\pdfchapterfold{-1}{The dbm library: access to NDBM databases}
The "dbm" library provides access to NDBM databases under Unix.
NDBM databases maintain key/data associations, where both the key and
the data are arbitrary strings. They support fairly large databases
(several gigabytes) and can retrieve a keyed item in one or two file
system accesses. Refer to the Unix manual pages for more information.
\begin{unix}
Programs that use the "dbm" library must be linked as follows:
\begin{alltt}
ocamlc \var{other options} dbm.cma \var{other files}
ocamlopt \var{other options} dbm.cmxa \var{other files}
\end{alltt}
For interactive use of the "dbm" library, do:
\begin{alltt}
ocamlmktop -o mytop dbm.cma
./mytop
\end{alltt}
\end{unix}
or (if dynamic linking of C libraries is supported on your platform),
start "ocaml" and type "#load \"dbm.cma\";;".
\begin{windows}
This library is not available.
\end{windows}
\ifouthtml
\begin{links}
\item \ahref{libref/Dbm.html}{Module \texttt{Dbm}: interface to the NDBM database}
\end{links}
\else
\input{Dbm.tex}
\fi