diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-08-23 10:31:10 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-08-23 10:31:10 +0000 |
commit | 4aa17879ef8005724b186a4faf01fdcd4def7fdf (patch) | |
tree | 86a85ffa66512e59afcec66a4b0de63841b2bd3c /java | |
parent | 2d0ca19b957e534f37144c963ff310a575b7cf2c (diff) | |
download | ports-4aa17879ef8005724b186a4faf01fdcd4def7fdf.tar.gz ports-4aa17879ef8005724b186a4faf01fdcd4def7fdf.zip |
Use USE_GCC. This port still doesn't build:
===
:
checking for awk... awk
checking version of gcc... configure: error: unrecognized.
===> Script "configure" failed: here are the contents of "config.log"
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
configure:563: checking host system type
configure:594: checking for libgdbm.so
configure:714: checking whether make sets ${MAKE}
configure:741: checking C compiler
configure:750: checking for gcc295
configure:845: checking for objdump
configure:888: checking for ruby
configure:928: checking for ci
configure:965: checking for co
configure:1002: checking for mv
configure:1039: checking for rm
configure:1076: checking for wc
configure:1113: checking for etags
configure:1151: checking for which
configure:1189: checking for fgrep
configure:1228: checking for sed
configure:1266: checking for mawk
configure:1266: checking for gawk
configure:1266: checking for nawk
configure:1266: checking for awk
configure:1298: checking version of gcc
(end of "config.log")
*** Error code 1
Stop.
:
===
which looks weird since it does find gcc295 (line 750) before it bows
out by not recognizing it.
But at least it's now finding the right compiler.
Notes
Notes:
svn path=/head/; revision=20907
Diffstat (limited to 'java')
-rw-r--r-- | java/shujit/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/java/shujit/Makefile b/java/shujit/Makefile index 63d2b9370f34..de98ccdb2fe3 100644 --- a/java/shujit/Makefile +++ b/java/shujit/Makefile @@ -3,7 +3,7 @@ # Date created: 30 April 1999 # Whom: jake@checker.org # -# $Id: Makefile,v 1.5 1999/07/04 10:04:31 obrien Exp $ +# $Id: Makefile,v 1.6 1999/08/01 03:00:30 steve Exp $ # DISTNAME= shujit-0.3.1b @@ -17,16 +17,12 @@ BUILD_DEPENDS= ${PREFIX}/bin/ruby:${PORTSDIR}/lang/ruby \ ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm RUN_DEPENDS= ${PREFIX}/jdk1.1.8/bin/java:${PORTSDIR}/java/jdk -.include <bsd.port.pre.mk> -.if ${OSVERSION} < 400002 -BUILD_DEPENDS+= ${PREFIX}/bin/egcc:${PORTSDIR}/lang/egcs -.endif - WRKSRC= ${WRKDIR}/shujit ONLY_FOR_ARCHS= i386 HAS_CONFIGURE= yes USE_GMAKE= yes +USE_NEWGCC= yes MAKE_FLAGS= MAKEFILE= MAKE_ARGS= @@ -53,4 +49,4 @@ post-install: @${ECHO_MSG} "See ${JAVADIR}/shujit/README for usage instructions." @${ECHO_MSG} "" -.include <bsd.port.post.mk> +.include <bsd.port.mk> |