Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pcre-config(1) [linux man page]

PCRE-CONFIG(1)						      General Commands Manual						    PCRE-CONFIG(1)

NAME
pcre-config - program to return PCRE configuration SYNOPSIS
pcre-config [--prefix] [--exec-prefix] [--version] [--libs] [--libs-posix] [--cflags] [--cflags-posix] DESCRIPTION
pcre-config returns the configuration of the installed PCRE libraries: the options required to compile a program to use them. OPTIONS
--prefix Writes the directory prefix used in the PCRE installation for architecture independent files (e.g. /usr) to standard output. --exec-prefix Writes the directory prefix used in the PCRE installation for architecture dependent files (normally the same as --prefix) to standard output. --version Writes the version of PCRE installed to standard output. --libs Writes to standard output the command line options required to link with PCRE (e.g. -lpcre). --libs-posix Writes to standard output the command line options required to link with the PCRE POSIX emulation library (e.g. -lpcreposix -lpcre). --cflags Writes to standard output the command line options required to compile files that use PCRE (this often includes some -I options, but is blank on debian systems). --cflags-posix Writes to standard output the command line options required to compile files that use the PCRE POSIX emulation library (this often includes some -I options, but is blank on debian systems). Suppress printing of filenames when searching multiple files. AUTHOR This manual page was written by Mark Baker <mark@mnb.org.uk>, for the Debian GNU/Linux system (but may be used by others). SEE ALSO
pcre(3) PCRE-CONFIG(1)

Check Out this Related Man Page

LIBMCRYPT-CONFIG(1)													       LIBMCRYPT-CONFIG(1)

NAME
libmcrypt-config - script to get information about the installed version of LIBMCRYPT. SYNOPSIS
libmcrypt-config [ --prefix[=DIR] ] [ --exec-prefix[=DIR] ] [ --libs ] [ --cflags ] [ --version ] DESCRIPTION
libmcrypt-config is a tool that is used to determine the compiler and linker flags that should be used to compile and link programs that use LIBMCRYPT library. OPTIONS
--prefix=PREFIX If specified, use PREFIX instead of the installation prefix that LIBMCRYPT was built with when computing the output for the --cflags and --libs options. This option is also used for the exec prefix if --exec-prefix was not specified. This option must be specified before any --libs or --cflags options. --exec-prefix=PREFIX If specified, use PREFIX instead of the installation exec prefix that LIBMCRYPT was built with when computing the output for the --cflags and --libs options. This option must be specified before any --libs or --cflags options. --libs Print the linker flags that are necessary to link a LIBMCRYPT program. --cflags Print the compiler flags that are necessary to compile a LIBMCRYPT program. --version Print the currently installed version of LIBMCRYPT on the standard output. AUTHOR
This manual page was written by Christian Marillat <marillat@debian.org> for the Debian GNU/Linux system (but may be used by others). Mod- ified by RISKO Gergely <risko@debian.org> for libmcrpyt. 13 August 2004 LIBMCRYPT-CONFIG(1)
Man Page

9 More Discussions You Might Find Interesting

1. Programming

System Programming

Hi all, I am working on a c program (in a unix environment) making system calls. My program makes references to POSIX, _POSIX_SOURCE 1. When trying to compile the c program, I received a message "Language optional software package not installed." I am not sure if this message refers to... (3 Replies)
Discussion started by: rachael
3 Replies

2. Programming

Multi threading using posix thread library

hi all, can anyone tell me some good site for the mutithreading tutorials, its application, and some code examples. -sushil (2 Replies)
Discussion started by: shushilmore
2 Replies

3. Programming

Unix(posix)

Please,does anybody can give me any general info about unix(posix) ? (1 Reply)
Discussion started by: Haris Astreos
1 Replies

4. UNIX for Advanced & Expert Users

what can I get the posix standard?

I wanted study and write a unix like system. who can help me. ------------- Removed the garbled characters... not sure why they were there... (2 Replies)
Discussion started by: crashsky
2 Replies

5. Programming

Creating an array to hold posix thread ids: Only dynamic array works

I am facing a strange error while creating posix threads: Given below are two snippets of code, the first one works whereas the second one gives a garbage value in the output. Snippet 1 This works: -------------- int *threadids; threadids = (int *) malloc (num_threads * sizeof(int)); ... (4 Replies)
Discussion started by: kmehta
4 Replies

6. Programming

a strange segment fault about ltp-posix test

Hi all In the ltp-posix test,there is a case in open_posix_testsuite\conformance\interfaces\timer_gettime\speculative/6-1.c I run the above code,it will has a segment fault, if I modify it to below,it works well Anybody can tell me why? (1 Reply)
Discussion started by: yanglei_fage
1 Replies

7. Shell Programming and Scripting

PCRE negative lookahead

I have read many tutorials and cannot get this to work. I need to use pcre (because that is what the library in the software we are using uses) and pcregrep everything except /home from the /etc/fstab pcregrep '(?!/home)' /etc/fstab It returns the entire fstab (This is on a RHEL5... (1 Reply)
Discussion started by: insania
1 Replies

8. Linux

How to get the df -h output in one line?

HI Admin, I would like to get the df -h output in one line in one of the RHEL server. How can I get it? Here the filesystem name is getting on 1 separate line, and other columns are in 1 line. How can I get all in 1 line? Any script? Thanks is advance. ---------- Post updated at... (2 Replies)
Discussion started by: snchaudhari2
2 Replies

9. OS X (Apple)

POSIX compliance...

Thanks to all you guys about posix compliance I have learnt an enormous amount over the last few days. I have written a program that is an Egg Timer with simple animation. I now realise how sophisticated 'bash' is compared to full posix compliance. The code below has passed all of the tests from... (11 Replies)
Discussion started by: wisecracker
11 Replies