From 8b474273735ceb9c0b5e248132ce6532d222ffad Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Tue, 9 Aug 2016 01:36:38 -0300 Subject: hashcat: add new package to [libre] - Freedom issue #1050 -> https://labs.parabola.nu/issues/1050 --- libre/hashcat/makefile.patch | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 libre/hashcat/makefile.patch (limited to 'libre/hashcat/makefile.patch') diff --git a/libre/hashcat/makefile.patch b/libre/hashcat/makefile.patch new file mode 100644 index 000000000..7e1730d47 --- /dev/null +++ b/libre/hashcat/makefile.patch @@ -0,0 +1,41 @@ +From 7f8aaf74302816d03fbff62dab5c987d498acdde Mon Sep 17 00:00:00 2001 +From: anthraxx +Date: Mon, 4 Jul 2016 21:01:51 +0200 +Subject: [PATCH] extend global CFLAGS and LDFLAGS to aid distro packaging + +This preserves globally defined CFLAGS and LDFLAGS and simply +extends those variables to aid distro based packaging toolchains +and predefined distro wide defaults like SSP, relro etc. +--- + src/Makefile | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/src/Makefile b/src/Makefile +index 9f11325..cf44590 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -90,7 +90,7 @@ VERSION_TAG := $(shell test -d .git && git describe --tags --dirty= + ## Compiler flags + ## + +-CFLAGS := -pipe -W -Wall -std=c99 -Iinclude/ -IOpenCL/ -I$(OPENCL_HEADERS_KHRONOS)/ ++CFLAGS += -pipe -W -Wall -std=c99 -Iinclude/ -IOpenCL/ -I$(OPENCL_HEADERS_KHRONOS)/ + + ifndef DEBUG + CFLAGS += -O2 +@@ -112,6 +112,7 @@ export MACOSX_DEPLOYMENT_TARGET=10.9 + CFLAGS_NATIVE := -D_POSIX -DDARWIN + CFLAGS_NATIVE += $(CFLAGS) + LFLAGS_NATIVE := -lpthread ++LFLAGS_NATIVE += $(LDFLAGS) + endif # darwin + + ifeq ($(UNAME),Linux) +@@ -122,6 +123,7 @@ endif + CFLAGS_NATIVE += $(CFLAGS) + LFLAGS_NATIVE := -lpthread -ldl + CFLAGS_NATIVE += -DHAVE_HWMON ++LFLAGS_NATIVE += $(LDFLAGS) + endif # linux + + ## -- cgit v1.2.3-54-g00ecf