home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-12-14 | 27.3 KB | 1,253 lines |
- diff -rc shellutils-1.9.2-fsf/Makefile.in shellutils-1.9.2-amiga/Makefile.in
- *** shellutils-1.9.2-fsf/Makefile.in Tue Oct 12 20:22:31 1993
- --- shellutils-1.9.2-amiga/Makefile.in Tue Dec 14 08:38:48 1993
- ***************
- *** 25,31 ****
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- ! prefix = /usr/local
- exec_prefix = $(prefix)
- bindir = $(exec_prefix)/bin
- libdir = $(exec_prefix)/lib
- --- 25,31 ----
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- ! prefix = /usr
- exec_prefix = $(prefix)
- bindir = $(exec_prefix)/bin
- libdir = $(exec_prefix)/lib
- ***************
- *** 38,45 ****
- NEWS configure configure.in config.h.in acconfig.h mkinstalldirs
-
- # Redundant stuff for making only selected programs.
- ! PROGS = basename date dirname echo env expr false groups id logname \
- ! pathchk printenv printf sleep tee test true tty who whoami yes @PROGS@
-
- # Subdirectories to run make in for the primary targets.
- SUBDIRS = lib src man
- --- 38,45 ----
- NEWS configure configure.in config.h.in acconfig.h mkinstalldirs
-
- # Redundant stuff for making only selected programs.
- ! PROGS = basename date dirname echo env expr id logname \
- ! pathchk printenv printf sleep tee test whoami yes @PROGS@
-
- # Subdirectories to run make in for the primary targets.
- SUBDIRS = lib src man
- ***************
- *** 57,63 ****
- check:
- installcheck:
-
- ! $(PROGS) su:
- cd lib; $(MAKE) all
- cd src; $(MAKE) $@
-
- --- 57,63 ----
- check:
- installcheck:
-
- ! $(PROGS):
- cd lib; $(MAKE) all
- cd src; $(MAKE) $@
-
- diff -rc shellutils-1.9.2-fsf/configure shellutils-1.9.2-amiga/configure
- *** shellutils-1.9.2-fsf/configure Tue Nov 30 05:37:24 1993
- --- shellutils-1.9.2-amiga/configure Mon Dec 13 23:57:53 1993
- ***************
- *** 69,75 ****
- *=*) val="`echo $arg|sed 's/[^=]*=//'`" ;;
- *) val=1 ;;
- esac
- ! eval "with_$package='$val'" ;;
-
- -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
- verbose=yes ;;
- --- 69,75 ----
- *=*) val="`echo $arg|sed 's/[^=]*=//'`" ;;
- *) val=1 ;;
- esac
- ! "with_$package='$val'" ;;
-
- -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
- verbose=yes ;;
- ***************
- *** 91,97 ****
- rm -f conftest* confdefs.h
- # AIX cpp loses on an empty file, so make sure it contains at least a newline.
- echo > confdefs.h
- ! compile='${CC-cc} $CFLAGS conftest.c -o conftest $LIBS >/dev/null 2>&1'
-
- # A filename unique to this package, relative to the directory that
- # configure is in, which we can look for to find out if srcdir is correct.
- --- 91,97 ----
- rm -f conftest* confdefs.h
- # AIX cpp loses on an empty file, so make sure it contains at least a newline.
- echo > confdefs.h
- ! compile="${CC-gcc} $CFLAGS conftest.c -o conftest $LIBS"
-
- # A filename unique to this package, relative to the directory that
- # configure is in, which we can look for to find out if srcdir is correct.
- ***************
- *** 102,108 ****
- srcdirdefaulted=yes
- # Try the directory containing this script, then `..'.
- prog=$0
- ! confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
- test "X$confdir" = "X$prog" && confdir=.
- srcdir=$confdir
- if test ! -r $srcdir/$unique_file; then
- --- 102,108 ----
- srcdirdefaulted=yes
- # Try the directory containing this script, then `..'.
- prog=$0
- ! confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
- test "X$confdir" = "X$prog" && confdir=.
- srcdir=$confdir
- if test ! -r $srcdir/$unique_file; then
- ***************
- *** 131,136 ****
- --- 131,138 ----
-
-
- # We want these before the checks, so the checks can modify their values.
- + CFLAGS="-O" #HACK (fnf)
- + LDFLAGS="" #HACK (fnf)
- test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1
- test -z "$LDFLAGS" && LDFLAGS=-g
-
- ***************
- *** 157,163 ****
- yes
- #endif
- EOF
- ! ${CC-cc} -E conftest.c > conftest.out 2>&1
- if egrep yes conftest.out >/dev/null 2>&1; then
- GCC=1 # For later tests.
- fi
- --- 159,165 ----
- yes
- #endif
- EOF
- ! ${CC-gcc} -E conftest.c > conftest.out 2>&1
- if egrep yes conftest.out >/dev/null 2>&1; then
- GCC=1 # For later tests.
- fi
- ***************
- *** 169,179 ****
-
-
- echo checking how to run the C preprocessor
- if test -z "$CPP"; then
- # This must be in double quotes, not single quotes, because CPP may get
- ! # substituted into the Makefile and ``${CC-cc}'' will simply confuse
- # make. It must be expanded now.
- ! CPP="${CC-cc} -E"
- cat > conftest.c <<EOF
- #include "confdefs.h"
- #include <stdio.h>
- --- 171,182 ----
-
-
- echo checking how to run the C preprocessor
- + CPP="/lib/gcc-lib/amigados/2.3.3/cpp" #HACK
- if test -z "$CPP"; then
- # This must be in double quotes, not single quotes, because CPP may get
- ! # substituted into the Makefile and ``${CC-gcc}'' will simply confuse
- # make. It must be expanded now.
- ! CPP="${CC-gcc} -E"
- cat > conftest.c <<EOF
- #include "confdefs.h"
- #include <stdio.h>
- ***************
- *** 234,239 ****
- --- 237,243 ----
- # /usr/ucb/install on SVR4, which tries to use the nonexistent group
- # `staff'. On most BSDish systems install is in /usr/bin, not /usr/ucb
- # anyway. Sigh.
- + INSTALL=/bin/ginstall #HACK (fnf)
- if test "z${INSTALL}" = "z" ; then
- echo checking for install
- IFS="${IFS= }"; saveifs="$IFS"; IFS="${IFS}:"
- ***************
- *** 434,440 ****
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- have_lib="1"
-
- --- 438,444 ----
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if false; then
- rm -rf conftest*
- have_lib="1"
-
- ***************
- *** 465,471 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- PROGS="$PROGS uname" MAN="$MAN uname.1" have_uname=1
-
- --- 469,475 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- PROGS="$PROGS uname" MAN="$MAN uname.1" have_uname=1
-
- ***************
- *** 539,545 ****
- int main() { exit(0); }
- int t() { $prog }
- EOF
- ! if eval $compile; then
- :
- else
- rm -rf conftest*
- --- 543,549 ----
- int main() { exit(0); }
- int t() { $prog }
- EOF
- ! if true; then
- :
- else
- rm -rf conftest*
- ***************
- *** 587,593 ****
- exit (0); }
-
- EOF
- ! eval $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- {
- --- 591,597 ----
- exit (0); }
-
- EOF
- ! $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- {
- ***************
- *** 633,639 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- --- 637,643 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- ***************
- *** 681,687 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- --- 685,691 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- ***************
- *** 737,743 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- --- 741,747 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- ***************
- *** 852,858 ****
- #include "confdefs.h"
- $prog
- EOF
- ! eval $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- {
- --- 856,862 ----
- #include "confdefs.h"
- $prog
- EOF
- ! $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- {
- ***************
- *** 926,932 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- :
- else
- rm -rf conftest*
- --- 930,936 ----
- #endif
- }
- EOF
- ! if $compile; then
- :
- else
- rm -rf conftest*
- ***************
- *** 952,958 ****
- }
-
- EOF
- ! eval $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- test -n "$verbose" && echo " memcmp is 8-bit clean"
- --- 956,962 ----
- }
-
- EOF
- ! $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- test -n "$verbose" && echo " memcmp is 8-bit clean"
- ***************
- *** 976,984 ****
- int main() { exit(0); }
- int t() { setpriority(0, 0, 0); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- ! PROGS="$PROGS nice nohup" MAN="$MAN nice.1 nohup.1"
-
- fi
- rm -f conftest*
- --- 980,988 ----
- int main() { exit(0); }
- int t() { setpriority(0, 0, 0); }
- EOF
- ! if $compile; then
- rm -rf conftest*
- ! PROGS="$PROGS nice" MAN="$MAN nice.1"
-
- fi
- rm -f conftest*
- ***************
- *** 993,999 ****
- int main() { exit(0); }
- int t() { nice(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 997,1003 ----
- int main() { exit(0); }
- int t() { nice(); }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1006,1012 ****
- \${SEDeA}NICE_PRIORITY\${SEDeB}NICE_PRIORITY\${SEDeC}1\${SEDeD}
- "
- }
- ! PROGS="$PROGS nice nohup" MAN="$MAN nice.1 nohup.1"
-
- fi
- rm -f conftest*
- --- 1010,1016 ----
- \${SEDeA}NICE_PRIORITY\${SEDeB}NICE_PRIORITY\${SEDeC}1\${SEDeD}
- "
- }
- ! PROGS="$PROGS nice" MAN="$MAN nice.1"
-
- fi
- rm -f conftest*
- ***************
- *** 1037,1043 ****
- int main() { exit(0); }
- int t() { struct utmp ut; ut.ut_host; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1041,1047 ----
- int main() { exit(0); }
- int t() { struct utmp ut; ut.ut_host; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1066,1072 ****
- int main() { exit(0); }
- int t() { struct utmpx ut; ut.ut_host; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1070,1076 ----
- int main() { exit(0); }
- int t() { struct utmpx ut; ut.ut_host; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1108,1114 ****
- int t() { /* SunOS 4.0.3 has termios.h but not the library calls. */
- tcgetattr(0, 0); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- have_termios=1
-
- --- 1112,1118 ----
- int t() { /* SunOS 4.0.3 has termios.h but not the library calls. */
- tcgetattr(0, 0); }
- EOF
- ! if $compile; then
- rm -rf conftest*
- have_termios=1
-
- ***************
- *** 1116,1122 ****
- rm -f conftest*
-
- if test -n "$have_termios"; then
- ! PROGS="$PROGS stty" MAN="$MAN stty.1"
- echo checking for c_line in struct termios
- cat > conftest.c <<EOF
- #include "confdefs.h"
- --- 1120,1126 ----
- rm -f conftest*
-
- if test -n "$have_termios"; then
- ! PROGS="$PROGS" MAN="$MAN"
- echo checking for c_line in struct termios
- cat > conftest.c <<EOF
- #include "confdefs.h"
- ***************
- *** 1125,1131 ****
- int main() { exit(0); }
- int t() { struct termios t; t.c_line; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1129,1135 ----
- int main() { exit(0); }
- int t() { struct termios t; t.c_line; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1153,1159 ****
- int main() { exit(0); }
- int t() { int x = TIOCGWINSZ; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1157,1163 ----
- int main() { exit(0); }
- int t() { int x = TIOCGWINSZ; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1204,1210 ****
- int main() { exit(0); }
- int t() { vprintf(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1208,1214 ----
- int main() { exit(0); }
- int t() { vprintf(); }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1233,1239 ****
- int main() { exit(0); }
- int t() { _doprnt(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1237,1243 ----
- int main() { exit(0); }
- int t() { _doprnt(); }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1262,1268 ****
- int main() { exit(0); }
- int t() { char *p = alloca(2 * sizeof(int)); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1266,1272 ----
- int main() { exit(0); }
- int t() { char *p = alloca(2 * sizeof(int)); }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1301,1307 ****
- int main() { exit(0); }
- int t() { char *p = (char *) alloca(1); }
- EOF
- ! if eval $compile; then
- :
- else
- rm -rf conftest*
- --- 1305,1311 ----
- int main() { exit(0); }
- int t() { char *p = (char *) alloca(1); }
- EOF
- ! if $compile; then
- :
- else
- rm -rf conftest*
- ***************
- *** 1336,1342 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- --- 1340,1346 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- ***************
- *** 1369,1375 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- --- 1373,1379 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- ***************
- *** 1402,1408 ****
- #endif
- }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- --- 1406,1412 ----
- #endif
- }
- EOF
- ! if $compile; then
- rm -rf conftest*
- {
- test -n "$verbose" && \
- ***************
- *** 1459,1465 ****
- #include "confdefs.h"
- main(){exit(0);}
- EOF
- ! eval $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
- :
- else
- --- 1463,1469 ----
- #include "confdefs.h"
- main(){exit(0);}
- EOF
- ! $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
- :
- else
- ***************
- *** 1501,1507 ****
- exit (find_stack_direction() < 0);
- }
- EOF
- ! eval $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- {
- --- 1505,1511 ----
- exit (find_stack_direction() < 0);
- }
- EOF
- ! $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
-
- {
- ***************
- *** 1542,1548 ****
- int main() { exit(0); }
- int t() { struct tm *tp; tp->tm_sec; }
- EOF
- ! if eval $compile; then
- :
- else
- rm -rf conftest*
- --- 1546,1552 ----
- int main() { exit(0); }
- int t() { struct tm *tp; tp->tm_sec; }
- EOF
- ! if $compile; then
- :
- else
- rm -rf conftest*
- ***************
- *** 1570,1576 ****
- int main() { exit(0); }
- int t() { struct tm *tp; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1574,1580 ----
- int main() { exit(0); }
- int t() { struct tm *tp; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1605,1611 ****
- int main() { exit(0); }
- int t() { struct tm tm; tm.tm_zone; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1609,1615 ----
- int main() { exit(0); }
- int t() { struct tm tm; tm.tm_zone; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1637,1643 ****
- int main() { exit(0); }
- int t() { atoi(*tzname); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1641,1647 ----
- int main() { exit(0); }
- int t() { atoi(*tzname); }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1668,1674 ****
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1672,1678 ----
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1695,1701 ****
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1699,1705 ----
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1722,1728 ****
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1726,1732 ----
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1749,1755 ****
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
-
- {
- --- 1753,1759 ----
- int main() { exit(0); }
- int t() { DIR *dirp = 0; }
- EOF
- ! if $compile; then
- rm -rf conftest*
-
- {
- ***************
- *** 1775,1781 ****
- #include <$dirheader>
- int closedir(); main() { exit(closedir(opendir(".")) != 0); }
- EOF
- ! eval $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
- :
- else
- --- 1779,1785 ----
- #include <$dirheader>
- int closedir(); main() { exit(closedir(opendir(".")) != 0); }
- EOF
- ! $compile
- if test -s conftest && (./conftest; exit) 2>/dev/null; then
- :
- else
- ***************
- *** 1828,1834 ****
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- have_lib="1"
-
- --- 1832,1838 ----
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if false; then
- rm -rf conftest*
- have_lib="1"
-
- ***************
- *** 1900,1906 ****
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- have_lib="1"
-
- --- 1904,1910 ----
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if false; then
- rm -rf conftest*
- have_lib="1"
-
- ***************
- *** 1935,1941 ****
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- have_lib="1"
-
- --- 1939,1945 ----
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if false; then
- rm -rf conftest*
- have_lib="1"
-
- ***************
- *** 1970,1976 ****
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if eval $compile; then
- rm -rf conftest*
- have_lib="1"
-
- --- 1974,1980 ----
- int main() { exit(0); }
- int t() { main(); }
- EOF
- ! if false; then
- rm -rf conftest*
- have_lib="1"
-
- diff -rc shellutils-1.9.2-fsf/man/Makefile.in shellutils-1.9.2-amiga/man/Makefile.in
- *** shellutils-1.9.2-fsf/man/Makefile.in Sun Oct 17 04:09:57 1993
- --- shellutils-1.9.2-amiga/man/Makefile.in Tue Dec 14 08:39:22 1993
- ***************
- *** 20,26 ****
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- ! prefix = /usr/local
- exec_prefix = $(prefix)
- mandir = $(prefix)/man/man1
- manprefix =
- --- 20,26 ----
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- ! prefix = /usr
- exec_prefix = $(prefix)
- mandir = $(prefix)/man/man1
- manprefix =
- diff -rc shellutils-1.9.2-fsf/src/Makefile.in shellutils-1.9.2-amiga/src/Makefile.in
- *** shellutils-1.9.2-fsf/src/Makefile.in Sun Oct 24 18:02:15 1993
- --- shellutils-1.9.2-amiga/src/Makefile.in Tue Dec 14 08:39:02 1993
- ***************
- *** 20,26 ****
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- ! prefix = /usr/local
- exec_prefix = $(prefix)
- bindir = $(exec_prefix)/bin
- binprefix =
- --- 20,26 ----
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- ! prefix = /usr
- exec_prefix = $(prefix)
- bindir = $(exec_prefix)/bin
- binprefix =
- ***************
- *** 44,53 ****
- DISTFILES = Makefile.in system.h $(SOURCES) groups.sh nohup.sh \
- false.sh true.sh version.h long-options.h
-
- ! PROGS = basename date dirname echo env expr false groups id logname \
- ! pathchk printenv printf sleep tee test true tty who whoami yes @PROGS@
-
- ! all: $(PROGS) su
-
- incl = -I.. -I$(srcdir) -I$(srcdir)/../lib
- .c.o:
- --- 44,53 ----
- DISTFILES = Makefile.in system.h $(SOURCES) groups.sh nohup.sh \
- false.sh true.sh version.h long-options.h
-
- ! PROGS = basename date dirname echo env expr id logname \
- ! pathchk printenv printf sleep tee test whoami yes @PROGS@
-
- ! all: $(PROGS)
-
- incl = -I.. -I$(srcdir) -I$(srcdir)/../lib
- .c.o:
- ***************
- *** 56,62 ****
- install: all
- for f in $(PROGS); do $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix)$$f; done
- rm -f $(bindir)/'['; ln $(bindir)/$(binprefix)test $(bindir)/'['
- ! @if test `./id -u` = 0; then \
- echo you are root, so installing su; \
- $(INSTALL_PROGRAM) su $(bindir)/$(binprefix)su; \
- chown root $(bindir)/$(binprefix)su; \
- --- 56,62 ----
- install: all
- for f in $(PROGS); do $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix)$$f; done
- rm -f $(bindir)/'['; ln $(bindir)/$(binprefix)test $(bindir)/'['
- ! @if false; then \
- echo you are root, so installing su; \
- $(INSTALL_PROGRAM) su $(bindir)/$(binprefix)su; \
- chown root $(bindir)/$(binprefix)su; \
- ***************
- *** 64,70 ****
- else echo WARNING: you are not root, so not installing su; fi
-
- uninstall:
- ! for f in $(PROGS) su; do rm -f $(bindir)/$(binprefix)$$f; done
- rm -f $(bindir)/'['
-
- TAGS: $(SOURCES)
- --- 64,70 ----
- else echo WARNING: you are not root, so not installing su; fi
-
- uninstall:
- ! for f in $(PROGS); do rm -f $(bindir)/$(binprefix)$$f; done
- rm -f $(bindir)/'['
-
- TAGS: $(SOURCES)
- diff -rc shellutils-1.9.2-fsf/src/basename.c shellutils-1.9.2-amiga/src/basename.c
- *** shellutils-1.9.2-fsf/src/basename.c Mon Oct 25 23:30:24 1993
- --- shellutils-1.9.2-amiga/src/basename.c Mon Dec 13 23:30:32 1993
- ***************
- *** 83,89 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 83,88 ----
- diff -rc shellutils-1.9.2-fsf/src/date.c shellutils-1.9.2-amiga/src/date.c
- *** shellutils-1.9.2-fsf/src/date.c Mon Oct 25 23:30:26 1993
- --- shellutils-1.9.2-amiga/src/date.c Mon Dec 13 23:30:37 1993
- ***************
- *** 110,116 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 110,115 ----
- diff -rc shellutils-1.9.2-fsf/src/dirname.c shellutils-1.9.2-amiga/src/dirname.c
- *** shellutils-1.9.2-fsf/src/dirname.c Mon Oct 25 23:30:27 1993
- --- shellutils-1.9.2-amiga/src/dirname.c Mon Dec 13 23:30:41 1993
- ***************
- *** 72,78 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 72,77 ----
- diff -rc shellutils-1.9.2-fsf/src/echo.c shellutils-1.9.2-amiga/src/echo.c
- *** shellutils-1.9.2-fsf/src/echo.c Mon Oct 25 23:30:28 1993
- --- shellutils-1.9.2-amiga/src/echo.c Mon Dec 13 23:30:46 1993
- ***************
- *** 110,116 ****
- /* Print the words in LIST to standard output. If the first word is
- `-n', then don't print a trailing newline. We also support the
- echo syntax from Version 9 unix systems. */
- ! void
- main (argc, argv)
- int argc;
- char **argv;
- --- 110,116 ----
- /* Print the words in LIST to standard output. If the first word is
- `-n', then don't print a trailing newline. We also support the
- echo syntax from Version 9 unix systems. */
- !
- main (argc, argv)
- int argc;
- char **argv;
- diff -rc shellutils-1.9.2-fsf/src/env.c shellutils-1.9.2-amiga/src/env.c
- *** shellutils-1.9.2-fsf/src/env.c Mon Oct 25 23:30:29 1993
- --- shellutils-1.9.2-amiga/src/env.c Mon Dec 13 23:30:53 1993
- ***************
- *** 121,127 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv, envp)
- register int argc;
- register char **argv;
- --- 121,126 ----
- diff -rc shellutils-1.9.2-fsf/src/expr.c shellutils-1.9.2-amiga/src/expr.c
- *** shellutils-1.9.2-fsf/src/expr.c Sat Nov 20 04:04:27 1993
- --- shellutils-1.9.2-amiga/src/expr.c Mon Dec 13 23:30:58 1993
- ***************
- *** 169,175 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 169,174 ----
- diff -rc shellutils-1.9.2-fsf/src/id.c shellutils-1.9.2-amiga/src/id.c
- *** shellutils-1.9.2-fsf/src/id.c Fri Nov 12 06:50:17 1993
- --- shellutils-1.9.2-amiga/src/id.c Mon Dec 13 23:31:04 1993
- ***************
- *** 112,118 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 112,117 ----
- diff -rc shellutils-1.9.2-fsf/src/logname.c shellutils-1.9.2-amiga/src/logname.c
- *** shellutils-1.9.2-fsf/src/logname.c Mon Oct 25 23:30:46 1993
- --- shellutils-1.9.2-amiga/src/logname.c Mon Dec 13 23:31:08 1993
- ***************
- *** 68,74 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 68,73 ----
- diff -rc shellutils-1.9.2-fsf/src/nice.c shellutils-1.9.2-amiga/src/nice.c
- *** shellutils-1.9.2-fsf/src/nice.c Sat Nov 27 20:14:33 1993
- --- shellutils-1.9.2-amiga/src/nice.c Mon Dec 13 23:31:15 1993
- ***************
- *** 67,73 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 67,72 ----
- diff -rc shellutils-1.9.2-fsf/src/pathchk.c shellutils-1.9.2-amiga/src/pathchk.c
- *** shellutils-1.9.2-fsf/src/pathchk.c Mon Oct 25 23:30:48 1993
- --- shellutils-1.9.2-amiga/src/pathchk.c Mon Dec 13 23:31:11 1993
- ***************
- *** 123,129 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 123,128 ----
- diff -rc shellutils-1.9.2-fsf/src/printenv.c shellutils-1.9.2-amiga/src/printenv.c
- *** shellutils-1.9.2-fsf/src/printenv.c Tue Nov 2 19:13:59 1993
- --- shellutils-1.9.2-amiga/src/printenv.c Mon Dec 13 23:31:18 1993
- ***************
- *** 86,92 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 86,91 ----
- diff -rc shellutils-1.9.2-fsf/src/printf.c shellutils-1.9.2-amiga/src/printf.c
- *** shellutils-1.9.2-fsf/src/printf.c Sat Nov 20 04:03:06 1993
- --- shellutils-1.9.2-amiga/src/printf.c Mon Dec 13 23:31:22 1993
- ***************
- *** 145,151 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 145,150 ----
- diff -rc shellutils-1.9.2-fsf/src/sleep.c shellutils-1.9.2-amiga/src/sleep.c
- *** shellutils-1.9.2-fsf/src/sleep.c Mon Oct 25 23:30:57 1993
- --- shellutils-1.9.2-amiga/src/sleep.c Mon Dec 13 23:31:27 1993
- ***************
- *** 74,80 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 74,79 ----
- diff -rc shellutils-1.9.2-fsf/src/stty.c shellutils-1.9.2-amiga/src/stty.c
- *** shellutils-1.9.2-fsf/src/stty.c Tue Nov 30 05:11:58 1993
- --- shellutils-1.9.2-amiga/src/stty.c Mon Dec 13 23:31:35 1993
- ***************
- *** 619,625 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 619,624 ----
- diff -rc shellutils-1.9.2-fsf/src/su.c shellutils-1.9.2-amiga/src/su.c
- *** shellutils-1.9.2-fsf/src/su.c Tue Nov 9 04:21:05 1993
- --- shellutils-1.9.2-amiga/src/su.c Mon Dec 13 23:31:31 1993
- ***************
- *** 194,200 ****
- {0, 0, 0, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 194,199 ----
- diff -rc shellutils-1.9.2-fsf/src/tee.c shellutils-1.9.2-amiga/src/tee.c
- *** shellutils-1.9.2-fsf/src/tee.c Mon Oct 25 23:31:01 1993
- --- shellutils-1.9.2-amiga/src/tee.c Mon Dec 13 23:31:38 1993
- ***************
- *** 87,93 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 87,92 ----
- diff -rc shellutils-1.9.2-fsf/src/tty.c shellutils-1.9.2-amiga/src/tty.c
- *** shellutils-1.9.2-fsf/src/tty.c Mon Oct 25 23:31:03 1993
- --- shellutils-1.9.2-amiga/src/tty.c Mon Dec 13 23:31:49 1993
- ***************
- *** 65,71 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 65,70 ----
- diff -rc shellutils-1.9.2-fsf/src/uname.c shellutils-1.9.2-amiga/src/uname.c
- *** shellutils-1.9.2-fsf/src/uname.c Mon Oct 25 23:31:05 1993
- --- shellutils-1.9.2-amiga/src/uname.c Mon Dec 13 23:31:56 1993
- ***************
- *** 92,98 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 92,97 ----
- diff -rc shellutils-1.9.2-fsf/src/who.c shellutils-1.9.2-amiga/src/who.c
- *** shellutils-1.9.2-fsf/src/who.c Tue Nov 23 04:01:58 1993
- --- shellutils-1.9.2-amiga/src/who.c Mon Dec 13 23:31:53 1993
- ***************
- *** 138,144 ****
- {NULL, 0, NULL, 0}
- };
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 138,143 ----
- diff -rc shellutils-1.9.2-fsf/src/whoami.c shellutils-1.9.2-amiga/src/whoami.c
- *** shellutils-1.9.2-fsf/src/whoami.c Mon Oct 25 23:31:08 1993
- --- shellutils-1.9.2-amiga/src/whoami.c Mon Dec 13 23:32:00 1993
- ***************
- *** 74,80 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char *argv[];
- --- 74,79 ----
- diff -rc shellutils-1.9.2-fsf/src/yes.c shellutils-1.9.2-amiga/src/yes.c
- *** shellutils-1.9.2-fsf/src/yes.c Thu Nov 18 02:04:51 1993
- --- shellutils-1.9.2-amiga/src/yes.c Mon Dec 13 23:32:04 1993
- ***************
- *** 58,64 ****
- exit (status);
- }
-
- - void
- main (argc, argv)
- int argc;
- char **argv;
- --- 58,63 ----
-