X-Git-Url: https://git.enpas.org/?p=XGrabControl.git;a=blobdiff_plain;f=XGrabControl;fp=XGrabControl;h=0000000000000000000000000000000000000000;hp=ddc64b15e0b5e5617fcede193256c5ad17d0d2ec;hb=c7035c7c78c7a77d2f7e8774ad34d0c36444eadb;hpb=967de2f550ee4bc6bfa658d361bf42490293d9df diff --git a/XGrabControl b/XGrabControl deleted file mode 100755 index ddc64b1..0000000 --- a/XGrabControl +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh -# -# XGrabControl, part of XGrabControl. -# (c) 2011, en passant development. -# -# This is a simple wrapper script for XGrabControl. -# Either source it or use it: -# source XGrabControl -# or use it as a program running helper: -# XGrabControl program arg1 arg2 ... - -MYNAME="XGrabControl" -SONAME=libXGrabControl.so - - -# Try to find $SONAME -for n in $PWD "${0%/*}" /usr/lib /usr/local/lib -do - if [ -e "$n/$SONAME" ] - then - SOPATH="$n/$SONAME" - break - fi -done - -if [ -z "$SOPATH" ] -then - echo "$MYNAME: Could not find $SONAME. Aborting." - exit 1 -fi - - -# Insert ourselves into LD_PRELOAD if we are not there yet. -if echo $LD_PRELOAD | grep -q "$SONAME" # $SONAME is treated as a regexp -then - echo "$MYNAME: $SONAME is already in LD_PRELOAD." -else - echo "$MYNAME: Adding $SOPATH to LD_PRELOAD." - export LD_PRELOAD="$SOPATH $LD_PRELOAD" -fi - -# If any arguments were given, pass them on to the shell. -if [ $# -gt 0 ] -then - exec "$@" -fi