From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 26 20:10:03 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 541581065672 for ; Tue, 26 May 2009 20:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 42E0B8FC08 for ; Tue, 26 May 2009 20:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n4QKA3pE093659 for ; Tue, 26 May 2009 20:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n4QKA3rT093658; Tue, 26 May 2009 20:10:03 GMT (envelope-from gnats) Date: Tue, 26 May 2009 20:10:03 GMT Message-Id: <200905262010.n4QKA3rT093658@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Dan Rench Cc: Subject: Re: ports/134770: lang/spidermonkey misses installation of some header files X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Rench List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 May 2009 20:10:03 -0000 The following reply was made to PR ports/134770; it has been noted by GNATS. From: Dan Rench To: bug-followup@FreeBSD.org, gumby@mooh.org Cc: Subject: Re: ports/134770: lang/spidermonkey misses installation of some header files Date: Tue, 26 May 2009 14:34:35 -0500 Thanks for catching this. The patch below adds jsdate.h along with the other missing .h files from Makefile.ref: diff --git a/Makefile b/Makefile index 93febaf..d063b3b 100644 --- a/Makefile +++ b/Makefile @@ -32,9 +32,16 @@ ALL_TARGET= ${OPSYS}`${UNAME} -r`_DBG.OBJ/js MAKE_ENV+= CCC="${CXX}" USE_LDCONFIG= yes SRC_DIR= js/src -JSH= jsapi.h jsautocfg.h jsconfig.h jscompat.h jslong.h jsosdep.h \ - jsotypes.h jspubtd.h jstypes.h jsstr.h jshash.h jsprvtd.h \ + +JSH= jsapi.h jsarena.h jsarray.h jsatom.h jsautocfg.h jsbool.h \ + jsclist.h jscntxt.h jscompat.h jsconfig.h jsdate.h jsdhash.h \ + jsdtoa.h jsemit.h jsexn.h jsfun.h jsgc.h jshash.h jsinterp.h \ + jsiter.h jslibmath.h jslock.h jslong.h jsmath.h jsnum.h jsobj.h \ + jsopcode.h jsosdep.h jsotypes.h jsparse.h jsprvtd.h jspubtd.h \ + jsregexp.h jsscan.h jsscope.h jsscript.h jsstr.h jstypes.h \ + jsxdrapi.h jsxml.h \ jsproto.tbl + PLIST_FILES= bin/js lib/libjs.so lib/libjs.so.1 ${JSH:S,^,include/,} WRKSRC= ${WRKDIR}/${SRC_DIR} EXTRACT_AFTER_ARGS=| ${TAR} -xf - \