Bunch of printf()-operation fails due to type-mismatch since time_t and long int differ on i386. src/compile.c src/exec.c src/lsdistcc.c Fix: Option #1: add --disable-Werror to CONFIGURE_ARGS Option #2: patch affected files src/compile.c src/exec.c src/lsdistcc.c There are already some (long) casts. Adding some more at certain positions would fix the problem, but it's far from beautiful. Changing %ld to %d may break compilation on amd64. (not tested) How-To-Repeat: build distcc-3.1 on i386
Responsible Changed From-To: freebsd-ports-bugs->skreuzer Over to maintainer.
skreuzer 2010-04-27 13:20:59 UTC FreeBSD ports repository Modified files: devel/distcc Makefile Log: Unbreak on i386 PR: ports/145891 Submitted by: Carsten Bäcker <carbaecker@gmx.de> Reviewed by: Luca Pizzamiglio <luca.pizzamiglio@gmail.com> Revision Changes Path 1.63 +1 -1 ports/devel/distcc/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!