freebsd-ports/devel/flick/files/patch-ae
Kirill Ponomarev 9c461e9fdd - Fix build on -current
o Remove extra token pasting operators after ::'s.
  o Add missing ; in yacc files.

PR:		56187
Submitted by:	Michael Edenfield <kutulu@kutulu.org>
2003-08-30 17:37:21 +00:00

15 lines
699 B
Text

--- c/pfe/fluke/pg_fluke.cc.orig Fri Aug 29 20:18:40 2003
+++ c/pfe/fluke/pg_fluke.cc Fri Aug 29 20:19:02 2003
@@ -33,9 +33,9 @@
pg_fluke::pg_fluke()
{
-#define NAME_FORMAT(type) names.formats[name_strings::##type##_fmt]
-#define NAME_LITERAL_STR(type) names.literals[name_strings::##type##_lit].str
-#define NAME_LITERAL_LEN(type) names.literals[name_strings::##type##_lit].len
+#define NAME_FORMAT(type) names.formats[name_strings::type##_fmt]
+#define NAME_LITERAL_STR(type) names.literals[name_strings::type##_lit].str
+#define NAME_LITERAL_LEN(type) names.literals[name_strings::type##_lit].len
/* Should define them all... */
NAME_FORMAT(server_func) = "%I%_server%_%s";