- Fix build
Responsible Changed From-To: freebsd-ports-bugs->miwi miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Remake of the patch against current tree.
State Changed From-To: open->feedback build fails: http://miwibox.org/tb/index.php?action=describe_port&id=2229
Probably you've picked up obsolete version of the patch and accidentally applied with reverse mode since any Qt4 components wasn't installed in logs. The latest one doesn't add or remove lines about USE_QT4.
State Changed From-To: feedback->closed Committed. Thanks!
Author: miwi Date: Fri May 10 14:39:02 2013 New Revision: 317813 URL: http://svnweb.freebsd.org/changeset/ports/317813 Log: - Fix build PR: 177556 Submitted by: Ports Fury Modified: head/devel/subcommander2/Makefile head/devel/subcommander2/files/patch-subcommander__subcommander.cpp Modified: head/devel/subcommander2/Makefile ============================================================================== --- head/devel/subcommander2/Makefile Fri May 10 14:38:28 2013 (r317812) +++ head/devel/subcommander2/Makefile Fri May 10 14:39:02 2013 (r317813) @@ -28,15 +28,15 @@ USE_OPENSSL= yes USE_GMAKE= yes USE_AUTOTOOLS= aclocal automake autoheader autoconf ACLOCAL_ARGS= -I ac-macros +AUTOMAKE_ARGS= --copy --force-missing --foreign CONFIGURE_ARGS= --with-boost=${LOCALBASE}/include \ --with-subversion=${LOCALBASE} --with-qt=${QT_PREFIX} \ --with-apr=${LOCALBASE}/bin/apr-1-config \ --with-apr-util=${LOCALBASE}/bin/apu-1-config \ --with-openssl=${OPENSSLBASE} - MAKE_JOBS_SAFE= yes -CPPFLAGS+= -I${QT_INCDIR} -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -LDFLAGS+= -L${QT_LIBDIR} -L${LOCALBASE}/lib ${PTHREAD_LIBS} +CPPFLAGS+= -I${QT_INCDIR} -I${LOCALBASE}/include +LDFLAGS+= -L${QT_LIBDIR} -L${LOCALBASE}/lib .include <bsd.port.mk> Modified: head/devel/subcommander2/files/patch-subcommander__subcommander.cpp ============================================================================== --- head/devel/subcommander2/files/patch-subcommander__subcommander.cpp Fri May 10 14:38:28 2013 (r317812) +++ head/devel/subcommander2/files/patch-subcommander__subcommander.cpp Fri May 10 14:39:02 2013 (r317813) @@ -18,7 +18,7 @@ // initialization. - fprintf( stderr, e.getError()->getMessage() ); -+ fprintf( stderr, "%s", e.getError()->getMessage() ); ++ fprintf( stderr, "%s", e.getError()->getMessage().getStr() ); return EXIT_FAILURE; } _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"