Browse Source

audit: changed to check if libprelude and openldap are effectively installed

user/chris/next/master
Christian Wiese 13 years ago
parent
commit
404ebe2980
  1. 6
      security/audit/audit.conf

6
security/audit/audit.conf

@ -2,7 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# #
# Filename: package/.../audit/audit.conf # Filename: package/.../audit/audit.conf
# Copyright (C) 2008 - 2011 The OpenSDE Project # Copyright (C) 2008 - 2012 The OpenSDE Project
# #
# More information can be found in the files COPYING and README. # More information can be found in the files COPYING and README.
# #
@ -13,7 +13,7 @@
# --- SDE-COPYRIGHT-NOTE-END --- # --- SDE-COPYRIGHT-NOTE-END ---
# prelude support # prelude support
if pkginstalled libprelude; then if pkginstalled -f libprelude; then
pkgprefix -t libprelude pkgprefix -t libprelude
var_append extraconfopt ' ' "--with-prelude" var_append extraconfopt ' ' "--with-prelude"
var_append GCC_WRAPPER_APPEND ' ' "-I$root$( pkgprefix includedir libprelude )" var_append GCC_WRAPPER_APPEND ' ' "-I$root$( pkgprefix includedir libprelude )"
@ -21,7 +21,7 @@ if pkginstalled libprelude; then
fi fi
# no built-in checks for ldap nor configure options # no built-in checks for ldap nor configure options
if pkginstalled openldap; then if pkginstalled -f openldap; then
pkgprefix -t openldap pkgprefix -t openldap
var_append GCC_WRAPPER_APPEND ' ' "-I$root$( pkgprefix includedir openldap )" var_append GCC_WRAPPER_APPEND ' ' "-I$root$( pkgprefix includedir openldap )"
var_append GCC_WRAPPER_APPEND ' ' "-L$root$( pkgprefix libdir openldap )" var_append GCC_WRAPPER_APPEND ' ' "-L$root$( pkgprefix libdir openldap )"

Loading…
Cancel
Save