summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2013-11-11 12:23:45 -0500
committerMatthias Clasen <mclasen@redhat.com>2013-11-11 12:23:45 -0500
commit0236c58c136f663cbe021ecc748e0b2359b0afed (patch)
treefa1e1d07e9f43940eb77345e8b2f89f32540ecb7
parentUpdate to 3.11.0 (diff)
downloadgtk3-classic-build-gtk3-0236c58c136f663cbe021ecc748e0b2359b0afed.tar.gz
gtk3-classic-build-gtk3-0236c58c136f663cbe021ecc748e0b2359b0afed.tar.bz2
gtk3-classic-build-gtk3-0236c58c136f663cbe021ecc748e0b2359b0afed.zip
Drop unused files
-rwxr-xr-xupdate-gdk-pixbuf-loaders-3.048
-rwxr-xr-xupdate-gtk-immodules-3.048
2 files changed, 0 insertions, 96 deletions
diff --git a/update-gdk-pixbuf-loaders-3.0 b/update-gdk-pixbuf-loaders-3.0
deleted file mode 100755
index 68f3017..0000000
--- a/update-gdk-pixbuf-loaders-3.0
+++ /dev/null
@@ -1,48 +0,0 @@
-#! /bin/sh
-
-if test $# != 1; then
- echo usage: update-gdk-pixbuf-loaders-3.0 host_triplet 1>&2
- exit 1
-fi
-
-umask 022
-# Deriving /etc/gtk-3.0/$host location
-#
-# autoconf changes linux to linux-gnu
-case "$1" in
- *linux) host="$1-gnu"
- ;;
- *) host=$1
- ;;
-esac
-
-# autoconf uses powerpc not ppc
-host=`echo $host | sed "s/^ppc/powerpc/"`
-# autoconf uses ibm-linux not redhat-linux (s390x)
-host=`echo $host | sed "s/^s390\(x\)*-redhat/s390\1-ibm/"`
-
-# We have had problems in the past with build systems
-# changing host from i386 to i686 and appending/dropping
-# the -gnu suffix, so try to match up the $host we got
-# with whats actually there.
-if [ ! -d /etc/gtk-3.0/$host ]; then
- case "$host" in
- i?86*)
- for d in $(ls -d /etc/gtk-3.0/i?86*); do
- host=$(basename $d)
- break
- done
- ;;
- esac
-fi
-
-FILE=/etc/gtk-3.0/$host/gdk-pixbuf.loaders
-
-case "$host" in
- alpha*|ia64*|powerpc64*|s390x*|x86_64*)
- /usr/bin/gdk-pixbuf-query-loaders-3.0-64 > $FILE
- ;;
- *)
- /usr/bin/gdk-pixbuf-query-loaders-3.0-32 > $FILE
- ;;
-esac
diff --git a/update-gtk-immodules-3.0 b/update-gtk-immodules-3.0
deleted file mode 100755
index 0af7b06..0000000
--- a/update-gtk-immodules-3.0
+++ /dev/null
@@ -1,48 +0,0 @@
-#! /bin/sh
-
-if test $# != 1; then
- echo usage: update-gtk-immodules-3.0 host_triplet 1>&2
- exit 1
-fi
-
-umask 022
-# Deriving /etc/gtk-3.0/$host location
-#
-# autoconf changes linux to linux-gnu
-case "$1" in
- *linux) host="$1-gnu"
- ;;
- *) host=$1
- ;;
-esac
-
-# autoconf uses powerpc not ppc
-host=`echo $host | sed "s/^ppc/powerpc/"`
-# autoconf uses ibm-linux not redhat-linux (s390x)
-host=`echo $host | sed "s/^s390\(x\)*-redhat/s390\1-ibm/"`
-
-# We have had problems in the past with build systems
-# changing host from i386 to i686 and appending/dropping
-# the -gnu suffix, so try to match up the $host we got
-# with whats actually there.
-if [ ! -d /etc/gtk-3.0/$host ]; then
- case "$host" in
- i?86*)
- for d in $(ls -d /etc/gtk-3.0/i?86*); do
- host=$(basename $d)
- break
- done
- ;;
- esac
-fi
-
-FILE=/etc/gtk-3.0/$host/gtk.immodules
-
-case "$host" in
- alpha*|ia64*|powerpc64*|s390x*|x86_64*)
- /usr/bin/gtk-query-immodules-3.0-64 > $FILE
- ;;
- *)
- /usr/bin/gtk-query-immodules-3.0-32 > $FILE
- ;;
-esac
bgstack15