Date: Wed, 26 Jan 2005 08:50:23 GMT From: Sangwoo Shim <ssw@neo.redjade.org> To: openoffice@FreeBSD.org Subject: Re: ports/76650: devel/epm (which is openoffice dependancy) doesn't build Message-ID: <200501260850.j0Q8oNnl031430@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/76650; it has been noted by GNATS. From: Sangwoo Shim <ssw@neo.redjade.org> To: freebsd-gnats-submit@FreeBSD.org, borishim@neo.redjade.org Cc: Subject: Re: ports/76650: devel/epm (which is openoffice dependancy) doesn't build Date: Wed, 26 Jan 2005 17:44:21 +0900 I think I've found the problem. Generated Makefile by configure script thinks CXX=cc (which should be CXX=c++). I've used following patch in /usr/ports/devel/epm/files, but I'm not sure this is the correct one. (I'm ignorant about configure script and autotools.) %%% --- configure.in.orig Wed Jan 26 17:33:40 2005 +++ configure.in Wed Jan 26 17:33:52 2005 @@ -174,13 +174,13 @@ AC_MSG_RESULT(no) fi - CXX="$CC" + #CXX="$CC" if test -z "$OPTIM"; then OPTIM="-O2 -fforce-mem -fforce-addr -fcaller-saves" fi - CXX="$CC" + #CXX="$CC" OPTIM="-Wall -Wno-return-type $OPTIM" # See if GCC supports -fno-rtti... %%%
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200501260850.j0Q8oNnl031430>