diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-09-24 03:57:13 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1994-09-24 03:57:13 +0000 |
commit | 7883df5ea28a0934e59540ca93a33a726bb9aa07 (patch) | |
tree | 394ed05dcd53aebfd6c2d7e23c5b011aee6a4eab /misc/mshell/files | |
parent | 2f62aa51be568f1f2d25e79e7c49daf7c4fe0b45 (diff) | |
download | ports-7883df5ea28a0934e59540ca93a33a726bb9aa07.tar.gz ports-7883df5ea28a0934e59540ca93a33a726bb9aa07.zip |
Notes
Diffstat (limited to 'misc/mshell/files')
-rw-r--r-- | misc/mshell/files/patch-aa | 62 | ||||
-rw-r--r-- | misc/mshell/files/patch-ab | 46 | ||||
-rw-r--r-- | misc/mshell/files/patch-ac | 19 | ||||
-rw-r--r-- | misc/mshell/files/patch-ad | 19 | ||||
-rw-r--r-- | misc/mshell/files/patch-ae | 22 |
5 files changed, 168 insertions, 0 deletions
diff --git a/misc/mshell/files/patch-aa b/misc/mshell/files/patch-aa new file mode 100644 index 000000000000..4dbbaa227a8c --- /dev/null +++ b/misc/mshell/files/patch-aa @@ -0,0 +1,62 @@ +*** Makefile.orig Sat Sep 24 02:37:56 1994 +--- Makefile Sat Sep 24 02:39:11 1994 +*************** +*** 8,21 **** + # + # Check mshell.h for other options, e.g., max menu sizes. + +! CFLAGS = -O -DBSD -DMENUDIR='"/nyx/lib/menus"' -DLOGDIR='"/nyx/lib/logs"' + OBJS = mshell.o main.o string.o functions1.o functions2.o chdir.o mail.o \ + settatr.o setenv.o xsystem.o dl.o macro.o + + mshell: $(OBJS) + cc $(CFLAGS) $(OBJS) -lcurses -ltermcap -o mshell + + $(OBJS) : mshell.h + + clean: +! rm *.o mshell +--- 8,50 ---- + # + # Check mshell.h for other options, e.g., max menu sizes. + +! CFLAGS = -O -DBSD -DMENUDIR='"/usr/local/lib/menus"' -DMAILDIR='"/var/mail/"' \ +! -DGLOBAL_MACRO_FILE='"/usr/local/lib/menus/macros"' \ +! -DCOMMAND_LIST='"/usr/local/lib/menus/commands"' + OBJS = mshell.o main.o string.o functions1.o functions2.o chdir.o mail.o \ + settatr.o setenv.o xsystem.o dl.o macro.o + ++ all: mshell ++ + mshell: $(OBJS) + cc $(CFLAGS) $(OBJS) -lcurses -ltermcap -o mshell + + $(OBJS) : mshell.h + + clean: +! rm -f *.o mshell +! +! install: mshell +! mkdir -p /usr/local/bin +! install -c -o bin mshell /usr/local/bin +! mkdir -p /usr/local/lib/menus +! sed -e s/dldir/HOME/g < sample.men > /usr/local/lib/menus/sample.men +! install -c -m 644 menulogin /usr/local/lib/menus +! mkdir -p /usr/local/man/man1 +! echo .Dd `/bin/date` > mshell.1 +! echo .Dt MSHELL 1 >> mshell.1 +! echo .Sh NAME >> mshell.1 +! echo .Nm mshell >> mshell.1 +! echo .Nd a Unix menuing shell >> mshell.1 +! echo .Sh SYNOPSIS >> mshell.1 +! echo .Nm mshell >> mshell.1 +! echo .Op Fl s >> mshell.1 +! echo .Ar menuname >> mshell.1 +! echo .Sh DESCRIPTION >> mshell.1 +! cat mshell.doc >>mshell.1 +! echo >>mshell.1 +! cat menu.doc >>mshell.1 +! echo >>mshell.1 +! echo .Sh AUTHOR >>mshell.1 +! echo Andrew Burt, aburt@du.edu >>mshell.1 +! install -m 644 mshell.1 /usr/local/man/man1 diff --git a/misc/mshell/files/patch-ab b/misc/mshell/files/patch-ab new file mode 100644 index 000000000000..a7a739994612 --- /dev/null +++ b/misc/mshell/files/patch-ab @@ -0,0 +1,46 @@ +*** settatr.c.orig Sat Sep 24 00:47:17 1994 +--- settatr.c Sat Sep 24 00:49:46 1994 +*************** +*** 15,21 **** + ioctl ( 0, TIOCGETP, &sg ); + if (access(".stty", 0) == -1) { /* not already set up */ + sg.sg_erase = ''; +! sg.sg_kill = ''; + sg.sg_flags |= XTABS; + } + sg.sg_flags |= ECHO; +--- 15,21 ---- + ioctl ( 0, TIOCGETP, &sg ); + if (access(".stty", 0) == -1) { /* not already set up */ + sg.sg_erase = ''; +! sg.sg_kill = 21; /* ^U */ + sg.sg_flags |= XTABS; + } + sg.sg_flags |= ECHO; +*************** +*** 25,36 **** + ioctl ( 0, TIOCSETP, &sg ); + + ioctl ( 0, TIOCGETC, &tc ); +! tc.t_intrc = ''; + ioctl ( 0, TIOCSETC, &tc ); + + ioctl ( 0, TIOCGLTC, < ); +! lt.t_werasc = ''; +! lt.t_rprntc = ''; + ioctl ( 0, TIOCSLTC, < ); + #endif + #ifdef SYSV +--- 25,36 ---- + ioctl ( 0, TIOCSETP, &sg ); + + ioctl ( 0, TIOCGETC, &tc ); +! tc.t_intrc = 3; /* ^C */ + ioctl ( 0, TIOCSETC, &tc ); + + ioctl ( 0, TIOCGLTC, < ); +! lt.t_werasc = 23; /* ^W */ +! lt.t_rprntc = 18; /* ^R */ + ioctl ( 0, TIOCSLTC, < ); + #endif + #ifdef SYSV diff --git a/misc/mshell/files/patch-ac b/misc/mshell/files/patch-ac new file mode 100644 index 000000000000..75efbcd0b77f --- /dev/null +++ b/misc/mshell/files/patch-ac @@ -0,0 +1,19 @@ +*** functions1.c.orig Sat Sep 24 00:51:45 1994 +--- functions1.c Sat Sep 24 00:52:03 1994 +*************** +*** 15,21 **** + FILE * fp; + char record [DESCLEN]; + if (( fp = fopen (filename, "r")) == NULL ) { +! printf ("\tNo such helpfile as %s\!\!\n", filename); + return; + } + +--- 15,21 ---- + FILE * fp; + char record [DESCLEN]; + if (( fp = fopen (filename, "r")) == NULL ) { +! printf ("\tNo such helpfile as %s!!\n", filename); + return; + } + diff --git a/misc/mshell/files/patch-ad b/misc/mshell/files/patch-ad new file mode 100644 index 000000000000..03131f105ac0 --- /dev/null +++ b/misc/mshell/files/patch-ad @@ -0,0 +1,19 @@ +*** mshell.c.orig Sat Sep 24 00:51:51 1994 +--- mshell.c Sat Sep 24 00:52:20 1994 +*************** +*** 142,148 **** + + if ( strcmp (action_string, NULLSTR) == 0 ) { + invalid_option = TRUE; +! printf ("\tNo such help option name as: %s\!\!\n", opt2); + } + else { + tmpword[0] = EOS; +--- 142,148 ---- + + if ( strcmp (action_string, NULLSTR) == 0 ) { + invalid_option = TRUE; +! printf ("\tNo such help option name as: %s!!\n", opt2); + } + else { + tmpword[0] = EOS; diff --git a/misc/mshell/files/patch-ae b/misc/mshell/files/patch-ae new file mode 100644 index 000000000000..928f9c25b1d7 --- /dev/null +++ b/misc/mshell/files/patch-ae @@ -0,0 +1,22 @@ +*** string.c.orig Fri Sep 23 18:34:06 1994 +--- string.c Fri Sep 23 18:50:39 1994 +*************** +*** 4,9 **** +--- 4,20 ---- + #define strchr index + #endif + ++ char * ++ gets (char *s) ++ { ++ char *x = fgets (s, WORDLEN, stdin); ++ if (x) { ++ char *p = strchr (x, '\n'); ++ if (p) ++ *p = 0; ++ } ++ return x; ++ } + + /* function to find the position of sub_string in main_string + * ---------------------------------------------------------- */ |