This is confget, a simple utility for parsing configuration files and
extracting values from them.  It currently parses INI-style files and
HTTP GET variables from CGI requests, but support for other formats
(e.g. HTTP POST, Java property files) is in the works.

The confget utility is mainly intended to be used in shell scripts for
fetching values out of configuration files.

To compile confget, you must set the CFLAGS_CONF environment variable to
either "-DHAVE_GETLINE" on Linux or other systems that provide the getline(3)
C library function, or "-DHAVE_FGETLN" on BSD-like systems that provide
fgetln(3) instead.  If neither of those is defined, the compilation will
abort with an error.

You may also need to tweak the PCRE_CFLAGS and PCRE_LIBS variables to
indicate the presence or lack of PCRE support, the location of
the pcre.h header file, and the name and location of the libpcre.so
library itself.

Comments: Peter Pentchev <roam@ringlet.net>

$Ringlet$
