1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00

net/tcpreen: Fix build with Clang 6

main.cpp:111:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
"TCP re-engineering tool "VERSION" ("PACKAGE_HOST")\n"
                          ^

http://beefy12.nyi.freebsd.org/data/head-amd64-default/p479076_s338486/logs/errors/tcpreen-1.4.4_3.log

PR:		230895
Submitted by:	tobik
Approved by:	jmohacsi@bsd.hu (maintainer timeout, 2 weeks)
This commit is contained in:
Tobias Kortkamp 2018-09-09 07:18:37 +00:00
parent ea831f6216
commit 3db17ea8f7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=479276

View File

@ -0,0 +1,18 @@
main.cpp:111:27: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
"TCP re-engineering tool "VERSION" ("PACKAGE_HOST")\n"
^
Also remove build host and date information to prepare for reproducible builds
--- src/main.cpp.orig 2018-08-25 18:26:34 UTC
+++ src/main.cpp
@@ -108,8 +108,7 @@ version (void)
# define VERSION "unknown version"
#endif
puts (
-"TCP re-engineering tool "VERSION" ("PACKAGE_HOST")\n"
-" built "__DATE__" on "PACKAGE_BUILD_HOSTNAME" ("PACKAGE_BUILD")\n"
+"TCP re-engineering tool " VERSION "\n"
"Copyright (C) 2002-2004 Remi Denis-Courmont");
puts (_(
"This is free software; see the source for copying conditions.\n"