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:
parent
119507de22
commit
ab46a5dea1
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue