diff options
author | Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> | 2022-07-17 12:23:53 +0300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-07-17 19:08:45 +0700 |
commit | 7fea94717c47a6dffcd8c937014fbade14fa94a5 (patch) | |
tree | bea436765b18a92b54a2443dd8b51175e98ad319 /libraries | |
parent | 6895054539ee3bd112cb956ea0fc5c729f8267b7 (diff) |
libraries/cogl: Make introspection yes by default
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/cogl/README | 2 | ||||
-rw-r--r-- | libraries/cogl/cogl.SlackBuild | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libraries/cogl/README b/libraries/cogl/README index adfda78b27226..d43b00edda20a 100644 --- a/libraries/cogl/README +++ b/libraries/cogl/README @@ -8,4 +8,4 @@ options we are interested in for the future. Below variables can be used to configure the build: GTKDOC=yes : Use gtk-doc to build documentation - INTROSPECTION=yes : Enable introspection for this build + INTROSPECTION=no : Disable introspection for this build diff --git a/libraries/cogl/cogl.SlackBuild b/libraries/cogl/cogl.SlackBuild index a370ef3c4a5fb..58d6bd83b4f1d 100644 --- a/libraries/cogl/cogl.SlackBuild +++ b/libraries/cogl/cogl.SlackBuild @@ -26,12 +26,12 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=cogl VERSION=${VERSION:-1.22.8} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} GTKDOC=${GTKDOC:-no} -INTROSPECTION=${INTROSPECTION:-no} +INTROSPECTION=${INTROSPECTION:-yes} if [ -z "$ARCH" ]; then case "$( uname -m )" in |