1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:57:45 +02:00

Merge pull request #53 from JFreegman/master

fix cflags
This commit is contained in:
JFreegman 2013-11-15 18:53:06 -08:00
commit 99b16e3af1
4 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,3 @@
SUBDIRS = build misc
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = -wall -c89 -werror

View File

@ -23,7 +23,7 @@ toxic_SOURCES = $(top_srcdir)/src/main.c \
$(top_srcdir)/src/misc_tools.c \
$(top_srcdir)/src/misc_tools.h
toxic_CFLAGS = -I$(top_srcdir) \
toxic_CFLAGS = -I$(top_srcdir) \
$(NCURSES_CFLAGS) \
$(LIBSODIUM_CFLAGS) \
$(LIBTOXCORE_CFLAGS)

View File

@ -7,5 +7,6 @@
ToxWindow new_friendlist();
void disable_chatwin(int f_num);
int get_friendnum(uint8_t *name);
void sort_friendlist_index(void);
#endif /* end of include guard: FRIENDLIST_H_53I41IM */

View File

@ -230,7 +230,7 @@ static void do_tox(Tox *m, ToxWindow *prompt)
if (!dht_on && !tox_isconnected(m) && !(conn_try++ % 100)) {
if (!conn_err) {
wprintw(prompt->window, "Establishing connection...\n");
if (conn_err = init_connection(m))
if ((conn_err = init_connection(m)))
wprintw(prompt->window, "\nAuto-connect failed with error code %d\n", conn_err);
}
} else if (!dht_on && tox_isconnected(m)) {