Skip to content

Commit 630f9bc

Browse files
committed
Retire Tru64 UNIX support.
See also commit 6008cb8.
1 parent 2cf6085 commit 630f9bc

File tree

11 files changed

+3
-150
lines changed

11 files changed

+3
-150
lines changed

CMakeLists.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,6 @@ set(NETDISSECT_SOURCE_LIST_C
10661066
in_cksum.c
10671067
ipproto.c
10681068
l2vpn.c
1069-
machdep.c
10701069
netdissect.c
10711070
netdissect-alloc.c
10721071
nlpid.c
@@ -1308,15 +1307,6 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "IRIX" OR CMAKE_SYSTEM_NAME STREQUAL "IRIX64")
13081307
#
13091308
set(MAN_FILE_FORMATS 4)
13101309
set(MAN_MISC_INFO 5)
1311-
elseif(CMAKE_SYSTEM_NAME STREQUAL "OSF1")
1312-
#
1313-
# DEC OSF/1, a/k/a Digital UNIX, a/k/a Tru64 UNIX.
1314-
# Use Tru64 UNIX conventions for man pages; they're the same as the
1315-
# System V conventions except that they use section 8 for
1316-
# administrative commands and daemons.
1317-
#
1318-
set(MAN_FILE_FORMATS 4)
1319-
set(MAN_MISC_INFO 5)
13201310
elseif(CMAKE_SYSTEM_NAME STREQUAL "SunOS" AND CMAKE_SYSTEM_VERSION MATCHES "5[.][0-9.]*")
13211311
#
13221312
# SunOS 5.x.

INSTALL.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ l2vpn.c - L2VPN encapsulation value-to-name table
105105
l2vpn.h - L2VPN encapsulation definitions
106106
lbl/os-*.h - OS-dependent defines and prototypes (currently none)
107107
llc.h - LLC definitions
108-
machdep.c - machine dependent routines
109-
machdep.h - machine dependent definitions
110108
makemib - mib to header script
111109
mib.h - mib definitions
112110
missing/* - replacements for missing library functions

Makefile.in

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ LIBNETDISSECT_SRC=\
8484
in_cksum.c \
8585
ipproto.c \
8686
l2vpn.c \
87-
machdep.c \
8887
netdissect.c \
8988
netdissect-alloc.c \
9089
nlpid.c \
@@ -293,7 +292,6 @@ HDR = \
293292
ipproto.h \
294293
l2vpn.h \
295294
llc.h \
296-
machdep.h \
297295
mib.h \
298296
mpls.h \
299297
nameser.h \

aclocal.m4

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -148,28 +148,6 @@ AC_DEFUN(AC_LBL_C_INIT,
148148
$1="$$1 -xansi -signed -g3"
149149
;;
150150
151-
osf*)
152-
#
153-
# Presumed to be DEC OSF/1, Digital UNIX, or
154-
# Tru64 UNIX.
155-
#
156-
# The DEC C compiler, which is what we presume we're
157-
# using, doesn't exit with a non-zero exit status if we
158-
# hand it an invalid -W flag, can't be forced to do
159-
# so, and doesn't handle GCC-style -W flags, so we
160-
# don't want to try using GCC-style -W flags.
161-
#
162-
ac_lbl_cc_dont_try_gcc_dashW=yes
163-
#
164-
# -g is equivalent to -g2, which turns off
165-
# optimization; we choose -g3, which generates
166-
# debugging information but doesn't turn off
167-
# optimization (even if the optimization would
168-
# cause inaccuracies in debugging).
169-
#
170-
$1="$$1 -g3"
171-
;;
172-
173151
solaris*)
174152
#
175153
# Assumed to be Sun C, which requires -errwarn to force
@@ -271,9 +249,9 @@ AC_DEFUN(AC_LBL_CHECK_DEPENDENCY_GENERATION_OPT,
271249
#
272250
case "$host_os" in
273251
274-
irix*|osf*|darwin*)
252+
irix*|darwin*)
275253
#
276-
# MIPS C for IRIX, DEC C, and clang all use -M.
254+
# MIPS C for IRIX and Clang use -M.
277255
#
278256
ac_lbl_dependency_flag="-M"
279257
;;

configure.ac

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -734,16 +734,6 @@ irix*)
734734
MAN_MISC_INFO=5
735735
;;
736736

737-
osf*)
738-
V_GROUP=system
739-
740-
#
741-
# Use System V conventions for man pages.
742-
#
743-
MAN_FILE_FORMATS=4
744-
MAN_MISC_INFO=5
745-
;;
746-
747737
solaris*)
748738
V_GROUP=sys
749739

machdep.c

Lines changed: 0 additions & 58 deletions
This file was deleted.

machdep.h

Lines changed: 0 additions & 25 deletions
This file was deleted.

parsenfsfh.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,6 @@ Parse_fh(netdissect_options *ndo, const unsigned char *fh, u_int len,
118118
#if defined(SUNOS5)
119119
fhtype = FHT_SUNOS5;
120120
#endif
121-
#if defined(__osf__)
122-
fhtype = FHT_DECOSF;
123-
#endif
124121
#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__) \
125122
|| defined(__OpenBSD__)
126123
fhtype = FHT_BSD44;

print-wb.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,6 @@ struct pkt_hdr {
7373
#define PT_PREP 7 /* page vector reply */
7474

7575
#if 0
76-
#ifdef PF_USER
77-
#undef PF_USER /* {Digital,Tru64} UNIX define this, alas */
78-
#endif
79-
8076
/* flags */
8177
#define PF_USER 0x01 /* hint that packet has interactive data */
8278
#define PF_VIS 0x02 /* only visible ops wanted */

tcpdump.1.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ is running, if the OS reports that information to applications; if not,
222222
it will be reported as 0).
223223
.LP
224224
On platforms that support the SIGINFO signal, such as most BSDs
225-
(including macOS) and Digital/Tru64 UNIX, it will report those counts
225+
(including macOS), it will report those counts
226226
when it receives a SIGINFO signal (generated, for example, by typing
227227
your ``status'' character, typically control-T, although on some
228228
platforms, such as macOS, the ``status'' character is not set by

0 commit comments

Comments
 (0)