Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 May 2013 14:39:02 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317813 - in head/devel/subcommander2: . files
Message-ID:  <201305101439.r4AEd2aE011946@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;
    }
  



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305101439.r4AEd2aE011946>