Codebase list massdns / master
Refresh Debian patches Steev Klimaszewski 1 year, 6 months ago
4 changed file(s) with 15 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
0 massdns (1.0.0-0kali1) kali-dev; urgency=medium
1
2 * New upstream release.
3
4 -- Steev Klimaszewski <[email protected]> Mon, 24 Oct 2022 16:21:51 -0500
5
06 massdns (0.3-0kali2) kali-dev; urgency=medium
17
28 * Add allow-stderr in autopkgtest
33 Maintainer: Kali Developers <[email protected]>
44 Uploaders: Sophie Brun <[email protected]>
55 Build-Depends: debhelper-compat (= 13)
6 Standards-Version: 4.5.0
6 Standards-Version: 4.6.1.0
77 Homepage: https://github.com/blechschmidt/massdns
88 Vcs-Browser: https://gitlab.com/kalilinux/packages/massdns
99 Vcs-Git: https://gitlab.com/kalilinux/packages/massdns.git
66 Technical University of Munich
77 License: GPL-3
88
9 Files: hashmap.h
9 Files: src/hashmap.h
1010 Copyright: 2007 The Android Open Source Project
1111 License: Apache-2.0
1212 Licensed under the Apache License, Version 2.0 (the "License");
55 Makefile | 2 +-
66 1 file changed, 1 insertion(+), 1 deletion(-)
77
8 diff --git a/Makefile b/Makefile
9 index c7a3070..03f64a0 100644
10 --- a/Makefile
11 +++ b/Makefile
8 Index: massdns/Makefile
9 ===================================================================
10 --- massdns.orig/Makefile
11 +++ massdns/Makefile
1212 @@ -2,7 +2,7 @@ PREFIX ?= /usr/local
1313
1414 all:
1515 mkdir -p bin
16 - $(CC) $(CFLAGS) -O3 -std=c11 -DHAVE_EPOLL -DHAVE_SYSINFO -Wall -fstack-protector-strong main.c -o bin/massdns
17 + $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -O3 -std=c11 -DHAVE_EPOLL -DHAVE_SYSINFO -Wall -fstack-protector-strong main.c -o bin/massdns
16 - $(CC) $(CFLAGS) -O3 -std=c11 -DHAVE_EPOLL -DHAVE_SYSINFO -Wall -fstack-protector-strong src/main.c -o bin/massdns
17 + $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -O3 -std=c11 -DHAVE_EPOLL -DHAVE_SYSINFO -Wall -fstack-protector-strong src/main.c -o bin/massdns
1818 debug:
1919 mkdir -p bin
20 $(CC) $(CFLAGS) -O0 -std=c11 -DHAVE_EPOLL -DHAVE_SYSINFO -Wall -g -DDEBUG main.c -o bin/massdns
20 $(CC) $(CFLAGS) -O0 -std=c11 -DHAVE_EPOLL -DHAVE_SYSINFO -Wall -g -DDEBUG src/main.c -o bin/massdns