diff --git a/general.ent b/general.ent index 19a9032a21..9136e62360 100644 --- a/general.ent +++ b/general.ent @@ -1,12 +1,12 @@ - + - + diff --git a/introduction/welcome/changelog.xml b/introduction/welcome/changelog.xml index 7d7271739c..43ff9f3a90 100644 --- a/introduction/welcome/changelog.xml +++ b/introduction/welcome/changelog.xml @@ -41,6 +41,17 @@ --> + + September 21st, 2017 + + + [ken] - Fix gtk-xfce-engine-3.2.0 for glib-2.54 (glib-mkenum has + been rewritten in python and crashes on an ISO-8859-1 character). Fixes + #9783. + + + + September 20th, 2017 diff --git a/xfce/core/gtk-xfce-engine.xml b/xfce/core/gtk-xfce-engine.xml index 080ec52f96..a119e0af3e 100644 --- a/xfce/core/gtk-xfce-engine.xml +++ b/xfce/core/gtk-xfce-engine.xml @@ -99,7 +99,8 @@ following commands: -./configure --prefix=/usr --enable-gtk3 && +sed -i 's/\xd6/\xc3\x96/' gtk-3.0/xfce_style_types.h && +./configure --prefix=/usr --enable-gtk3 && make @@ -114,6 +115,19 @@ make + + Command Explanations + + + sed -i 's/\xd6/\xc3\x96/' ...: The script + glib-mkenums has now been rewritten from + perl to python + and will crash when it encounters an ISO-8859-1 character in a comment. + This sed converts that character to UTF-8. + + + + Contents