source:
npl/internetserver/poptop_ppp/patches/ppp-2.4.3-make.patch
@
c5c522c
Last change on this file since c5c522c was c5c522c, checked in by , 8 years ago | |
---|---|
|
|
File size: 2.8 KB |
-
ppp-2.4.3/chat/Makefile.linux
Obey RPM_OPT_FLAGS, link with pppd with libutil to get logwtmp(), and enable PAM support.
10 10 CDEF4= -DFNDELAY=O_NDELAY # Old name value 11 11 CDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4) 12 12 13 COPTS= -O2 -g -pipe13 COPTS= $(RPM_OPT_FLAGS) 14 14 CFLAGS= $(COPTS) $(CDEFS) 15 15 16 16 INSTALL= install -
ppp-2.4.3/pppd/Makefile.linux
29 29 include .depend 30 30 endif 31 31 32 #CC = gcc32 CC = gcc 33 33 # 34 COPTS = - O2 -pipe -Wall -g35 LIBS = 34 COPTS = -Wall $(RPM_OPT_FLAGS) 35 LIBS = -lutil 36 36 37 37 # Uncomment the next 2 lines to include support for Microsoft's 38 38 # MS-CHAP authentication protocol. Also, edit plugins/radius/Makefile.linux. … … 60 60 USE_TDB=y 61 61 62 62 HAS_SHADOW=y 63 #USE_PAM=y64 #HAVE_INET6=y63 USE_PAM=y 64 HAVE_INET6=y 65 65 66 66 # Enable plugins -
ppp-2.4.3/pppdump/Makefile.linux
2 2 BINDIR = $(DESTDIR)/sbin 3 3 MANDIR = $(DESTDIR)/share/man/man8 4 4 5 CFLAGS= -O-I../include/net5 CFLAGS= $(RPM_OPT_FLAGS) -I../include/net 6 6 OBJS = pppdump.o bsd-comp.o deflate.o zlib.o 7 7 8 8 INSTALL= install -
ppp-2.4.2/pppstats/Makefile.linux
7 7 PPPSTATOBJS = pppstats.o 8 8 9 9 #CC = gcc 10 COPTS = -O10 COPTS = $(RPM_OPT_FLAGS) 11 11 COMPILE_FLAGS = -I../include 12 12 LIBS = 13 13 -
ppp-2.4.3/pppd/plugins/Makefile.linux
1 1 CC = gcc 2 COPTS = -O2 -g2 COPTS = $(RPM_OPT_FLAGS) 3 3 CFLAGS = $(COPTS) -I.. -I../../include -fPIC 4 4 LDFLAGS = -shared 5 5 INSTALL = install -o root -
ppp-2.4.3/pppd/plugins/radius/Makefile.linux
12 12 INSTALL = install 13 13 14 14 PLUGIN=radius.so radattr.so radrealms.so 15 CFLAGS=-I. -I../.. -I../../../include -O2-fPIC -DRC_LOG_FACILITY=LOG_DAEMON15 CFLAGS=-I. -I../.. -I../../../include $(RPM_OPT_FLAGS) -fPIC -DRC_LOG_FACILITY=LOG_DAEMON 16 16 17 17 # Uncomment the next line to include support for Microsoft's 18 18 # MS-CHAP authentication protocol. -
ppp-2.4.3/pppd/plugins/rp-pppoe/Makefile.linux
16 16 # Version is set ONLY IN THE MAKEFILE! Don't delete this! 17 17 VERSION=3.3 18 18 19 COPTS= -O2 -g19 COPTS=$(RPM_OPT_FLAGS) 20 20 CFLAGS=$(COPTS) -I../../../include/linux 21 21 all: rp-pppoe.so 22 22
Note: See TracBrowser
for help on using the repository browser.