Merge of rev.103.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.4.x@104 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez
2006-12-23 21:06:48 +00:00
parent 8da593fae3
commit 9c6ea48583
6 changed files with 9 additions and 4 deletions

View File

@@ -1,3 +1,7 @@
2006-12-23 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* David Maass's patch for VStudio2005 compilation failure.
2006-12-23 Marcelo Jimenez <mroberto(at)users.sourceforge.net> 2006-12-23 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Erik Johansson's patch for invalid xml output. * Erik Johansson's patch for invalid xml output.

1
THANKS
View File

@@ -8,6 +8,7 @@ exempt of errors.
- Arno Willig - Arno Willig
- Chaos - Chaos
- David Maass
- Erik Johansson - Erik Johansson
- Eric Tanguy - Eric Tanguy
- Erwan Velu - Erwan Velu

View File

@@ -45,7 +45,7 @@
#else #else
#include <winsock2.h> #include <winsock2.h>
#define socklen_t int typedef int socklen_t;
#define EAFNOSUPPORT 97 #define EAFNOSUPPORT 97
#endif #endif
#include "unixutil.h" #include "unixutil.h"

View File

@@ -7,7 +7,7 @@
#include <errno.h> #include <errno.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#define socklen_t int typedef int socklen_t;
#define EAFNOSUPPORT 97 #define EAFNOSUPPORT 97
/* /*

View File

@@ -40,7 +40,7 @@
#else #else
#define XINLINE #define XINLINE
#define socklen_t int typedef int socklen_t;
#define EAFNOSUPPORT 97 #define EAFNOSUPPORT 97
#endif #endif

View File

@@ -28,7 +28,7 @@
#include <errno.h> #include <errno.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#define socklen_t int typedef int socklen_t;
#define EAFNOSUPPORT 97 #define EAFNOSUPPORT 97
/* /*
* WARNING: Don't even consider trying to compile this on a system where * WARNING: Don't even consider trying to compile this on a system where