ObjFW  Check-in [f96fd9d551]

Overview
Comment:Include socket.h before socket_helpers.h
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f96fd9d5510af5c9bed009538c1139c18d43293239496887c6943e24316c2ff2
User & Date: js on 2014-03-05 00:00:52
Other Links: manifest | tags
Context
2014-03-05
00:12
Fix compilation for Wii check-in: 54a34ebd9c user: js tags: trunk
00:00
Include socket.h before socket_helpers.h check-in: f96fd9d551 user: js tags: trunk
2014-03-04
23:53
resolver.m: Fix locking check-in: 898f8c7072 user: js tags: trunk
Changes

Modified src/exceptions/common.h from [fcb5839156] to [173fdc42a2].

16
17
18
19
20
21
22

23
24
25
26
27
28
29

#include <string.h>
#include <errno.h>

#import "macros.h"

#ifdef OF_HAVE_SOCKETS

# include "socket_helpers.h"
#endif

#ifndef _WIN32
# define GET_ERRNO	errno
# ifdef OF_HAVE_SOCKETS
#  if !defined(HAVE_GETADDRINFO) && defined(HAVE_H_ERRNO)







>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

#include <string.h>
#include <errno.h>

#import "macros.h"

#ifdef OF_HAVE_SOCKETS
# include "socket.h"
# include "socket_helpers.h"
#endif

#ifndef _WIN32
# define GET_ERRNO	errno
# ifdef OF_HAVE_SOCKETS
#  if !defined(HAVE_GETADDRINFO) && defined(HAVE_H_ERRNO)