From owner-svn-ports-head@FreeBSD.ORG Thu Jul 24 12:25:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AF6745F; Thu, 24 Jul 2014 12:25:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E24BB2A7D; Thu, 24 Jul 2014 12:25:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6OCPlTE012300; Thu, 24 Jul 2014 12:25:47 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6OCPlZ2012290; Thu, 24 Jul 2014 12:25:47 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201407241225.s6OCPlZ2012290@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 24 Jul 2014 12:25:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362790 - in head/editors/fxite: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Jul 2014 12:25:48 -0000 Author: gahr Date: Thu Jul 24 12:25:47 2014 New Revision: 362790 URL: http://svnweb.freebsd.org/changeset/ports/362790 QAT: https://qat.redports.org/buildarchive/r362790/ Log: - Remove compiler flags not understood by GCC - Fix the source instead Added: head/editors/fxite/files/patch-src_export.cpp (contents, props changed) head/editors/fxite/files/patch-src_luafx.cpp (contents, props changed) Modified: head/editors/fxite/Makefile Modified: head/editors/fxite/Makefile ============================================================================== --- head/editors/fxite/Makefile Thu Jul 24 12:10:47 2014 (r362789) +++ head/editors/fxite/Makefile Thu Jul 24 12:25:47 2014 (r362790) @@ -26,7 +26,7 @@ USES= gmake pkgconfig lua:51 desktop-fi USE_AUTOTOOLS= aclocal autoconf automake ACLOCAL_ARGS= --force -I m4 AUTOMAKE_ARGS= --gnu --add-missing --copy -CXXFLAGS+= -fPIC -Wno-invalid-source-encoding -Wno-format +CXXFLAGS+= -fPIC LDFLAGS+= -L${LOCALBASE}/lib -lintl CONFIGURE_ARGS+=--with-system-lua \ --with-lua-pkg=lua-${LUA_VER} Added: head/editors/fxite/files/patch-src_export.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/fxite/files/patch-src_export.cpp Thu Jul 24 12:25:47 2014 (r362790) @@ -0,0 +1,11 @@ +--- src/export.cpp.orig 2014-07-24 14:11:00.000000000 +0200 ++++ src/export.cpp 2014-07-24 14:11:00.000000000 +0200 +@@ -464,7 +464,7 @@ + } + // start to write PDF file here (PDF1.4Ref(p63)) + // ASCII>127 characters to indicate binary-possible stream +- oT->write("%PDF-1.3\n%Η쏒\n"); ++ oT->write("%PDF-1.3\n%\267\276\255\252\n"); + styleCurrent = STYLE_DEFAULT; + + // build objects for font resources; note that font objects are Added: head/editors/fxite/files/patch-src_luafx.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/fxite/files/patch-src_luafx.cpp Thu Jul 24 12:25:47 2014 (r362790) @@ -0,0 +1,11 @@ +--- src/luafx.cpp.orig 2014-07-24 14:16:55.000000000 +0200 ++++ src/luafx.cpp 2014-07-24 14:19:21.000000000 +0200 +@@ -173,7 +173,7 @@ + switch (toupper(type[0])) { + case 'I' : { + if (!lua_isnil(L,3)) { +- txt.format(sizeof(lua_Integer)>4?"%ld":"%d", luaL_checkinteger(L,3)); ++ txt.format("%ld", luaL_checkinteger(L,3)); + } + opt=INPUTDIALOG_INTEGER; + break;