Date: Tue, 26 May 2009 20:10:03 GMT From: Dan Rench <citric@cubicone.tmetic.com> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/134770: lang/spidermonkey misses installation of some header files Message-ID: <200905262010.n4QKA3rT093658@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/134770; it has been noted by GNATS. From: Dan Rench <citric@cubicone.tmetic.com> 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 - \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905262010.n4QKA3rT093658>