mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 23:39:20 -04:00
Signing tool for PE-COFF binaries, hopefully at least vaguely compliant with the PE and Authenticode specifications. Sponsored by: The FreeBSD Foundation
13 lines
753 B
Text
13 lines
753 B
Text
--- src/Makefile.orig 2015-01-16 10:03:55.000000000 +0100
|
|
+++ src/Makefile 2015-01-16 10:04:21.000000000 +0100
|
|
@@ -7,8 +7,8 @@ PKLIBS = nss
|
|
LIBS = popt uuid efivar
|
|
STATIC_LIBS = $(TOPDIR)/libdpe/libdpe.a
|
|
LDFLAGS =
|
|
-CCLDFLAGS = -L../libdpe $(foreach pklib,$(PKLIBS), $(shell pkg-config --libs-only-L $(pklib))) -pie -fPIE -Wl,-z,relro,-z,now
|
|
-BUILDFLAGS += -I../include/ $(foreach pklib,$(PKLIBS), $(shell pkg-config --cflags $(pklib))) -Werror -fPIE
|
|
+CCLDFLAGS = -L../libdpe $(foreach pklib,$(PKLIBS), $(shell pkg-config --libs-only-L $(pklib))) -fPIC -Wl,-z,relro,-z,now
|
|
+BUILDFLAGS += -I../include/ $(foreach pklib,$(PKLIBS), $(shell pkg-config --cflags $(pklib))) -Werror -fPIC
|
|
|
|
TARGETS = pesign authvar client efisiglist efikeygen pesigcheck
|
|
|