1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

- Fix build with clang 6

This commit is contained in:
Dmitry Marakasov 2018-06-22 13:01:26 +00:00
parent d976851ec3
commit 8590274504
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=473038
3 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,20 @@
--- src/command_line.cpp.orig 2015-03-24 17:13:41 UTC
+++ src/command_line.cpp
@@ -118,7 +118,7 @@ CommandLine::parse (int argc, char** arg
void
CommandLine::print_help ()
{
- std::cout << "Construo "VERSION"\n\n"
+ std::cout << "Construo " VERSION "\n\n"
<< "Usage: construo [OPTIONS] [FILENAME]\n\n"
<< " -h, --help display this help text\n"
<< " -v,--version Print version number of the programm\n"
@@ -135,7 +135,7 @@ CommandLine::print_help ()
void
CommandLine::print_version ()
{
- std::cout << "Construo "VERSION"\n"
+ std::cout << "Construo " VERSION "\n"
<< "Written by Ingo Ruhnke <grumbel@gmx.de>\n\n"
<< "Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de>\n"
<< "This is free software; see the source for copying conditions. There is NO\n"

View File

@ -0,0 +1,11 @@
--- src/construo.hpp.orig 2015-03-24 17:13:41 UTC
+++ src/construo.hpp
@@ -19,7 +19,7 @@
#include <config.h>
-#define CONSTRUO_DATADIR DATADIR"/games/"PACKAGE
+#define CONSTRUO_DATADIR DATADIR "/games/" PACKAGE
class SystemContext;
class InputContext;

View File

@ -0,0 +1,11 @@
--- src/world_gui_manager.cpp.orig 2015-03-24 17:13:41 UTC
+++ src/world_gui_manager.cpp
@@ -273,7 +273,7 @@ WorldGUIManager::draw_overlay ()
graphic_context->draw_string (410, bottom_line, "Zoom: ");
graphic_context->draw_string (480, bottom_line, to_string(WorldViewComponent::instance()->get_zoom()));
- graphic_context->draw_string (610, bottom_line, "..:: Construo V"VERSION" ::..");
+ graphic_context->draw_string (610, bottom_line, "..:: Construo V" VERSION " ::..");
//graphic_context->draw_string (680, bottom_line, to_string(WorldViewComponent::instance()->get_zoom()));
}