search for: __stdc__

Displaying 20 results from an estimated 43 matches for "__stdc__".

1999 Nov 26
2
compiling R-0.90.0 on alpha-dec-osf4.0
I am compiling R-0.90.0 on alpha-dec-osf4.0 and it stops by giving the following message: cc: Error: ../../../R/src/main/gram.y, line 1365: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. SEXP mkString(const char *s) -----^ cc: Error: ../../../R/src/main/gram.y, line 1365: In this declaration, the type of "mkString" is not
1999 Nov 26
2
compiling R-0.90.0 on alpha-dec-osf4.0
I am compiling R-0.90.0 on alpha-dec-osf4.0 and it stops by giving the following message: cc: Error: ../../../R/src/main/gram.y, line 1365: In this declaration, parameter 1 has a different type than specified in an earlier declaration of this function. SEXP mkString(const char *s) -----^ cc: Error: ../../../R/src/main/gram.y, line 1365: In this declaration, the type of "mkString" is not
2016 Aug 01
4
OpenSSH 7.3p1 can't be build on Solaris 10
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 configure:17280: result: no configure:17300: checking for mblen configure:17356: gcc -o conftest -O3 -m64 -mtune=native -pipe -Wall -Wpointer-arith -Wuninitialized -Wsign-compare -Wformat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-result -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -ftrapv -fno-builtin-memset
2004 Jul 06
1
[LLVMdev] CommandLine.cpp:189: error: `strdup' undeclared
Hi > >Are you able to explain below meaning to me? > >#if defined(_ALL_SOURCE) \ > || (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE_EXTENDED==1)) \ > || (__STDC__ - 0 == 0 && !defined(_POSIX_C_SOURCE)) >extern char* __cdecl strdup(const char *); >#endif /* defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE_EXTENDED == 1) */ > (RTFM) Some of the above macros and their meaning can be found in Interix' UNIX Application Migration Guide, chap...
2001 Jan 27
0
Vorbis with BCB
...propriate type-casts. Do other compilers (msvc, gcc, egcs, whatever) accept this code? But the error in line 390 is the real problem. BCB is using the getopt_long declaration from line 155 in getopt.h. This is the one that looks like this: extern int getopt_long (); I tried declaring '__STDC__', but this causes problems with 'strdup' from Borland's 'string.h'. Then I tried hacking getopt.h so that BCB would use the full prototypes that start on line 140, but then I get: [C++ Error] getopt1.c(73): E2342 Type mismatch in parameter 'argv'. [C++ Error] ge...
2008 Jan 28
0
Package Installation produces "gcc fails sanity check" error when installing RODBC error
...RNAME "hplip" | #define PACKAGE_VERSION "2.7.12" | #define PACKAGE_STRING "HP Linux Imaging and Printing 2.7.12" | #define PACKAGE_BUGREPORT "2.7.12.10" | #define PACKAGE "hplip" | #define VERSION "2.7.12" | /* end confdefs.h. */ | #ifdef __STDC__ | # include <limits.h> | #else | # include <assert.h> | #endif | Syntax error configure:4581: gcc -E conftest.c In file included from /usr/include/bits/posix1_lim.h:153, from /usr/include/limits.h:145, from /usr/lib64/gcc/x86_64-suse-linux/4.2.1...
2013 Feb 09
1
OSX rpcgen problem
...ATUS_ERROR = 0, VIR_LXC_PROTOCOL_EXIT_STATUS_SHUTDOWN = 1, VIR_LXC_PROTOCOL_EXIT_STATUS_REBOOT = 2, }; typedef enum virLXCProtocolExitStatus virLXCProtocolExitStatus; #ifdef __cplusplus extern "C" bool_t xdr_virLXCProtocolExitStatus(XDR *, virLXCProtocolExitStatus*); #elif __STDC__ extern bool_t xdr_virLXCProtocolExitStatus(XDR *, virLXCProtocolExitStatus*); #else /* Old Style C */ bool_t xdr_virLXCProtocolExitStatus(); #endif /* Old Style C */ struct virLXCProtocolExitEventMsg { enum virLXCProtocolExitStatus status; }; typedef struct virLXCProtocolExitEventMsg vir...
2007 Apr 20
1
[LLVMdev] llvm-gcc make check
....h 2007-04-18 16:45:57.000000000 -0500 *************** *** 19,29 **** struct exception; - #if defined( AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_2_CHECK ) - #include <architecture/ppc/math.h> - #endif /* AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_2_CHECK */ - - #if defined( BROKEN_CABS_CHECK ) #ifdef __STDC__ --- 19,24 ---- Newly fixed header: ppc/types.h Missing header fix: ansi/.svn/text-base/math.h.svn-base Missing header fix: ansi/.svn/text-base/stdlib.h.svn-base [...] Missing header fix: Xm/.svn/README.txt Missing header fix: Xm/.svn/format There were fixinclude test FAILURES make[1]: *** [c...
2009 Feb 21
1
Install failure (PR#13545)
..."R" | #define VERSION "2.8.1" | #define R_PLATFORM "x86_64-unknown-linux-gnu" | #define R_CPU "x86_64" | #define R_VENDOR "unknown" | #define R_OS "linux-gnu" | #define Unix 1 | #define R_ARCH "" | /* end confdefs.h. */ | #ifdef __STDC__ | # include <limits.h> | #else | # include <assert.h> | #endif | Syntax error configure:6731: g++ -E -I/usr/local/include conftest.cpp ./configure: line 6732: g++: command not found configure:6737: $? = 127 configure: failed program was: | /* confdefs.h. */ | #define PACKA...
2004 Jul 15
2
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
...for (signed) int */ #define UINT_MAX 0xffffffff /* max value for unsigned int */ #define LONG_MIN (-2147483647L-1) /* minimum (signed) long */ #define LONG_MAX 2147483647L /* maximum (signed) long */ #define ULONG_MAX 0xffffffffUL /* maximum unsigned long */ #if defined(_ALL_SOURCE) \ || (__STDC__ - 0 == 0) && !defined(_POSIX_C_SOURCE) \ && !defined(_XOPEN_SOURCE) /* * Minimum and maximum values for 64-bit types * Define all the various well-known flavors of symbols * */ #define ULLONG_MAX ((u_quad_t)0-1) /* 0xffffffffffffffff */ #define LLONG_MAX...
2015 Jun 03
5
[PATCH 1/1] Updated opus_types.h to correctly support 8 and 64 bit types.
...at gmail.com) 03/Jun/2015 */ /* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -35,125 +36,199 @@ /* Use the real stdint.h if it's there (taken from Paul Hsieh's pstdint.h) */ #if (defined(__STDC__) && __STDC__ && __STDC_VERSION__ >= 199901L) || (defined(__GNUC__) && (defined(_STDINT_H) || defined(_STDINT_H_)) || defined (HAVE_STDINT_H)) -#include <stdint.h> +# include <stdint.h> + typedef int8_t opus_int8; + typedef uint8_t opus_uint8; typede...
2008 Oct 15
0
gccfss-4.2.0 fixincludes headers out of date, breaking dtrace SDT
...c. All rights reserved. --- &gt; * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 9c18 &lt; #pragma ident "@(#)feature_tests.h 1.25 07/02/02 SMI" --- &gt; #pragma ident "@(#)feature_tests.h 1.24 04/09/28 SMI" 112c121 &lt; #if (__STDC__ - 0 == 1 && !defined(__GNUC__)) || \ --- &gt; #if ( defined(__STRICT_ANSI__) && !defined(__GNUC__)) || \ 365,370d373 &lt; /* &lt; * The following macro indicates header support for DTrace. The value is an &lt; * integer that corresponds to the major version number...
2004 Dec 21
0
Spandsp 0.0.2pre6 configure fails sanity check.
...#define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #ifdef __STDC__ | # include <limits.h> | #else | # include <assert.h> | #endif | Syntax error configure:5144: error: C++ preprocessor "/lib/cpp" fails sanity check See `config.log' for more details. I'm running Mandrake 10.0, with the follow gcc packages installed...
2002 Mar 17
2
Is an empty stream legal?
Does the spec allow a stream consisting only of headers, with 0 audio packates? -- Beni Cherniavsky <cben@tx.technion.ac.il> (also scben@t2 in Technion) MSVC in default mode doesn't define __STDC__ (correctly!). No comments. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No su...
2004 Jul 05
0
[LLVMdev] CommandLine.cpp:189: error: `strdup' undeclared
...ut, I'm wondering why it doesn't belong to the ordinary function prototypes as extern char * __cdecl strcpy(char *, const char *);. Are you able to explain below meaning to me? #if defined(_ALL_SOURCE) \ || (defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE_EXTENDED==1)) \ || (__STDC__ - 0 == 0 && !defined(_POSIX_C_SOURCE)) extern char* __cdecl strdup(const char *); #endif /* defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE_EXTENDED == 1) */ My version of GCC is Interix gcc 3.3. /Henrik _________________________________________________________________ F� alle de nye o...
2004 Jul 14
0
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
...for (signed) int */ #define UINT_MAX 0xffffffff /* max value for unsigned int */ #define LONG_MIN (-2147483647L-1) /* minimum (signed) long */ #define LONG_MAX 2147483647L /* maximum (signed) long */ #define ULONG_MAX 0xffffffffUL /* maximum unsigned long */ #if defined(_ALL_SOURCE) \ || (__STDC__ - 0 == 0) && !defined(_POSIX_C_SOURCE) \ && !defined(_XOPEN_SOURCE) /* * Minimum and maximum values for 64-bit types * Define all the various well-known flavors of symbols * */ #define ULLONG_MAX ((u_quad_t)0-1) /* 0xffffffffffffffff */ #define LLONG_MAX...
2004 Oct 23
1
Issues with compiling wine
...example, HP-UX 11i <limits.h> declares gettimeofday. */ | #define gethostbyname innocuous_gethostbyname | | /* System header to define __stub macros and hopefully few prototypes, | which can conflict with char gethostbyname (); below. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | <limits.h> exists even on freestanding compilers. */ | | #ifdef __STDC__ | # include <limits.h> | #else | # include <assert.h> | #endif | | #undef gethostbyname | | /* Override any gcc2 internal prototype to avoid an error. */ | #ifdef __cplusplus | ex...
2002 Mar 01
2
Weakness in Knuth-TAOCP RNG (fwd) (PR#1336)
This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. ---559023410-1141662977-1014960253=:3119 Content-Type: TEXT/PLAIN; CHARSET=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Content-ID:
1999 Dec 01
1
Compile bugs in openssh-1.2pre15 on Solaris (2.6)
...his to be the path of the xauth program. */ #ifndef XAUTH_PATH *** rsa.h.ORIG Thu Nov 25 10:54:59 1999 --- rsa.h Wed Dec 1 13:10:55 1999 *************** *** 14,19 **** --- 14,26 ---- */ /* RCSID("$Id: rsa.h,v 1.4 1999/11/24 19:53:50 markus Exp $"); */ + #ifndef __P + #ifdef __STDC__ + #define __P(x) x + #else + #define __P(x) () + #endif + #endif #ifndef RSA_H #define RSA_H ______________________________________________________________________________ David Del Piero, Email : David.DelPiero at qed.qld.gov.au Education Queensland, Floor 11, Education Ho...
2004 Jul 15
0
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
..._MAX 0xffffffff /* max value for unsigned int */ > > #define LONG_MIN (-2147483647L-1) /* minimum (signed) long */ > #define LONG_MAX 2147483647L /* maximum (signed) long */ > #define ULONG_MAX 0xffffffffUL /* maximum unsigned long */ > > #if defined(_ALL_SOURCE) \ > || (__STDC__ - 0 == 0) && !defined(_POSIX_C_SOURCE) \ > && !defined(_XOPEN_SOURCE) > /* > * Minimum and maximum values for 64-bit types > * Define all the various well-known flavors of symbols > * > */ > #define ULLONG_MAX ((u_quad_t)0-1) /* 0xffffffffff...