diff options
author | James Booth <boothj5@gmail.com> | 2015-03-15 15:31:59 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-03-15 15:31:59 +0000 |
commit | 48e06c5a682ab8a6b82e340ed28f6797c1058a64 (patch) | |
tree | e775f96ee6c92f13bb6504acdb77063d9f543859 | |
parent | 448c91af61ab9269c9a862e73421721e73074aa7 (diff) | |
parent | f0ffceefdd1b9ddb2cd63c2fa4fb6f15d7c0e635 (diff) | |
download | profani-tty-48e06c5a682ab8a6b82e340ed28f6797c1058a64.tar.gz |
Merge branch 'master' into xep-0184
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index ec599f7c..0653ab68 100644 --- a/configure.ac +++ b/configure.ac @@ -149,7 +149,7 @@ AS_IF([test "x$PLATFORM" != xosx], AS_IF([test "x$PLATFORM" = xosx], [LIBS="-lcurl $LIBS"]) ### Check for desktop notification support -### Linux requires libnotify +### Linux/FreeBSD require libnotify ### Windows uses native OS calls ### OSX requires terminal-notifier @@ -162,7 +162,7 @@ AS_IF([test "x$PLATFORM" = xosx], [AC_MSG_ERROR([terminal-notifier not found, required for desktop notifications.])], [AC_MSG_NOTICE([Desktop notifications not supported.])])], [AC_DEFINE([HAVE_OSXNOTIFY], [1], [terminal notifier])])])], - [test "x$PLATFORM" = xnix], + [test "x$PLATFORM" = xnix -o "x$PLATFORM" = xfreebsd], [AS_IF([test "x$enable_notifications" != xno], [PKG_CHECK_MODULES([libnotify], [libnotify], [AC_DEFINE([HAVE_LIBNOTIFY], [1], [libnotify module])], |