chiark / gitweb /
pcre3 (2:8.35-3.3) unstable; urgency=medium
[pcre3.git] / debian / pcre-config.1
1 .TH PCRE-CONFIG 1
2 .SH NAME
3 pcre-config \- program to return PCRE configuration
4 .SH SYNOPSIS
5 .B pcre-config
6 .RB [ --prefix ] 
7 .RB [ --exec-prefix ]
8 .RB [ --version ]
9 .RB [ --libs ] 
10 .RB [ --libs-posix ]
11 .RB [ --cflags ]
12 .RB [ --cflags-posix ]
13
14 .SH DESCRIPTION
15 \fBpcre-config\fR returns the configuration of the installed PCRE
16 libraries: the options required to compile a program to use them.
17
18 .SH OPTIONS
19 .TP 10
20 \fB--prefix\fR
21 Writes the directory prefix used in the PCRE installation for
22 architecture independent files (e.g. \fI/usr\fR) to standard output.
23 .TP
24 \fB--exec-prefix\fR
25 Writes the directory prefix used in the PCRE installation for
26 architecture dependent files (normally the same as \fB--prefix\fR)
27 to standard output.
28 .TP
29 \fB--version\fR
30 Writes the version of PCRE installed to standard output.
31 .TP
32 \fB--libs\fR
33 Writes to standard output the command line options required to link
34 with PCRE (e.g. \fI-lpcre\fR).
35 .TP
36 \fB--libs-posix\fR
37 Writes to standard output the command line options required to link
38 with the PCRE POSIX emulation library (e.g. \fI-lpcreposix -lpcre\fR).
39 .TP
40 \fB--cflags\fR
41 Writes to standard output the command line options required to compile 
42 files that use PCRE (this often includes some \fI-I\fR options, but is blank 
43 on debian systems).
44 .TP
45 \fB--cflags-posix\fR
46 Writes to standard output the command line options required to compile
47 files that use the PCRE POSIX emulation library (this often includes
48 some -I options, but is blank on debian systems). Suppress printing of
49 filenames when searching multiple files.
50 .TP
51
52 .SH AUTHOR
53 This manual page was written by Mark Baker <mark@mnb.org.uk>,
54 for the Debian GNU/Linux system (but may be used by others).
55
56 .SH SEE ALSO
57 \fBpcre(3)