diff options
author | Nikias Bassen | 2020-01-05 03:38:27 +0100 |
---|---|---|
committer | Nikias Bassen | 2020-01-05 03:38:27 +0100 |
commit | db4dec661d9a9ae0886fb1cf9a2ffa7be3d34184 (patch) | |
tree | 24cff9c76f4199e094250322e663faac7c1a8672 /src | |
parent | 49d2c6d8051c84ec0ba6db1943a1b7369a0f2741 (diff) | |
download | libimobiledevice-db4dec661d9a9ae0886fb1cf9a2ffa7be3d34184.tar.gz libimobiledevice-db4dec661d9a9ae0886fb1cf9a2ffa7be3d34184.tar.bz2 |
Define ETIMEDOUT if required
Diffstat (limited to 'src')
-rw-r--r-- | src/idevice.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/idevice.c b/src/idevice.c index 31a8d3a..6b6a716 100644 --- a/src/idevice.c +++ b/src/idevice.c @@ -48,6 +48,10 @@ #include <windows.h> #endif +#ifndef ETIMEDOUT +#define ETIMEDOUT 138 +#endif + #ifdef HAVE_OPENSSL #if OPENSSL_VERSION_NUMBER < 0x10100000L || \ |