system/evolution-data-server: Make introspection and vala yes by default

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Ozan Türkyılmaz 2022-07-17 12:29:37 +03:00 committed by Willy Sudiarto Raharjo
parent 119507de22
commit ab46a5dea1
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
2 changed files with 5 additions and 5 deletions

View File

@ -11,10 +11,10 @@ a shared library, which will be loaded by evolution-data-server on
startup.
Below variables can be used to configure the build:
INTROSPECTION=yes : Enable GObject introspection
INTROSPECTION=no : Enable GObject introspection
the dependecies must be compiled with
introspection or the build will fail.
VALA=yes : Generate VALA bindings
VALA=no : Generate VALA bindings
Requires INTROSPECTION=YES
GTKDOC=yes : Use gtk-doc to build documentation
TESTS=yes : Enable installed tests

View File

@ -26,12 +26,12 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=evolution-data-server
VERSION=${VERSION:-3.44.2}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
INTROSPECTION=${INTROSPECTION:-NO}
VALA=${VALA:-NO}
INTROSPECTION=${INTROSPECTION:-yes}
VALA=${VALA:-yes}
GTKDOC=${GTKDOC:-NO}
TESTS=${TESTS:-NO}
GCOV=${GCOV:-NO}