Automatically generated by Pod::Man v1.37, Pod::Parser v1.3

Standard preamble:
========================================================================

\\$1

.. ..

..
.. Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. | will give a
real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to
do unbreakable dashes and therefore won't be available. \*(C` and \*(C'
expand to `' in nroff, nothing in troff, for use with C<>.
.tr \(*W-|\(bv\*(Tr . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\}
If the F register is turned on, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.
. de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\}
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.

Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================

Title "VAL-CONFIG 1"
VAL-CONFIG 1 "VAL 0.9.4" "03-Oct-2005" "Value Access"
"NAME"
\fBval-config - OSSP val build utility
"VERSION"
Header "VERSION" \s-1OSSP\s0 val \s-1VAL_VERSION_STR\s0
"SYNOPSIS"
Header "SYNOPSIS" \fBval-config [--help] [--version] [--all] [--prefix] [--exec-prefix] [--bindir] [--libdir] [--includedir] [--mandir] [--datadir] [--acdir] [--cflags] [--ldflags] [--libs] [--libs++]
"DESCRIPTION"
Header "DESCRIPTION" The val-config program is a little helper utility for easy configuring and building applications based on the val\|(3) library. It can be used to query the C compiler and linker flags which are required to correctly compile and link the application against the val\|(3) library.
"OPTIONS"
Header "OPTIONS" \fBval-config accepts the following options:
"--help" 4
Item "--help" Prints the short usage information.
"--version" 4
Item "--version" Prints the version number and date of the installed val\|(3) library.
"--all" 4
Item "--all" Forces the output of all flags, that is, including extra flags which are not \fB\s-1VAL\s0 specific.
"--prefix" 4
Item "--prefix" Prints the installation prefix of architecture independent files
"--exec-prefix" 4
Item "--exec-prefix" Prints the installation prefix of architecture dependent files.
"--bindir" 4
Item "--bindir" Prints the installation directory of binaries.
"--libdir" 4
Item "--libdir" Prints the installation directory of libraries.
"--includedir" 4
Item "--includedir" Prints the installation directory of include headers.
"--mandir" 4
Item "--mandir" Prints the installation directory of manual pages.
"--datadir" 4
Item "--datadir" Prints the installation directory of shared data.
"--acdir" 4
Item "--acdir" Prints the installation directory of autoconf data.
"--cflags" 4
Item "--cflags" Prints the C compiler flags which are needed to compile the val\|(3)-based application. The output is usually added to the \*(C`CFLAGS\*(C' variable of the applications \*(C`Makefile\*(C'.
"--ldflags" 4
Item "--ldflags" Prints the linker flags (\*(C`-L\*(C') which are needed to link the application with the val\|(3) library. The output is usually added to the \*(C`LDFLAGS\*(C' variable of the applications \*(C`Makefile\*(C'.
"--libs" 4
Item "--libs" Prints the library flags (\*(C`-l\*(C') which are needed to link the application with the C val\|(3) library. The output is usually added to the \*(C`LIBS\*(C' variable of the applications \*(C`Makefile\*(C'.
"--libs++" 4
Item "--libs++" Prints the library flags (\*(C`-l\*(C') which are needed to link the application with the \*(C+ val\|(3) library. The output is usually added to the \*(C`LIBS\*(C' variable of the applications \*(C`Makefile\*(C'.
"EXAMPLE"
Header "EXAMPLE" .Vb 4 CC = cc CFLAGS = -O `val-config --cflags` LDFLAGS = `val-config --ldflags` LIBS = -lm `val-config --libs` .Ve

.Vb 5 all: foo foo: foo.o $(CC) $(LDFLAGS) -o foo foo.o $(LIBS) foo.o: foo.c $(CC) $(CFLAGS) -c foo.c .Ve

"SEE ALSO"
Header "SEE ALSO" \fIval\|(3), cc\|(1).
"AUTHOR"
Header "AUTHOR" .Vb 3 Ralf S. Engelschall rse@engelschall.com www.engelschall.com .Ve