diff options
author | Slávek Banko <[email protected]> | 2017-02-05 15:53:44 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2017-02-05 15:53:54 +0100 |
commit | c2de694af1fd380ba96911b70f84b9c4c247c1f1 (patch) | |
tree | 3462aa5f7c84972d42e726ae79f33ad999c882fe | |
parent | ee627ea71104e6524857efd7c30b090823ee2bf8 (diff) | |
download | tork-c2de694af1fd380ba96911b70f84b9c4c247c1f1.tar.gz tork-c2de694af1fd380ba96911b70f84b9c4c247c1f1.zip |
Fix detection whether the system is big endian
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 45ad86d92243ad25311db38030f3fb940ab02908)
-rw-r--r-- | src/GeoIP-1.4.0/libGeoIP/md5.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/GeoIP-1.4.0/libGeoIP/md5.c b/src/GeoIP-1.4.0/libGeoIP/md5.c index fc761cc..922f75a 100644 --- a/src/GeoIP-1.4.0/libGeoIP/md5.c +++ b/src/GeoIP-1.4.0/libGeoIP/md5.c @@ -23,6 +23,8 @@ /* Written by Ulrich Drepper <[email protected]>, 1995. */ /* Heavily modified for GnuPG by <[email protected]> */ +#include "config.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> |