From: Sean E. <sea...@us...> - 2002-04-15 03:23:14
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv30822 Modified Files: ChangeLog acconfig.h configure.ac Log Message: Patches by Max Horn, Nathan Walp and Danny Colascione. Thanks, guys. Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.452 retrieving revision 1.453 diff -u -d -r1.452 -r1.453 --- ChangeLog 14 Apr 2002 22:44:27 -0000 1.452 +++ ChangeLog 15 Apr 2002 03:23:08 -0000 1.453 @@ -3,6 +3,8 @@ version 0.57 * New authorization method for Yahoo! * Polish translation updated (Thanks Przemyslaw Sulek) + * Jabber will tell you when your buddies signed on (Thanks + Nathan Walp) version 0.56 (04/11/2002): * German translation update (Thanks Karsten Weiss) Index: acconfig.h =================================================================== RCS file: /cvsroot/gaim/gaim/acconfig.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- acconfig.h 5 Oct 2001 19:52:10 -0000 1.14 +++ acconfig.h 15 Apr 2002 03:23:08 -0000 1.15 @@ -22,3 +22,4 @@ #ifndef STATIC_PROTO_INIT #undef STATIC_PROTO_INIT #endif +#undef socklen_t Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- configure.ac 14 Apr 2002 08:16:56 -0000 1.52 +++ configure.ac 15 Apr 2002 03:23:08 -0000 1.53 @@ -41,6 +41,21 @@ AC_CHECK_FUNC(inet_aton, , [AC_CHECK_LIB(resolv, inet_aton, , [AC_ERROR(inet_aton not found)])]) +dnl Check for socklen_t (in Unix98) +AC_MSG_CHECKING(for socklen_t) +AC_TRY_COMPILE([#include <sys/types.h> +#include <sys/socket.h> +socklen_t x; +], [], [AC_MSG_RESULT(yes)], [ +AC_TRY_COMPILE([#include <sys/types> +#include <sys/socket.h> +int accept(int, struct sockaddr *, size_t *); +], [], [ +AC_MSG_RESULT(size_t) +AC_DEFINE(socklen_t, size_t)]. [ +AC_MSG_RESULT(int) +AC_DEFINE(socklen_t, int)])]) + dnl This is a bad, bad hack. I am a bad, bad man. CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include -I\$(top_srcdir)" |