mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Fixed libnotify includes
This commit is contained in:
parent
3c0624380a
commit
b80bf03751
@ -44,10 +44,11 @@ AM_CFLAGS="-O3 -Werror -Wall -Wextra -Wno-unused-parameter "
|
||||
AM_CFLAGS="$AM_CFLAGS -Wno-unused-but-set-variable -Wno-unused-result "
|
||||
AM_CFLAGS="$AM_CFLAGS -Wno-missing-field-initializers "
|
||||
AM_CFLAGS="$AM_CFLAGS -lstrophe -lxml2 -lexpat -lncurses -lcurl -lresolv "
|
||||
AM_CFLAGS="$AM_CFLAGS $DEPS_CFLAGS $NOFTITY_CFLAGS $DEPS_LIBS $NOTIFY_LIBS"
|
||||
AM_CFLAGS="$AM_CFLAGS $DEPS_LIBS $NOTIFY_LIBS"
|
||||
|
||||
AM_CPPFLAGS="-lstrophe -lxml2 -lexpat -lncurses -lcurl -lresolv "
|
||||
AM_CPPFLAGS="$AM_CPPFLAGS $DEPS_CFLAGS $NOFTITY_CFLAGS $DEPS_LIBS $NOTIFY_LIBS"
|
||||
#AM_CPPFLAGS="-lstrophe -lxml2 -lexpat -lncurses -lcurl -lresolv "
|
||||
#AM_CPPFLAGS="$AM_CPPFLAGS $DEPS_CFLAGS $NOFTITY_CFLAGS $DEPS_LIBS $NOTIFY_LIBS"
|
||||
AM_CPPFLAGS="$DEPS_CFLAGS $NOTIFY_CFLAGS"
|
||||
|
||||
AC_SUBST(AM_CFLAGS)
|
||||
AC_SUBST(AM_CPPFLAGS)
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
#include <ncurses.h>
|
||||
#include <glib.h>
|
||||
#ifdef HAVE_LIBNOTIFY_NOTIFY_H
|
||||
#ifdef HAVE_LIBNOTIFY
|
||||
#include <libnotify/notify.h>
|
||||
#endif
|
||||
|
||||
@ -73,7 +73,7 @@ static void _win_handle_switch(const int * const ch);
|
||||
static void _win_handle_page(const int * const ch);
|
||||
static void _win_resize_all(void);
|
||||
|
||||
#ifdef HAVE_LIBNOTIFY_NOTIFY_H
|
||||
#ifdef HAVE_LIBNOTIFY
|
||||
static void _win_notify(char * short_from);
|
||||
#endif
|
||||
|
||||
@ -208,13 +208,13 @@ win_show_incomming_msg(const char * const from, const char * const message)
|
||||
|
||||
if (prefs_get_beep())
|
||||
beep();
|
||||
#ifdef HAVE_LIBNOTIFY_NOTIFY_H
|
||||
#ifdef HAVE_LIBNOTIFY
|
||||
if (prefs_get_notify())
|
||||
_win_notify(short_from);
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef HAVE_LIBNOTIFY_NOTIFY_H
|
||||
#ifdef HAVE_LIBNOTIFY
|
||||
static void
|
||||
_win_notify(char * short_from)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user