diff options
author | Petr Vaněk <arkamar@gentoo.org> | 2025-01-02 13:01:39 +0100 |
---|---|---|
committer | Petr Vaněk <arkamar@gentoo.org> | 2025-01-02 13:14:28 +0100 |
commit | 7e2c9c614fcadd30aa336d7a413fd7119f72c097 (patch) | |
tree | 6f3e255e68eee0a336551fbfa5cedefbb3935c2f /net-dns/maradns/files | |
parent | net-dialup/rp-l2tp: drop 0.4-r4 (diff) | |
download | gentoo-7e2c9c614fcadd30aa336d7a413fd7119f72c097.tar.gz gentoo-7e2c9c614fcadd30aa336d7a413fd7119f72c097.tar.bz2 gentoo-7e2c9c614fcadd30aa336d7a413fd7119f72c097.zip |
net-dns/maradns: drop 3.5.0022
Bug: https://bugs.gentoo.org/906113
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'net-dns/maradns/files')
-rw-r--r-- | net-dns/maradns/files/maradns-3.5.0022-flags.patch | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/net-dns/maradns/files/maradns-3.5.0022-flags.patch b/net-dns/maradns/files/maradns-3.5.0022-flags.patch deleted file mode 100644 index 9f01795fd2bb..000000000000 --- a/net-dns/maradns/files/maradns-3.5.0022-flags.patch +++ /dev/null @@ -1,65 +0,0 @@ -From 15470045421448a7a6813e2a4a96e18bba3b0aa4 Mon Sep 17 00:00:00 2001 -From: Victor Kustov <ktrace@yandex.ru> -Date: Wed, 27 Jul 2022 21:28:31 +0300 -Subject: [PATCH] 2nd - ---- - build/Makefile.linux | 32 ++++++++++++++++---------------- - 1 file changed, 16 insertions(+), 16 deletions(-) - -diff --git a/build/Makefile.linux b/build/Makefile.linux -index 965c7fb..572dccc 100644 ---- a/build/Makefile.linux -+++ b/build/Makefile.linux -@@ -24,32 +24,32 @@ EXECS=server/maradns - # end the Solaris section - # Non-Solaris version of "M" - V="VERSION=$(VERSION)" --Q="DEFINES=-DSELECT_PROBLEM" -+Q="$(LDFLAGS) DEFINES=-DSELECT_PROBLEM" - - # Debug - - FLAGS = -O2 -Wall -DSELECT_PROBLEM --M="CC=$(CC) $(FLAGS)" --D="CC=$(CC) $(FLAGS) -DDEBUG -DTHREADS" -+M="CC=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)" -+D="CC=$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -DDEBUG -DTHREADS" - #FLAGS = -g - - all: -- cd libs ; make $(M) ; cd ../dns ; make $(M) ; \ -- cd ../rng ; make $(M) ; cd ../parse ; make $(M) ; \ -- cd ../qual ; make $(M) ; cd ../server ; \ -- make $(M) $(V) COMPILED=\"$(COMPILED)\" ; \ -- cd ../tools ; make $(M) ; \ -- cd ../deadwood-*/src/ ; make FLAGS=-O2 ; \ -- cd ../../tcp ; make $(M) $(V) ; cat ../00README.FIRST -+ cd libs ; $(MAKE) $(M) ; cd ../dns ; $(MAKE) $(M) ; \ -+ cd ../rng ; $(MAKE) $(M) ; cd ../parse ; $(MAKE) $(M) ; \ -+ cd ../qual ; $(MAKE) $(M) ; cd ../server ; \ -+ $(MAKE) $(M) $(V) COMPILED=\"$(COMPILED)\" ; \ -+ cd ../tools ; $(MAKE) $(M) ; \ -+ cd ../deadwood-*/src/ ; $(MAKE) $(M) ; \ -+ cd ../../tcp ; $(MAKE) $(M) $(V) ; cat ../00README.FIRST - - debug: -- cd libs ; make $(D) DEBUG="-DDEBUG -DTHREADS" ; \ -- cd ../dns ; make $(D) ; cd ../rng ; make $(D) ; \ -- cd ../parse ; make $(D) ; cd ../qual ; make $(D) ; \ -+ cd libs ; $(MAKE) $(D) ; \ -+ cd ../dns ; $(MAKE) $(D) ; cd ../rng ; $(MAKE) $(D) ; \ -+ cd ../parse ; $(MAKE) $(D) ; cd ../qual ; $(MAKE) $(D) ; \ - cd ../server ; \ -- make $(D) $(Q) $(V) COMPILED=\"$(COMPILED_DEBUG)\" ; \ -- cd ../tools ; make $(D) ; \ -- cd ../tcp ; make $(D) $(V) ; cat ../00README.FIRST -+ $(MAKE) $(D) $(Q) $(V) COMPILED=\"$(COMPILED_DEBUG)\" ; \ -+ cd ../tools ; $(MAKE) $(D) ; \ -+ cd ../tcp ; $(MAKE) $(D) $(V) ; cat ../00README.FIRST - - clean: - rm -f $(OBJECTS) core $(EXECS) ; \ --- -2.35.1 - |