1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-13 00:04:19 +00:00
This commit is contained in:
jules 2008-10-03 14:48:20 +00:00
parent 2cc6b77292
commit 63c818e1fa

View file

@ -38,19 +38,20 @@
#endif
#else
#ifndef LINUX
#include <Carbon/Carbon.h>
#ifdef LINUX
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/errno.h>
#include <unistd.h>
#include <fcntl.h>
#include <netinet/in.h>
#else
#include <CoreServices/CoreServices.h>
#endif
#include <sys/types.h>
#include <netdb.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/errno.h>
#include <netinet/tcp.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <unistd.h>
#endif
#include "../../basics/juce_StandardHeader.h"