NetBSD Problem Report #51282

From paul@whooppee.com  Mon Jun 27 05:40:38 2016
Return-Path: <paul@whooppee.com>
Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK))
	by mollari.NetBSD.org (Postfix) with ESMTPS id EE9387A477
	for <gnats-bugs@gnats.NetBSD.org>; Mon, 27 Jun 2016 05:40:37 +0000 (UTC)
Message-Id: <20160627054035.1FF2916E5F@pokey.whooppee.com>
Date: Mon, 27 Jun 2016 13:40:35 +0800 (PHT)
From: paul@whooppee.com
Reply-To: paul@whooppee.com
To: gnats-bugs@NetBSD.org
Subject: build of libdns fails when MKCRYPTO=no
X-Send-Pr-Version: 3.95

>Number:         51282
>Category:       bin
>Synopsis:       build of libdns fails when MKCRYPTO=no
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    bin-bug-people
>State:          closed
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Mon Jun 27 05:45:00 +0000 2016
>Closed-Date:    Thu Jul 14 04:26:08 +0000 2016
>Last-Modified:  Thu Jul 14 04:26:08 +0000 2016
>Originator:     Paul Goyette
>Release:        NetBSD 7.99.30
>Organization:
+------------------+--------------------------+------------------------+
| Paul Goyette     | PGP Key fingerprint:     | E-mail addresses:      |
| (Retired)        | FA29 0E3B 35AF E8AE 6651 | paul at whooppee.com   |
| Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd.org |
+------------------+--------------------------+------------------------+
>Environment:


System: NetBSD pokey.whooppee.com 7.99.30 NetBSD 7.99.30 (POKEY 2016-06-14 11:43:31) #0: Tue Jun 14 23:37:31 PHT 2016 paul@pokey.whooppee.com:/build/netbsd-local/obj/amd64/sys/arch/amd64/compile/POKEY amd64
Architecture: x86_64
Machine: amd64
>Description:
	When building with MKCRYPTO=no, I got the following

--- ds.d ---
In file included from
/build/netbsd-local/src/external/bsd/bind/dist/lib/dns/ds.c:44:0:
/build/netbsd-local/src/external/bsd/bind/dist/lib/dns/dst_gost.h:29:25:
fatal error: openssl/evp.h: No such file or directory

	It appears that we're still trying to include some stuff from
	openssl...

>How-To-Repeat:
	./build.sh -V MKCRYPTO=no ...

>Fix:
	Unknown


>Release-Note:

>Audit-Trail:
From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@NetBSD.org
Cc: 
Subject: Re: bin/51282: build of libdns fails when MKCRYPTO=no
Date: Tue, 28 Jun 2016 16:17:40 +0800 (PHT)

 The following patch to include/config.h allows the build to proceed to 
 completion.  Basically, we don't define the preprocessor macros for
 openssl components if we don't have openssl at all!

 It would be great if someone more familiar with this code could review 
 and comment.  Also, it might be useful to get this sent upstream?


 Index: config.h
 ===================================================================
 RCS file: /cvsroot/src/external/bsd/bind/include/config.h,v
 retrieving revision 1.19
 diff -u -p -r1.19 config.h
 --- config.h	26 May 2016 16:50:01 -0000	1.19
 +++ config.h	28 Jun 2016 08:15:20 -0000
 @@ -146,9 +146,13 @@ int sigwait(const unsigned int *set, int
   /** define if you have strerror in the C library. */
   #define HAVE_STRERROR 1

 +#ifdef OPENSSL
 +
   /* Define if OpenSSL includes DSA support */
   #define HAVE_OPENSSL_DSA 1

 +#endif
 +
   /* Define if you have getpassphrase in the C library. */
   /* #undef HAVE_GETPASSPHRASE */

 @@ -359,6 +363,8 @@ int sigwait(const unsigned int *set, int
   /* Define to 1 if you have the <net/route.h> header file. */
   #define HAVE_NET_ROUTE_H 1

 +#ifdef OPENSSL
 +
   /* Define if your OpenSSL version supports AES */
   #define HAVE_OPENSSL_AES 1

 @@ -371,6 +377,8 @@ int sigwait(const unsigned int *set, int
   /* Define if your OpenSSL version supports GOST. */
   #define HAVE_OPENSSL_GOST 1

 +#endif
 +
   /* Define if your PKCS11 provider supports ECDSA. */
   /* #undef HAVE_PKCS11_ECDSA */




 +------------------+--------------------------+------------------------+
 | Paul Goyette     | PGP Key fingerprint:     | E-mail addresses:      |
 | (Retired)        | FA29 0E3B 35AF E8AE 6651 | paul at whooppee.com   |
 | Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd.org |
 +------------------+--------------------------+------------------------+

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@NetBSD.org
Cc: 
Subject: Re: bin/51282: build of libdns fails when MKCRYPTO=no
Date: Tue, 28 Jun 2016 17:35:49 +0800 (PHT)

 The previous patch needed one more "hunk" to conditionalize AES_SIT. 
 With that addition, libdns builds.

 However, we next run into a whole new set of problems with ntp, which 
 tries to use some MD5 code, but fails:

 In file included from /build/netbsd-local/src/external/bsd/ntp/dist/libntp/a_md5encrypt.c:14:0:
 /build/netbsd-local/src/external/bsd/ntp/dist/libntp/a_md5encrypt.c: In function 'MD5authencrypt':
 /build/netbsd-local/src/external/bsd/ntp/dist/include/ntp_md5.h:32:44: error: right-hand operand of comma expression has no effect [-Werror=unused-value]
   # define EVP_DigestInit(c, dt)  (MD5Init(c), 1)
                                              ^
 /build/netbsd-local/src/external/bsd/ntp/dist/libntp/a_md5encrypt.c:46:2: note:in expansion of macro 'EVP_DigestInit'
    EVP_DigestInit(&ctx, EVP_get_digestbynid(type));
    ^




 +------------------+--------------------------+------------------------+
 | Paul Goyette     | PGP Key fingerprint:     | E-mail addresses:      |
 | (Retired)        | FA29 0E3B 35AF E8AE 6651 | paul at whooppee.com   |
 | Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd.org |
 +------------------+--------------------------+------------------------+

From: matthew green <mrg@eterna.com.au>
To: gnats-bugs@NetBSD.org
Cc: gnats-admin@netbsd.org, netbsd-bugs@netbsd.org, paul@whooppee.com
Subject: re: bin/51282: build of libdns fails when MKCRYPTO=no
Date: Tue, 28 Jun 2016 20:48:50 +1000

 >  /build/netbsd-local/src/external/bsd/ntp/dist/libntp/a_md5encrypt.c: In=
  function 'MD5authencrypt':
 >  /build/netbsd-local/src/external/bsd/ntp/dist/include/ntp_md5.h:32:44: =
 error: right-hand operand of comma expression has no effect [-Werror=3Dunu=
 sed-value]
 >    # define EVP_DigestInit(c, dt)  (MD5Init(c), 1)
 >                                               ^
 >  /build/netbsd-local/src/external/bsd/ntp/dist/libntp/a_md5encrypt.c:46:=
 2: note:in expansion of macro 'EVP_DigestInit'
 >     EVP_DigestInit(&ctx, EVP_get_digestbynid(type));
 >     ^

 i dislike this warning case.  i would add -Wno-error=3Dunused-value to the
 relevant makefiles.


 .mrg.

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: RE: bin/51282 CVS commit: src/external/bsd/bind
Date: Thu, 30 Jun 2016 05:56:04 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 13:52:28 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/bsd/bind

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 17:52:28 UTC 2016

 Modified Files:
  	src/external/bsd/bind: Makefile.inc
  	src/external/bsd/bind/include: config.h

 Log Message:
 the decision to use AES_SIT and GOST belongs in the Makefile for MKCRYPT


 To generate a diff of this commit:
 cvs rdiff -u -r1.22 -r1.23 src/external/bsd/bind/Makefile.inc
 cvs rdiff -u -r1.19 -r1.20 src/external/bsd/bind/include/config.h

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:57740ae4106397885226024!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282 CVS commit: src/external/bsd/ntp
Date: Thu, 30 Jun 2016 05:56:28 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 14:42:18 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/bsd/ntp

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 18:42:18 UTC 2016

 Modified Files:
  	src/external/bsd/ntp: Makefile.inc
  	src/external/bsd/ntp/dist/include: ntp_md5.h
  	src/external/bsd/ntp/dist/libntp: a_md5encrypt.c
  	src/external/bsd/ntp/dist/ntpd: ntp_control.c ntp_proto.c
  	src/external/bsd/ntp/dist/sntp: crypto.c
  	src/external/bsd/ntp/include: config.h

 Log Message:
 Fix MKCRYPTO=no build


 To generate a diff of this commit:
 cvs rdiff -u -r1.15 -r1.16 src/external/bsd/ntp/Makefile.inc
 cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/include/ntp_md5.h
 cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/libntp/a_md5encrypt.c
 cvs rdiff -u -r1.16 -r1.17 src/external/bsd/ntp/dist/ntpd/ntp_control.c
 cvs rdiff -u -r1.12 -r1.13 src/external/bsd/ntp/dist/ntpd/ntp_proto.c
 cvs rdiff -u -r1.10 -r1.11 src/external/bsd/ntp/dist/sntp/crypto.c
 cvs rdiff -u -r1.17 -r1.18 src/external/bsd/ntp/include/config.h

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:57741690101343363870135!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282  CVS commit: src/external/bsd/wpa/bin
Date: Thu, 30 Jun 2016 05:57:00 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 15:16:23 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/bsd/wpa/bin

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 19:16:23 UTC 2016

 Modified Files:
  	src/external/bsd/wpa/bin/hostapd: Makefile aes-xinternal.c
  	src/external/bsd/wpa/bin/wpa_passphrase: Makefile
  	src/external/bsd/wpa/bin/wpa_supplicant: Makefile aes-xinternal.c

 Log Message:
 Fix MKCRYPTO=no build.


 To generate a diff of this commit:
 cvs rdiff -u -r1.8 -r1.9 src/external/bsd/wpa/bin/hostapd/Makefile
 cvs rdiff -u -r1.1 -r1.2 src/external/bsd/wpa/bin/hostapd/aes-xinternal.c
 cvs rdiff -u -r1.3 -r1.4 src/external/bsd/wpa/bin/wpa_passphrase/Makefile
 cvs rdiff -u -r1.7 -r1.8 src/external/bsd/wpa/bin/wpa_supplicant/Makefile
 cvs rdiff -u -r1.1 -r1.2 \
      src/external/bsd/wpa/bin/wpa_supplicant/aes-xinternal.c

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:57741e8e158496694283399!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: re: bin/51282 CVS commit:src/external/mit/xorg/server/xorg-server.old/hw
Date: Thu, 30 Jun 2016 05:57:38 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 15:36:35 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/mit/xorg/server/xorg-server.old/hw

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 19:36:35 UTC 2016

 Modified Files:
  	src/external/mit/xorg/server/xorg-server.old/hw/vfb: Makefile
  	src/external/mit/xorg/server/xorg-server.old/hw/xfree86/Xorg: Makefile
  	src/external/mit/xorg/server/xorg-server.old/hw/xnest: Makefile

 Log Message:
 Fix MKCRYPTO=no build


 To generate a diff of this commit:
 cvs rdiff -u -r1.1.1.1 -r1.2 \
      src/external/mit/xorg/server/xorg-server.old/hw/vfb/Makefile
 cvs rdiff -u -r1.1.1.1 -r1.2 \
      src/external/mit/xorg/server/xorg-server.old/hw/xfree86/Xorg/Makefile
 cvs rdiff -u -r1.1.1.1 -r1.2 \
      src/external/mit/xorg/server/xorg-server.old/hw/xnest/Makefile

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:5774234b149871435240440!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282 - CVS commit: src/external/mit/xorg/server/xorg-server/hw
Date: Thu, 30 Jun 2016 05:58:01 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 15:36:56 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/mit/xorg/server/xorg-server/hw

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 19:36:56 UTC 2016

 Modified Files:
  	src/external/mit/xorg/server/xorg-server/hw/vfb: Makefile
  	src/external/mit/xorg/server/xorg-server/hw/xfree86/Xorg: Makefile
  	src/external/mit/xorg/server/xorg-server/hw/xnest: Makefile

 Log Message:
 Fix MKCRYPTO=no build.


 To generate a diff of this commit:
 cvs rdiff -u -r1.11 -r1.12 \
      src/external/mit/xorg/server/xorg-server/hw/vfb/Makefile
 cvs rdiff -u -r1.7 -r1.8 \
      src/external/mit/xorg/server/xorg-server/hw/xfree86/Xorg/Makefile
 cvs rdiff -u -r1.14 -r1.15 \
      src/external/mit/xorg/server/xorg-server/hw/xnest/Makefile

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:5774235d153504564499870!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282 CVS commit: src/external/bsd/tcpdump 
Date: Thu, 30 Jun 2016 05:58:36 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 15:45:14 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/bsd/tcpdump

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 19:45:14 UTC 2016

 Modified Files:
  	src/external/bsd/tcpdump/bin: Makefile
  	src/external/bsd/tcpdump/include: config.h

 Log Message:
 Fix MKCRYPTO=no build


 To generate a diff of this commit:
 cvs rdiff -u -r1.13 -r1.14 src/external/bsd/tcpdump/bin/Makefile
 cvs rdiff -u -r1.7 -r1.8 src/external/bsd/tcpdump/include/config.h

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:5774255178656367943652!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282 CVS commit: src/usr.sbin/npf/npfctl 
Date: Thu, 30 Jun 2016 05:59:30 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 17:40:10 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/usr.sbin/npf/npfctl

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 21:40:10 UTC 2016

 Modified Files:
  	src/usr.sbin/npf/npfctl: Makefile

 Log Message:
 remove libcrypto dependency, fix other dependencies.


 To generate a diff of this commit:
 cvs rdiff -u -r1.11 -r1.12 src/usr.sbin/npf/npfctl/Makefile

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:5774404136841076616836!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: lib/51282 CVS commit: src/external/ibm-public/postfix/libexec/smtpd
Date: Thu, 30 Jun 2016 05:59:05 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 16:07:52 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/external/ibm-public/postfix/libexec/smtpd

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 20:07:52 UTC 2016

 Modified Files:
  	src/external/ibm-public/postfix/libexec/smtpd: Makefile

 Log Message:
 Fix MKCRYPTO=no


 To generate a diff of this commit:
 cvs rdiff -u -r1.3 -r1.4 \
      src/external/ibm-public/postfix/libexec/smtpd/Makefile

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:57742a9e120641159347203!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282 - CVS commit: src/usr.sbin/npf/npfctl 
Date: Thu, 30 Jun 2016 05:59:55 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 17:40:20 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/usr.sbin/npf/npfctl

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 21:40:20 UTC 2016

 Modified Files:
  	src/usr.sbin/npf/npfctl: npfctl.c

 Log Message:
 use sha1 from libc


 To generate a diff of this commit:
 cvs rdiff -u -r1.46 -r1.47 src/usr.sbin/npf/npfctl/npfctl.c

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:57744048157251784222391!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282 - CVS commit: src/distrib/sets/lists 
Date: Thu, 30 Jun 2016 07:34:45 +0800 (PHT)

 ---------- Forwarded message ----------
 Date: Wed, 29 Jun 2016 19:23:06 -0400
 From: Christos Zoulas <christos@netbsd.org>
 Reply-To: source-changes-d@NetBSD.org
 To: source-changes@NetBSD.org
 Subject: CVS commit: src/distrib/sets/lists

 Module Name:	src
 Committed By:	christos
 Date:		Wed Jun 29 23:23:05 UTC 2016

 Modified Files:
  	src/distrib/sets/lists/base: mi shl.mi
  	src/distrib/sets/lists/comp: mi shl.mi
  	src/distrib/sets/lists/debug: mi shl.mi
  	src/distrib/sets/lists/man: mi
  	src/distrib/sets/lists/misc: mi
  	src/distrib/sets/lists/tests: mi

 Log Message:
 fix sets for MKCRYPTO=no


 To generate a diff of this commit:
 cvs rdiff -u -r1.1129 -r1.1130 src/distrib/sets/lists/base/mi
 cvs rdiff -u -r1.776 -r1.777 src/distrib/sets/lists/base/shl.mi
 cvs rdiff -u -r1.2044 -r1.2045 src/distrib/sets/lists/comp/mi
 cvs rdiff -u -r1.291 -r1.292 src/distrib/sets/lists/comp/shl.mi
 cvs rdiff -u -r1.156 -r1.157 src/distrib/sets/lists/debug/mi
 cvs rdiff -u -r1.136 -r1.137 src/distrib/sets/lists/debug/shl.mi
 cvs rdiff -u -r1.1528 -r1.1529 src/distrib/sets/lists/man/mi
 cvs rdiff -u -r1.197 -r1.198 src/distrib/sets/lists/misc/mi
 cvs rdiff -u -r1.675 -r1.676 src/distrib/sets/lists/tests/mi

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.


 !DSPAM:5774585f40631546823848!

From: Paul Goyette <paul@whooppee.com>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: bin/51282
Date: Thu, 30 Jun 2016 12:19:53 +0800 (PHT)

 This fix to the previous sets-lists changes is also needed to finish the 
 MKCRYPTO=no task...

 Module Name:    src
 Committed By:   pgoyette
 Date:           Thu Jun 30 04:12:37 UTC 2016

 Modified Files:
          src/distrib/sets/lists/comp: mi

 Log Message:
 Fix the build.


 To generate a diff of this commit:
 cvs rdiff -u -r1.2045 -r1.2046 src/distrib/sets/lists/comp/mi


 +------------------+--------------------------+------------------------+
 | Paul Goyette     | PGP Key fingerprint:     | E-mail addresses:      |
 | (Retired)        | FA29 0E3B 35AF E8AE 6651 | paul at whooppee.com   |
 | Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd.org |
 +------------------+--------------------------+------------------------+

State-Changed-From-To: open->pending-pullups
State-Changed-By: pgoyette@NetBSD.org
State-Changed-When: Thu, 30 Jun 2016 06:42:06 +0000
State-Changed-Why:
Waiting for pullups 7-1192 through 7-1198 inclusive.


From: "Paul Goyette" <pgoyette@netbsd.org>
To: gnats-bugs@gnats.NetBSD.org
Cc: 
Subject: PR/51282 CVS commit: src/distrib
Date: Thu, 30 Jun 2016 12:56:28 +0000

 Module Name:	src
 Committed By:	pgoyette
 Date:		Thu Jun 30 12:56:27 UTC 2016

 Modified Files:
 	src/distrib/amd64: Makefile
 	src/distrib/amd64/ramdisks: Makefile
 	src/distrib/i386: Makefile
 	src/distrib/i386/ramdisks: Makefile

 Log Message:
 Omit cgd based ramdisks and miniroot modules if MKCRYPTO=no

 Final part of PR kern/51282


 To generate a diff of this commit:
 cvs rdiff -u -r1.10 -r1.11 src/distrib/amd64/Makefile
 cvs rdiff -u -r1.2 -r1.3 src/distrib/amd64/ramdisks/Makefile
 cvs rdiff -u -r1.11 -r1.12 src/distrib/i386/Makefile
 cvs rdiff -u -r1.4 -r1.5 src/distrib/i386/ramdisks/Makefile

 Please note that diffs are not public domain; they are subject to the
 copyright notices on the relevant files.

State-Changed-From-To: pending-pullups->closed
State-Changed-By: pgoyette@NetBSD.org
State-Changed-When: Tue, 12 Jul 2016 05:01:18 +0000
State-Changed-Why:
Pullups need more work from the person who made the actual commits.  I'm
not in a position to resolve the issues.


State-Changed-From-To: closed->needs-pullups
State-Changed-By: dholland@NetBSD.org
State-Changed-When: Wed, 13 Jul 2016 16:04:56 +0000
State-Changed-Why:
if we think it's worth doing, it should still be open; however, if yuo think
it's not worth pursuing at all, we can close it and drop the existing pullup
requests.


From: Soren Jacobsen <snj@blef.org>
To: gnats-bugs@NetBSD.org
Cc: dholland@NetBSD.org, paul@whooppee.com
Subject: Re: bin/51282 (build of libdns fails when MKCRYPTO=no)
Date: Wed, 13 Jul 2016 10:08:50 -0700

 On 07/13 16:04, dholland@NetBSD.org wrote:
 > Synopsis: build of libdns fails when MKCRYPTO=no
 > 
 > State-Changed-From-To: closed->needs-pullups
 > State-Changed-By: dholland@NetBSD.org
 > State-Changed-When: Wed, 13 Jul 2016 16:04:56 +0000
 > State-Changed-Why:
 > if we think it's worth doing, it should still be open; however,
 > if yuo think it's not worth pursuing at all, we can close it and
 > drop the existing pullup requests.

 They've already been dropped.

 Soren

State-Changed-From-To: needs-pullups->closed
State-Changed-By: dholland@NetBSD.org
State-Changed-When: Thu, 14 Jul 2016 04:26:08 +0000
State-Changed-Why:
ok, never mind then.


>Unformatted:

NetBSD Home
NetBSD PR Database Search

(Contact us) $NetBSD: query-full-pr,v 1.39 2013/11/01 18:47:49 spz Exp $
$NetBSD: gnats_config.sh,v 1.8 2006/05/07 09:23:38 tsutsui Exp $
Copyright © 1994-2014 The NetBSD Foundation, Inc. ALL RIGHTS RESERVED.