Automatically generated by Pod::Man 2.1801 (Pod::Simple 3.05)

Standard preamble:
========================================================================
..
..
.. 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. \*(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- . 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\}
Escape single quotes in literal strings from groff's Unicode transform.

If the F register is turned on, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), 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 .\} . de IX .. .\}
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 "PTH-CONFIG 1"
PTH-CONFIG 1 "pthsem 2.0.8" "2.0.8" "pthsem Portable Threads"
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.
"NAME"
\fBpth-config - Pth library build utility
"VERSION"
Header "VERSION" pthsem \s-12.0.8\s0
"SYNOPSIS"
Header "SYNOPSIS" \fBpth-config [--help] [--version] [--all] [--prefix] [--exec-prefix] [--bindir] [--libdir] [--includedir] [--mandir] [--datadir] [--acdir] [--cflags] [--ldflags] [--libs]
"DESCRIPTION"
Header "DESCRIPTION" The pth-config program is a little helper utility for easy configuring and building applications based on the pth\|(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 pth\|(3) library.
"OPTIONS"
Header "OPTIONS" \fBpth-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 pth\|(3) library.
"--all" 4
Item "--all" Forces the output of all flags, that is, including extra flags which are not \fBPth 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 pth\|(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 pth\|(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 pth\|(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 \`pth-config --cflags\` LDFLAGS = \`pth-config --ldflags\` LIBS = -lm \`pth-config --libs\` \& 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" \fIpth\|(3), cc\|(1).
"AUTHOR"
Header "AUTHOR" .Vb 3 Ralf S. Engelschall rse@engelschall.com www.engelschall.com .Ve