diff options
| author | Markus Volk <f_l_k@t-online.de> | 2023-11-11 23:18:48 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-11-11 15:41:43 -0800 |
| commit | ba28b8f98713fb5b009ccbf8f12a0638598444cb (patch) | |
| tree | 778f2e40535f57e72260e522868b44f820dbfd52 | |
| parent | 1bdab916b1fd70ce9196aedac319df5dd8b6dd15 (diff) | |
| download | meta-openembedded-ba28b8f98713fb5b009ccbf8f12a0638598444cb.tar.gz | |
cups-filters: Fix for current gcc
std::string_view is part of c++17
This fixes:
error: 'std::string_view' has not been declared
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-printing/cups/cups-filters_1.28.17.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-printing/cups/cups-filters_1.28.17.bb b/meta-oe/recipes-printing/cups/cups-filters_1.28.17.bb index 01c29d2c97..dc527bf721 100644 --- a/meta-oe/recipes-printing/cups/cups-filters_1.28.17.bb +++ b/meta-oe/recipes-printing/cups/cups-filters_1.28.17.bb | |||
| @@ -30,6 +30,8 @@ EXTRA_OECONF:class-native += " --with-pdftops=pdftops \ | |||
| 30 | --disable-ldap \ | 30 | --disable-ldap \ |
| 31 | --with-png --without-jpeg --without-tiff" | 31 | --with-png --without-jpeg --without-tiff" |
| 32 | 32 | ||
| 33 | CXXFLAGS += "-std=c++17" | ||
| 34 | |||
| 33 | PACKAGECONFIG[jpeg] = "--with-jpeg,--without-jpeg,jpeg" | 35 | PACKAGECONFIG[jpeg] = "--with-jpeg,--without-jpeg,jpeg" |
| 34 | PACKAGECONFIG[png] = "--with-png,--without-png,libpng" | 36 | PACKAGECONFIG[png] = "--with-png,--without-png,libpng" |
| 35 | PACKAGECONFIG[tiff] = "--with-tiff,--without-tiff,tiff" | 37 | PACKAGECONFIG[tiff] = "--with-tiff,--without-tiff,tiff" |
