Browse Source

ulogd: fixed postgresql lookup support

stable/0.6
Christian Wiese 11 years ago
parent
commit
7cc52e3fb6
  1. 13
      network/ulogd/ulogd.conf

13
network/ulogd/ulogd.conf

@ -1,8 +1,8 @@
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../ulogd2/ulogd2.conf
# Copyright (C) 2013 The OpenSDE Project
# Filename: package/.../ulogd/ulogd.conf
# Copyright (C) 2013 - 2014 The OpenSDE Project
#
# More information can be found in the files COPYING and README.
#
@ -17,3 +17,12 @@ hook_add preconf 5 'autoreconf -vfi'
prefix=
set_confopt
# postgresql support
if pkginstalled -f postgres; then
var_append extraconfopt ' ' "--with-pgsql=$( pkgprefix -r postgresql )"
var_append extraconfopt ' ' "--with-pgsql-inc=$( pkgprefix -r includedir postgresql )"
var_append extraconfopt ' ' "--with-pgsql-lib=$( pkgprefix -r libdir postgresql )"
else
var_append extraconfopt ' ' "--without-pgsql"
fi

Loading…
Cancel
Save