search for: ac_use_system_extensions

Displaying 20 results from an estimated 27 matches for "ac_use_system_extensions".

2017 Jul 13
3
[PATCH supermin v2] ext2: Create symlinks properly (RHBZ#1470157).
The ext2 filesystem on disk format has two ways to store symlinks. For symlinks >= 60 bytes in length, they are stored as files (so-called "slow symlinks"). For shorter symlinks the symlink is stored in the inode ("fast symlinks"). Previously we only created slow symlinks even if they are shorter than 60 bytes. This didn't matter until recently, when a change went
2017 Jul 12
3
[PATCH supermin] ext2: Create symlinks properly (RHBZ#1470157).
The ext2 filesystem on disk format has two ways to store symlinks. For symlinks >= 60 bytes in length, they are stored as files (so-called "slow symlinks"). For shorter symlinks the symlink is stored in the inode ("fast symlinks"). Previously we only created slow symlinks even if there are shorter than 60 bytes. This didn't matter until recently, when a change went
2018 Aug 14
5
[PATCH 1/4] build: Use LT_INIT in configure.ac.
Avoids the warning: libtoolize: Remember to add 'LT_INIT' to configure.ac. This is the new name for AC_PROG_LIBTOOL, so I removed that. However to use this macro we must enable AC_USE_SYSTEM_EXTENSIONS. (AC_GNU_SOURCE was removed back in 2011). --- configure.ac | 5 +++++ m4/guestfs-progs.m4 | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9cc3f1a99..f04d77848 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,8 @@ m4_define([HE...
2019 Aug 27
0
[nbdkit PATCH 1/2] include: Expose nbdkit version information to public
...OF # SUCH DAMAGE. -AC_INIT([nbdkit], [1.13.9]) +m4_define([NBDKIT_VERSION_MAJOR], [1]) +m4_define([NBDKIT_VERSION_MINOR], [13]) +m4_define([NBDKIT_VERSION_MICRO], [9]) +AC_INIT([nbdkit], + NBDKIT_VERSION_MAJOR.NBDKIT_VERSION_MINOR.NBDKIT_VERSION_MICRO) AC_CONFIG_MACRO_DIR([m4]) m4_ifdef([AC_USE_SYSTEM_EXTENSIONS],[], [m4_define([AC_USE_SYSTEM_EXTENSIONS],[])]) @@ -45,6 +49,14 @@ AC_CANONICAL_HOST AC_PROG_SED +dnl Expose version information to the public headers +[NBDKIT_]VERSION_MAJOR=NBDKIT_VERSION_MAJOR +[NBDKIT_]VERSION_MINOR=NBDKIT_VERSION_MINOR +[NBDKIT_]VERSION_MICRO=NBDKIT_VERSION_MICRO...
2012 Dec 06
2
[PATCH 0/2] Two build fixes for libldm
Two simple build fixes for libldm. Well, the first isn't a build fix as such, but a code improvement. Rich.
2014 Feb 13
5
[PATCH 1/2] nbdkit: Work around what seems like an bug in automake 1.14
...NIT_AUTOMAKE(foreign) dnl ..." seems to trigger Debian bug#738716 --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ee9d377..df31014 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,8 @@ AC_CONFIG_MACRO_DIR([m4]) AC_USE_SYSTEM_EXTENSIONS AC_SYS_LARGEFILE -AM_INIT_AUTOMAKE(foreign) dnl NB: Do not [quote] this parameter. +dnl NB: Do not [quote] this parameter. +AM_INIT_AUTOMAKE(foreign) LT_INIT dnl Check for basic C environment. -- 1.9.0.rc3
2019 Aug 27
3
[nbdkit PATCH 0/2] RFC: tighter filter versions
This is not intended for v1.14. In fact, we may decide that the second patch is too gross, although the first one still seems like a useful improvement in isolation. I will also point out that all our filters are in-tree, and set the user-controlled field .version to the current release string. We could replace the second patch with a simpler one that just checks ._api_version as an int (as
2015 Apr 17
0
[ANNOUNCE] xhost 1.0.7
The xhost command modifies or reports the X server access control list. Alan Coopersmith (3): Add AC_USE_SYSTEM_EXTENSIONS to expose non-standard extensions configure: Drop AM_MAINTAINER_MODE xhost 1.0.7 Colin Walters (1): autogen.sh: Honor NOCONFIGURE=1 git tag: xhost-1.0.7 http://xorg.freedesktop.org/archive/individual/app/xhost-1.0.7.tar.bz2 MD5: f5d490738b148cb7f2fe760f40f92516 SHA1: 8abfb0554...
2017 Jan 29
0
[ANNOUNCE] xconsole 1.0.7
Alan Coopersmith (3): configure: Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1 config: add AC_USE_SYSTEM_EXTENSIONS Emil Velikov (1): autogen.sh: use quoted string variables Matt Turner (1): xconsole 1.0.7 Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish git tag: xconsole-1.0.7 https://xorg.freede...
2018 Feb 26
0
[ANNOUNCE] libxshmfence 1.3
...bxshmfence 1.3 Michał Górny (1): Fix missing <limits.h> include for HAVE_UMTX branch of futex Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish Ross Burton (1): configure.ac: call AC_USE_SYSTEM_EXTENSIONS git tag: libxshmfence-1.3 https://xorg.freedesktop.org/archive/individual/lib/libxshmfence-1.3.tar.bz2 MD5: 42dda8016943dc12aff2c03a036e0937 libxshmfence-1.3.tar.bz2 SHA1: 3472218fc0e8ee8183533d22dbcd4bbe90bf3ab8 libxshmfence-1.3.tar.bz2 SHA256: b884300d26a14961a076fbebc762a39831cb75f92bed5ccf...
2012 Jun 02
1
[PATCH 3/3] Fix build with automake 1.12
...7bf11 100644 --- a/configure.ac +++ b/configure.ac @@ -25,10 +25,10 @@ AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign -Wall tar-pax no-dist-gzip dist-xz subdir-objects]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - #Prefer whatever the current ISO standard is. AC_PROG_CC_STDC AC_USE_SYSTEM_EXTENSIONS +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) LT_INIT([win32-dll disable-static pic-only]) AM_PROG_AS AC_PROG_CXX -- 1.7.10.3
2013 May 08
1
[PATCH] opusfile configury fixes.
...en (using autoconf-2.63, newer versions are _possibly_ OK with the existing syntax). Patch is below. --- configure.ac~ +++ configure.ac @@ -2,16 +2,15 @@ AC_INIT([opusfile], m4_esyscmd([doc/git-version.sh])) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +AC_CONFIG_MACRO_DIR([m4]) + AC_USE_SYSTEM_EXTENSIONS AC_SYS_LARGEFILE AM_INIT_AUTOMAKE([1.11 foreign]) AM_MAINTAINER_MODE([enable]) -LT_INIT - -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - -AC_CONFIG_MACRO_DIR([m4]) dnl Library versioning for libtool. dnl Please update these for releases. @@ -29,6 +28,10 @@ AC_SUBST(OP_LT_REVISION)...
2015 Mar 21
0
[ANNOUNCE] libXdmcp 1.1.2
...Ensure ARRAY* structs are zero'ed out when oversize values are passed Ensure ARRAYofARRAY8 pointers are initialized to NULL Also reject requests to allocate negative sized amounts of memory configure: Drop AM_MAINTAINER_MODE autogen.sh: Honor NOCONFIGURE=1 Add AC_USE_SYSTEM_EXTENSIONS to expose arc4random() interfaces in headers libXdmcp 1.1.2 Matthieu Herrb (1): Use arc4random when available to produce the XDM-AUTHENTICATION1 key git tag: libXdmcp-1.1.2 http://xorg.freedesktop.org/archive/individual/lib/libXdmcp-1.1.2.tar.bz2 MD5: 18aa5c1279b01f9d18e3299969665b2...
2008 Sep 18
2
vorbis-tools 1.3.0 BETA - Help testing.
...quick release. Here's the changelog so far: * Fixed an error in configure.ac; --with-speex/flac work again (#1319) * Corrected problems in the Visual Studio project files * Updated po files from the Translation Project * Added new en_GB.po, eo.po, sk.po and vi.po translation files * Added AC_USE_SYSTEM_EXTENSIONS to configure.ac; no more autogen.sh warnings * Corrected SUBLANG values in intl/localename.c (#1415) * Modify -v to -V on oggenc and oggdec for consistency (#1112) * Fix for utf8_decode in Windows; improves behavior in vorbiscomment (#268) * ogg123: backported fix from libfishsound to patch the...
2008 Jun 01
3
Failed building 3.0.30 for tru64 4.0F
Dear friends, I failed to buld samba 3.0.30 for tru64unix 4.0F. I am curently locked to this os version due to other production software. We currently run Samba 2.2.8a but we were requested to upgrade by our network group. I downloaded 3.3.30 and did $ cd source $ ./configure no warnings or errors as far as I could see, except checking for replacing readdir using getdirentries()...
2017 Mar 01
3
[PATCH supermin 0/2] Use AC_HEADER_MAJOR to find definitions of major, minor, makedev.
Quite a complex fix in the end, see the comment in the second commit. Rich.
2019 Jul 03
1
[libnbd PATCH] tests: Make errors more robust under load
When run under valgrind, the 'errors' test would sometimes fail because a single NBD_CMD_WRITE managed to actually send() the entire packet to the server without blocking the state machine. To make things more robust, switch to a server which is serialized (memory is parallel, but sh is serial), and which intentionally does not read a second command until the first is processed, then
2012 Dec 03
4
[PATCH 1/5] Remove old GNU-stack sections from nasm files.
They are not needed since the section is defined in nasm.h. --- src/libFLAC/ia32/bitreader_asm.nasm | 4 ---- src/libFLAC/ia32/cpu_asm.nasm | 4 ---- src/libFLAC/ia32/fixed_asm.nasm | 4 ---- src/libFLAC/ia32/lpc_asm.nasm | 4 ---- src/libFLAC/ia32/stream_encoder_asm.nasm | 4 ---- 5 files changed, 20 deletions(-) diff --git
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...autogen.sh new file mode 100755 index 0000000..e31a822 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +autoreconf -is diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..3f4e6f4 --- /dev/null +++ b/configure.ac @@ -0,0 +1,66 @@ +AC_INIT([libopusfile], [0.0]) + +AC_USE_SYSTEM_EXTENSIONS +AC_SYS_LARGEFILE + +AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2 no-dist-gzip]) +LT_INIT + +AC_ARG_ENABLE([assert], + AS_HELP_STRING([--enable-assert], [Enable assertions in code]),, + enable_assert=no) + +AS_IF([test "x$enable_assert" = "xyes"], [ + AC_DEFINE([OP_ENABLE_ASSERT...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...ile.la + +example: $(EXTRA_PROGRAMS) + +debug: + $(MAKE) CFLAGS="${CFLAGS} -O0 -ggdb -DOP_ENABLE_ASSERTIONS" all example diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..3f4e6f4 --- /dev/null +++ b/configure.ac @@ -0,0 +1,66 @@ +AC_INIT([libopusfile], [0.0]) + +AC_USE_SYSTEM_EXTENSIONS +AC_SYS_LARGEFILE + +AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2 no-dist-gzip]) +LT_INIT + +AC_ARG_ENABLE([assert], + AS_HELP_STRING([--enable-assert], [Enable assertions in code]),, + enable_assert=no) + +AS_IF([test "x$enable_assert" = "xyes"], [ + AC_DEFINE([OP_ENABLE_ASSERT...