Browse Source

Fix bridge compilation on Windows

tags/v0.6.0
Andrew Belt 7 years ago
parent
commit
0aa92f2e9a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/bridge.cpp

+ 1
- 1
src/bridge.cpp View File

@@ -2,11 +2,11 @@
#include "util/common.hpp"
#include "dsp/ringbuffer.hpp"

#include <unistd.h>
#ifdef ARCH_WIN
#include <winsock2.h>
#include <ws2tcpip.h>
#else
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>


Loading…
Cancel
Save