Browse Source

* changed clearsilver to use pkgprefix for exporting right apache

CFLAGS, CPPFLAGS and LDFLAGS and some cleanups of trailing spaces


git-svn-id: svn://svn.opensde.net/opensde/package/trunk@20526 10447126-35f2-4685-b0cf-6dd780d3921f
early
Christian Wiese 18 years ago
parent
commit
f90e4617db
  1. 10
      develop/clearsilver/clearsilver.conf

10
develop/clearsilver/clearsilver.conf

@ -19,10 +19,11 @@ var_append extraconfopt " " "--disable-ruby --disable-java --disable-csharp"
# correcting apache path
if pkginstalled apache; then
var_append extraconfopt ' ' "--with-apache=$SDECFG_PKG_APACHE_PREFIX"
var_append CFLAGS ' ' "-I/$SDECFG_PKG_APACHE_PREFIX/include"
var_append CPPFLAGS ' ' "-I/$SDECFG_PKG_APACHE_PREFIX/include"
var_append LDFLAGS ' ' "-L/$SDECFG_PKG_APACHE_PREFIX/lib"
pkgprefix -t apache
var_append extraconfopt ' ' "--with-apache=$root/$( pkgprefix apache )"
var_append CFLAGS ' ' "-I$root$( pkgprefix includedir apache )"
var_append CPPFLAGS ' ' "-I$root$( pkgprefix includedir apache )"
var_append LDFLAGS ' ' "-L$root$( pkgprefix libdir apache )"
export CPPFLAGS CFLAGS LDFLAGS
fi
@ -56,4 +57,3 @@ fi
if pkginstalled gettext; then
var_append extraconfopt " " "--enable-gettext"
fi

Loading…
Cancel
Save