From owner-svn-ports-all@FreeBSD.ORG Wed Oct 16 20:38:39 2013 Return-Path: Delivered-To: svn-ports-all@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 ESMTP id 01AA2CDE; Wed, 16 Oct 2013 20:38:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD666292D; Wed, 16 Oct 2013 20:38:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9GKccom059815; Wed, 16 Oct 2013 20:38:38 GMT (envelope-from edwin@svn.freebsd.org) Received: (from edwin@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9GKccIc059813; Wed, 16 Oct 2013 20:38:38 GMT (envelope-from edwin@svn.freebsd.org) Message-Id: <201310162038.r9GKccIc059813@svn.freebsd.org> From: Edwin Groothuis Date: Wed, 16 Oct 2013 20:38:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330537 - in head/games/fxsudoku: . 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-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Oct 2013 20:38:39 -0000 Author: edwin Date: Wed Oct 16 20:38:38 2013 New Revision: 330537 URL: http://svnweb.freebsd.org/changeset/ports/330537 Log: Fix build on 10.x Modified: head/games/fxsudoku/Makefile head/games/fxsudoku/files/config.freebsd Modified: head/games/fxsudoku/Makefile ============================================================================== --- head/games/fxsudoku/Makefile Wed Oct 16 20:21:52 2013 (r330536) +++ head/games/fxsudoku/Makefile Wed Oct 16 20:38:38 2013 (r330537) @@ -3,7 +3,7 @@ PORTNAME= fxsudoku PORTVERSION= 0.5.1 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= games MASTER_SITES= http://www.fifthplanet.net/files/ Modified: head/games/fxsudoku/files/config.freebsd ============================================================================== --- head/games/fxsudoku/files/config.freebsd Wed Oct 16 20:21:52 2013 (r330536) +++ head/games/fxsudoku/files/config.freebsd Wed Oct 16 20:38:38 2013 (r330537) @@ -9,8 +9,8 @@ export LIBDIR="lib" # N export DEFAULT_PREFIX="/usr/local" # Compiler and Linker -export CC="gcc" # C Compiler -export CXX="g++" # C++ Compiler +export CC="cc" # C Compiler +export CXX="c++" # C++ Compiler export LINK=$CXX # Executable Linker export DLLLINK="$CXX -shared" # Dynamic Library Linker export LIBLINK="ar cru" # Static Library Linker