Date: Sat, 14 Sep 2013 01:16:31 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327209 - in head/games/jag: . files Message-ID: <201309140116.r8E1GVJ5017985@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Sat Sep 14 01:16:31 2013 New Revision: 327209 URL: http://svnweb.freebsd.org/changeset/ports/327209 Log: Fix build with clang/libc++ Added: head/games/jag/files/ head/games/jag/files/patch-Game.pro (contents, props changed) Modified: head/games/jag/Makefile Modified: head/games/jag/Makefile ============================================================================== --- head/games/jag/Makefile Sat Sep 14 01:16:25 2013 (r327208) +++ head/games/jag/Makefile Sat Sep 14 01:16:31 2013 (r327209) @@ -16,6 +16,7 @@ COMMENT= 2D arcade-puzzle game like KDia USE_ZIP= yes USE_SDL= sdl mixer +USE_DOS2UNIX= Game.pro USE_QT4= qmake_build uic_build moc_build rcc_build \ corelib svg xml opengl network Added: head/games/jag/files/patch-Game.pro ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/jag/files/patch-Game.pro Sat Sep 14 01:16:31 2013 (r327209) @@ -0,0 +1,13 @@ +Uses X11 functions, but doesnt link with libX11 +--- Game.pro.orig 2013-09-14 02:35:13.963226272 +0400 ++++ Game.pro 2013-09-14 02:36:05.820226581 +0400 +@@ -24,7 +24,8 @@ + } + LIBS += -lSDLmain \ + -lSDL \ +- -lSDL_mixer ++ -lSDL_mixer \ ++ -lX11 + TEMPLATE = app + SOURCES += main.cpp \ + gamewidget.cpp \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309140116.r8E1GVJ5017985>