]> git.scottworley.com Git - batteryviewer/commitdiff
Use the deprecated G_APPLICATION_FLAGS_NONE. :(
authorScott Worley <scottworley@scottworley.com>
Fri, 24 Feb 2023 18:03:02 +0000 (10:03 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 24 Feb 2023 18:03:02 +0000 (10:03 -0800)
Makefile
batteryviewer.c

index bfda2be4d3a4f2de427e788b26acfbdbf3b05c4d..f9d8876942118084b2ef00a023df58b05c8d8af8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-RECOMMENDED_CFLAGS = -Wall -Wextra -pedantic -Werror -O
+RECOMMENDED_CFLAGS = -Wall -Wextra -pedantic -O
 CFLAGS = $(RECOMMENDED_CFLAGS)
 prefix = /usr/local
 exec_prefix = $(prefix)
index 798cddc7facf522253f042b8aacc6fc7140aa914..37b6e009c1ce71a0b9b15e7dac65368b8f3706ad 100644 (file)
@@ -125,8 +125,11 @@ int main(int argc, char **argv) {
       .current_filename = sasprintf("%s/current_now", battery_dir),
   };
 
-  GtkApplication *app = gtk_application_new("com.scottworley.batteryviewer",
-                                            G_APPLICATION_DEFAULT_FLAGS);
+  GtkApplication *app = gtk_application_new(
+      "com.scottworley.batteryviewer",
+      // G_APPLICATION_FLAGS_NONE is deprecated, but
+      // G_APPLICATION_DEFAULT_FLAGS isn't available on Stable Debian yet.
+      G_APPLICATION_FLAGS_NONE);
   g_signal_connect(app, "activate", G_CALLBACK(activate), &state);
   int status = g_application_run(G_APPLICATION(app), argc, argv);
   g_object_unref(app);