diff options
| author | Jani Nikula <jani@nikula.org> | 2017-01-06 23:29:28 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-01-08 10:50:49 -0400 |
| commit | 5a957c3f33e6addaeb61a4bc4bddf3959acddcd1 (patch) | |
| tree | f01013b431f33232b5595d3f41af4430e74d8ee9 /configure | |
| parent | c906da9f60639594fb9c6b9d133aca9c49b3f586 (diff) | |
build & util: drop byte order configure check and endian util header
With the removal of the embedded libsha1, we lost the first and last
user of the platform byte order checks. Remove them from configure,
and remove the endian util header.
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 17 |
1 files changed, 1 insertions, 16 deletions
@@ -680,17 +680,6 @@ else EOF fi -printf "Checking byte order... " -cat> _byteorder.c <<EOF -#include <stdio.h> -#include <stdint.h> -uint32_t test = 0x34333231; -int main() { printf("%.4s\n", (const char*)&test); return 0; } -EOF -${CC} ${CFLAGS} _byteorder.c -o _byteorder > /dev/null 2>&1 -util_byte_order=$(./_byteorder) -echo $util_byte_order - rm -f _byteorder _byteorder.c if [ $errors -gt 0 ]; then @@ -1012,9 +1001,6 @@ prefix = ${PREFIX} # LIBDIR_IN_LDCONFIG value below is still set correctly. libdir = ${LIBDIR:=\$(prefix)/lib} -# byte order within a 32 bit word. 1234 = little, 4321 = big, 0 = guess -UTIL_BYTE_ORDER = ${util_byte_order} - # Whether libdir is in a path configured into ldconfig LIBDIR_IN_LDCONFIG = ${libdir_in_ldconfig} @@ -1167,8 +1153,7 @@ COMMON_CONFIGURE_CFLAGS = \\ -DHAVE_XAPIAN_COMPACT=\$(HAVE_XAPIAN_COMPACT) \\ -DSILENCE_XAPIAN_DEPRECATION_WARNINGS \\ -DHAVE_XAPIAN_FIELD_PROCESSOR=\$(HAVE_XAPIAN_FIELD_PROCESSOR) \\ - -DHAVE_XAPIAN_DB_RETRY_LOCK=\$(HAVE_XAPIAN_DB_RETRY_LOCK) \\ - -DUTIL_BYTE_ORDER=\$(UTIL_BYTE_ORDER) + -DHAVE_XAPIAN_DB_RETRY_LOCK=\$(HAVE_XAPIAN_DB_RETRY_LOCK) CONFIGURE_CFLAGS = \$(COMMON_CONFIGURE_CFLAGS) |
