From c3a9319a40161be6bedb183321ea2b7af693f3e8 Mon Sep 17 00:00:00 2001 From: bellrise Date: Sat, 14 May 2022 23:17:56 +0200 Subject: [PATCH] makefile: Fix invalid flags which should define Two arguments were missing the -D option, which some compilers treated as errors and stopped the compilation. --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 9e6a17f..e044b73 100644 --- a/makefile +++ b/makefile @@ -6,8 +6,8 @@ OPTIONS = -Dgtk_doc=false -Dintrospection=false \ -DG_DISABLE_CAST_CHECKS \ -Dcloudproviders=false \ -DGTK_DISABLE_DEPRECATED \ - -GDK_PIXBUF_DISABLE_DEPRECATED \ - -G_DISABLE_DEPRECATED -DENABLE_GLES2=ON \ + -DGDK_PIXBUF_DISABLE_DEPRECATED \ + -DG_DISABLE_DEPRECATED -DENABLE_GLES2=ON \ -DENABLE_GEOLOCATION=OFF -DENABLE_PLUGIN_PROCESS_GTK2=OFF \ -DPORT=GTK \ -Dforce_posix_threads=true \