diff -dru traceroute-1.4a12/Makefile.in traceroute-1.4a12.fjo/Makefile.in --- traceroute-1.4a12/Makefile.in Thu Nov 23 21:05:29 2000 +++ traceroute-1.4a12.fjo/Makefile.in Mon Apr 28 11:16:16 2003 @@ -90,10 +90,12 @@ sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@ install: force - $(INSTALL) -m 4555 -o root -g bin traceroute $(DESTDIR)$(BINDEST) + mkdir -p $(DESTDIR)$(BINDEST) + $(INSTALL) -m 4555 traceroute $(DESTDIR)$(BINDEST) install-man: force - $(INSTALL) -m 444 -o bin -g bin traceroute.8 $(DESTDIR)$(MANDEST)/man8 + mkdir -p $(DESTDIR)$(MANDEST)/man8 + $(INSTALL) -m 444 traceroute.8 $(DESTDIR)$(MANDEST)/man8 lint: $(GENSRC) force lint -hbxn $(SRC) | \ diff -dru traceroute-1.4a12/linux-include/netinet/in_systm.h traceroute-1.4a12.fjo/linux-include/netinet/in_systm.h --- traceroute-1.4a12/linux-include/netinet/in_systm.h Sat Jan 31 03:07:32 1998 +++ traceroute-1.4a12.fjo/linux-include/netinet/in_systm.h Mon Apr 28 11:15:54 2003 @@ -46,10 +46,6 @@ * the bytes before transmission at each protocol level. The n_ types * represent the types with the bytes in ``high-ender'' order. */ -typedef u_short n_short; /* short as received from the net */ -typedef u_int n_long; /* long as received from the net */ - -typedef u_int n_time; /* ms since 00:00 GMT, byte rev */ #ifdef KERNEL n_time iptime __P((void));