Browse Source

beecrypt: changed to disable C++ wrapper support if icu4c is not installed

user/chris/wip/musl
Christian Wiese 12 years ago
parent
commit
15d18a4842
  1. 6
      security/beecrypt/beecrypt.conf

6
security/beecrypt/beecrypt.conf

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../beecrypt/beecrypt.conf
# Copyright (C) 2013 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
#
# More information can be found in the files COPYING and README.
@ -18,3 +19,8 @@ if [ "$JAVAHOME" ]; then
else
var_append confopt " " "--without-java"
fi
# C++ wrapper depends on icu4c
if ! pkginstalled -f icu4c; then
var_append extraconfopt ' ' "--without-cplusplus"
fi

Loading…
Cancel
Save