ongrep

A cleaned up fork of ngrep for OpenBSD
git clone git://git.sgregoratto.me/ongrep
Log | Files | Refs | README | LICENSE

commit c735161949a1d3113e4c140135fd2d1d2462efc1
parent bd5b748ed36fcd3e0c16f8eacb8b4af0b9faba15
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Thu, 30 Jun 2005 17:22:15 +0000

add one more post-configure CONFIG indication -- which regex lib
is being used

Diffstat:
Mconfigure | 6++++++
Mconfigure.in | 6++++++
2 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/configure b/configure @@ -3770,6 +3770,12 @@ else echo "CONFIG: privilege dropping disabled" fi +if test "$USE_PCRE" = "1"; then + echo "CONFIG: using PCRE regex library" +else + echo "CONFIG: using GNU regex library" +fi + echo diff --git a/configure.in b/configure.in @@ -452,6 +452,12 @@ else echo "CONFIG: privilege dropping disabled" fi +if test "$USE_PCRE" = "1"; then + echo "CONFIG: using PCRE regex library" +else + echo "CONFIG: using GNU regex library" +fi + dnl dnl And we're done.