diff options
author | Timur Bakeyev <mc@bat.ru> | 1999-01-25 12:45:51 +0000 |
---|---|---|
committer | Timur I. Bakeyev <timur@src.gnome.org> | 1999-01-25 12:45:51 +0000 |
commit | 9225673ea2758f7828b58389af78f06fcdf698d5 (patch) | |
tree | e5514bb1335dc8ae26fa6d057847434caf959d7a /configure.in | |
parent | def1947e4f40d92f904afab9d82cb8ac83d913c3 (diff) |
NO_SYS_SIGLIST_DECL change.
Mon Jan 25 15:34:43 1999 Timur Bakeyev <mc@bat.ru>
* configure.in, gstrfuncs.c: Inverted logic of NO_SYS_SYGLIST_DECL -
now it's normal (see 1999-01-19 Josh MacDonald). Also, remove from
#include <signal.h> wrapper NO_SYS_SYGLIST - *sys_syglist[] declara-
tion hides there.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 905d6199b..36101e133 100644 --- a/configure.in +++ b/configure.in @@ -281,7 +281,7 @@ AC_TRY_COMPILE([#include <signal.h>], [ strlen (sys_siglist[0]); ], glib_ok=yes, glib_ok=no) AC_MSG_RESULT($glib_ok) -if test $glib_ok = yes; then +if test $glib_ok = no; then AC_DEFINE(NO_SYS_SIGLIST_DECL) fi |