From: Paul Mackerras Date: Thu, 8 Mar 2001 05:01:03 +0000 (+0000) Subject: add tty.o to OBJS, fix from James Carlson X-Git-Tag: ppp-2.4.7~507 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=8ba35d1fc7ae2ccdfba0d3d3b840bd24169751e3;hp=6c85691696e798a46158b459436a78fba3dcc46f add tty.o to OBJS, fix from James Carlson --- diff --git a/pppd/Makefile.sol2 b/pppd/Makefile.sol2 index 2f28fa4..f1f08a8 100644 --- a/pppd/Makefile.sol2 +++ b/pppd/Makefile.sol2 @@ -1,6 +1,6 @@ # # Makefile for pppd under Solaris 2. -# $Id: Makefile.sol2,v 1.19 2000/04/18 23:51:26 masputra Exp $ +# $Id: Makefile.sol2,v 1.20 2001/03/08 05:01:03 paulus Exp $ # include ../solaris/Makedefs @@ -9,7 +9,7 @@ COPTS += -xO2 -xspace -W0,-Lt CFLAGS = -I../include -DSVR4 -DSOL2 $(COPTS) LIBS = -lsocket -lnsl -OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o \ +OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o tty.o \ ccp.o auth.o options.o demand.o utils.o sys-solaris.o tdb.o # diff --git a/pppd/Makefile.sunos4 b/pppd/Makefile.sunos4 index 415fdd9..714cb4d 100644 --- a/pppd/Makefile.sunos4 +++ b/pppd/Makefile.sunos4 @@ -1,6 +1,6 @@ # # Makefile for pppd under SunOS 4. -# $Id: Makefile.sunos4,v 1.10 1999/04/12 06:24:44 paulus Exp $ +# $Id: Makefile.sunos4,v 1.11 2001/03/08 05:01:03 paulus Exp $ # include ../sunos4/Makedefs @@ -13,7 +13,7 @@ CFLAGS = $(COPTS) -I../include -DSUNOS4 -DGIDSET_TYPE=int \ all: pppd OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o \ - auth.o options.o demand.o utils.o sys-sunos4.o + auth.o options.o demand.o utils.o sys-sunos4.o tty.o pppd: $(OBJS) $(CC) -o pppd $(OBJS) $(LIBS)