- Subject: [slang-devel] Honoring compilation env vars in slgdbm
- From: Rafael Laboissière <rafael@xxxxxxxxxx>
- Date: Fri, 19 Nov 2021 07:24:32 +0100
Hello,
When building slgdbm for Debian, we should ensure that the environment
variable CPPFLAGS, and LDFLAGS are honored. This is required in Debian,
because the hardening flags [*] -D_FORTIFY_SOURCE=2 and -Wl,-z,relro must
be used in the compilation and linking of C files.
Best,
Rafael Laboissière
[*] https://wiki.debian.org/Hardening
Description: Honor the environment variables CPPFLAGS and LDFLAGS
This is required in Debian, such that hardening flags like
-D_FORTIFY_SOURCE=2 and -Wl,-z,relro are used in the compilation
and linking of C files.
Author: Rafael Laboissière <rafael@xxxxxxxxxx>
Forwarded: no
Last-Update: 2021-11-19
--- slgdbm-1.7.1.orig/Makefile
+++ slgdbm-1.7.1/Makefile
@@ -41,7 +41,7 @@ INCS = $(SLANG_INC)
all: gdbm-module.so
gdbm-module.so: gdbm-module.c
- $(CC_SHARED) $(INCS) gdbm-module.c -o gdbm-module.so $(LIBS)
+ $(CC_SHARED) $(CPPFLAGS) $(INCS) $(LDFLAGS) gdbm-module.c -o gdbm-module.so $(LIBS)
gdbm.o: gdbm-module.c
gcc $(CFLAGS) $(INCS) -O2 -c -g gdbm-module.c -o gdbm.o
[2021 date index]
[2021 thread index]
[Thread Prev] [Thread Next]
[Date Prev] [Date Next]