Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2016-09-16 Thread Daniel Stenberg
On Fri, 16 Sep 2016, Michael Felt wrote: The solution people have used ever since to produce headers that can be used dynamically for either 32 bit or 64 bit builds is this: Well, if all I wanted to do was build curl for personal use, that could be okay - but I am trying to package things

Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2016-09-16 Thread Michael Felt
On 23/11/2015 22:58, Daniel Stenberg wrote: (let's keep this in curl-library since it concerns the library) During a build of curl-7.45 (and I expect earlier versions) - when the target is a 32-bit build (on AIX) - sizeof(long) == 4, but on a 64-bit build sizeof(long) == 8. (This has been

Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2015-11-25 Thread Michael Wood
On 25 Nov 2015 4:31 PM, "Michael Felt" wrote: > > On 2015-11-24 09:06, Daniel Stenberg > wrote: > >> One of our legacy choices from way >> back is that we're using C varargs [...] > > I have never used varargs - so excuse > me for not understanding a word. Is > this

Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2015-11-25 Thread Michael Felt
On 2015-11-24 09:06, Daniel Stenberg wrote: On Tue, 24 Nov 2015, Michael Felt wrote: If someone has a good idea of how to tweak libcurl to make this process easier or more streamlined in any way, please let me know. I have not been concerned with things like this for a long long time. The

Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2015-11-24 Thread Daniel Stenberg
On Tue, 24 Nov 2015, Michael Felt wrote: If someone has a good idea of how to tweak libcurl to make this process easier or more streamlined in any way, please let me know. I have not been concerned with things like this for a long long time. The obvious solution path, imho, would be to not

Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2015-11-23 Thread Daniel Stenberg
On Mon, 23 Nov 2015, aixtools wrote: (let's keep this in curl-library since it concerns the library) During a build of curl-7.45 (and I expect earlier versions) - when the target is a 32-bit build (on AIX) - sizeof(long) == 4, but on a 64-bit build sizeof(long) == 8. (This has been the case

Re: Problem with include files - 32-bit and 64-bit modes are not supported in a "single-set of include files"

2015-11-23 Thread Michael Felt
On 2015-11-23 22:58, Daniel Stenberg wrote: On Mon, 23 Nov 2015, aixtools wrote: (let's keep this in curl-library since it concerns the library) During a build of curl-7.45 (and I expect earlier versions) - when the target is a 32-bit build (on AIX) - sizeof(long) == 4, but on a 64-bit build