Browse Source

[Minor] Try to fix endiannes detection on Solaris

Issue: #2204
tags/1.7.4
Vsevolod Stakhov 6 years ago
parent
commit
c5d65b9430
2 changed files with 7 additions and 0 deletions
  1. 6
    0
      config.h.in
  2. 1
    0
      contrib/librdns/dns_private.h

+ 6
- 0
config.h.in View File

@@ -158,6 +158,12 @@
#include <machine/endian.h>
#elif defined(__sun)
#include <sys/byteorder.h>
#ifndef LITTLE_ENDIAN
#define LITTLE_ENDIAN 1234
#endif
#ifndef BIG_ENDIAN
#define BIG_ENDIAN 4321
#endif
#ifdef _LITTLE_ENDIAN
#define BYTE_ORDER LITTLE_ENDIAN
#else

+ 1
- 0
contrib/librdns/dns_private.h View File

@@ -24,6 +24,7 @@
#ifndef DNS_PRIVATE_H_
#define DNS_PRIVATE_H_

#include "config.h"
#include "uthash.h"
#include "utlist.h"
#include "rdns.h"

Loading…
Cancel
Save