mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 16:25:43 +01:00
Make compilation on DragonFly work
This commit is contained in:
parent
2a024ac86a
commit
a26a005acf
@ -31,6 +31,7 @@ Bugfix
|
|||||||
big-endian platform when size was not an integer number of limbs
|
big-endian platform when size was not an integer number of limbs
|
||||||
* Fix dependencies issues in X.509 test suite.
|
* Fix dependencies issues in X.509 test suite.
|
||||||
* Some parts of ssl_tls.c were compiled even when the module was disabled.
|
* Some parts of ssl_tls.c were compiled even when the module was disabled.
|
||||||
|
* Fix detection of DragonflyBSD in net.c (found by Markus Pfeiffer)
|
||||||
|
|
||||||
= PolarSSL 1.3.6 released on 2014-04-11
|
= PolarSSL 1.3.6 released on 2014-04-11
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ static int wsa_init_done = 0;
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || \
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || \
|
||||||
defined(__DragonflyBSD__)
|
defined(__DragonFly__)
|
||||||
#include <sys/endian.h>
|
#include <sys/endian.h>
|
||||||
#elif defined(__APPLE__) || defined(HAVE_MACHINE_ENDIAN_H) || \
|
#elif defined(__APPLE__) || defined(HAVE_MACHINE_ENDIAN_H) || \
|
||||||
defined(EFIX64) || defined(EFI32)
|
defined(EFIX64) || defined(EFI32)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/perl
|
#!/usr/bin/env perl
|
||||||
#
|
#
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
Loading…
Reference in New Issue
Block a user