* Enabled hardened build flags, thanks Moritz Muehlenhoff (closes: #657846)
* Packaging updates * Move to 3.0 (native) source format * Bump DH compat level to 8 * Fix ordering of stdio.h/syslog.h includes (closes: #707385) * Create accounting_dir in init script if necessary (closes: #418156) * Bump Standards-Version to 3.9.4.0 * Add build-arch/build-indep targets to debian/rules * Fix: compiling Warning
This commit is contained in:
parent
26a2025a1b
commit
ecdddd6065
10 changed files with 35 additions and 46 deletions
12
Makefile
12
Makefile
|
|
@ -10,20 +10,18 @@ DEFINES =
|
|||
DEFINES += -DLIBDIR='"$(libdir)"'
|
||||
DEFINES += -DETCDIR='"$(etcdir)"'
|
||||
|
||||
OPTIM =
|
||||
OPTIM += -g
|
||||
OPTIM += -O3
|
||||
DEB_CFLAGS_MAINT_APPEND=-Wall -O3 -Wno-format-zero-length
|
||||
|
||||
CC = gcc
|
||||
LD = gcc
|
||||
INCLUDES = -I.
|
||||
CPPFLAGS = $(INCLUDES) $(DEFINES)
|
||||
CFLAGS = -Wall -Wformat-security -Wno-format-zero-length $(OPTIM)
|
||||
LDFLAGS =
|
||||
CPPFLAGS = `dpkg-buildflags --get CPPFLAGS` $(INCLUDES) $(DEFINES)
|
||||
CFLAGS = `dpkg-buildflags --get CFLAGS`
|
||||
LDFLAGS = `dpkg-buildflags --get LDFLAGS`
|
||||
LDLIBS =
|
||||
INSTALL = install -c -D -o root -g root
|
||||
|
||||
l2tpns.LIBS = -lm -lcli -ldl
|
||||
l2tpns.LIBS = -lcli -ldl
|
||||
|
||||
OBJS = arp.o cli.o cluster.o constants.o control.o icmp.o l2tpns.o \
|
||||
ll.o md5.o ppp.o radius.o tbf.o util.o pppoe.o l2tplac.o
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue