remove hack for debian etch limits.h

The debian etch distro was end-of-life a long time ago so we no
longer need the ULLONG_MAX hack. In any case gnulib now provides
an equivalent fix by default, and so our definition now triggers
syntax-check rule failure

src/internal.h:#    define ULLONG_MAX   ULONG_LONG_MAX
maint.mk: define the above via some gnulib .h file
maint.mk:843: recipe for target 'sc_prohibit_always-defined_macros' failed

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
(cherry picked from commit 31020664e9614ad0e0057da159379d7e0cd5eb12)
This commit is contained in:
Daniel P. Berrange 2017-05-15 17:00:09 +01:00 committed by Cole Robinson
parent a72540f733
commit 70b7b6918f

View File

@ -114,11 +114,6 @@
# define __GNUC_PREREQ(maj, min) 0
# endif
/* Work around broken limits.h on debian etch */
# if defined _GCC_LIMITS_H_ && ! defined ULLONG_MAX
# define ULLONG_MAX ULONG_LONG_MAX
# endif
# endif /* __GNUC__ */
/**