From fda57fad15a35c1fdc892f7fa7e369169424e299 Mon Sep 17 00:00:00 2001 From: Philo2010 <120284687+Philo2010@users.noreply.github.com> Date: Mon, 12 Jun 2023 18:53:51 -0700 Subject: [PATCH] Update raylib.pc.in to fix colors on macs running raylib. Raylib is using c++11 colors, by default macOS does not use c++11 colors, so to fix this we have to put a flag to specify. --- raylib.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib.pc.in b/raylib.pc.in index 4e34ce32c..36d385687 100644 --- a/raylib.pc.in +++ b/raylib.pc.in @@ -10,4 +10,4 @@ Version: @PROJECT_VERSION@ Libs: -L"${libdir}" -lraylib @PKG_CONFIG_LIBS_EXTRA@ Libs.private: @PKG_CONFIG_LIBS_PRIVATE@ Requires.private: @GLFW_PKG_DEPS@ -Cflags: -I"${includedir}" +Cflags: -I"${includedir}" -std=c++11