about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-09-19 10:00:27 +0200
committerGitHub <noreply@github.com>2022-09-19 10:00:27 +0200
commitfcc20628d5a01c3d1c7a26fca48d79631eaac93d (patch)
treedfb3a91c64d2aa8019f08539c896cbea2d65d467
parentdaf7db1558c35449d515a0712a1dbc554b6597c8 (diff)
parent6c01df040f5102c2a43cdd82b3310834f5aac46a (diff)
downloadprofani-tty-fcc20628d5a01c3d1c7a26fca48d79631eaac93d.tar.gz
Merge pull request #1753 from wahjava/master
Fix typo in configure.ac
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 9138c9e7..3f941fde 100644
--- a/configure.ac
+++ b/configure.ac
@@ -272,11 +272,11 @@ AS_IF([test "x$PLATFORM" = xosx],
                     [AC_MSG_NOTICE([libnotify support will be disabled])])])])])
 
 dnl feature: xscreensaver
-AS_IF([test "x$enable_xscreensaver" != xno],
+AS_IF([test "x$with_xscreensaver" != xno],
     [PKG_CHECK_MODULES([xscrnsaver], [xscrnsaver],
         [AC_MSG_NOTICE([xscreensaver support is enabled]);
          LIBS="$xscrnsaver_LIBS $LIBS" CFLAGS="$CFLAGS $xscrnsaver_CFLAGS"],
-        [AS_IF([test "x$enable_xscreensaver" = xyes],
+        [AS_IF([test "x$with_xscreensaver" = xyes],
             [AC_MSG_ERROR([xscreensaver is required but does not exist])],
             [AC_MSG_NOTICE([xscreensaver support is disabled])])])])