Displaying 6 results from an estimated 6 matches for "ac_c_vararrays".
2019 Aug 18
1
1.3.3: powerpc portability problems
...piler to
emit code that does not run on earlier generations of POWER machines.
--
Christian "naddy" Weisgerber naddy at mips.inka.de
-------------- next part --------------
Index: configure.ac
--- configure.ac.orig
+++ configure.ac
@@ -69,7 +69,7 @@ AC_C_INLINE
AC_C_VARARRAYS
AC_C_TYPEOF
-AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h])
+AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h sys/auxv.h])
XIPH_C_BSWAP32
XIPH_C_BSWAP16
@@ -104,6 +104,8 @@ AC_CHEC...
2010 May 12
1
Autoreconf --install error
...sed autoreconf --install and
I gave the follow error msg:
configure.in:86: error: possibly undefined macro: AC_C_FLEXIBLE_ARRAY_MEMBER
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.in:87: error: possibly undefined macro: AC_C_VARARRAYS
configure.in:97: error: possibly undefined macro: AC_TYPE_LONG_DOUBLE
configure.in:98: error: possibly undefined macro: AC_TYPE_LONG_LONG_INT
autoreconf: /usr/bin/autoconf failed with exit status: 1
what's wrong?
If I use after this svn cleanup and again autoreconf --install then it's
wor...
2014 Feb 17
2
Tripplite UPS (SU10KRT3/1X) through snmp-ups (nut 2.6.5)
..../configure && make" to build it:
It says:
configure.ac:108: error: possibly undefined macro:
AC_C_FLEXIBLE_ARRAY_MEMBER
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:109: error: possibly undefined macro: AC_C_VARARRAYS
configure.ac:119: error: possibly undefined macro: AC_TYPE_LONG_DOUBLE
configure.ac:120: error: possibly undefined macro: AC_TYPE_LONG_LONG_INT
autoreconf: /usr/bin/autoconf failed with exit status: 1
I ran "autoreconf && ./configure && make" on two Linux'es: CentOS 5...
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools
based build system. There is a lot more that could and should be
done, but I tried to stay conservative for now and just resolve
some of the most obvious issues.
Max Horn (5):
configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN
autogen.sh: replace this by a simple call to autoreconf
configure: always print
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...libFLAC/stream_encoder.c | 30 +++++++--
7 files changed, 220 insertions(+), 16 deletions(-)
create mode 100644 m4/ax_check_openssl.m4
diff --git a/configure.ac b/configure.ac
index e794ca2..3b627e5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -56,7 +56,7 @@ AM_PROG_CC_C_O
AC_C_INLINE
AC_C_VARARRAYS
AC_C_TYPEOF
-
+AC_FUNC_ALLOCA
AC_CHECK_HEADERS(stdint.h)
AC_SUBST(HAVE_STDINT_H)
AC_CHECK_HEADERS(inttypes.h)
@@ -83,6 +83,8 @@ dnl check for getopt in standard library
dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
AC_CHECK_FUNCS(getopt_long, [], [])...
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...1.2.1)
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
+#Prefer whatever the current ISO standard is.
+AC_PROG_CC_STDC
+AC_USE_SYSTEM_EXTENSIONS
# Enable the generation of shared libraries under Win32
AC_LIBTOOL_WIN32_DLL
@@ -60,6 +64,7 @@ AC_HEADER_STDC
AM_PROG_CC_C_O
AC_C_INLINE
AC_C_VARARRAYS
+AC_C_TYPEOF
AC_CHECK_HEADERS(stdint.h)
AC_SUBST(HAVE_STDINT_H)
@@ -68,6 +73,8 @@ AC_SUBST(HAVE_INTTYPES_H)
AC_CHECK_HEADERS(byteswap.h)
AC_SUBST(HAVE_BYTESWAP_H)
+AC_CHECK_HEADERS([sys/param.h])
+
XIPH_C_BSWAP32
XIPH_C_FIND_ENDIAN
diff --git a/src/libFLAC/bitreader.c b/src/libFLAC/bitr...