.\" .\" $Id: comprex-config.1,v 1.2 2001/12/31 09:25:19 chipx86 Exp $ .\" .\" Written by Domenico Andreoli .\" .\" Copyright (C) 2001-2002 The GNUpdate Project. .\" .\" This library is free software; you can redistribute it and/or .\" modify it under the terms of the GNU Library General Public .\" License as published by the Free Software Foundation; either .\" version 2 of the License, or (at your option) any later version. .\" .\" This library is distributed in the hope that it will be useful, .\" but WITHOUT ANY WARRANTY; without even the implied warranty of .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU .\" Library General Public License for more details. .\" .\" You should have received a copy of the GNU Library General Public .\" License along with this library; if not, write to the .\" Free Software Foundation, Inc., 59 Temple Place - Suite 330, .\" Boston, MA 02111-1307, USA. .\" .TH comprex-config 1 "17 May 2001" "libcomprex" "comprex-config manual" .SH NAME comprex-config \- Get information about a libcomprex installation .SH SYNOPSIS .B comprex-config [options] .SH DESCRIPTION .B comprex-config displays information about a previous libcomprex installation. .SH OPTIONS .IP "--help" Displays the available options. .IP "--version" Outputs version information about the installed libcomprex. .IP "--cflags" What set of CFLAGS that was used when libcomprex was built. This is mostly a debug option that serves no particular use to most people. .IP "--libs" Shows the complete set of libs and other linker options you will need in order to link your application with libcomprex. .IP "--prefix[=DIR]" If specified, use DIR instead of the installation prefix that libcomprex 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. .IP "--exec-prefix[=DIR]" If specified, use DIR instead of the installation exec prefix that libcomprex was built with when computing the output for the --cflags and --libs options. .SH "EXAMPLES" What is the path to the libcomprex header files? echo `comprex-config --prefix`/include What is the path to libcomprex? echo `comprex-config --prefix`/lib What other linker options do I need when I link with libcomprex? comprex-config --libs What's the installed libcomprex version? comprex-config --version