X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=m4%2Fax_endian.m4;fp=m4%2Fax_endian.m4;h=0000000000000000000000000000000000000000;hb=4a35931d46dadb5d664389b0fbe1498c5567e15f;hp=0dfbcd52d48d01be9299baf6651bb5206a1df93b;hpb=cbec7a4b9613b8ae3807539fae3a29ed8aff4984;p=awesomized%2Flibmemcached diff --git a/m4/ax_endian.m4 b/m4/ax_endian.m4 deleted file mode 100644 index 0dfbcd52..00000000 --- a/m4/ax_endian.m4 +++ /dev/null @@ -1,35 +0,0 @@ -# https://github.com/BrianAker/ddm4 -# =========================================================================== -# -# SYNOPSIS -# -# AX_ENDIAN() -# -# DESCRIPTION -# -# Generate to defines describing endian. -# -# LICENSE -# -# Copyright (c) 2012 Brian Aker -# -# Copying and distribution of this file, with or without modification, are -# permitted in any medium without royalty provided the copyright notice -# and this notice are preserved. This file is offered as-is, without any -# warranty. - -#serial 1 - -AC_DEFUN([AX_ENDIAN],[ - AC_C_BIGENDIAN([ - AC_DEFINE([WORDS_BIGENDIAN],[1],[machine is big-endian]) - AC_DEFINE([ENDIAN_BIG],[1],[machine is big-endian]) - AC_DEFINE([ENDIAN_LITTLE],[0],[machine is little-endian])],[ - ],[ - AC_DEFINE([WORDS_BIGENDIAN],[0],[machine is big-endian]) - AC_DEFINE([ENDIAN_BIG],[0],[machine is big-endian]) - AC_DEFINE([ENDIAN_LITTLE],[1],[machine is little-endian]) - ],[ - AC_MSG_ERROR([unable to determine endian]) - ]) - ])