search for: ac_check_typ

Displaying 20 results from an estimated 22 matches for "ac_check_typ".

Did you mean: ac_check_type
2004 Sep 02
2
[LLVMdev] Type uint64_t required but not found
...================================================== RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v retrieving revision 1.106 diff -u -r1.106 configure.ac --- configure.ac 2 Sep 2004 18:44:44 -0000 1.106 +++ configure.ac 2 Sep 2004 20:13:17 -0000 @@ -315,7 +315,7 @@ AC_TYPE_PID_T AC_TYPE_SIZE_T AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not found])) -AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not found])) +AC_CHECK_TYPES([uint64_t]) AC_CHECK_TYPES([u_int64_t]) AC_HEADER_TIME AC_STRUCT_TM ________________________________________________________________...
2004 Sep 02
0
[LLVMdev] Type uint64_t required but not found
...================================ } RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v } retrieving revision 1.106 } diff -u -r1.106 configure.ac } --- configure.ac 2 Sep 2004 18:44:44 -0000 1.106 } +++ configure.ac 2 Sep 2004 20:13:17 -0000 } @@ -315,7 +315,7 @@ } AC_TYPE_PID_T } AC_TYPE_SIZE_T } AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not } found])) } -AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not } found])) } +AC_CHECK_TYPES([uint64_t]) } AC_CHECK_TYPES([u_int64_t]) } AC_HEADER_TIME } AC_STRUCT_TM } Maybe instead of just assuming one will be there...
2005 Mar 17
1
Bogus autoconf test for socklen_t
This affects the XMMS plugin. configure.in has this test: AC_CHECK_TYPES(socklen_t, [], []) And src/plugin_xmms/http.c is the only consumer: #ifndef HAVE_SOCKLEN_T typedef unsigned int socklen_t; #endif Together this looks bogus to me. The configure check looks for socklen_t in the default headers. If it isn't found there, socklen_t will be typedef'...
2005 Jun 14
1
xmms plugin bug report - macOS 10.3, darwinports
On Tue, Jun 14, 2005 at 01:14:49PM -0700, Josh Coalson wrote: > > 1) configure doesn't properly figure out that i have socklen_t > > defined, > > and so http.c defines its own version. Previously reported. > > FLAC-1.1.2 has in configure.in: yes, i built 1.1.2 > AC_CHECK_TYPES(socklen_t, [], []) > > is this not working? autoconf/configure doesn't seem to figure out that it's there. See: http://lists.xiph.org/pipermail/flac-dev/2005-March/001780.html for a report on this breaking on FreeBSD, too. I don't know for sure but the poster then said...
2015 Apr 08
10
Build-system cleanups
Hi everyone Following are a number of build-system cleanup patches. Some of them are prep-work for a possible upcoming automake/gnulib introduction. Best regards, Tiziano
2005 Jun 13
2
xmms plugin bug report - macOS 10.3, darwinports
Hi all - I've just finished building flac in the "darwinports" environment on MacOS 10.3.9. The port maintainer (i've cc'd him) had disabled the xmms plugin build. I wanted that, so I changed the portfile and built locally, yada yada. I've run into three problems, only two of which I've seen reported in the list archives here. 1) configure doesn't properly
2001 Aug 07
1
(fwd from mbp@samba.org) CVS update: rsync
On 6 Aug 2001, Albert Chin-A-Young <china@thewrittenword.com> wrote: > On Mon, Aug 06, 2001 at 10:30:50PM +1000, Martin Pool wrote: > > Albert, I'd be interested to hear your comments on these, if you have > > time. > > AC_CHECK_TYPE([socklen_t], [int]) is not robust enough. I had a feeling it was too simple to be correct.. :) > Are you familiar with an ftp client called lftp? It has the > following test (it's C++ though): I've heard of it. So, if I understand the code you posted, the problem is that if it&...
2019 Aug 18
1
1.3.3: powerpc portability problems
...RARRAYS 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(socklen_t, [], []) dnl check for getopt in standard library dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) AC_CHECK_FUNCS(getopt_long, [], []) + +AC_CHECK_FUNCS([getauxval]) AC_CHECK_SIZEOF(void*,1) Index: src/libFLAC/cpu.c --- src/libFLAC/cpu.c.ori...
2001 Apr 07
1
samba on NetBSD - some patches
...#ifdef HAVE_READLINE /* Allow conditional parsing of the ~/.inputrc file. */ rl_readline_name = "smbclient"; #endif $NetBSD: patch-ae,v 1.3 2000/09/03 09:17:00 kei Exp $ --- configure.in.orig Tue Jul 11 02:37:45 2000 +++ configure.in Sun Sep 3 06:23:09 2000 @@ -237,9 +237,6 @@ AC_CHECK_TYPE(offset_t,loff_t) AC_CHECK_TYPE(ssize_t, int) -# we need libcups for CUPS support... -AC_CHECK_LIB(cups,httpConnect) - # we need libdl for PAM and the new VFS code AC_CHECK_LIB(dl,main) @@ -315,7 +312,14 @@ # test for where we get readline() from if test "$ac_cv_header_readline_h&quot...
2007 Oct 18
0
[PATCH] Use credentials and permissions on control socket where available
...1 + src/tincctl.c | 38 ++++++++++++++++++++++++++++++++++---- 4 files changed, 47 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 670e855..6b13eb3 100644 --- a/configure.in +++ b/configure.in @@ -114,7 +114,7 @@ AC_STRUCT_TM tinc_ATTRIBUTE(__malloc__) -AC_CHECK_TYPES([socklen_t, struct ether_header, struct arphdr, struct ether_arp, struct in_addr, struct addrinfo, struct ip, struct icmp, struct in6_addr, struct sockaddr_in6, struct ip6_hdr, struct icmp6_hdr, struct nd_neighbor_solicit, struct nd_opt_hdr], , , +AC_CHECK_TYPES([socklen_t, struct ether_header, s...
2003 Mar 17
3
nanosleep() replacement
...r 5 happy. My SCO Open Server 3 box broke so I can't test it there. -------------< cut here >---------------- --- openssh/configure.ac.old 2003-03-09 17:16:43.000000000 -0800 +++ openssh/configure.ac 2003-03-16 15:38:28.520560008 -0800 @@ -1483,6 +1483,8 @@ have_struct_timeval=1 fi +AC_CHECK_TYPES(struct timespec) + # If we don't have int64_t then we can't compile sftp-server. So don't # even attempt to do it. if test "x$ac_cv_have_int64_t" = "xno" -a \ --- openssh/openbsd-compat/bsd-misc.c.old 2003-01-19 19:21:01.000000000 -0800 +++ openssh/openbsd-com...
2009 Mar 16
2
openssh 5.2p1 fails to build on IRIX 5.3
Hello, I ran into a few problems when trying to build openssh 5.2p1 on IRIX 5.3. First one is new to 5.2p1: cc -I. -I. -I/usr/tgcware/include/openssl -I/usr/tgcware/include -DSSHDIR=\"/usr/tgcware/etc/ssh\" -D_PATH_SSH_PROGRAM=\"/usr/tgcware/bin/ssh\" -D_PATH_SSH_ASKPASS_DEFAULT=\"/usr/tgcware/libexec/ssh-askpass\"
2004 Sep 10
0
VPATH and fixed-size integer data types
...e values with autoconf, they can just be defined in config.h (AC_DEFINE instead of AC_SUBST). However, an even better fix would be to use the ISO C header inttypes.h. Here is what I do in another project: AC_CHECK_HEADER(inttypes.h, [AC_DEFINE([HAVE_INTTYPES_H])], [AC_CHECK_TYPE(u_int8_t, [AC_DEFINE([HAVE_U_INT])], [AC_MSG_ERROR([Unable to find fixed-size data types])] )] ) and then in the header: #ifdef HAVE_CONFIG_H #include <config.h> #endif #ifdef HAVE_INTTYPES_H #include <inttypes.h> #elif d...
2005 Jun 14
0
xmms plugin bug report - macOS 10.3, darwinports
...I've run into three problems, only two of which I've seen reported > in the list archives here. > > 1) configure doesn't properly figure out that i have socklen_t > defined, > and so http.c defines its own version. Previously reported. FLAC-1.1.2 has in configure.in: AC_CHECK_TYPES(socklen_t, [], []) is this not working? > 2) once I had a successful build, I get the following on console: > > rock/j_geils_band/showtime@st1100% xmms 01-jus_cant_stop_me.flac > *** malloc[19338]: Deallocation of a pointer not malloced: > 0x13a5aec; This could be a do...
2002 Jan 18
1
[Bug 74] New: Use of sig_atomic_t breaks SunOS4 compile
http://bugzilla.mindrot.org/show_bug.cgi?id=74 Summary: Use of sig_atomic_t breaks SunOS4 compile Product: Portable OpenSSH Version: -current Platform: Other OS/Version: SunOS Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: openssh-unix-dev at mindrot.org ReportedBy:
2013 Jan 03
1
rb_alloc_func_t undeclared in ruby 1.8
ruby bindings fail to build with ruby 1.8.7 because rb_alloc_func_t does not exist in this version of ruby. This happens due to commit 448a02373df95dafc0d4b3e4db0e77c96a09074d Olaf
2000 Aug 24
4
added check/define for int64_t
...acro to detect/correct this problem. Jon Shiring Btw, in my quick tests, Vorbis successfully decodes ogg files on sparc solaris. The following should be added to configure.in after the calls to set SIZE64 ---------------------- dnl this is a test to see if int64_t is defined dnl this is because AC_CHECK_TYPE breaks on "long long" AC_MSG_CHECKING(for int64_t) AC_CACHE_VAL(has_int64_t, [AC_TRY_RUN([ #include <sys/types.h> int64_t foo; int main() {return 0;} ], has_int64_t=yes, has_int64_t=no, has_int64_t=no )]) AC_MSG_RESULT($has_int64_t) if test x$has_int64_t = "xno" ; then...
2004 Aug 06
1
[blp@pfaff.stanford.edu: ]
...charset=us-ascii Jerome Alet <alet@librelogiciel.com> writes: > It's the IceCast2 audio streaming server downloadable via CVS > from : > > http://www.icecast.org/download.html > > I tried the latest version in today's CVS tree. It's buggy. It uses AC_CHECK_TYPES, which only exists in recent versions of Autoconf, but fails to specify AC_PREREQ(2.50). You can add that line to configure.in, or you can rename configure.in to configure.ac. You should report this bug and the fix to the icecast developers. -- "Now I have to go wash my mind out with so...
2008 May 10
3
Patch : Fix cross-compiling from Linux to windows
...================== RCS file: /cvsroot/flac/flac/configure.in,v retrieving revision 1.151 diff -u -r1.151 configure.in --- configure.in 28 Feb 2008 05:34:21 -0000 1.151 +++ configure.in 10 May 2008 04:24:21 -0000 @@ -48,6 +48,8 @@ AC_C_BIGENDIAN +AC_CHECK_HEADERS(stdint.h) + AC_CHECK_TYPES(socklen_t, [], []) dnl check for getopt in standard library Index: include/share/alloc.h =================================================================== RCS file: /cvsroot/flac/flac/include/share/alloc.h,v retrieving revision 1.5 diff -u -r1.5 alloc.h --- include/share/alloc.h 28 Feb...
2015 Dec 10
2
[PATCH] Receive multiple packets at a time
...duce > the level of indentation and make the functions a bit more readable. > Then I'll merge it :) Here it is. Samuel -------------- next part -------------- diff --git a/configure.ac b/configure.ac index 5cdd642..fcac9d2 100644 --- a/configure.ac +++ b/configure.ac @@ -187,7 +187,7 @@ AC_CHECK_TYPES([socklen_t, struct ether_header, struct arphdr, struct ether_arp, dnl Checks for library functions. AC_TYPE_SIGNAL -AC_CHECK_FUNCS([asprintf daemon fchmod flock ftime fork get_current_dir_name gettimeofday mlockall pselect putenv random select strdup strerror strsignal strtol system unsetenv...