#!/bin/sh # This is a shell archive (produced by GNU sharutils 4.2.1). # To extract the files from this archive, save it to some FILE, remove # everything before the `!/bin/sh' line above, then type `sh FILE'. # # Made on 2001-02-05 15:21 PST by . # Source directory was `/user/hjl/bugs/gas/ia64'. # # Existing files will *not* be overwritten unless `-c' is specified. # # This shar contains: # length mode name # ------ ---------- ------------------------------------------ # 385 -rw-r--r-- main.c # 288 -rw-r--r-- sh1.c # 446 -rw-r--r-- Makefile # save_IFS="${IFS}" IFS="${IFS}:" gettext_dir=FAILED locale_dir=FAILED first_param="$1" for dir in $PATH do if test "$gettext_dir" = FAILED && test -f $dir/gettext \ && ($dir/gettext --version >/dev/null 2>&1) then set `$dir/gettext --version 2>&1` if test "$3" = GNU then gettext_dir=$dir fi fi if test "$locale_dir" = FAILED && test -f $dir/shar \ && ($dir/shar --print-text-domain-dir >/dev/null 2>&1) then locale_dir=`$dir/shar --print-text-domain-dir` fi done IFS="$save_IFS" if test "$locale_dir" = FAILED || test "$gettext_dir" = FAILED then echo=echo else TEXTDOMAINDIR=$locale_dir export TEXTDOMAINDIR TEXTDOMAIN=sharutils export TEXTDOMAIN echo="$gettext_dir/gettext -s" fi if touch -am -t 200112312359.59 $$.touch >/dev/null 2>&1 && test ! -f 200112312359.59 -a -f $$.touch; then shar_touch='touch -am -t $1$2$3$4$5$6.$7 "$8"' elif touch -am 123123592001.59 $$.touch >/dev/null 2>&1 && test ! -f 123123592001.59 -a ! -f 123123592001.5 -a -f $$.touch; then shar_touch='touch -am $3$4$5$6$1$2.$7 "$8"' elif touch -am 1231235901 $$.touch >/dev/null 2>&1 && test ! -f 1231235901 -a -f $$.touch; then shar_touch='touch -am $3$4$5$6$2 "$8"' else shar_touch=: echo $echo 'WARNING: not restoring timestamps. Consider getting and' $echo "installing GNU \`touch', distributed in GNU File Utilities..." echo fi rm -f 200112312359.59 123123592001.59 123123592001.5 1231235901 $$.touch # if mkdir _sh28963; then $echo 'x -' 'creating lock directory' else $echo 'failed to create lock directory' exit 1 fi # ============= main.c ============== if test -f 'main.c' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'main.c' '(file already exists)' else $echo 'x -' extracting 'main.c' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'main.c' && #include #include X /* This function overrides a function in the shared library. */ X int shlib_overriddencall2 () { X return 8; } X int main () { X printf ("shlib_shlibcall2 () == %d\n", shlib_shlibcall2 ()); X printf ("shlib_overriddencall2 () == %d\n", shlib_overriddencall2 ()); X if (shlib_shlibcall2 () != shlib_overriddencall2 ()) X abort (); X return 0; } SHAR_EOF (set 20 01 02 05 15 17 58 'main.c'; eval "$shar_touch") && chmod 0644 'main.c' || $echo 'restore of' 'main.c' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'main.c:' 'MD5 check failed' 8f48fd778e6480140c34db765e87c465 main.c SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'main.c'`" test 385 -eq "$shar_count" || $echo 'main.c:' 'original size' '385,' 'current size' "$shar_count!" fi fi # ============= sh1.c ============== if test -f 'sh1.c' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'sh1.c' '(file already exists)' else $echo 'x -' extracting 'sh1.c' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'sh1.c' && /* This function calls a function defined in this object in the shared X library. The main program will override the called function. */ X extern int shlib_overriddencall2 (); X int shlib_shlibcall2 () { X return shlib_overriddencall2 (); } X int shlib_overriddencall2 () { X return 7; } SHAR_EOF (set 20 01 02 05 15 14 32 'sh1.c'; eval "$shar_touch") && chmod 0644 'sh1.c' || $echo 'restore of' 'sh1.c' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'sh1.c:' 'MD5 check failed' 548517d9d39c5a622ed73451c5965abb sh1.c SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'sh1.c'`" test 288 -eq "$shar_count" || $echo 'sh1.c:' 'original size' '288,' 'current size' "$shar_count!" fi fi # ============= Makefile ============== if test -f 'Makefile' && test "$first_param" != -c; then $echo 'x -' SKIPPING 'Makefile' '(file already exists)' else $echo 'x -' extracting 'Makefile' '(text)' sed 's/^X//' << 'SHAR_EOF' > 'Makefile' && CFLAGS=-O -B./ #-DHIDDEN_NORMAL_TEST PIC=-fPIC X PROGS= foo X all: $(PROGS) X for f in $(PROGS); do echo "Running: $$f"; ./$$f; \ X if [ $$? != 0 ]; then echo Failed; fi; done X foo: main.o libfoo.so X $(CC) -o $@ $(CFLAGS) $^ -Wl,-rpath,. X main.o: main.c X $(CC) $(CFLAGS) -c $< X libfoo.so: sh1.o X $(CC) -shared -o $@ $(CFLAGS) $(PIC) $^ X X.c.o: X $(CC) $(CFLAGS) $(PIC) -c $< X clean: X rm -f $(PROGS) *.so *.o *.s X X shar: X shar *.c Makefile > bug.shar SHAR_EOF (set 20 01 02 05 15 15 18 'Makefile'; eval "$shar_touch") && chmod 0644 'Makefile' || $echo 'restore of' 'Makefile' 'failed' if ( md5sum --help 2>&1 | grep 'sage: md5sum \[' ) >/dev/null 2>&1 \ && ( md5sum --version 2>&1 | grep -v 'textutils 1.12' ) >/dev/null; then md5sum -c << SHAR_EOF >/dev/null 2>&1 \ || $echo 'Makefile:' 'MD5 check failed' 0f66b20095a07082e85a77cc0453018d Makefile SHAR_EOF else shar_count="`LC_ALL= LC_CTYPE= LANG= wc -c < 'Makefile'`" test 446 -eq "$shar_count" || $echo 'Makefile:' 'original size' '446,' 'current size' "$shar_count!" fi fi rm -fr _sh28963 exit 0