about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-09-19 09:59:33 +0200
committerGitHub <noreply@github.com>2022-09-19 09:59:33 +0200
commitdaf7db1558c35449d515a0712a1dbc554b6597c8 (patch)
tree12600631a5fc2a37e4f1159ae30671fac0733cc7
parent496eb6ceb81508291e49a6e3e91bd62f1eee333c (diff)
parent39675be808fce67f7bae371ecf89b283d7ac6655 (diff)
downloadprofani-tty-daf7db1558c35449d515a0712a1dbc554b6597c8.tar.gz
Merge pull request #1752 from omar-polo/master
typo in configure: enable_gdk_pixbuf not enable_pixbuf
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 433a4738..9138c9e7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -311,11 +311,11 @@ if test "x$enable_otr" != xno; then
 fi
 
 dnl feature: pixbuf / used for scaling avatars before uploading via `/avatar set`
-AS_IF([test "x$enable_pixbuf" != xno],
+AS_IF([test "x$enable_gdk_pixbuf" != xno],
     [PKG_CHECK_MODULES([gdk_pixbuf], [gdk-pixbuf-2.0 >= 2.4],
         [AC_DEFINE([HAVE_PIXBUF], [1], [gdk-pixbuf module])
          LIBS="$gdk_pixbuf_LIBS $LIBS" CFLAGS="$gdk_pixbuf_CFLAGS $CFLAGS"],
-        [AS_IF([test "x$enable_pixbuf" = xyes],
+        [AS_IF([test "x$enable_gdk_pixbuf" = xyes],
                [AC_MSG_ERROR([gdk-pixbuf-2.0 >= 2.4 is required to scale avatars before uploading])],
                [AC_MSG_NOTICE([gdk-pixbuf-2.0 >= 2.4 not found, GDK Pixbuf support not enabled])])])])