Codebase list fermi-lite / 267fe66
improve hardening Sascha Steinbiss 5 years ago
2 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
77 * Bump Standards-Version.
88 * Remove unnecessary Testsuite field.
99 * Use debhelper 11.
10 * Improve hardening.
1011
1112 -- Sascha Steinbiss <satta@debian.org> Wed, 04 Jul 2018 23:40:50 +0200
1213
33 Last-Update: 2016-01-08
44 --- a/Makefile
55 +++ b/Makefile
6 @@ -1,5 +1,5 @@
6 @@ -1,6 +1,6 @@
77 -CC= gcc
88 -CFLAGS= -g -Wall -O2 -fPIC #-fno-inline-functions -fno-inline-functions-called-once
9 -CPPFLAGS=
910 +CC?= gcc
1011 +CFLAGS+= -g -Wall -O2 -fPIC #-fno-inline-functions -fno-inline-functions-called-once
11 CPPFLAGS=
12 +#CPPFLAGS=
1213 INCLUDES=
1314 OBJS= kthread.o misc.o \
15 bseq.o htab.o bfc.o \
1416 @@ -18,7 +18,7 @@
1517 all:$(PROG) libfml.so.$(SONUMBER)
1618