Skip to content

Commit

Permalink
Enable C++11 mode on macOS 12 builds
Browse files Browse the repository at this point in the history
This is needed to compile exiv 0.28.1 headers.
  • Loading branch information
dfandrich committed Nov 20, 2023
1 parent 649869c commit 6fb51f9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,14 @@ jobs:
- cc: gcc
gtk: 2
install: desktop-file-utils docbook-xsl exiv2 gtk+
cflags: -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
cflags: -std=c++11 -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
ldflags: -O3 -lintl
cxx: g++
target: all
install_target: install install-po install-desktop-file
- cc: gcc
gtk: 3
install: desktop-file-utils docbook-xsl exiv2 gtk+3
install: -std=c++11 desktop-file-utils docbook-xsl exiv2 gtk+3
cflags: -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
ldflags: -O3 -lintl
cxx: g++
Expand All @@ -275,15 +275,15 @@ jobs:
- cc: clang
gtk: 2
install: desktop-file-utils docbook-xsl exiv2 gtk+
cflags: -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
cflags: -std=c++11 -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
ldflags: -O3 -lintl
cxx: clang++
target: all
install_target: install install-po install-desktop-file
- cc: clang
gtk: 3
install: desktop-file-utils docbook-xsl exiv2 gtk+3
cflags: -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
cflags: -std=c++11 -Wall -Wextra -Werror -Wno-error=deprecated-declarations -O3 -DENABLE_NLS=1
ldflags: -O3 -lintl
cxx: clang++
target: all
Expand Down

0 comments on commit 6fb51f9

Please sign in to comment.