diff options
author | jperkin <jperkin@pkgsrc.org> | 2017-11-10 11:21:52 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2017-11-10 11:21:52 +0000 |
commit | b7210ba46606d29b117167f707ca92bca322e591 (patch) | |
tree | 758ce459dc6bea10fc8eef9044be24ae267eb892 /net | |
parent | 98bbda1afd533a163f3555171f6bd457d48276c4 (diff) | |
download | pkgsrc-b7210ba46606d29b117167f707ca92bca322e591.tar.gz |
mDNSResponder: Ensure dns-sd is built with correct CFLAGS.
Bump PKGREVISION.
Diffstat (limited to 'net')
-rw-r--r-- | net/mDNSResponder/Makefile | 4 | ||||
-rw-r--r-- | net/mDNSResponder/distinfo | 4 | ||||
-rw-r--r-- | net/mDNSResponder/patches/patch-ad | 14 |
3 files changed, 14 insertions, 8 deletions
diff --git a/net/mDNSResponder/Makefile b/net/mDNSResponder/Makefile index 92fe03f7abc..01ce11b624c 100644 --- a/net/mDNSResponder/Makefile +++ b/net/mDNSResponder/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.43 2017/09/03 08:53:12 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2017/11/10 11:21:52 jperkin Exp $ DISTNAME= mDNSResponder-258.14 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= net MASTER_SITES= http://www.opensource.apple.com/tarballs/mDNSResponder/ diff --git a/net/mDNSResponder/distinfo b/net/mDNSResponder/distinfo index d3def064f1a..8f5465da44d 100644 --- a/net/mDNSResponder/distinfo +++ b/net/mDNSResponder/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.35 2015/11/20 09:32:53 jperkin Exp $ +$NetBSD: distinfo,v 1.36 2017/11/10 11:21:52 jperkin Exp $ SHA1 (mDNSResponder-258.14.tar.gz) = 2a34794ff9a5184ce1e57ccea4001b5af6635f7b RMD160 (mDNSResponder-258.14.tar.gz) = fbd9dcfa84dbeb9de379066958a0b509af074dbc @@ -8,7 +8,7 @@ SHA1 (patch-Clients_dns-sd.c) = 5adac63ba76497056c1abfd426460560b8a3f012 SHA1 (patch-aa) = d6659292433dce614fe60cd4190445393d364801 SHA1 (patch-ab) = 473db16e4d454899c364fb2d9fa8d344d47ca008 SHA1 (patch-ac) = 9907f0e55d421fccd3d491d4f0d872f328198c19 -SHA1 (patch-ad) = b4ae68358c1c7ad1d7477e88aa5f7822d0d01978 +SHA1 (patch-ad) = 2492a26a500ebef3902cbd19f0ab7bc9005588a1 SHA1 (patch-ae) = 49091d627fd3a800ed027566c728022b901d126b SHA1 (patch-af) = c0787da4901a9dd4ff02063e11bcd9daf2a5c6b4 SHA1 (patch-mDNSShared_dnsextd__parser.y) = dde7eca76c2b5158c2ac96764f91ce773464094a diff --git a/net/mDNSResponder/patches/patch-ad b/net/mDNSResponder/patches/patch-ad index 0f4d0e356e4..8eff1cc5c22 100644 --- a/net/mDNSResponder/patches/patch-ad +++ b/net/mDNSResponder/patches/patch-ad @@ -1,13 +1,19 @@ -$NetBSD: patch-ad,v 1.3 2015/08/29 17:41:07 jperkin Exp $ +$NetBSD: patch-ad,v 1.4 2017/11/10 11:21:52 jperkin Exp $ + +Ensure we pass the correct compiler flags. --- Clients/Makefile.orig 2009-08-11 01:13:47.000000000 +0000 +++ Clients/Makefile -@@ -42,7 +42,7 @@ build: +@@ -42,10 +42,10 @@ build: mkdir build build/dns-sd: build dns-sd.c ClientCommon.c - cc $(filter %.c %.o, $+) $(LIBS) -I../mDNSShared -Wall -o $@ -+ cc $(filter %.c %.o, $+) $(LIBS) $(LDFLAGS) -I../mDNSShared -Wall -o $@ ++ cc $(filter %.c %.o, $+) $(CFLAGS) $(LIBS) $(LDFLAGS) -I../mDNSShared -Wall -o $@ build/dns-sd64: build dns-sd.c ClientCommon.c - cc $(filter %.c %.o, $+) $(LIBS) -I../mDNSShared -Wall -o $@ -m64 +- cc $(filter %.c %.o, $+) $(LIBS) -I../mDNSShared -Wall -o $@ -m64 ++ cc $(filter %.c %.o, $+) $(CFLAGS) $(LIBS) -I../mDNSShared -Wall -o $@ -m64 + + # Note, we can make a 'fat' version of dns-sd using 'lipo', as shown below, but we + # don't, because we don't want or need a 'fat' version of dns-sd, because it will |