diff options
author | sergei <sergei@FreeBSD.org> | 2004-04-21 04:59:42 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2004-04-21 04:59:42 +0800 |
commit | 002776b1929ab4f9487c127cce2a9f8e0b722a1a (patch) | |
tree | 917be2efe6ce7d04314ba41ac871ea4940c3c743 /security | |
parent | 035b3465caedffca2d29f3644106fc4b2c8aba52 (diff) | |
download | freebsd-ports-gnome-002776b1929ab4f9487c127cce2a9f8e0b722a1a.tar.gz freebsd-ports-gnome-002776b1929ab4f9487c127cce2a9f8e0b722a1a.tar.zst freebsd-ports-gnome-002776b1929ab4f9487c127cce2a9f8e0b722a1a.zip |
- Rename WITH_POSTGRES knob to WITH_POSTGRESQL to be consistent
with other ports
PR: ports/62557 (part)
Submitted by: Ulrich Spoerlein <q@uni.de>
Diffstat (limited to 'security')
-rw-r--r-- | security/snort/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/snort/Makefile b/security/snort/Makefile index 2c6a84d8cc3e..7c6b13f01027 100644 --- a/security/snort/Makefile +++ b/security/snort/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre #OPTIONS= FLEXRESP "Flexible response to events" off \ # MYSQL "Enable MySQL support" off \ # ODBC "Enable ODBC support" off \ -# POSTGRES "Enable PostgreSQL support" off +# POSTGRESQL "Enable PostgreSQL support" off USE_GPG= yes SIG_SUFFIX= .asc @@ -49,7 +49,7 @@ LDFLAGS+= ${PTHREAD_LIBS} CONFIGURE_ARGS+= --with-odbc=no .endif -.if defined(WITH_POSTGRES) +.if defined(WITH_POSTGRESQL) POSTGRESQL_PORT?= databases/postgresql7 LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} CONFIGURE_ARGS+= --with-postgresql=${LOCALBASE} @@ -69,7 +69,7 @@ post-patch: pre-configure: @${ECHO} "" - @${ECHO} "Set WITH_FLEXRESP, WITH_MYSQL, WITH_ODBC or WITH_POSTGRES" + @${ECHO} "Set WITH_FLEXRESP, WITH_MYSQL, WITH_ODBC or WITH_POSTGRESQL" @${ECHO} "to get additional support." @${ECHO} "" |