1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-09 21:30:42 +00:00

Fix typo in configure.ac

Signed-off-by: Ashish SHUKLA <ashish.is@lostca.se>
This commit is contained in:
Ashish SHUKLA 2022-09-15 17:37:57 +00:00
parent 496eb6ceb8
commit 6c01df040f
No known key found for this signature in database
GPG Key ID: C746CFA9E74FA4B0

View File

@ -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])])])])