search for: ac_c_typeof

Displaying 7 results from an estimated 7 matches for "ac_c_typeof".

2019 Aug 18
1
1.3.3: powerpc portability problems
...de 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_CHECK_TYPES(sockl...
2015 Nov 19
0
PATCH: Sense if git should be used (for tarball) and if typeof needs to be __typeof__
...se ChangeLog to determine the driver date to use. NB 'git log' should probably already be 'git log -1' 2. When using strict ISO C compilers, such as if using -std=c99 instead of for example -std=gnu99, typeof is not a valid keyword and __typeof__ should be used. Use AC_C_TYPEOF to automatically define a macro if necessary. cheers -- Richard PALO -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Sense-if-git-should-be-used-for-tarball-and-if-typeo.patch Type: text/x-patch Size: 1385 bytes Desc: not available URL: <http://lists.f...
2015 Nov 19
0
PATCH: Sense if git should be used (for tarball) and if typeof needs, to be __typeof__
...se ChangeLog to determine the driver date to use. NB 'git log' should probably already be 'git log -1' 2. When using strict ISO C compilers, such as if using -std=c99 instead of for example -std=gnu99, typeof is not a valid keyword and __typeof__ should be used. Use AC_C_TYPEOF to automatically define a macro if necessary. cheers -- Richard PALO -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Sense-if-git-should-be-used-for-tarball-and-if-typeo.patch Type: text/x-patch Size: 1383 bytes Desc: not available URL: <http://lists.f...
2015 Nov 19
0
PATCH: Sense if git should be used (for tarball) and if typeof needs to be __typeof__
...se ChangeLog to determine the driver date to use. NB 'git log' should probably already be 'git log -1' 2. When using strict ISO C compilers, such as if using -std=c99 instead of for example -std=gnu99, typeof is not a valid keyword and __typeof__ should be used. Use AC_C_TYPEOF to automatically define a macro if necessary. cheers -- Richard PALO -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Sense-if-git-should-be-used-for-tarball-and-if-typeo.patch Type: text/x-patch Size: 1384 bytes Desc: not available URL: <http://lists....
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...ncoder.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, [], []) +AX_CHECK_OP...
2012 Apr 05
2
[PATCH 2/2] V2: Use a single definition of MIN and MAX in sources
...([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/bitreader.c index...
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