search for: __interix

Displaying 13 results from an estimated 13 matches for "__interix".

2010 Oct 22
2
Interix Port
Hi! I recently updated my now long-standing patches for openssh 5.5p1 on interix, and wondered if i ever reported those here, and whether there would be any interest in it anyway. So just to make sure, i'm sending it here, so you may do with it however you like. It would be cool to see the changes go upstream though ;) Regards, markus -------------- next part -------------- A non-text
2004 Jul 06
1
[LLVMdev] CommandLine.cpp:189: error: `strdup' undeclared
...XOPEN_SOURCE) && (_XOPEN_SOURCE_EXTENDED == 1) */ > (RTFM) Some of the above macros and their meaning can be found in Interix' UNIX Application Migration Guide, chapter 10. An excerpt: "To add or isolate code that implements Interix-specific features, surround it with #ifdef __INTERIX ..." "The __INTERIX macro is automatically defined to be true (1) by ... the gcc compiler. ... Micosoft Visual C++ compiler ... defines __STDC__, unless -N nostdc is specified." "The Interix header files are structured to align with the Single UNIX Specification. For exampl...
2015 Sep 07
0
test 1 / errors Interix 3.5 / xapian-core-1.2.21 / Eric Lindblad
...ant xapian-core-1.2.21 files. http://sourceforge.net/projects/libuuid/ libuuid-1.0.3.tar.gz the following lines can be added to uuidP.h from the above extracted libuuid-1.0.3.tar.gz, after #include <sys/types.h>, which allows it to compile on above described SFU Interix 3.5 setup +#ifdef __INTERIX +# include <stdint.h> +#endif + provided lines from: https://searchcode.com/codesearch/view/37251130/ -------------------------------------------- From: "Eric Lindblad" <GeirfuglApS at yahoo.com> Subject: question / errors Interix 3.5 / xapian-core-1.2.21 / Eric Lindblad To:...
2004 Sep 01
1
[LLVMdev] Type uint64_t required but not found
...eader file in llvm/include/Config, ifdef'd for Interix. I prefer the latter method, because other people should, hopefully, compile it independently without any further knowledge of Interix intrinsics. The best way could be: 1) configure tests wether it's running on the Interix platform (__INTERIX set). 2) Add ifdef'd typedef u_int64_t uint64_t; in llvm/include/Config.h and possible other required values/types for LLVM. /Henrik _________________________________________________________________ Opret en gratis Hotmail-konto http://www.hotmail.com med udsigt til 250 MB lagerkapacitet
2015 Sep 14
1
xapian-core-1.2.21 ported to Interix / 'gmake check' compile error
...ude "safenetdb.h" # include <netinet/in.h> # include <netinet/tcp.h> # include <arpa/inet.h> # include <sys/socket.h> #else # include "safewinsock2.h" #endif perhaps there is a better location to add '#include <arpa/inet.h>' as in an #ifdef __INTERIX located in tcpclient.h or in safenetdb.h #ifdef __INTERIX #include <arpa/inet.h> #endif note safenetdb.h is found in both /net/tcpclient.cc and /net/tcpserver.cc curious but tcpserver.cc has the line #include <arpa/inet.h> or, perhaps xapian support for minority platforms should not...
2015 Sep 05
1
question / errors Interix 3.5 / xapian-core-1.2.21 / Eric Lindblad
...enquire if anyone has an opinion on whether it might be a possibility that adding the following #ifdef in certain xapian-core-1.2.21 /common and/or /backends files following the string #include <sys/types.h> might move closer towards resolution the 'ambiguous overload' issue. +#ifdef __INTERIX +# include <stdint.h> +#endif + Note (as below) this #ifdef was used to enable libuuid-1.0.3 to compile, on this modified SFU Interix 3.5 setup. Note (as below) my SFU Interix 3.5 setup was modified as copying over from SUA Interix (for Vista & newer) getopt.h, inttypes.h, and stdint.h...
2004 Jul 15
2
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
...I'm not at the moment able to edit the file. Anyway, at this moment, I don't know how to hack it, before I know more about autoconf. I'll edit later when 1.3 is released. Hi I've found that the min and max values for integral data types, for Interix 3.5 (gcc automatic macro is __INTERIX), are defined in the system header file: '/usr/include/limits.h': --- /usr/include/limits.h --------------------- ... #define SCHAR_MIN (-128) /* min value for a signed char */ #define SCHAR_MAX 127 /* max value for a signed char */ #define UCHAR_MAX 0xff /* max value for a unsigned...
2004 Jul 19
0
[LLVMdev] IsNAN.cpp:23:3: #error "Don't know how to get isnan()"
Hi Brian, I've been playing around with your test programs and came to the result: --------------------- #ifdef __INTERIX # define _GLIBCPP_USE_C99 1 //Define this macro before including isnan() function from cmath #endif #include <cmath> using std::isnan; int foo(float f) {return isnan(f);} --------------------- /Henrik >From: "Brian R. Gaeke" <gaeke at uiuc.edu> >Reply-To: LLVM Deve...
2004 Sep 01
0
[LLVMdev] Type uint64_t required but not found
...t; >> >>I prefer the latter method, because other people should, hopefully, >>compile it independently without any further knowledge of Interix >>intrinsics. >> >>The best way could be: >>1) configure tests wether it's running on the Interix platform (__INTERIX >>set). >>2) Add ifdef'd typedef u_int64_t uint64_t; in llvm/include/Config.h and >>possible other required values/types for LLVM. > >I think that there should be a general test for u_int64_t and then typdef >it if uint64_t doesn't exist. I have a feeling Inte...
2004 Jul 18
1
[LLVMdev] IsNAN.cpp:23:3: #error "Don't know how to get isnan()"
Hi Brian Here's the config.log (I'm not posting it on the dev-list). The automatic gcc macro for Interix is __INTERIX if this is to any help. /Henrik >From: "Brian R. Gaeke" <gaeke at uiuc.edu> >Reply-To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> >To: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> >Subject: Re: [LLVMdev] IsNAN.cpp:23:3: #error "Do...
2004 Jul 15
0
[LLVMdev] Constants.cpp:368: error: `INT8_MAX' undeclared(firstuse this function)
...work, then I'll add support for __INTERNIX. In any case, patches relative to LLVM 1.2 aren't very useful. Sorry! LLVM 1.3 will probably be out in a few weeks... -Chris > I've found that the min and max values for integral data types, for Interix > 3.5 (gcc automatic macro is __INTERIX), are defined in the system header > file: '/usr/include/limits.h': > > --- /usr/include/limits.h --------------------- > ... > #define SCHAR_MIN (-128) /* min value for a signed char */ > #define SCHAR_MAX 127 /* max value for a signed char */ > #define UCHAR_MAX...
2015 Aug 28
0
errors Interix 3.5 / xapian-core-1.2.21 / Eric Lindblad
...-prefix=g libuuid & zlib http://sourceforge.net/projects/libuuid/ libuuid-1.0.3.tar.gz the following lines can be added to uuidP.h from the above extracted libuuid-1.0.3.tar.gz, after #include <sys/types.h>, which allows it to compile on above described SFU Interix 3.5 setup +#ifdef __INTERIX +# include <stdint.h> +#endif + provided lines from: https://searchcode.com/codesearch/view/37251130/ without endeavouring to provide any FLAGS, zlib-1.2.8 was compiled --static, as a shared zlib would not pass 'make test', but the configure script from xapian-core-1.2.21 did not se...
2012 Aug 20
13
[PATCH 00/12] Multidisk support
Hello, the following patches should get multidisk access working. The syntax accepted is the following: (hdx,y)/path/to/file where x is the disk number and start at 0 and the y is the partition number starting at 1. So (hd0,1) is the first partition of the first disk. the other accepted syntax is using MBR's 32 bits disk signature so for example: (mbr:0x12345678,2)/foo/bar would address