about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorMarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com>2022-05-26 21:06:27 +0300
committerMarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com>2022-05-26 21:06:27 +0300
commit0cff111249ae60f7b9b6662fc7beaed1b5ec8dde (patch)
tree0822004fdb20bf6f0badf20ffc1c423ec2cb3f38 /src/main.c
parent6a44e188537ee2d70226ad9dba4ae89c15437e2b (diff)
downloadprofani-tty-0cff111249ae60f7b9b6662fc7beaed1b5ec8dde.tar.gz
Add checks for whether gdk-pixbuf exists before using avatar set
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 15e4948a..42629370 100644
--- a/src/main.c
+++ b/src/main.c
@@ -173,6 +173,12 @@ main(int argc, char** argv)
         g_print("GTK icons/clipboard: Disabled\n");
 #endif
 
+#ifdef HAVE_PIXBUF
+        g_print("GDK Pixbuf: Enabled\n");
+#else
+        g_print("GDK Pixbuf: Disabled\n");
+#endif
+
         return 0;
     }