mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 06:51:08 +01:00
[svn] Hack to allow some more warnings, already present in configure (?).
This commit is contained in:
parent
64f2a7eb2c
commit
5c5d24f088
3 changed files with 21 additions and 3 deletions
18
ChangeLog
18
ChangeLog
|
@ -1,3 +1,21 @@
|
||||||
|
jilles 2007/03/29 20:03:06 UTC (20070329-3319)
|
||||||
|
Log:
|
||||||
|
Merge old trunk r2077,r2079:
|
||||||
|
- Move closing of servlink control fd to close_connection()
|
||||||
|
instead of doing it in exit_local_server(), and make sure
|
||||||
|
we first close the data fd and then the control fd.
|
||||||
|
- Have servlink process ready fds in order net, data, ctrl
|
||||||
|
instead of ctrl, data, net. This seems to fix the problem
|
||||||
|
that squit reasons do not show up on the other side of a
|
||||||
|
ziplink (by making it send any final SQUIT and/or ERROR
|
||||||
|
before noticing the closed control fd).
|
||||||
|
|
||||||
|
|
||||||
|
Changes: Modified:
|
||||||
|
+1 -1 trunk/servlink/io.c (File Modified)
|
||||||
|
+3 -12 trunk/src/client.c (File Modified)
|
||||||
|
|
||||||
|
|
||||||
jilles 2007/03/28 23:17:06 UTC (20070328-3317)
|
jilles 2007/03/28 23:17:06 UTC (20070328-3317)
|
||||||
Log:
|
Log:
|
||||||
Don't show the UID if a TS6 server sends a kick with
|
Don't show the UID if a TS6 server sends a kick with
|
||||||
|
|
4
aclocal.m4
vendored
4
aclocal.m4
vendored
|
@ -1,4 +1,4 @@
|
||||||
# $Id: aclocal.m4 918 2006-02-23 18:17:21Z nenolod $ - aclocal.m4 - Autoconf fun...
|
# $Id: aclocal.m4 3321 2007-03-30 23:32:43Z jilles $ - aclocal.m4 - Autoconf fun...
|
||||||
AC_DEFUN([AC_DEFINE_DIR], [
|
AC_DEFUN([AC_DEFINE_DIR], [
|
||||||
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
test "x$prefix" = xNONE && prefix="$ac_default_prefix"
|
||||||
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
||||||
|
@ -34,7 +34,7 @@ AC_DEFUN([CHARYBDIS_C_GCC_TRY_FLAGS],[
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
int main(void);
|
int main(void);
|
||||||
],[
|
],[
|
||||||
strcmp("a","b"); fprintf(stdout,"test ok\n");
|
(void)strcmp("a","b"); fprintf(stdout,"test ok\n");
|
||||||
], [$2=yes], [$2=no])
|
], [$2=yes], [$2=no])
|
||||||
CFLAGS="${oldcflags}"])
|
CFLAGS="${oldcflags}"])
|
||||||
if test "x$$2" = xyes; then
|
if test "x$$2" = xyes; then
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define SERNO "20070328-3317"
|
#define SERNO "20070329-3319"
|
||||||
|
|
Loading…
Reference in a new issue