Drop requirement for socket library

The socket(2) library function is only required on Linux, and does not
require special linker arguments to work.

Closes #2360.
This commit is contained in:
David Adam
2017-01-09 22:01:45 +08:00
parent 5eaccf91e2
commit 4bc220f349
2 changed files with 1 additions and 3 deletions

View File

@@ -16,10 +16,8 @@
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h> // IWYU pragma: keep
#endif
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h> // IWYU pragma: keep
#include <sys/types.h>
// We need the sys/file.h for the flock() declaration on Linux but not OS X.
#include <sys/file.h> // IWYU pragma: keep
// We need the ioctl.h header so we can check if SIOCGIFHWADDR is defined by it so we know if we're
@@ -866,6 +864,7 @@ void env_universal_t::parse_message_internal(const wcstring &msgstr, var_table_t
#ifdef SIOCGIFHWADDR
// Linux
#include <sys/socket.h>
#include <net/if.h>
static bool get_mac_address(unsigned char macaddr[MAC_ADDRESS_MAX_LEN],
const char *interface = "eth0") {