libreoffice: add compile flag -fpermissive due to libcurl upgrade
curl upgrade to 7.50.0 (#17152) changes the libcurl headers slightly and therefore requires the -fpermissive flag until this package gets updated
This commit is contained in:
parent
34237beca6
commit
8d84e6a20f
2 changed files with 6 additions and 2 deletions
|
@ -76,7 +76,9 @@ in stdenv.mkDerivation rec {
|
|||
|
||||
# For some reason librdf_redland sometimes refers to rasqal.h instead
|
||||
# of rasqal/rasqal.h
|
||||
NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal";
|
||||
# curl upgrade to 7.50.0 (#17152) changes the libcurl headers slightly and
|
||||
# therefore requires the -fpermissive flag until this package gets updated
|
||||
NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal -fpermissive";
|
||||
|
||||
# If we call 'configure', 'make' will then call configure again without parameters.
|
||||
# It's their system.
|
||||
|
|
|
@ -76,7 +76,9 @@ in stdenv.mkDerivation rec {
|
|||
|
||||
# For some reason librdf_redland sometimes refers to rasqal.h instead
|
||||
# of rasqal/rasqal.h
|
||||
NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal";
|
||||
# curl upgrade to 7.50.0 (#17152) changes the libcurl headers slightly and
|
||||
# therefore requires the -fpermissive flag until this package gets updated
|
||||
NIX_CFLAGS_COMPILE="-I${librdf_rasqal}/include/rasqal -fpermissive";
|
||||
|
||||
# If we call 'configure', 'make' will then call configure again without parameters.
|
||||
# It's their system.
|
||||
|
|
Loading…
Reference in a new issue