all repos — openbox @ ce24cbd045b2a93a04c5cd258137ab8572f2c429

openbox fork - make it a bit more like ryudo

check more headers before including them
Dana Jansens danakj@orodu.net
commit

ce24cbd045b2a93a04c5cd258137ab8572f2c429

parent

b06b684589a618a2481ccc2745d5e03abb6bd5e0

2 files changed, 13 insertions(+), 1 deletions(-)

jump to
M configure.acconfigure.ac

@@ -85,7 +85,8 @@ AM_GNU_GETTEXT_VERSION(0.15)

AM_GNU_GETTEXT([external]) AC_CHECK_HEADERS(ctype.h fcntl.h locale.h signal.h string.h stdio.h stdlib.h) -AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/time.h sys/wait.h) +AC_CHECK_HEADERS(unistd.h sys/stat.h sys/select.h sys/socket.h sys/time.h) +AC_CHECK_HEADERS(sys/wait.h) # AC_HEADER_TIME # AC_TYPE_SIGNAL
M obt/mainloop.cobt/mainloop.c

@@ -21,10 +21,21 @@ #include "obt/mainloop.h"

#include "obt/display.h" #include "obt/util.h" +#ifdef HAVE_STDIO_H #include <stdio.h> +#endif +#ifdef HAVE_STDLIB_H #include <stdlib.h> +#endif +#ifdef HAVE_SYS_SELECT_H #include <sys/select.h> +#endif +#ifdef HAVE_SYS_SOCKET_H +#include <sys/socket.h> +#endif +#ifdef HAVE_SIGNAL_H #include <signal.h> +#endif typedef struct _ObtMainLoopTimer ObtMainLoopTimer; typedef struct _ObtMainLoopSignal ObtMainLoopSignal;