diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-05-20 11:00:22 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-05-20 11:00:22 +0200 |
commit | 987234faf91bad4b9710f2062a9b90c08137e751 (patch) | |
tree | 55f085e3b91d109dc390706415c786863c910f6a /src/gui | |
parent | 8b62667111e324caba431e759b17f31e413f8c6a (diff) | |
download | weechat-987234faf91bad4b9710f2062a9b90c08137e751.zip |
Add hook_connect (background connection to peer)
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/curses/Makefile.am | 3 | ||||
-rw-r--r-- | src/gui/gtk/Makefile.am | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/curses/Makefile.am b/src/gui/curses/Makefile.am index afaa1227c..7f2b59d5f 100644 --- a/src/gui/curses/Makefile.am +++ b/src/gui/curses/Makefile.am @@ -25,7 +25,8 @@ weechat_curses_LDADD = ./../../core/lib_weechat_core.a \ ../lib_weechat_gui_common.a \ ../../core/lib_weechat_core.a \ $(PLUGINS_LFLAGS) \ - $(NCURSES_LFLAGS) + $(NCURSES_LFLAGS) \ + $(GNUTLS_LFLAGS) weechat_curses_SOURCES = gui-curses-bar.c \ gui-curses-chat.c \ diff --git a/src/gui/gtk/Makefile.am b/src/gui/gtk/Makefile.am index 03192e8cc..a3b89bc17 100644 --- a/src/gui/gtk/Makefile.am +++ b/src/gui/gtk/Makefile.am @@ -25,7 +25,8 @@ weechat_gtk_LDADD = ./../../core/lib_weechat_core.a \ ../lib_weechat_gui_common.a \ ../../core/lib_weechat_core.a \ $(PLUGINS_LFLAGS) \ - $(GTK_LFLAGS) + $(GTK_LFLAGS) \ + $(GNUTLS_LFLAGS) weechat_gtk_SOURCES = gui-gtk-bar.c \ gui-gtk-chat.c \ |