# lrexlib configuration file.

# These are default values. See the explanations below.
INC_LUA=
LIB_LUA=
INC_POSIX=
LIB_POSIX=
INC_PCRE=
LIB_PCRE= -lpcre

# If the default settings don't work for your system,
# try to uncomment and edit the settings below.

# ==== 1. Lua settings

# Specify Lua include directory if needed
#INC_LUA= -I/usr/local/include
#INC_LUA= -I/usr/include
#INC_LUA= -I/usr/include/lua50

# Specify the -l flags for Lua libraries
#LIB_LUA= -llua -llualib

# ==== 2. POSIX rexlib settings

# Specify the include directory and library name for a POSIX regexp
# library

# The following lines work for a POSIX regex implementation in libc
#INC_POSIX= -I/usr/include
#LIB_POSIX= -lc

# WARNING:
#   If you want to use a POSIX regex library that is not the system
#   default, make sure you set both the INC_POSIX and LIB_POSIX
#   variables correctly, as if a header file and library are used
#   which do not match, you may well get segmentation faults (or
#   worse).

# The following lines work for the rxspencer library, when installed
# under /usr (note the above warning!)
#INC_POSIX= -I/usr/include/rxspencer
#LIB_POSIX= -lrxspencer


# ==== 3. PCRE rexlib settings

# Specify the include directory for an existing regexp library
#INC_PCRE= -I/usr/include
#INC_PCRE= -I/usr/local/include

# Specify the -l flag for the PCRE library
#LIB_PCRE= -lpcre


# ==== 4. Common settings

CFLAGS += -W -Wall -O2
AR= ar rcu


# (End of user settings)

V=1

# (End of config)
