summaryrefslogtreecommitdiff
path: root/net-misc/htpdate/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-02-02 01:39:05 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-02-02 01:39:05 +0000
commitfcc5224904648a8e6eb528d7603154160a20022f (patch)
tree3bfce096b38a9cea8eed13fc70c1526c456e9abd /net-misc/htpdate/files
parent2fd57282f0262ca084e05b0f2c63fbada395d02b (diff)
gentoo resync : 02.02.2022
Diffstat (limited to 'net-misc/htpdate/files')
-rw-r--r--net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch b/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch
deleted file mode 100644
index fea1d85b10bc..000000000000
--- a/net-misc/htpdate/files/htpdate-1.2.6-ldlibs.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From ea14fbcd91e5575bf16bc64b7660a6d02a855d7a Mon Sep 17 00:00:00 2001
-From: Lars Wendler <polynomial-c@gentoo.org>
-Date: Wed, 31 Mar 2021 15:46:38 +0200
-Subject: [PATCH] Makefile: Libraries belong into LDLIBS variable
-
-Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
----
- Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 21668a6..a531f90 100644
---- a/Makefile
-+++ b/Makefile
-@@ -8,7 +8,7 @@ PKG_CONFIG ?= pkg-config
-
- ifdef ENABLE_HTTPS
- CFLAGS += -DENABLE_HTTPS
--LDFLAGS += $(shell $(PKG_CONFIG) --libs openssl)
-+LDLIBS = $(shell $(PKG_CONFIG) --libs openssl)
- endif
-
- INSTALL = install -c
-@@ -16,7 +16,7 @@ INSTALL = install -c
- all: htpdate
-
- htpdate: htpdate.c
-- $(CC) $(CFLAGS) $(CPPFLAGS) -o htpdate htpdate.c $(LDFLAGS)
-+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o htpdate htpdate.c $(LDLIBS)
-
- install: all
- mkdir -p $(bindir)
---
-2.31.1
-