#! /bin/sh
# Common stub for a few missing GNU programs while installing.
# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
# Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996.

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.

if test $# -eq 0; then
  echo 1>&2 "Try \`$0 --help' for more information"
  exit 1
fi

case "$1" in

  -h|--h|--he|--hel|--help)
    echo "\
$0 [OPTION]... PROGRAM [ARGUMENT]...

Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
error status if there is no known handling for PROGRAM.

Options:
  -h, --help      display this help and exit
  -v, --version   output version information and exit

Supported PROGRAM values:
  aclocal      touch file \`aclocal.m4'
  autoconf     touch file \`configure'
  autoheader   touch file \`config.h.in'
  automake     touch all \`Makefile.in' files
  bison        create \`y.tab.[ch]', if possible, from existing .[ch]
  flex         create \`lex.yy.c', if possible, from existing .c
  lex          create \`lex.yy.c', if possible, from existing .c
  makeinfo     touch the output file
  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]"
    ;;

  -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
    echo "missing - GNU libit 0.0"
    ;;

  -*)
    echo 1>&2 "$0: Unknown \`$1' option"
    echo 1>&2 "Try \`$0 --help' for more information"
    exit 1
    ;;

  aclocal)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified \`acinclude.m4' or \`configure.in'.  You might want
         to install the \`Automake' and \`Perl' packages.  Grab them from
         any GNU archive site."
    touch aclocal.m4
    ;;

  autoconf)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified \`configure.in'.  You might want to install the
         \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU
         archive site."
    touch configure
    ;;

  autoheader)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified \`acconfig.h' or \`configure.in'.  You might want
         to install the \`Autoconf' and \`GNU m4' packages.  Grab them
         from any GNU archive site."
    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' configure.in`
    test -z "$files" && files="config.h"
    touch_files=
    for f in $files; do
      case "$f" in
      *:*) touch_files="$touch_files "`echo "$f" |
				       sed -e 's/^[^:]*://' -e 's/:.*//'`;;
      *) touch_files="$touch_files $f.in";;
      esac
    done
    touch $touch_files
    ;;

  automake)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'.
         You might want to install the \`Automake' and \`Perl' packages.
         Grab them from any GNU archive site."
    find . -type f -name Makefile.am -print |
	   sed 's/\.am$/.in/' |
	   while read f; do touch "$f"; done
    ;;

  bison|yacc)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified a \`.y' file.  You may need the \`Bison' package
         in order for those modifications to take effect.  You can get
         \`Bison' from any GNU archive site."
    rm -f y.tab.c y.tab.h
    if [ $# -ne 1 ]; then
        eval LASTARG="\${$#}"
	case "$LASTARG" in
	*.y)
	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
	    if [ -f "$SRCFILE" ]; then
	         cp "$SRCFILE" y.tab.c
	    fi
	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
	    if [ -f "$SRCFILE" ]; then
	         cp "$SRCFILE" y.tab.h
	    fi
	  ;;
	esac
    fi
    if [ ! -f y.tab.h ]; then
	echo >y.tab.h
    fi
    if [ ! -f y.tab.c ]; then
	echo 'main() { return 0; }' >y.tab.c
    fi
    ;;

  lex|flex)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified a \`.l' file.  You may need the \`Flex' package
         in order for those modifications to take effect.  You can get
         \`Flex' from any GNU archive site."
    rm -f lex.yy.c
    if [ $# -ne 1 ]; then
        eval LASTARG="\${$#}"
	case "$LASTARG" in
	*.l)
	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
	    if [ -f "$SRCFILE" ]; then
	         cp "$SRCFILE" lex.yy.c
	    fi
	  ;;
	esac
    fi
    if [ ! -f lex.yy.c ]; then
	echo 'main() { return 0; }' >lex.yy.c
    fi
    ;;

  makeinfo)
    echo 1>&2 "\
WARNING: \`$1' is missing on your system.  You should only need it if
         you modified a \`.texi' or \`.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy \`make' (AIX,
         DU, IRIX).  You might want to install the \`Texinfo' package or
         the \`GNU make' package.  Grab either from any GNU archive site."
    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
    if test -z "$file"; then
      file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
    fi
    touch $file
    ;;

  *)
    echo 1>&2 "\
WARNING: \`$1' is needed, and you do not seem to have it handy on your
         system.  You might have modified some files without having the
         proper tools for further handling them.  Check the \`README' file,
         it often tells you about the needed prerequirements for installing
         this package.  You may also peek at any GNU archive site, in case
         some other package would contain this missing \`$1' program."
    exit 1
    ;;
esac

exit 0
k                                                                                                                                                                                                                                                                                                                                                                                    cG]hgl?r8sXwVbQְlCb+1;lgPpYS};a׳z
hڔ)^t|G-hreGc"ʻj^yIepmpxw#~Bx9ꁷ(nY8-Yg~[EwB᥁xQs/g^^ q}|gd.C|>5g=-o0B6E

Kx9.?wߛ{h^xi\|qS{Ӹr?{xi
Axco <3wxַ[
# >m^ =Ax~Ax!-ro}Ax^CG
_A
³~n
F/tԸK޻eY
F<Axf /d^=^^ HpAxAx][qlP|9>7oEx!{xQrA q-^ .
qx_^<uXx1Ue&2]?/dYkNퟶz.?.R')ofN,P=\n繒}h=f7G|%G<\vh\,B9q7';l4v⒋o,/[5sVBƶowr;ߙp
s;xqXx&~y w]pmD8-SbsUr
%~?WJYʎ|`3i"4Ũ{q\a\vC/<3ޟ~egۅ-.3O,~M{r,Y̝lهِDz딵 MpjtL<svƲ7-Tpru/O]p,ul2pu_lBc|?CFf~rTe$_G.غ~luV#S{caKģQxDkS|b{W|(ڇKk?y1PJ9WY&Xۃxjbded=4ѹl<^ulwO]4؇0H%Xsd3%՝iT<<"p(~9{%CvVM:Kk3 _kfEWcեU{f&{|}	-_E׬OLUk|0^|gNkg>Kk|
?+}6d:U|pav _գOk[._}kTk|_}:WISzWɋMWQuE5 XM_m#ZL;^9oa'/955i<_+|}"V5iN-_
_7Tk|M_s:&7V*	_kTڨ-5||uTu|/WQkAZ_kBkPUڨ/d3_:V#]WZ|]Wz_:|WU|jz<_
__J|u,ocX&^g|b#{}\*G7vhuQ=+_;Qfe4GdPc*:@'YNЉؤN2IFщK뉙u2$$}3ĥD]񸼾յ]6KYE'#]E'stYGE+E'/$ISTxNHi ZI0NZ2噩z~*Kz+z	C/_FSV/*^X/~^|m^:~PE/yUzrY/c^|k˭iM.wLMKH*䡗N/y%Kz^:t]@/-b]^|*TzSuϬVK07-p{E/yE/>E/SWezN'+zm,za{W/H7l|v_nƅ:tWt3WTǡm?JROmmD1?EG͜H-t+Ҿ%+Jq{fO[On#N3~(fn	OHmY[Tve1+!pW۩֧*:9ZYjpXv(=!]IGitDڲACRsR!VroJ#ٙ,}F{63Y#":nOnG=:qri0
9gRxY`	yfM,o6'
uNґw0x⏓8aj1~:cV<LEGW@OB7!&A7E3oX?U(qKSb.@2ieu6bR,7K
@KC5Mf|֔rw#FfW\vY<	hUG
!r	)ub/ʋ@Y)3w6rܸ<ng:ߓ+@[4{Gj$;Se7sԵƶnᶒyDZ:"amX(S9L1R&
"Υ5QA$<˟G;BcB{#A]rųy,ۚpqZOW󏍣:8	tBeAJ|qW251	q$K{I\,ԻaqUgwPQ?N+]ݨ#.NkǞ Z
wgQ]n;ogcL51b=|~;d`=5<߻h{Įϳq+?OgC¥\p\&Iӧ>=>|F>2ъ`|s<63=8A>M$Qs*ںd990>CS쵌Qf{Ϝq|	|~gX5ӄOӇ._yK_S4|³5~['0.2ꓯrAN$ΩA8549
|J/#s|>[/z3|:0^6SSdSe%ơpGNGNg͑J98rp=.p:oN.r*NyWr&ɧT"TBNM©Ɛ۾|:ϫڃk,x
lO+'6ժëMl9ym9^g9Wvk	+y.+^e«Lx<U9y ]_j
^/׏y *U^KxUWitf^#?ݻq&|x>kDxMs˫bqk.+	
U!*ȫMxM"k*jUym,?כj6w z^6Yu؇טkۨ˫;\^k^]^UW9j^U«JxUJ\kC^;O~9:5xվ`^K5Axe$7*KM3ށ|^yy=qwhu_r^3Wvk]3':?ry^DxUC^%«<y@^;/#h~+Ua
}p/iw}<^}kK1OB/̵ۢJG4>{(ڠV	}Lc{3<UU*$ߓ7/)s/WӻCYx
sϚ7Jcel>zώCã;[gCE]/p}W,,ib<x1x♇xFNܘy<[!97ϒOƳ7x>,S/Ƴy⩝	i!6S-WV<exyO9!B<<x3<OC7vn7%gOk40qo<C<O<^aq<ӁxxA<3}2Ɠi<!x0 xLTN,0O<?|e3r!S;yc*T !I϶x6a<$}B<x~<S!xvgvNxvLx`<Ux
!2ӂxLxv@<8xfx^OigI%OybƳmO<sX|yOރAnLc<U^g}tx~$T
xiB<5Ƴ2Izz@=_siT<)kєT\+Tr,_%u5JK_InE*|˳Au,KrחRCc:۸!ڵ=[(za0/`n9ݴҴtP"KHrr*?t8VBl?k&~[2r?zm55=OgۖG=o=o^s8/*KEOTtK9|O\ss=G9ѶKzn=cؼĖ,c3s?s%`VR^scn=_缶í87ks1[хzSH=G'st(I^)n|ϛ޴2vp}{ >!Zv?SZ?Teah{P[K[*
j
oMa;~SAA>y7$k俶=5,)yw󟳡:c!,{@[x:@ua=~iG11ڲS_|󇸏.]	rH=Nw
a4|L(W9!c6g}X@^$5V<qk?^kIU%u yt[+\s/잛\boF^Y-VF^#^^ka{}^mkx՗U?\&}ռWlk}^^$F5y^^C)=fA{5)½L@^m«Mxw5yM@
ymY?j/艾kyr^.y-!_
WV떋WV>< ESć{yר*ryWU;\^eUx9̼v!yuU^WF^!NyM :ȫ?uyB+\sWx5xm9O8Ex5 I{{yUv^ *)z~˫
jt{EG
xM5a@g4fן"kWa ^הg U5yN[\`r}gnxuWyeh5J_>ux5}x
>^u"# U^
WiPJxWyux@@^#5㎏
?yAFjZ=^^ck$3z|g :Wg %We7-s^;l0<Go J.-p/^xyp|˂4j|Km.̷BWKo0H_U>53k) Xd<@_c:`4	u{y k_Kռp<^G\p^ᚋIUG^Fx:ZyU'&׼Ǻ&^M5)z&jPWSU^x5:x7O5Oxz>4V>U^W	N#^H=R
܁Wx#%V~k+f^#.V<ux|[7	A^
5Ox5W[>kxW;ߊ ֳ^:]f	Y+C=ySF=xuD啽*#g%yF^55Q
ܱsë<ћLp^Z[;fL5)^52Om^uyyՐ׸*j|[]^)j5
4W蠉̼F^y5	&!V i&c^^W&cռf,:\
M;?۫!xp[YkߖV4kxuU[cB"o
̷Loi+x	V&5/bzo%ПnO"D|8[k¸Yy<O
sO'zO{z&X"y8+-a~+1Iaoe)qh8ϓ®'7x[	mO2&~+\׎Od/Y!,MF_/S/omKaZ˧П=
f,|}}eBIzpǧ?QuE|d/y|_rNK_@_dL|ї]3b/mG/EG_b{M_:Uw|t}~}n|NC/l
#Y7盂/*~/S//rY/nCv;<-ܗVe/㋂XF_IחV؂/Y|ɣ/y̾ྌE!(V)N;4G_fK?jwė|_L%Sf_675Ϧ/I|./*Î||!q_4VnU&fr0^g/:efR_BW	M_"Mܗ/KЗ_T⋁DZ}) G#Mܗ|K}QїH۝>/2]f_>}<c;l-罸כsDyqЛU37
.;rXiL
'?1gON"pߙ]~O,W5%bn1kz5j	S߭8]cuwk^bM55jM]яz߱ה5a&ݹ>x;\{'ks7gRL-]OGde`8I?%;,vfי?M)ghm0LU&Q⏊dOsst=sG}4xd?C'Kǟ>'	5׹ue[C gT$џ`(?f~{|`Ŧ7]̟uX3Ot;0<6cɸ˟
?kO'~K{AԄi`5̟o~`  o_F9bFlk
5wE=͟#?f?Cn\huiC,ϟpͽ}BLBdk5tKȟ6ϓO˟I?uȟ?OW?uIY@/DkПd}?Iɢ?*S1SO$z^ߟ<t4_^S>?ğk@me>?p㖹'4՛-9
x>'#Oağ<
ߓ5^zoI=9GegFQ4#!|ן({ρ;lɺc
X1G	O3	I1??	e?iןc?&ghu? |r<<upjp/[Y1ПcكC#Ojϴóg	So-T{?yծ??3-_L'KX HWsR
Z:#^y!ڟa
e>?p]%c?֌?zR8gr>W,
1?c?}>S#1ccĸ?%O#1fYl?ʢW?ϮVOVr[}T'-QuEHQ43Hӭe>?p=?֐oIYu?>?'L?#>8gKg:c,	rFvǚǟI?a;?E?_Ā?IgEןc?Ij
5wؽi>8֔;7	p*A`H6ӃCS-g}?KG:ܟVaw}*?쾵QNWL46%dşCU&c?L0-c<8>䐏:ؔZMR_-1 5.3q@YMZ
4Fqj*nZKO8zXMrϻX̛e]V²ϳޙ /Eq36 Ώ֝ϓ;/,Ώ	3T9??:̏
֔<ν/h+,qc{$d~VQsoHG
s;?2O77?e/Yrcp~?knG9?K_qm,8d~2?zWϏϭkG^vq~Ty7??i|~8?x,X$Ϗ
c5cq}J	\GܝO'
30?3
Qw~:p~y=%%?0?	n~2?:w~4+܁r~7?`~b~ut"3)G#OCĝOw;?oc_ȟ???x)|{;67?80?0?
?3oHGvq4?{|ĝt~