diff options
author | edwin <edwin@FreeBSD.org> | 2013-10-17 04:38:38 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2013-10-17 04:38:38 +0800 |
commit | 395ae0e794537a02f2fa787f634cc0add058dcdb (patch) | |
tree | 86b582e306fd1cbd4287986b40241c29f0a61918 /games/fxsudoku | |
parent | d774e4a4376b4f7769a828b6f537a8da9a9c8f66 (diff) | |
download | freebsd-ports-gnome-395ae0e794537a02f2fa787f634cc0add058dcdb.tar.gz freebsd-ports-gnome-395ae0e794537a02f2fa787f634cc0add058dcdb.tar.zst freebsd-ports-gnome-395ae0e794537a02f2fa787f634cc0add058dcdb.zip |
Fix build on 10.x
Diffstat (limited to 'games/fxsudoku')
-rw-r--r-- | games/fxsudoku/Makefile | 2 | ||||
-rw-r--r-- | games/fxsudoku/files/config.freebsd | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/games/fxsudoku/Makefile b/games/fxsudoku/Makefile index 661bdde85723..ad49a5244588 100644 --- a/games/fxsudoku/Makefile +++ b/games/fxsudoku/Makefile @@ -3,7 +3,7 @@ PORTNAME= fxsudoku PORTVERSION= 0.5.1 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= games MASTER_SITES= http://www.fifthplanet.net/files/ diff --git a/games/fxsudoku/files/config.freebsd b/games/fxsudoku/files/config.freebsd index 7b8311baa5df..3bb74ef38de6 100644 --- a/games/fxsudoku/files/config.freebsd +++ b/games/fxsudoku/files/config.freebsd @@ -9,8 +9,8 @@ export LIBDIR="lib" # Name of the library directory 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 |