]> git.pld-linux.org Git - packages/libreoffice.git/blob - libreoffice-build.patch
- update files to 4.4.3.2; unfortunately gcc dies with internal error when building it
[packages/libreoffice.git] / libreoffice-build.patch
1 --- libreoffice-4.3.2.2/configure.ac~   2014-10-09 15:00:49.000000000 +0200
2 +++ libreoffice-4.3.2.2/configure.ac    2014-10-09 15:12:08.242486104 +0200
3 @@ -11752,10 +11752,11 @@
4      FONTFILE_LOWER="$(echo $FONTFILE | $AWK '{print tolower($0)}')"
5  
6      TESTEXPR="'${FONTFILE_LOWER}' = '$(echo $FONT | $AWK '{print tolower($0)}').ttf'"
7 -    while true ; do
8 -        MAPPING="$(echo $1 | $AWK '{print tolower($0)}')"; shift
9 -        test -n "$MAPPING" || break
10 +    MAPPING="$(echo $1 | $AWK '{print tolower($0)}')"
11 +    while test -n "$MAPPING"; do
12          TESTEXPR="${TESTEXPR} -o '${FONTFILE_LOWER}' = '$MAPPING-regular.ttf'"
13 +        shift
14 +        MAPPING="$(echo $1 | $AWK '{print tolower($0)}')"
15      done
16      if test $TESTEXPR
17      then
18
19 --- libreoffice-4.4.3.2/vcl/unx/gtk/a11y/atktextattributes.cxx~ 2015-04-28 23:09:05.000000000 +0200
20 +++ libreoffice-4.4.3.2/vcl/unx/gtk/a11y/atktextattributes.cxx  2015-05-28 15:36:43.650187360 +0200
21 @@ -1235,7 +1235,7 @@ attribute_set_new_from_extended_attribut
22  
23          pSet = attribute_set_prepend( pSet,
24                                        atk_text_attribute_register( sPropertyName.getStr() ),
25 -                                      g_strdup_printf( sPropertyValue.getStr() ) );
26 +                                      g_strdup_printf( "%s", sPropertyValue.getStr() ) );
27      }
28      while ( nIndex >= 0 && nIndex < sExtendedAttrs.getLength() );
29  
This page took 0.031061 seconds and 3 git commands to generate.