search for: ac_sys_largefile

Displaying 20 results from an estimated 41 matches for "ac_sys_largefile".

2001 Sep 27
2
openssh-2.9.9p2, AC_SYS_LARGEFILE, SCO, and HPUX
openssh-2.9.9p2/configure.in says: # Disabled until it works on SCO and HPUX #AC_SYS_LARGEFILE As an autoconf maintainer I'd like to fix this. Can you please explain what's broken on SCO and HPUX? I'm puzzled by the comment, as AC_SYS_LARGEFILE is a feature introduced in autoconf 2.50, whereas openssh-2.9.9p2/configure was built with autoconf 2.13. Anyway, some older GNU soft...
2001 Oct 30
1
[PATCH] for solaris 2.6
I didn't see this one applied to the repository yet. It may not be the best patch possible... basic problem is that _LARGEFILE64_SOURCE needs to be defined on Solaris 2.6 if AC_SYS_LARGEFILE ends up doing a '#define _FILE_OFFSET_BITS 64' If _FILE_OFFSET_BITS == 64, then <sys/resource.h> will define a 'struct rlimit64' but NOT define a 'struct rlimit' leading to a failure to compile ssh.c because 'struct rlimit' is not a complete type. When _LARGE...
2001 Oct 24
4
snapshot problems on Mac OS X
...I am by no means an autoconf expert, but here is what happens after a "autoreconf": autoconf: Undefined macros: configure.in:1291:AC_CHECK_MEMBERS([struct stat.st_blksize]) configure.in:2168:AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) configure.in:26:AC_SYS_LARGEFILE configure.in:4:AC_CONFIG_SRCDIR([ssh.c]) /usr/bin/autoheader: Symbol `socklen_t' is not covered by /usr/share/autoconf/acconfig.h ./acconfig.h next, the results from running "configure": creating cache ./config.cache ./configure: command not found: AC_CONFIG_SRCDIR(ssh.c) [606] ....
2001 May 21
1
2.9p1 patches
1. Add support for files >2GB via Paul Eggert's AC_SYS_LARGEFILE macro. This macro is now part of autoconf 2.50. Because of this, "config.h" needs to be included before system headers to get the appropriate defines for LFS support. openbsd-compat/sigact.c configure.in acinclude.m4 2. AIX defines TILDE in <sys/ioctl.h>. Ren...
2008 May 02
2
1.1rc4 file-offset-size unsupported?
Is --with-file-offset-size no longer supported in 1.1? # ./configure \ --prefix=/usr/local/dovecot-1.1 \ --with-mysql \ --with-file-offset-size=32 \ --with-ioloop=best \ --with-pop3d \ --with-ssl \ --with-deliver \ ... checking for _FILE_OFFSET_BITS value needed for large files... 64 ... Install prefix ...................... : /usr/local/dovecot-1.1 File
2014 Feb 13
5
[PATCH 1/2] nbdkit: Work around what seems like an bug in automake 1.14
......" 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
2024 Jan 08
0
[ANNOUNCE] imake 1.0.10
...allow imake to work with files whose timestamps are later than January 19, 2038, but this has not been tested, and we sincerely hope that no one will actually still be using imake 14 years from now. Alan Coopersmith (4): gitlab CI: stop requiring Signed-off-by in commits configure: Use AC_SYS_LARGEFILE to enable large file support Fix -Wincompatible-pointer-types warning (Issue #3) imake 1.0.10 git tag: imake-1.0.10 https://xorg.freedesktop.org/archive/individual/util/imake-1.0.10.tar.gz SHA256: 9bbe76b6bb39caf34a437f50010f58a13d7dd6d512e00e765a2b7883e6ae613c imake-1.0.10.tar.gz SH...
2024 Jan 20
0
[ANNOUNCE] xbiff 1.0.5
...it build of xbiff to work with files whose timestamps are later than January 19, 2038, but this has not been tested. Alan Coopersmith (12): gitlab CI: add a basic build test Build xz tarballs instead of bzip2 gitlab CI: stop requiring Signed-off-by in commits configure: Use AC_SYS_LARGEFILE to enable large file support Use XtAsprintf instead of manual mallocing and copying of strings Combine usage message into a single string Add -version option Fix -version handling to not require opening a display first Add -help option List which options were unr...
2024 Mar 10
0
[ANNOUNCE] iceauth 1.0.10
...he new GNU autoconf 2.72, this also adds a --enable-year2038 configure flag which may allow iceauth to work with files whose timestamps are later than January 19, 2038, but this has not been tested. Alan Coopersmith (7): gitlab CI: stop requiring Signed-off-by in commits configure: Use AC_SYS_LARGEFILE to enable large file support Use reallocarray if available, provide local version if not Silence -Wanalyzer-out-of-bounds warnings from gcc 13 Variable scope reductions, as suggested by cppcheck unifdef __UNIXOS2__ iceauth 1.0.10 git tag: iceauth-1.0.10 https://xorg....
2002 Mar 19
1
[Bug 175] File size limit for SCP
http://bugzilla.mindrot.org/show_bug.cgi?id=175 ------- Additional Comments From markus at openbsd.org 2002-03-20 07:43 ------- there is no limit, unless scp has a bug. what versions are you talking about? what systems? does the system have different APIs for 64bit offsets ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2013 May 08
1
[PATCH] opusfile configury fixes.
...ewer 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) AC_SUBST(OP_LT_A...
2004 Jul 19
2
large Xapian index files
Hello Arjen van der Meijden, on xapian-discuss you mentioned that your Xapian installation has got up to 15 GB database size. Can you tell me about the largest index filesize you got? According to <http://xapian.org/docs/scalability.html>, it seems that the quartz database filesize is limited only by the OS and file system. Can you confirm from your experience that there is no 2GB limit?
2007 Apr 15
2
Patch : Fix pointer cast warning
...ize The patch below fixes this warning by detecting the sizeof (void*) at configure time and then using that for a little pointer arithmetic. Cheers, Erik diff -u -r1.141 configure.in --- configure.in 14 Feb 2007 06:12:24 -0000 1.141 +++ configure.in 15 Apr 2007 07:06:43 -0000 @@ -41,6 +41,8 @@ AC_SYS_LARGEFILE AC_FUNC_FSEEKO +AC_CHECK_SIZEOF(void*,0) + #@@@ new name is AC_CONFIG_HEADERS AM_CONFIG_HEADER(config.h) diff -u -r1.19 memory.c --- src/libFLAC/memory.c 2 Feb 2007 06:58:22 -0000 1.19 +++ src/libFLAC/memory.c 15 Apr 2007 07:06:44 -0000 @@ -38,25 +38,26 @@ void *FLAC__memory_alloc_aligned...
2019 Jun 17
0
[ANNOUNCE] libX11 1.6.8
...r headers we include for FIONREAD Remove makekeys dependency on X headers Use EXEEXT_FOR_BUILD for makekeys Avoid using libtool wrapper for makekeys Josh Triplett (1): compose.dir.pre: Give the C.UTF-8 locale a full set of UTF-8 compose sequences Matt Turner (2): Use AC_SYS_LARGEFILE libX11 1.6.8 Matthias Dieter Wallnöfer (5): locale.dir.pre - fix the de_LI latin15 locale Update locale.alias.pre - introduce the de_LI aliases (equivalent to de_CH) compose.dir.pre - add de_IT locale locale.dir.pre - add the de_IT locale locale.alias.pre - add...
2015 Jun 16
0
[ANNOUNCE] xorg-server 1.17.2
...ack_subimage when available glamor: do not check for gl errors in glamor_build_program glamor: Use GL_FRAMEBUFFER instead of GL_READ_FRAMEBUFFER glamor: GL_TEXTURE_MAX_LEVEL is not available on GLES2 Michal Srb (1): Expose GetMaster to modules. Michel Dänzer (2): Add AC_SYS_LARGEFILE defines to dix-config.h modesetting: Include dix-config.h from dumb_bo.c Olivier Fourdan (4): ephyr: Fail if glamor is requested but not usable xwayland: Add dependency on glamor libs glamor: check max native ALU instructions dix: Fix image byte order on big endian ha...
2020 Feb 13
2
[PATCH nbdkit 1/2] vddk: Delay loading VDDK until config_complete.
We were previously dlopen-ing it in the load() method. This is very early and in particular means that the only possible way to configure where we find the library is through environment variables and not through config parameters. Also it's not necessary as we don't call any functions from the library (such as VixDiskLib_InitEx) until config_complete. This change is neutral refactoring
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.
2001 Nov 08
2
sshd can't change expired password on Sol8 with Openssh3.0p1 + PAM
The reason I ask about the patches is because I think the problem you're seeing might actually be a bug in pam_unix.so.1 - it's something to try at least. We don't use password aging and we don't use the "passwd" command to change passwords, so we haven't run into this at our site even though we probably don't have pam_unix.so patched up. Also, the passwd
2020 Feb 13
0
[PATCH nbdkit 2/2] vddk: Drive library loading from libdir parameter.
...t> recommended. + =head1 FILE PARAMETER The C<file> parameter can either be a local file, in which case it diff --git a/configure.ac b/configure.ac index fa902945..d71f06e4 100644 --- a/configure.ac +++ b/configure.ac @@ -130,6 +130,7 @@ AC_PROG_INSTALL AC_PROG_CPP AC_CANONICAL_HOST AC_SYS_LARGEFILE +AC_CHECK_SIZEOF([long]) AC_C_PROTOTYPES test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant]) diff --git a/plugins/vddk/vddk.c b/plugins/vddk/vddk.c index db61c1d8..c49eebcd 100644 --- a/plugins/vddk/vddk.c +++ b/plugins/vddk/vddk.c @@ -256,7 +256,18 @@ l...
2002 Jul 01
3
patch: readline support for sftp
...sh-3.4p1/configure.ac openssh-3.4p1.readline/configure.ac --- openssh-3.4p1/configure.ac Wed Jun 26 00:35:16 2002 +++ openssh-3.4p1.readline/configure.ac Mon Jul 1 04:13:58 2002 @@ -23,6 +23,8 @@ AC_PATH_PROG(TEST_MINUS_S_SH, sh) AC_PATH_PROG(SH, sh) +SFTPLIB="" + # System features AC_SYS_LARGEFILE @@ -477,6 +479,51 @@ ] ) +# Check for readline support +READLINE="no" +AC_ARG_WITH(readline, + [ --with-readline Enable redline support], + [ + if test "x$withval" == "xyes" ; then + AC_CHECK_HEADERS(readline/readline.h readline/history.h, + AC_DE...