From: Jim S. <jse...@us...> - 2002-05-03 01:09:52
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv4934/gaim Modified Files: configure.ac configure.in Log Message: jabber.c Repaired iso8601_to_time() to work properly for HAVE_TIMEZONE. (jseymour) Removed signon time code as it didn't produce the desired results (faceprint). configure.ac configure.in Added AC_VAR_TIMEZONE_EXTERNALS macro for HAVE_TIMEZONE, HAVE_ALTZONE and HAVE_DAYLIGHT defines. (jseymour) Fixed socklen_t (fingolfin) c_var_timezone_externals.m4 Added file. (jseymour) Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- configure.ac 29 Apr 2002 13:15:41 -0000 1.61 +++ configure.ac 3 May 2002 01:09:49 -0000 1.62 @@ -51,12 +51,12 @@ #include <sys/socket.h> socklen_t x; ], [], [AC_MSG_RESULT(yes)], [ -AC_TRY_COMPILE([#include <sys/types> +AC_TRY_COMPILE([#include <sys/types.h> #include <sys/socket.h> int accept(int, struct sockaddr *, size_t *); ], [], [ AC_MSG_RESULT(size_t) -AC_DEFINE(socklen_t, size_t)]. [ +AC_DEFINE(socklen_t, size_t)], [ AC_MSG_RESULT(int) AC_DEFINE(socklen_t, int)])]) @@ -409,6 +409,7 @@ AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) AC_CHECK_HEADERS(termios.h) +AC_VAR_TIMEZONE_EXTERNALS AC_OUTPUT([Makefile doc/Makefile Index: configure.in =================================================================== RCS file: /cvsroot/gaim/gaim/configure.in,v retrieving revision 1.105 retrieving revision 1.106 diff -u -d -r1.105 -r1.106 --- configure.in 29 Apr 2002 13:15:40 -0000 1.105 +++ configure.in 3 May 2002 01:09:49 -0000 1.106 @@ -49,12 +49,12 @@ #include <sys/socket.h> socklen_t x; ], [], [AC_MSG_RESULT(yes)], [ -AC_TRY_COMPILE([#include <sys/types> +AC_TRY_COMPILE([#include <sys/types.h> #include <sys/socket.h> int accept(int, struct sockaddr *, size_t *); ], [], [ AC_MSG_RESULT(size_t) -AC_DEFINE(socklen_t, size_t)]. [ +AC_DEFINE(socklen_t, size_t)], [ AC_MSG_RESULT(int) AC_DEFINE(socklen_t, int)])]) @@ -407,6 +407,7 @@ AC_CHECK_HEADERS(sys/file.h sys/filio.h sys/ioctl.h sys/msgbuf.h) AC_CHECK_HEADERS(sys/select.h sys/uio.h sys/utsname.h sys/wait.h) AC_CHECK_HEADERS(termios.h) +AC_VAR_TIMEZONE_EXTERNALS AC_OUTPUT([Makefile doc/Makefile |