Add in new DEFINES to keep up to date with Dave Borman's telnet.
authorGregory Minshall <minshall@ucbvax.Berkeley.EDU>
Sun, 3 Sep 1989 05:53:52 +0000 (21:53 -0800)
committerGregory Minshall <minshall@ucbvax.Berkeley.EDU>
Sun, 3 Sep 1989 05:53:52 +0000 (21:53 -0800)
SCCS-vsn: usr.bin/tn3270/telnet/Makefile 4.2
SCCS-vsn: usr.bin/tn3270/makefile 4.5

usr/src/usr.bin/tn3270/makefile
usr/src/usr.bin/tn3270/telnet/Makefile

index 738c99f..64975d0 100644 (file)
@@ -14,7 +14,7 @@
 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 #
 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 #
-#      @(#)makefile    4.4 (Berkeley) %G%
+#      @(#)makefile    4.5 (Berkeley) %G%
 #
 
 # Makefile for tn3270 and friends...
 #
 
 # Makefile for tn3270 and friends...
 #                              in the tty structure.
 #
 #
 #                              in the tty structure.
 #
 #
+#
+#      TERMCAP         -       Define this if your system is termcap based,
+#                              otherwise a terminfo based system is assumed.
+#
+#      SRCRT           -       Includes code to allow you to specify
+#                              source routes.
+#                              Format is:
+#                                      [!]@hop1@hop2...[@|:]dst
+#                              Leading ! means strict source route.
+#
+#      NOSTRNCASECMP   -       Define this if you do not have strncasecmp() in
+#                              your C libarary.
+#
+#      USE_TERMIO      -       Define this if you have System V termio
+#                              structures.  What is here is how things
+#                              are on Cray computers.
+#
+#      KLUDGELINEMODE  -       Define this to get the kludged up version
+#                              of linemode that was in 4.3BSD.  This is a
+#                              good thing to have around for talking to
+#                              older systems.
+#
+#
 #      Here are some which are used throughout the system:
 #
 #      unix            -       Compiles in unix specific stuff.
 #      Here are some which are used throughout the system:
 #
 #      unix            -       Compiles in unix specific stuff.
@@ -100,7 +123,7 @@ RANLIB      = ranlib
 PRINT  = print
 ACTION = @sccs tell
 
 PRINT  = print
 ACTION = @sccs tell
 
-DEFINES = ${LINT_ARGS}
+DEFINES= ${LINT_ARGS} -DTERMCAP -DSRCRT -DKLUDGELINEMODE
 
 INCLUDES = -I. -I..
 
 
 INCLUDES = -I. -I..
 
index 90affe8..0cde8db 100644 (file)
 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 #
 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
 # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 #
-#      @(#)Makefile    4.1 (Berkeley) %G%
+#      @(#)Makefile    4.2 (Berkeley) %G%
 #
 
 # The following is the telnet makefile for tn3270, using the shared telnet
 # sources.
 
 #
 
 # The following is the telnet makefile for tn3270, using the shared telnet
 # sources.
 
+#
+# TERMCAP      Define this if your system is termcap based,
+#              otherwise a terminfo based system is assumed.
+#
+# SRCRT                Includes code to allow you to specify source routes.
+#              Format is:
+#                      [!]@hop1@hop2...[@|:]dst
+#              Leading ! means strict source route.
+#
+# NOSTRNCASECMP        Define this if you do not have strncasecmp() in
+#              your C libarary.
+#
+# USE_TERMIO   Define this if you have System V termio structures.
+#              What is here is how things are on Cray computers.
+#
+# KLUDGELINEMODE Define this to get the kludged up version of linemode
+#              that was in 4.3BSD.  This is a good thing to have
+#              around for talking to older systems.
+#
+
+DEFINES= -DTERMCAP -DSRCRT -DKLUDGELINEMODE
+
+
 VPATH  =       ../../telnet/Source
 XINCLUDES=     -I../../telnet/Source
 INCLUDES=      -I.
 VPATH  =       ../../telnet/Source
 XINCLUDES=     -I../../telnet/Source
 INCLUDES=      -I.