Date: Mon, 11 Jun 2001 07:36:58 -0700 (PDT) From: pmarquis@pobox.com To: freebsd-gnats-submit@FreeBSD.org Subject: misc/28035: make buildworld fails on 4.2-RELEASE -> RELENG_4 Message-ID: <200106111436.f5BEaw463720@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 28035 >Category: misc >Synopsis: make buildworld fails on 4.2-RELEASE -> RELENG_4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Jun 11 07:40:03 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Paul Marquis >Release: 4.2-RELEASE >Organization: >Environment: FreeBSD sboy.pmarquis.com 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Mon Jun 4 17:30:36 EDT 2001 pmarquis@sboy.pmarquis.com:/usr/src/sys/compile/SBOY i386 >Description: After upgrading my sources from 4.2-RELEASE to STABLE (as 6/11/2001), make buildworld fails building src/lib/libcrypt/property.o with a undefined symbols (PROPERTY_MAX_NAME, PROPERTY_MAX_VALUE). >How-To-Repeat: - Install 4.2-RELEASE - CVSup or AnonCVS to STABLE - run "make buildworld" >Fix: Patch src/lib/libcrypt/Makefile as follows: cvs diff src/lib/libcrypt/Makefile Index: src/lib/libcrypt/Makefile =================================================================== RCS file: /home/ncvs/src/lib/libcrypt/Makefile,v retrieving revision 1.24.2.3 diff -u -r1.24.2.3 Makefile --- src/lib/libcrypt/Makefile 2001/05/24 12:20:02 1.24.2.3 +++ src/lib/libcrypt/Makefile 2001/06/11 14:33:12 @@ -26,6 +26,7 @@ # And the auth_getval() code and support. .PATH: ${.CURDIR}/../libutil SRCS+= auth.c property.c +CFLAGS+= -I${.CURDIR}/../libutil .for sym in MD5Init MD5Final MD5Update MD5Pad auth_getval \ property_find properties_read properties_free CFLAGS+= -D${sym}=__${sym} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106111436.f5BEaw463720>