summaryrefslogtreecommitdiff
path: root/wxgtk3/wx-config
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2018-11-17 19:30:28 +0000
committerB Stack <bgstack15@gmail.com>2018-11-17 19:30:28 +0000
commit68647ebc4b2f34306f4e68f9c7d6fe9d85431304 (patch)
tree9a98948f90c5f42e2bf1b68cbbd1ab8f175f6d9c /wxgtk3/wx-config
parentMerge branch 'freefilesync-bump' into 'master' (diff)
downloadstackrpms-68647ebc4b2f34306f4e68f9c7d6fe9d85431304.tar.gz
stackrpms-68647ebc4b2f34306f4e68f9c7d6fe9d85431304.tar.bz2
stackrpms-68647ebc4b2f34306f4e68f9c7d6fe9d85431304.zip
add wxgtk31
Diffstat (limited to 'wxgtk3/wx-config')
-rw-r--r--wxgtk3/wx-config45
1 files changed, 45 insertions, 0 deletions
diff --git a/wxgtk3/wx-config b/wxgtk3/wx-config
new file mode 100644
index 0000000..970ded9
--- /dev/null
+++ b/wxgtk3/wx-config
@@ -0,0 +1,45 @@
+#! /bin/sh
+#
+# Multilib-aware wrapper for the wx-config script
+#
+# Usage: wx-config [--arch <arch>] <regular wx-config options>
+#
+
+version=3.1
+
+if [ $# -ge 2 ]; then
+ if [ $1 = "--arch" ]; then
+ arch=$2
+ shift 2
+ fi
+fi
+
+if [ -z $arch ]; then
+ arch=`uname -m`
+fi
+
+case $arch in
+ i?86|ppc|s390|sparc|arm*|ia64|mips|mipsel)
+ libdir=/usr/lib
+ ;;
+ x86_64|ppc64|s390x|sparc64|aarch64|ppc64le|mips64*)
+ libdir=/usr/lib64
+ ;;
+ *)
+ echo "Unsupported architecture '$arch'"
+ exit 8
+ ;;
+esac
+
+wxconfig=$libdir/wx/config/gtk3-unicode-$version
+# special case when using 32-bit userspace and 64-bit kernel
+if [ ! -f $wxconfig -a \( $arch = ppc64 -o $arch = sparc64 \) ]; then
+ wxconfig=/usr/lib/wx/config/gtk3-unicode-$version
+fi
+
+if [ -x $wxconfig ]; then
+ exec $wxconfig $@
+else
+ echo "wxWidgets3-devel isn't installed for architecture '$arch'"
+ exit 9
+fi
bgstack15