summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo2014-07-29 18:31:50 +0200
committer Willy Sudiarto Raharjo2014-08-03 11:31:51 +0200
commitce1c5b174fb68e0b0b5a77aa5d6991d33b99dc82 (patch)
tree400f734c78a60687791b5ff40ca29e89cbfc831b /libraries
parentdab06882e7cb77e53f18d457b81beede8985ad13 (diff)
downloadslackbuilds-ce1c5b174fb68e0b0b5a77aa5d6991d33b99dc82.tar.gz
libraries/wxGTK3: Make --enable-stl optional.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/wxGTK3/README3
-rw-r--r--libraries/wxGTK3/wxGTK3.SlackBuild11
2 files changed, 12 insertions, 2 deletions
diff --git a/libraries/wxGTK3/README b/libraries/wxGTK3/README
index 00dcc34803..a2a70b1f45 100644
--- a/libraries/wxGTK3/README
+++ b/libraries/wxGTK3/README
@@ -5,3 +5,6 @@ platform's controls and utilities.
wxGTK3 can be installed alongside with wxGTK.
webkitgtk3 is an optional dependency of this package.
+
+NOTE: this package is NOT built using --enable-stl by default.
+if you need to enable stl, use STL=yes ./wxGTK3.SlackBuild
diff --git a/libraries/wxGTK3/wxGTK3.SlackBuild b/libraries/wxGTK3/wxGTK3.SlackBuild
index 513c44ffef..fda6fc98ca 100644
--- a/libraries/wxGTK3/wxGTK3.SlackBuild
+++ b/libraries/wxGTK3/wxGTK3.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=wxGTK3
VERSION=${VERSION:-3.0.1}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
SRCNAM=wxWidgets
@@ -58,6 +58,13 @@ fi
set -e
+# Check for STL
+if [ "${STL:-no}" = "yes" ]; then
+ stl="--enable-stl"
+else
+ stl=""
+fi
+
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
@@ -82,7 +89,7 @@ CXXFLAGS="$SLKCFLAGS" \
--with-opengl \
--enable-graphics_ctx \
--with-gtk=3 \
- --enable-stl \
+ $stl \
--build=$ARCH-slackware-linux
make