diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2020-08-28 18:11:23 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2020-08-28 18:11:23 +0000 |
commit | d753977e7c41fa413cf54da3f175bed53b7be62d (patch) | |
tree | 46c2a49f8468140b789713493121e762a7dccaab | |
parent | f85395c87e6b1fb15924b6aee2d8fb2d291166e7 (diff) |
x11-wm/tvtwm: Fix build with LLVM 11
The fix for this is identical to that of x11-wm/piewm; remove the patch that
explicitly de-externs yylineno when it's explicitly defined in another
compilation unit (by flex).
PR: 248976
MFH: 2020Q3 (-fno-common build fix)
Notes
Notes:
svn path=/head/; revision=546780
-rw-r--r-- | x11-wm/tvtwm/files/patch-gram.y | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/x11-wm/tvtwm/files/patch-gram.y b/x11-wm/tvtwm/files/patch-gram.y deleted file mode 100644 index b905f59b66de..000000000000 --- a/x11-wm/tvtwm/files/patch-gram.y +++ /dev/null @@ -1,11 +0,0 @@ ---- gram.y.orig 1993-11-22 20:10:49 UTC -+++ gram.y -@@ -79,7 +79,7 @@ unsigned int mods_used = (ShiftMask | Co - extern int do_single_keyword(), do_string_keyword(), do_number_keyword(); - extern name_list **do_colorlist_keyword(); - extern int do_color_keyword(), do_string_savecolor(); --extern int yylineno; -+int yylineno; - %} - - %union |