diff options
author | B Stack <bgstack15@gmail.com> | 2019-11-11 09:32:24 -0500 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-11-11 09:32:24 -0500 |
commit | cf28529dc6bacbdb840171bcdd7bc885ad06f132 (patch) | |
tree | 8f89f93c5e1eb5a9b5178c23356ebe1052c4713f /wxgtk3/wx-config | |
parent | improve docs for ccextractor (diff) | |
download | stackrpms-cf28529dc6bacbdb840171bcdd7bc885ad06f132.tar.gz stackrpms-cf28529dc6bacbdb840171bcdd7bc885ad06f132.tar.bz2 stackrpms-cf28529dc6bacbdb840171bcdd7bc885ad06f132.zip |
move wxgtk3 to ffs-dependencies
Diffstat (limited to 'wxgtk3/wx-config')
-rw-r--r-- | wxgtk3/wx-config | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/wxgtk3/wx-config b/wxgtk3/wx-config deleted file mode 100644 index 970ded9..0000000 --- a/wxgtk3/wx-config +++ /dev/null @@ -1,45 +0,0 @@ -#! /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 |