Thread: Is there a way to build PostgreSQL client libraries with MinGW
Hi,We are using R to work with 64bit PostgreSQL client libraries, and to avoid compiler compatibility issues the R development community suggest using the same compiler for both the main application and dlls. So do you have any experience to build libpq.dll using MinGW 64 bit. Thanks. Xiaobo Gu
On Thu, Jan 20, 2011 at 10:17 AM, XiaoboGu <guxiaobo1982@gmail.com> wrote: > Hi, > We are using R to work with 64bit PostgreSQL client libraries, and > to avoid compiler compatibility issues the R development community suggest > using the same compiler for both the main application and dlls. So do you > have any experience to build libpq.dll using MinGW 64 bit. Thanks. According to the documentation, it's not supported. http://www.postgresql.org/docs/current/static/install-win32.html "Building using MinGW or Cygwin uses the normal build system, see Chapter 15 and the specific notes in Section 15.8.5 and Section 15.8.2. These builds cannot generate 64-bit binaries. Cygwin is not recommended and should only be used for older versions of Windows where the native build does not work, such as Windows 98. MinGW is only recommended if you are building other modules using it. The official binaries are built using Visual Studio." -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
On 01/20/2011 09:52 PM, Robert Haas wrote: > On Thu, Jan 20, 2011 at 10:17 AM, XiaoboGu<guxiaobo1982@gmail.com> wrote: >> Hi, >> We are using R to work with 64bit PostgreSQL client libraries, and >> to avoid compiler compatibility issues the R development community suggest >> using the same compiler for both the main application and dlls. So do you >> have any experience to build libpq.dll using MinGW 64 bit. Thanks. > According to the documentation, it's not supported. > > http://www.postgresql.org/docs/current/static/install-win32.html > > "Building using MinGW or Cygwin uses the normal build system, see > Chapter 15 and the specific notes in Section 15.8.5 and Section > 15.8.2. These builds cannot generate 64-bit binaries. Cygwin is not > recommended and should only be used for older versions of Windows > where the native build does not work, such as Windows 98. MinGW is > only recommended if you are building other modules using it. The > official binaries are built using Visual Studio." That advice needs to be taken with a grain or two of salt. First, while you probably should not use Cygwin postgres as a production server, it is still the best way to run psql on Windows that I know of. And second, the stuff about not being able to generate 64-bit binaries with Mingw is no longer true (that's why it's no longer called Mingw32), although it is true that nobody I know has yet tried to do so. It's on my long TODO list, and well worth doing. (Relying on one compiler is the techno equivalent of monolingualism, which my sister's bumper sticker used to tell me is a curable condition.) cheers andrew
On Fri, Jan 21, 2011 at 04:06, Andrew Dunstan <andrew@dunslane.net> wrote: > > > On 01/20/2011 09:52 PM, Robert Haas wrote: >> >> On Thu, Jan 20, 2011 at 10:17 AM, XiaoboGu<guxiaobo1982@gmail.com> wrote: >>> >>> Hi, >>> We are using R to work with 64bit PostgreSQL client libraries, and >>> to avoid compiler compatibility issues the R development community >>> suggest >>> using the same compiler for both the main application and dlls. So do you >>> have any experience to build libpq.dll using MinGW 64 bit. Thanks. >> >> According to the documentation, it's not supported. >> >> http://www.postgresql.org/docs/current/static/install-win32.html >> >> "Building using MinGW or Cygwin uses the normal build system, see >> Chapter 15 and the specific notes in Section 15.8.5 and Section >> 15.8.2. These builds cannot generate 64-bit binaries. Cygwin is not >> recommended and should only be used for older versions of Windows >> where the native build does not work, such as Windows 98. MinGW is >> only recommended if you are building other modules using it. The >> official binaries are built using Visual Studio." > > That advice needs to be taken with a grain or two of salt. First, while you > probably should not use Cygwin postgres as a production server, it is still > the best way to run psql on Windows that I know of. And second, the stuff Yeah, I agree for psql the client tool (though it used to suck badly if you were in a non-english locale, but they may have fixed that). But not for PostgreSQL the full product. I guess we could add a sentence about the client side, but it needs to be clear that the non-sucky part only applies to the client. > about not being able to generate 64-bit binaries with Mingw is no longer > true (that's why it's no longer called Mingw32), although it is true that > nobody I know has yet tried to do so. It's on my long TODO list, and well > worth doing. (Relying on one compiler is the techno equivalent of > monolingualism, which my sister's bumper sticker used to tell me is a > curable condition.) It's true from the perspective of *postgresql* - you can't use those compiler to generate 64-bit binaries of PostgreSQL. And it's referring to "these builds", not the compiler itself. And I'm certainly not going to stand in the way of somebody adding build support for it if they (you or others) want to spend time on it - that patch should just include an update to that documentation paragraph, of course. Personally, I'm going to put what time I can put into "windows build system updates" into making us work with VS 2010 because I find that more important - but that's just me personally. -- Magnus Hagander Me: http://www.hagander.net/ Work: http://www.redpill-linpro.com/
On 01/21/2011 05:24 AM, Magnus Hagander wrote: >> >> That advice needs to be taken with a grain or two of salt. First, while you >> probably should not use Cygwin postgres as a production server, it is still >> the best way to run psql on Windows that I know of. And second, the stuff > Yeah, I agree for psql the client tool (though it used to suck badly > if you were in a non-english locale, but they may have fixed that). > But not for PostgreSQL the full product. I guess we could add a > sentence about the client side, but it needs to be clear that the > non-sucky part only applies to the client. It's not so bad it can't be used for development, and I have known people who do that, and indeed I have deployed one very complex app developed in just that way. More importantly from my POV, there is no support in the buildfarm for just building the client side, and I have no intention of providing it. So it's not insignificant for us to be able to continue supporting a complete build on Cygwin, however much you dislike it. > >> about not being able to generate 64-bit binaries with Mingw is no longer >> true (that's why it's no longer called Mingw32), although it is true that >> nobody I know has yet tried to do so. It's on my long TODO list, and well >> worth doing. (Relying on one compiler is the techno equivalent of >> monolingualism, which my sister's bumper sticker used to tell me is a >> curable condition.) > It's true from the perspective of *postgresql* - you can't use those > compiler to generate 64-bit binaries of PostgreSQL. And it's referring > to "these builds", not the compiler itself. > > And I'm certainly not going to stand in the way of somebody adding > build support for it if they (you or others) want to spend time on it > - that patch should just include an update to that documentation > paragraph, of course. > > Personally, I'm going to put what time I can put into "windows build > system updates" into making us work with VS 2010 because I find that > more important - but that's just me personally. > VS2010 is important, no doubt. But clearly there's some demand for continued Mingw support, hence the OP's question. As I've remarked before, I think we should support as many build platforms/environments as we can. cheers andrew
On Fri, Jan 21, 2011 at 16:24, Andrew Dunstan <andrew@dunslane.net> wrote: > > > On 01/21/2011 05:24 AM, Magnus Hagander wrote: >>> >>> That advice needs to be taken with a grain or two of salt. First, while >>> you >>> probably should not use Cygwin postgres as a production server, it is >>> still >>> the best way to run psql on Windows that I know of. And second, the stuff >> >> Yeah, I agree for psql the client tool (though it used to suck badly >> if you were in a non-english locale, but they may have fixed that). >> But not for PostgreSQL the full product. I guess we could add a >> sentence about the client side, but it needs to be clear that the >> non-sucky part only applies to the client. > > > It's not so bad it can't be used for development, and I have known people > who do that, and indeed I have deployed one very complex app developed in > just that way. > > More importantly from my POV, there is no support in the buildfarm for just > building the client side, and I have no intention of providing it. So it's > not insignificant for us to be able to continue supporting a complete build > on Cygwin, however much you dislike it. That's certainly a reasonable argument. And I don't mind supporting a complete build env for it either - as long as *I* don't have to do it. And you seem to be doing a good job at it. >>> about not being able to generate 64-bit binaries with Mingw is no longer >>> true (that's why it's no longer called Mingw32), although it is true that >>> nobody I know has yet tried to do so. It's on my long TODO list, and well >>> worth doing. (Relying on one compiler is the techno equivalent of >>> monolingualism, which my sister's bumper sticker used to tell me is a >>> curable condition.) >> >> It's true from the perspective of *postgresql* - you can't use those >> compiler to generate 64-bit binaries of PostgreSQL. And it's referring >> to "these builds", not the compiler itself. >> >> And I'm certainly not going to stand in the way of somebody adding >> build support for it if they (you or others) want to spend time on it >> - that patch should just include an update to that documentation >> paragraph, of course. >> >> Personally, I'm going to put what time I can put into "windows build >> system updates" into making us work with VS 2010 because I find that >> more important - but that's just me personally. >> > > > VS2010 is important, no doubt. But clearly there's some demand for continued > Mingw support, hence the OP's question. > > As I've remarked before, I think we should support as many build > platforms/environments as we can. Definitely agreed - as long as it doesn't mean we have to avoid adding useful features because a specific compiler/env can't deal with it. Which we've been reasonably able to avoid so far. -- Magnus Hagander Me: http://www.hagander.net/ Work: http://www.redpill-linpro.com/
Hi I am not so familiar with the PostgreSQL development team, but using a MinGW compatible client side is important to us, so I'd like to start doing it myself if any of you experts can help. Cheers Xiaobo Gu > -----邮件原件----- > 发件人: Andrew Dunstan [mailto:andrew@dunslane.net] > 发送时间: 2011年1月21日 23:25 > 收件人: Magnus Hagander > 抄送: Robert Haas; XiaoboGu; pgsql-hackers@postgresql.org > 主题: Re: [HACKERS] Is there a way to build PostgreSQL client libraries with MinGW > > > > On 01/21/2011 05:24 AM, Magnus Hagander wrote: > >> > >> That advice needs to be taken with a grain or two of salt. First, while you > >> probably should not use Cygwin postgres as a production server, it is still > >> the best way to run psql on Windows that I know of. And second, the stuff > > Yeah, I agree for psql the client tool (though it used to suck badly > > if you were in a non-english locale, but they may have fixed that). > > But not for PostgreSQL the full product. I guess we could add a > > sentence about the client side, but it needs to be clear that the > > non-sucky part only applies to the client. > > > It's not so bad it can't be used for development, and I have known > people who do that, and indeed I have deployed one very complex app > developed in just that way. > > More importantly from my POV, there is no support in the buildfarm for > just building the client side, and I have no intention of providing it. > So it's not insignificant for us to be able to continue supporting a > complete build on Cygwin, however much you dislike it. > > > > > >> about not being able to generate 64-bit binaries with Mingw is no longer > >> true (that's why it's no longer called Mingw32), although it is true that > >> nobody I know has yet tried to do so. It's on my long TODO list, and well > >> worth doing. (Relying on one compiler is the techno equivalent of > >> monolingualism, which my sister's bumper sticker used to tell me is a > >> curable condition.) > > It's true from the perspective of *postgresql* - you can't use those > > compiler to generate 64-bit binaries of PostgreSQL. And it's referring > > to "these builds", not the compiler itself. > > > > And I'm certainly not going to stand in the way of somebody adding > > build support for it if they (you or others) want to spend time on it > > - that patch should just include an update to that documentation > > paragraph, of course. > > > > Personally, I'm going to put what time I can put into "windows build > > system updates" into making us work with VS 2010 because I find that > > more important - but that's just me personally. > > > > > VS2010 is important, no doubt. But clearly there's some demand for > continued Mingw support, hence the OP's question. > > As I've remarked before, I think we should support as many build > platforms/environments as we can. > > cheers > > andrew
Re: 答复: [HACKERS] Is there a way to build PostgreSQL client libraries with MinGW
From
Xiaobo Gu
Date:
Here is my plan, 1. To make the configurate script pass: Currently MinGW does not provide chmod, but on Windows I think this can be ignored now, we all use Admin users to do the work. 2. To make a pg-client Makefile target, can you help wich which c files should be compiled and linked into dlls and lib file. Xiaobo Gu 2011/1/23 XiaoboGu <guxiaobo1982@gmail.com>: > Hi > > I am not so familiar with the PostgreSQL development team, but using a MinGW > compatible client side is important to us, so I'd like to start doing it > myself if any of you experts can help. > > Cheers > > Xiaobo Gu > >> -----邮件原件----- >> 发件人: Andrew Dunstan [mailto:andrew@dunslane.net] >> 发送时间: 2011年1月21日 23:25 >> 收件人: Magnus Hagander >> 抄送: Robert Haas; XiaoboGu; pgsql-hackers@postgresql.org >> 主题: Re: [HACKERS] Is there a way to build PostgreSQL client libraries > with MinGW >> >> >> >> On 01/21/2011 05:24 AM, Magnus Hagander wrote: >> >> >> >> That advice needs to be taken with a grain or two of salt. First, while > you >> >> probably should not use Cygwin postgres as a production server, it is > still >> >> the best way to run psql on Windows that I know of. And second, the > stuff >> > Yeah, I agree for psql the client tool (though it used to suck badly >> > if you were in a non-english locale, but they may have fixed that). >> > But not for PostgreSQL the full product. I guess we could add a >> > sentence about the client side, but it needs to be clear that the >> > non-sucky part only applies to the client. >> >> >> It's not so bad it can't be used for development, and I have known >> people who do that, and indeed I have deployed one very complex app >> developed in just that way. >> >> More importantly from my POV, there is no support in the buildfarm for >> just building the client side, and I have no intention of providing it. >> So it's not insignificant for us to be able to continue supporting a >> complete build on Cygwin, however much you dislike it. >> >> >> > >> >> about not being able to generate 64-bit binaries with Mingw is no > longer >> >> true (that's why it's no longer called Mingw32), although it is true > that >> >> nobody I know has yet tried to do so. It's on my long TODO list, and > well >> >> worth doing. (Relying on one compiler is the techno equivalent of >> >> monolingualism, which my sister's bumper sticker used to tell me is a >> >> curable condition.) >> > It's true from the perspective of *postgresql* - you can't use those >> > compiler to generate 64-bit binaries of PostgreSQL. And it's referring >> > to "these builds", not the compiler itself. >> > >> > And I'm certainly not going to stand in the way of somebody adding >> > build support for it if they (you or others) want to spend time on it >> > - that patch should just include an update to that documentation >> > paragraph, of course. >> > >> > Personally, I'm going to put what time I can put into "windows build >> > system updates" into making us work with VS 2010 because I find that >> > more important - but that's just me personally. >> > >> >> >> VS2010 is important, no doubt. But clearly there's some demand for >> continued Mingw support, hence the OP's question. >> >> As I've remarked before, I think we should support as many build >> platforms/environments as we can. >> >> cheers >> >> andrew > >
On 01/23/2011 10:09 PM, Xiaobo Gu wrote: > Here is my plan, > 1. To make the configurate script pass: > Currently MinGW does not provide chmod, but on Windows I think this > can be ignored now, we all use Admin > users to do the work. > 2. To make a pg-client Makefile target, can you help wich which c > files should be compiled and linked into dlls and lib file. > Why do you need to do this? Postgres can be built as is today on Mingw. Not just the client libraries, the whole server too. It does not need to be an Adminstrative user, and you should by no means assume that the user building Postgres will be an administrator, nor that the user running Postgres will be. My 32 bit Mingw certainly understands chmod. There are machines doing this every day, several times a day. See <http://www.pgbuildfarm.org/cgi-bin/show_status.pl> - frogmouth and narwhal are examples. We've had working Mingw builds for quite a few years now. The only issue is building 64bit binaries. So get the build working for 32bit, then try switching to the 64bit compiler and see what breaks. If all you need is the client library, build with no zlib or any other third party libraries. cheers andrew
Yes, I want it working on 64 bit Windows Server 2003 R2 and 64 bit Windows 7 home basic. Which version of 32bit MinGW do you use, I use the one shipped with Rtools212.exe which is downloaded from http://www.murdoch-sutherland.com/Rtools, and there is no chmod. xiaobo gu 2011/1/24 Andrew Dunstan <andrew@dunslane.net>: > > > On 01/23/2011 10:09 PM, Xiaobo Gu wrote: >> Here is my plan, >> 1. To make the configurate script pass: >> Currently MinGW does not provide chmod, but on Windows I think this >> can be ignored now, we all use Admin >> users to do the work. >> 2. To make a pg-client Makefile target, can you help wich which c >> files should be compiled and linked into dlls and lib file. >> > > > Why do you need to do this? Postgres can be built as is today on Mingw. > Not just the client libraries, the whole server too. It does not need to > be an Adminstrative user, and you should by no means assume that the > user building Postgres will be an administrator, nor that the user > running Postgres will be. My 32 bit Mingw certainly understands chmod. > > There are machines doing this every day, several times a day. See > <http://www.pgbuildfarm.org/cgi-bin/show_status.pl> - frogmouth and > narwhal are examples. We've had working Mingw builds for quite a few > years now. > > The only issue is building 64bit binaries. So get the build working for > 32bit, then try switching to the 64bit compiler and see what breaks. If > all you need is the client library, build with no zlib or any other > third party libraries. > > cheers > > andrew >
Hi, I download the lastest 32bit MinGW from sourceforge, and found there are *NIX like tools such as chmod and ls in the MinGW\msys\1.0\bin directory. But the make process does not success, This test is done on my 32bit Windows XP SP3 Here are the messages: D:\devproj\postgresql-9.0.2>sh configure --without-zlib ...... D:\devproj\postgresql-9.0.2>ls 2011-01-24 13:14 <DIR> . 2011-01-24 13:14 <DIR> .. 2010-12-14 10:55 233 .gitignore 2010-12-14 10:55 445 aclocal.m4 2011-01-24 11:12 <DIR> config 2011-01-24 13:14 478,602 config.log 2011-01-24 13:14 36,977 config.status 2010-12-14 10:55 844,733 configure 2010-12-14 10:55 60,877 configure.in 2011-01-24 12:06 840,095 configure.lineno 2011-01-24 11:12 <DIR> contrib 2010-12-14 10:55 1,192 COPYRIGHT 2011-01-24 11:12 <DIR> doc 2011-01-24 13:14 3,760 GNUmakefile 2010-12-14 10:55 3,760 GNUmakefile.in 2010-12-14 11:21 968,292 HISTORY 2010-12-14 11:21 79,024 INSTALL 2010-12-14 10:55 1,477 Makefile 2010-12-14 10:55 1,287 README 2011-01-24 13:14 <DIR> src D:\devproj\postgresql-9.0.2>make make -C src all make[1]: Entering directory `/d/devproj/postgresql-9.0.2/src' make -C port all make[2]: Entering directory `/d/devproj/postgresql-9.0.2/src/port' gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement-Wendif-labels -fno-strict-aliasing -fwrapv-I../../src/port -DFRONTEND -I../.. /src/include -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/por t/win32" -c -o fseeko.o fseeko.c gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement-Wendif-labels -fno-strict-aliasing -fwrapv-I../../src/port -DFRONTEND -I../.. /src/include -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/por t/win32" -c -o crypt.o crypt.c In file included from ../../src/include/pg_config_os.h:22, from ../../src/include/c.h:90, fromcrypt.c:44: /usr/lib/gcc/i686-pc-msys/3.4.4/../../../../include/w32api/winsock2.h:103:2: war ning: #warning "fd_set and associated macros have been defined in sys/types. This may cause runtime problems with W32 sockets" In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:28:20: direct.h: No such file or directory ../../src/include/pg_config_os.h:90:1: warning: "EIDRM" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:64:1: warning: this is the location of the previous def inition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:165:1: warning: "SIGABRT" redefined In file included from /usr/include/signal.h:8, from ../../src/include/pg_config_os.h:26, from../../src/include/c.h:90, from crypt.c:44: /usr/include/sys/signal.h:225:1: warning: this is the location of the previous d efinition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:222: error: conflicting types for 'uid_t' /usr/include/sys/types.h:133: error: previous declaration of 'uid_t' was here ../../src/include/pg_config_os.h:223: error: conflicting types for 'gid_t' /usr/include/sys/types.h:134: error: previous declaration of 'gid_t' was here In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:251:1: warning: "EMSGSIZE" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:132:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:252:1: warning: "EAFNOSUPPORT" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:116:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:253:1: warning: "EWOULDBLOCK" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:150:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:254:1: warning: "ECONNRESET" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:114:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:255:1: warning: "EINPROGRESS" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:129:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:256:1: warning: "ENOBUFS" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:115:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:257:1: warning: "EPROTONOSUPPORT" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:133:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:258:1: warning: "ECONNREFUSED" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:121:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:259:1: warning: "EBADFD" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:100:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:90, from crypt.c:44: ../../src/include/pg_config_os.h:260:1: warning: "EOPNOTSUPP" redefined In file included from /usr/include/errno.h:1, from ../../src/include/c.h:80, from crypt.c:44: /usr/include/sys/errno.h:112:1: warning: this is the location of the previous de finition In file included from ../../src/include/c.h:851, from crypt.c:44: ../../src/include/port.h:420: warning: "struct passwd" declared inside parameterlist ../../src/include/port.h:420: warning: its scope is only this definition or decl aration, which is probably not what you want make[2]: *** [crypt.o] Error 1 make[2]: Leaving directory `/d/devproj/postgresql-9.0.2/src/port' make[1]: *** [all] Error 2 make[1]: Leaving directory `/d/devproj/postgresql-9.0.2/src' make: *** [all] Error 2 On Mon, Jan 24, 2011 at 12:11 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: > Yes, I want it working on 64 bit Windows Server 2003 R2 and 64 bit > Windows 7 home basic. > Which version of 32bit MinGW do you use, I use the one shipped with > Rtools212.exe which is downloaded from > http://www.murdoch-sutherland.com/Rtools, and there is no chmod. > > xiaobo gu > > > 2011/1/24 Andrew Dunstan <andrew@dunslane.net>: >> >> >> On 01/23/2011 10:09 PM, Xiaobo Gu wrote: >>> Here is my plan, >>> 1. To make the configurate script pass: >>> Currently MinGW does not provide chmod, but on Windows I think this >>> can be ignored now, we all use Admin >>> users to do the work. >>> 2. To make a pg-client Makefile target, can you help wich which c >>> files should be compiled and linked into dlls and lib file. >>> >> >> >> Why do you need to do this? Postgres can be built as is today on Mingw. >> Not just the client libraries, the whole server too. It does not need to >> be an Adminstrative user, and you should by no means assume that the >> user building Postgres will be an administrator, nor that the user >> running Postgres will be. My 32 bit Mingw certainly understands chmod. >> >> There are machines doing this every day, several times a day. See >> <http://www.pgbuildfarm.org/cgi-bin/show_status.pl> - frogmouth and >> narwhal are examples. We've had working Mingw builds for quite a few >> years now. >> >> The only issue is building 64bit binaries. So get the build working for >> 32bit, then try switching to the 64bit compiler and see what breaks. If >> all you need is the client library, build with no zlib or any other >> third party libraries. >> >> cheers >> >> andrew >> >
And there are two versions of gcc installed on my WinXP PRO SP3, 3.4.4 is the one used to the above test D:\devproj\postgresql-9.0.2>gcc -v Reading specs from /usr/lib/gcc/i686-pc-msys/3.4.4/specs Configured with: /home/cstrauss/build/gcc3/gcc-3.4.4/configure --prefix=/usr --s ysconfdir=/etc --localstatedir=/var --infodir=/share/info --mandir=/share/man -- libexecdir=/lib --enable-languages=c,c++ --disable-nls --enable-threads=posix -- enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug -- with-newlib Thread model: posix gcc version 3.4.4 (msys special) D:\devproj\postgresql-9.0.2> D:\Amber\Program\Rtools211\MinGW\bin>gcc -v Using built-in specs. COLLECT_GCC=gcc Target: mingw32 Configured with: ../gcc-4.5.0/configure --enable-languages=c,c++,ada,fortran,obj c,obj-c++ --disable-sjlj-exceptions --with-dwarf2 --enable-shared --enable-libgo mp --disable-win32-registry --enable-libstdcxx-debug --enable-version-specific-r untime-libs --disable-werror --build=mingw32 --prefix=/mingw Thread model: win32 gcc version 4.5.0 (GCC) D:\Amber\Program\Rtools211\MinGW\bin> On Mon, Jan 24, 2011 at 1:17 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: > Hi, > I download the lastest 32bit MinGW from sourceforge, and found there > are *NIX like tools such as chmod and ls in the MinGW\msys\1.0\bin > directory. > > > But the make process does not success, > > This test is done on my 32bit Windows XP SP3 > > Here are the messages: > > D:\devproj\postgresql-9.0.2>sh configure --without-zlib > ...... > > D:\devproj\postgresql-9.0.2>ls > 2011-01-24 13:14 <DIR> . > 2011-01-24 13:14 <DIR> .. > 2010-12-14 10:55 233 .gitignore > 2010-12-14 10:55 445 aclocal.m4 > 2011-01-24 11:12 <DIR> config > 2011-01-24 13:14 478,602 config.log > 2011-01-24 13:14 36,977 config.status > 2010-12-14 10:55 844,733 configure > 2010-12-14 10:55 60,877 configure.in > 2011-01-24 12:06 840,095 configure.lineno > 2011-01-24 11:12 <DIR> contrib > 2010-12-14 10:55 1,192 COPYRIGHT > 2011-01-24 11:12 <DIR> doc > 2011-01-24 13:14 3,760 GNUmakefile > 2010-12-14 10:55 3,760 GNUmakefile.in > 2010-12-14 11:21 968,292 HISTORY > 2010-12-14 11:21 79,024 INSTALL > 2010-12-14 10:55 1,477 Makefile > 2010-12-14 10:55 1,287 README > 2011-01-24 13:14 <DIR> src > > D:\devproj\postgresql-9.0.2>make > make -C src all > make[1]: Entering directory `/d/devproj/postgresql-9.0.2/src' > make -C port all > make[2]: Entering directory `/d/devproj/postgresql-9.0.2/src/port' > gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement > -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../.. > /src/include -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/por > t/win32" -c -o fseeko.o fseeko.c > gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement > -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../.. > /src/include -I./src/include/port/win32 -DEXEC_BACKEND "-I../../src/include/por > t/win32" -c -o crypt.o crypt.c > In file included from ../../src/include/pg_config_os.h:22, > from ../../src/include/c.h:90, > from crypt.c:44: > /usr/lib/gcc/i686-pc-msys/3.4.4/../../../../include/w32api/winsock2.h:103:2: war > ning: #warning "fd_set and associated macros have been defined in sys/types. > This may cause runtime problems with W32 sockets" > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:28:20: direct.h: No such file or directory > ../../src/include/pg_config_os.h:90:1: warning: "EIDRM" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:64:1: warning: this is the location of the previous def > inition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:165:1: warning: "SIGABRT" redefined > In file included from /usr/include/signal.h:8, > from ../../src/include/pg_config_os.h:26, > from ../../src/include/c.h:90, > from crypt.c:44: > /usr/include/sys/signal.h:225:1: warning: this is the location of the previous d > efinition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:222: error: conflicting types for 'uid_t' > /usr/include/sys/types.h:133: error: previous declaration of 'uid_t' was here > ../../src/include/pg_config_os.h:223: error: conflicting types for 'gid_t' > /usr/include/sys/types.h:134: error: previous declaration of 'gid_t' was here > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:251:1: warning: "EMSGSIZE" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:132:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:252:1: warning: "EAFNOSUPPORT" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:116:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:253:1: warning: "EWOULDBLOCK" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:150:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:254:1: warning: "ECONNRESET" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:114:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:255:1: warning: "EINPROGRESS" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:129:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:256:1: warning: "ENOBUFS" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:115:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:257:1: warning: "EPROTONOSUPPORT" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:133:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:258:1: warning: "ECONNREFUSED" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:121:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:259:1: warning: "EBADFD" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:100:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:90, > from crypt.c:44: > ../../src/include/pg_config_os.h:260:1: warning: "EOPNOTSUPP" redefined > In file included from /usr/include/errno.h:1, > from ../../src/include/c.h:80, > from crypt.c:44: > /usr/include/sys/errno.h:112:1: warning: this is the location of the previous de > finition > In file included from ../../src/include/c.h:851, > from crypt.c:44: > ../../src/include/port.h:420: warning: "struct passwd" declared inside parameter > list > ../../src/include/port.h:420: warning: its scope is only this definition or decl > aration, which is probably not what you want > make[2]: *** [crypt.o] Error 1 > make[2]: Leaving directory `/d/devproj/postgresql-9.0.2/src/port' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/d/devproj/postgresql-9.0.2/src' > make: *** [all] Error 2 > > > > > > On Mon, Jan 24, 2011 at 12:11 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: >> Yes, I want it working on 64 bit Windows Server 2003 R2 and 64 bit >> Windows 7 home basic. >> Which version of 32bit MinGW do you use, I use the one shipped with >> Rtools212.exe which is downloaded from >> http://www.murdoch-sutherland.com/Rtools, and there is no chmod. >> >> xiaobo gu >> >> >> 2011/1/24 Andrew Dunstan <andrew@dunslane.net>: >>> >>> >>> On 01/23/2011 10:09 PM, Xiaobo Gu wrote: >>>> Here is my plan, >>>> 1. To make the configurate script pass: >>>> Currently MinGW does not provide chmod, but on Windows I think this >>>> can be ignored now, we all use Admin >>>> users to do the work. >>>> 2. To make a pg-client Makefile target, can you help wich which c >>>> files should be compiled and linked into dlls and lib file. >>>> >>> >>> >>> Why do you need to do this? Postgres can be built as is today on Mingw. >>> Not just the client libraries, the whole server too. It does not need to >>> be an Adminstrative user, and you should by no means assume that the >>> user building Postgres will be an administrator, nor that the user >>> running Postgres will be. My 32 bit Mingw certainly understands chmod. >>> >>> There are machines doing this every day, several times a day. See >>> <http://www.pgbuildfarm.org/cgi-bin/show_status.pl> - frogmouth and >>> narwhal are examples. We've had working Mingw builds for quite a few >>> years now. >>> >>> The only issue is building 64bit binaries. So get the build working for >>> 32bit, then try switching to the 64bit compiler and see what breaks. If >>> all you need is the client library, build with no zlib or any other >>> third party libraries. >>> >>> cheers >>> >>> andrew >>> >> >
On 01/23/2011 11:11 PM, Xiaobo Gu wrote: > Yes, I want it working on 64 bit Windows Server 2003 R2 and 64 bit > Windows 7 home basic. > Which version of 32bit MinGW do you use, I use the one shipped with > Rtools212.exe which is downloaded from > http://www.murdoch-sutherland.com/Rtools, and there is no chmod. > Please avoid top-answering on this list. I use the Mingw project's published files: <http://sourceforge.net/projects/mingw/files/> cheers andrew
Hi, According to http://www.pgbuildfarm.org/cgi-bin/show_status.pl, only GCC 3.4.2 and 4.5.0 have successfully build PostgreSQL,and only under 32 bit Windows environment, and I guess from http://archives.postgresql.org/pgsql-hackers/2010-12/msg02073.php that you mean we should only the above two versions of GCC to build PostgreSQL, but my questions are: 1. I have 64bit GCC 4.5.0 installed before installing the lasted MinGW, but after that the gcc version became to 3.4.4, which is not support, how to change the GCC other versions than the one shipped with MSYS. 2.You have only test 3.4.2 and 4.5.0 for 32 bit environments, do the 64 bit versions of GCC work under 64bit Windows? Xiaobo Gu On Mon, Jan 24, 2011 at 5:19 PM, Andrew Dunstan <andrew@dunslane.net> wrote: > > > On 01/23/2011 11:11 PM, Xiaobo Gu wrote: >> >> Yes, I want it working on 64 bit Windows Server 2003 R2 and 64 bit >> Windows 7 home basic. >> Which version of 32bit MinGW do you use, I use the one shipped with >> Rtools212.exe which is downloaded from >> http://www.murdoch-sutherland.com/Rtools, and there is no chmod. >> > > Please avoid top-answering on this list. I use the Mingw project's published > files: <http://sourceforge.net/projects/mingw/files/> > > cheers > > andrew >
Hi, I have successfully built 32bit PostgreSQL 9.0.2 using 32bit GCC 4.5.0 and MinGW packaged by tdm64-gcc-4.5.1 from http://tdm-gcc.tdragon.net/download. But for 64bit there is only 4.5.1 GCC, which is not stable now, and the configure script does not pass. $ configure --without-zlib checking build system type... i686-pc-mingw32 checking host system type... i686-pc-mingw32 checking which template to use... win32 checking whether to build with 64-bit integer date/time support... yes checking whether NLS is wanted... no checking for default port number... 5432 checking for block size... 8kB checking for segment size... 1GB checking for WAL block size... 8kB checking for WAL segment size... 16MB checking for gcc... gcc checking for C compiler default output file name... a.exe checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... .exe checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking if gcc supports -Wdeclaration-after-statement... yes checking if gcc supports -Wendif-labels... yes checking if gcc supports -fno-strict-aliasing... yes checking if gcc supports -fwrapv... yes checking whether the C compiler still works... yes checking how to run the C preprocessor... gcc -E checking allow thread-safe client libraries... yes checking whether to build with Tcl... no checking whether to build Perl modules... no checking whether to build Python modules... no checking whether to build with GSSAPI support... no checking whether to build with Kerberos 5 support... no checking whether to build with PAM support... no checking whether to build with LDAP support... no checking whether to build with Bonjour support... no checking whether to build with OpenSSL support... no configure: WARNING: *** Readline does not work on MinGW --- disabling checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ld used by GCC... d:/amber/devtool/mingw64/x86_64-w64-mingw32/bin/l d.exe checking if the linker (d:/amber/devtool/mingw64/x86_64-w64-mingw32/bin/ld.exe) is GNU ld... yes checking for ranlib... ranlib checking for strip... strip checking whether it is possible to strip libraries... yes checking for ar... ar checking for dlltool... dlltool checking for dllwrap... dllwrap checking for windres... windres checking for tar... /bin/tar checking whether ln -s works... no, using cp -p checking for gawk... gawk checking for a thread-safe mkdir -p... /bin/mkdir -p checking for bison... /bin/bison configure: using bison (GNU Bison) 2.4.2 checking for flex... /bin/flex configure: using flex 2.5.35 checking for perl... /bin/perl configure: using perl 5.6.1 configure: WARNING: *** The installed version of Perl, /bin/perl, is too old to use with PostgreSQL. *** Perl version 5.8 or later is required, but this is 5.6.1. configure: WARNING: *** Without Perl you will not be able to build PostgreSQL from Git. *** You can obtain Perl from any CPAN mirror site. *** (If you are using the official distribution of PostgreSQL then you do not *** need to worry about this, because the Perl output is pre-generated.) checking for main in -lm... yes checking for library containing setproctitle... no checking for library containing dlopen... no checking for library containing socket... -lwsock32 checking for library containing shl_load... no checking for library containing getopt_long... none required checking for library containing crypt... no checking for library containing fdatasync... no checking for library containing gethostbyname_r... no checking for library containing shmget... no checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking crypt.h usability... no checking crypt.h presence... no checking for crypt.h... no checking dld.h usability... no checking dld.h presence... no checking for dld.h... no checking fp_class.h usability... no checking fp_class.h presence... no checking for fp_class.h... no checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking ieeefp.h usability... yes checking ieeefp.h presence... yes checking for ieeefp.h... yes checking ifaddrs.h usability... no checking ifaddrs.h presence... no checking for ifaddrs.h... no checking langinfo.h usability... no checking langinfo.h presence... no checking for langinfo.h... no checking poll.h usability... no checking poll.h presence... no checking for poll.h... no checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking sys/ioctl.h usability... no checking sys/ioctl.h presence... no checking for sys/ioctl.h... no checking sys/ipc.h usability... no checking sys/ipc.h presence... no checking for sys/ipc.h... no checking sys/poll.h usability... no checking sys/poll.h presence... no checking for sys/poll.h... no checking sys/pstat.h usability... no checking sys/pstat.h presence... no checking for sys/pstat.h... no checking sys/resource.h usability... no checking sys/resource.h presence... no checking for sys/resource.h... no checking sys/select.h usability... no checking sys/select.h presence... no checking for sys/select.h... no checking sys/sem.h usability... no checking sys/sem.h presence... no checking for sys/sem.h... no checking sys/shm.h usability... no checking sys/shm.h presence... no checking for sys/shm.h... no checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/sockio.h usability... no checking sys/sockio.h presence... no checking for sys/sockio.h... no checking sys/tas.h usability... no checking sys/tas.h presence... no checking for sys/tas.h... no checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/un.h usability... no checking sys/un.h presence... no checking for sys/un.h... no checking termios.h usability... no checking termios.h presence... no checking for termios.h... no checking ucred.h usability... no checking ucred.h presence... no checking for ucred.h... no checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking wchar.h usability... yes checking wchar.h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking kernel/OS.h usability... no checking kernel/OS.h presence... no checking for kernel/OS.h... no checking kernel/image.h usability... no checking kernel/image.h presence... no checking for kernel/image.h... no checking SupportDefs.h usability... no checking SupportDefs.h presence... no checking for SupportDefs.h... no checking for net/if.h... no checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking for netinet/tcp.h... no checking whether byte ordering is bigendian... no checking for an ANSI C-conforming const... yes checking for inline... inline checking for quiet inline (no complaint if unreferenced)... yes checking for preprocessor stringizing operator... yes checking for signed types... yes checking for working volatile... yes checking for __func__... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... no checking for tzname... yes checking for union semun... no checking for struct sockaddr_un... no checking for struct sockaddr_storage... yes checking for struct sockaddr_storage.ss_family... yes checking for struct sockaddr_storage.__ss_family... no checking for struct sockaddr_storage.ss_len... no checking for struct sockaddr_storage.__ss_len... no checking for struct sockaddr.sa_len... no checking for struct addrinfo... yes checking for intptr_t... yes checking for uintptr_t... yes checking for long long int... yes checking for struct cmsgcred... no checking for struct fcred... no checking for struct sockcred... no checking for struct option... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... unknown checking for _LARGE_FILES value needed for large files... unknown checking size of off_t... 4 checking for int timezone... yes checking types of arguments for accept()... configure: error: could not determin e argument types dell@dell-PC /d/amber/DevProjects/postgresql-9.0.2 $ make You need to run the 'configure' program first. See the file 'INSTALL' for installation instructions. make: *** [all] Error 1 dell@dell-PC /d/amber/DevProjects/postgresql-9.0.2 $ On Mon, Jan 24, 2011 at 10:17 PM, Andrew Dunstan <andrew@dunslane.net> wrote: > > Please see this URL, item 6. <http://www.infradead.org/~dwmw2/email.html> > > cheers > > andrew > >
I also tried 64bit 4.5.2 GCC shipped with Rtools, the same error > checking types of arguments for accept()... configure: error: could not determin > e argument types On Tue, Jan 25, 2011 at 7:03 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: > Hi, > I have successfully built 32bit PostgreSQL 9.0.2 using 32bit GCC 4.5.0 > and MinGW packaged by tdm64-gcc-4.5.1 from > http://tdm-gcc.tdragon.net/download. > > But for 64bit there is only 4.5.1 GCC, which is not stable now, and > the configure script does not pass. > > $ configure --without-zlib > checking build system type... i686-pc-mingw32 > checking host system type... i686-pc-mingw32 > checking which template to use... win32 > checking whether to build with 64-bit integer date/time support... yes > checking whether NLS is wanted... no > checking for default port number... 5432 > checking for block size... 8kB > checking for segment size... 1GB > checking for WAL block size... 8kB > checking for WAL segment size... 16MB > checking for gcc... gcc > checking for C compiler default output file name... a.exe > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... .exe > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ISO C89... none needed > checking if gcc supports -Wdeclaration-after-statement... yes > checking if gcc supports -Wendif-labels... yes > checking if gcc supports -fno-strict-aliasing... yes > checking if gcc supports -fwrapv... yes > checking whether the C compiler still works... yes > checking how to run the C preprocessor... gcc -E > checking allow thread-safe client libraries... yes > checking whether to build with Tcl... no > checking whether to build Perl modules... no > checking whether to build Python modules... no > checking whether to build with GSSAPI support... no > checking whether to build with Kerberos 5 support... no > checking whether to build with PAM support... no > checking whether to build with LDAP support... no > checking whether to build with Bonjour support... no > checking whether to build with OpenSSL support... no > configure: WARNING: *** Readline does not work on MinGW --- disabling > checking for grep that handles long lines and -e... /bin/grep > checking for egrep... /bin/grep -E > checking for ld used by GCC... d:/amber/devtool/mingw64/x86_64-w64-mingw32/bin/l > d.exe > checking if the linker (d:/amber/devtool/mingw64/x86_64-w64-mingw32/bin/ld.exe) > is GNU ld... yes > checking for ranlib... ranlib > checking for strip... strip > checking whether it is possible to strip libraries... yes > checking for ar... ar > checking for dlltool... dlltool > checking for dllwrap... dllwrap > checking for windres... windres > checking for tar... /bin/tar > checking whether ln -s works... no, using cp -p > checking for gawk... gawk > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for bison... /bin/bison > configure: using bison (GNU Bison) 2.4.2 > checking for flex... /bin/flex > configure: using flex 2.5.35 > checking for perl... /bin/perl > configure: using perl 5.6.1 > configure: WARNING: > *** The installed version of Perl, /bin/perl, is too old to use with PostgreSQL. > > *** Perl version 5.8 or later is required, but this is 5.6.1. > configure: WARNING: > *** Without Perl you will not be able to build PostgreSQL from Git. > *** You can obtain Perl from any CPAN mirror site. > *** (If you are using the official distribution of PostgreSQL then you do not > *** need to worry about this, because the Perl output is pre-generated.) > checking for main in -lm... yes > checking for library containing setproctitle... no > checking for library containing dlopen... no > checking for library containing socket... -lwsock32 > checking for library containing shl_load... no > checking for library containing getopt_long... none required > checking for library containing crypt... no > checking for library containing fdatasync... no > checking for library containing gethostbyname_r... no > checking for library containing shmget... no > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... yes > checking for unistd.h... yes > checking crypt.h usability... no > checking crypt.h presence... no > checking for crypt.h... no > checking dld.h usability... no > checking dld.h presence... no > checking for dld.h... no > checking fp_class.h usability... no > checking fp_class.h presence... no > checking for fp_class.h... no > checking getopt.h usability... yes > checking getopt.h presence... yes > checking for getopt.h... yes > checking ieeefp.h usability... yes > checking ieeefp.h presence... yes > checking for ieeefp.h... yes > checking ifaddrs.h usability... no > checking ifaddrs.h presence... no > checking for ifaddrs.h... no > checking langinfo.h usability... no > checking langinfo.h presence... no > checking for langinfo.h... no > checking poll.h usability... no > checking poll.h presence... no > checking for poll.h... no > checking pwd.h usability... yes > checking pwd.h presence... yes > checking for pwd.h... yes > checking sys/ioctl.h usability... no > checking sys/ioctl.h presence... no > checking for sys/ioctl.h... no > checking sys/ipc.h usability... no > checking sys/ipc.h presence... no > checking for sys/ipc.h... no > checking sys/poll.h usability... no > checking sys/poll.h presence... no > checking for sys/poll.h... no > checking sys/pstat.h usability... no > checking sys/pstat.h presence... no > checking for sys/pstat.h... no > checking sys/resource.h usability... no > checking sys/resource.h presence... no > checking for sys/resource.h... no > checking sys/select.h usability... no > checking sys/select.h presence... no > checking for sys/select.h... no > checking sys/sem.h usability... no > checking sys/sem.h presence... no > checking for sys/sem.h... no > checking sys/shm.h usability... no > checking sys/shm.h presence... no > checking for sys/shm.h... no > checking sys/socket.h usability... yes > checking sys/socket.h presence... yes > checking for sys/socket.h... yes > checking sys/sockio.h usability... no > checking sys/sockio.h presence... no > checking for sys/sockio.h... no > checking sys/tas.h usability... no > checking sys/tas.h presence... no > checking for sys/tas.h... no > checking sys/time.h usability... yes > checking sys/time.h presence... yes > checking for sys/time.h... yes > checking sys/un.h usability... no > checking sys/un.h presence... no > checking for sys/un.h... no > checking termios.h usability... no > checking termios.h presence... no > checking for termios.h... no > checking ucred.h usability... no > checking ucred.h presence... no > checking for ucred.h... no > checking utime.h usability... yes > checking utime.h presence... yes > checking for utime.h... yes > checking wchar.h usability... yes > checking wchar.h presence... yes > checking for wchar.h... yes > checking wctype.h usability... yes > checking wctype.h presence... yes > checking for wctype.h... yes > checking kernel/OS.h usability... no > checking kernel/OS.h presence... no > checking for kernel/OS.h... no > checking kernel/image.h usability... no > checking kernel/image.h presence... no > checking for kernel/image.h... no > checking SupportDefs.h usability... no > checking SupportDefs.h presence... no > checking for SupportDefs.h... no > checking for net/if.h... no > checking netinet/in.h usability... yes > checking netinet/in.h presence... yes > checking for netinet/in.h... yes > checking for netinet/tcp.h... no > checking whether byte ordering is bigendian... no > checking for an ANSI C-conforming const... yes > checking for inline... inline > checking for quiet inline (no complaint if unreferenced)... yes > checking for preprocessor stringizing operator... yes > checking for signed types... yes > checking for working volatile... yes > checking for __func__... yes > checking whether struct tm is in sys/time.h or time.h... time.h > checking for struct tm.tm_zone... no > checking for tzname... yes > checking for union semun... no > checking for struct sockaddr_un... no > checking for struct sockaddr_storage... yes > checking for struct sockaddr_storage.ss_family... yes > checking for struct sockaddr_storage.__ss_family... no > checking for struct sockaddr_storage.ss_len... no > checking for struct sockaddr_storage.__ss_len... no > checking for struct sockaddr.sa_len... no > checking for struct addrinfo... yes > checking for intptr_t... yes > checking for uintptr_t... yes > checking for long long int... yes > checking for struct cmsgcred... no > checking for struct fcred... no > checking for struct sockcred... no > checking for struct option... yes > checking for special C compiler options needed for large files... no > checking for _FILE_OFFSET_BITS value needed for large files... unknown > checking for _LARGE_FILES value needed for large files... unknown > checking size of off_t... 4 > checking for int timezone... yes > checking types of arguments for accept()... configure: error: could not determin > e argument types > > dell@dell-PC /d/amber/DevProjects/postgresql-9.0.2 > $ make > You need to run the 'configure' program first. See the file > 'INSTALL' for installation instructions. > make: *** [all] Error 1 > > dell@dell-PC /d/amber/DevProjects/postgresql-9.0.2 > $ > > On Mon, Jan 24, 2011 at 10:17 PM, Andrew Dunstan <andrew@dunslane.net> wrote: >> >> Please see this URL, item 6. <http://www.infradead.org/~dwmw2/email.html> >> >> cheers >> >> andrew >> >> >
On 01/25/2011 06:40 AM, Xiaobo Gu wrote: > I also tried 64bit 4.5.2 GCC shipped with Rtools, the same error >> checking types of arguments for accept()... configure: error: could not determin >> e argument types > I don't have this setup, soi I can't debug it. Neither does anyone else I know of. I suggest you look in config.log to see where it's failing. cheers andrew
Hi Andrew, The config.log is as following Hi Pavel, Which platform are you trying to build PostgreSQL 9.0.2, Win32 or Win64, if it's Win64, have you succed, which version of GCC do you use? Many Thanks. Xiaobo Gu This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by PostgreSQL configure 9.0.2, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --without-zlib ## --------- ## ## Platform. ## ## --------- ## hostname = dell-PC uname -m = i686 uname -r = 1.0.16(0.48/3/2) uname -s = MINGW32_NT-6.1 uname -v = 2010-09-29 00:07 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: . PATH: /usr/local/bin PATH: /mingw/bin PATH: /bin PATH: /d/Amber/Program/PostgreSQL/9.0/bin PATH: /d/Amber/Program/R/R-2.12.1/bin/x64 PATH: /d/Amber/Devtool/Rtools/bin PATH: /d/Amber/Devtool/Rtools/perl/bin PATH: /d/Amber/Devtool/Rtools/MinGW/bin PATH: /mingw/bin PATH: /c/Program Files/Common Files/Microsoft Shared/Windows Live PATH: /c/Program Files (x86)/Common Files/Microsoft Shared/Windows Live PATH: /c/Windows/system32 PATH: /c/Windows PATH: /c/Windows/System32/Wbem PATH: /c/Windows/System32/WindowsPowerShell/v1.0/ PATH: /c/Program Files (x86)/Common Files/Roxio Shared/DLLShared/ PATH: /c/Program Files (x86)/Common Files/Roxio Shared/OEM/DLLShared/ PATH: /c/Program Files (x86)/Common Files/Roxio Shared/OEM/DLLShared/ PATH: /c/Program Files (x86)/Common Files/Roxio Shared/OEM/12.0/DLLShared/ PATH: /c/Program Files (x86)/Roxio/OEM/AudioCore/ PATH: /c/Program Files (x86)/ATI Technologies/ATI.ACE/Core-Static PATH: /c/Program Files/WIDCOMM/Bluetooth Software/ PATH: /c/Program Files/WIDCOMM/Bluetooth Software/syswow64 PATH: /c/Program Files/Intel/WiFi/bin/ PATH: /c/Program Files/Common Files/Intel/WirelessCommon/ PATH: /c/Program Files (x86)/Windows Live/Shared PATH: . PATH: /d/Amber/Devtool/MinGW64/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2069: checking build system type configure:2087: result: i686-pc-mingw32 configure:2109: checking host system type configure:2124: result: i686-pc-mingw32 configure:2148: checking which template to use configure:2247: result: win32 configure:2354: checking whether to build with 64-bit integer date/time support configure:2389: result: yes configure:2396: checking whether NLS is wanted configure:2430: result: no configure:2438: checking for default port number configure:2467: result: 5432 configure:2886: checking for block size configure:2926: result: 8kB configure:2938: checking for segment size configure:2971: result: 1GB configure:2983: checking for WAL block size configure:3024: result: 8kB configure:3036: checking for WAL segment size configure:3077: result: 16MB configure:3179: checking for gcc configure:3195: found /mingw/bin/gcc configure:3206: result: gcc configure:3240: checking for C compiler version configure:3248: gcc --version >&5 gcc.exe (GCC) 4.5.2 20100917 (prerelease) Copyright (C) 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3252: $? = 0 configure:3259: gcc -v >&5 Using built-in specs. COLLECT_GCC=D:\Amber\Devtool\Rtools\MinGW64\bin\gcc.exe COLLECT_LTO_WRAPPER=d:/amber/devtool/rtools/mingw64/bin/../libexec/gcc/x86_64-w64-mingw32/4.5.2/lto-wrapper.exe Target: x86_64-w64-mingw32 Configured with: ../../../build/gcc/src/configure --target=x86_64-w64-mingw32 --prefix=/c/bb/vista64-mingw32/mingw-x86-x86_64/build/build/root --with-sysroot=/c/bb/vista64-mingw32/mingw-x86-x86_64/build/build/root --enable-languages=all,obj-c++ --enable-fully-dynamic-string --disable-multilib Thread model: win32 gcc version 4.5.2 20100917 (prerelease) (GCC) configure:3263: $? = 0 configure:3270: gcc -V >&5 gcc.exe: '-V' option must have argument configure:3274: $? = 1 configure:3297: checking for C compiler default output file name configure:3319: gcc conftest.c >&5 configure:3323: $? = 0 configure:3361: result: a.exe configure:3380: checking whether the C compiler works configure:3390: ./a.exe configure:3394: $? = 0 configure:3413: result: yes configure:3420: checking whether we are cross compiling configure:3422: result: no configure:3425: checking for suffix of executables configure:3432: gcc -o conftest.exe conftest.c >&5 configure:3436: $? = 0 configure:3462: result: .exe configure:3468: checking for suffix of object files configure:3494: gcc -c conftest.c >&5 configure:3498: $? = 0 configure:3523: result: o configure:3527: checking whether we are using the GNU C compiler configure:3556: gcc -c conftest.c >&5 configure:3563: $? = 0 configure:3580: result: yes configure:3589: checking whether gcc accepts -g configure:3619: gcc -c -g conftest.c >&5 configure:3626: $? = 0 configure:3727: result: yes configure:3744: checking for gcc option to accept ISO C89 configure:3818: gcc -c -g -O2 conftest.c >&5 configure:3825: $? = 0 configure:3848: result: none needed configure:3894: gcc -c -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:22:1: error: 'choke' undeclared (first use in this function) conftest.c:22:1: note: each undeclared identifier is reported only once for each function it appears in conftest.c:22:7: error: expected ';' before 'me' configure:3901: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | | int | main () | { | #ifndef __INTEL_COMPILER | choke me | #endif | ; | return 0; | } configure:3941: gcc -c -g -O2 conftest.c >&5 conftest.c: In function 'main': conftest.c:22:1: error: 'choke' undeclared (first use in this function) conftest.c:22:1: note: each undeclared identifier is reported only once for each function it appears in conftest.c:22:7: error: expected ';' before 'me' configure:3948: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | | int | main () | { | #ifndef __SUNPRO_C | choke me | #endif | ; | return 0; | } configure:4002: checking if gcc supports -Wdeclaration-after-statement configure:4027: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement conftest.c >&5 configure:4034: $? = 0 configure:4039: result: yes configure:4052: checking if gcc supports -Wendif-labels configure:4077: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels conftest.c >&5 configure:4084: $? = 0 configure:4089: result: yes configure:4103: checking if gcc supports -fno-strict-aliasing configure:4128: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing conftest.c >&5 configure:4135: $? = 0 configure:4140: result: yes configure:4154: checking if gcc supports -fwrapv configure:4179: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv conftest.c >&5 configure:4186: $? = 0 configure:4191: result: yes configure:4400: checking whether the C compiler still works configure:4423: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c >&5 configure:4430: $? = 0 configure:4438: result: yes configure:4480: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:4487: $? = 0 configure:4510: checking how to run the C preprocessor configure:4550: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:4557: $? = 0 configure:4588: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:17:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4595: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4628: result: gcc -E configure:4657: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:4664: $? = 0 configure:4695: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:17:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4702: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4861: checking allow thread-safe client libraries configure:4895: result: yes configure:4902: checking whether to build with Tcl configure:4930: result: no configure:4966: checking whether to build Perl modules configure:4994: result: no configure:5001: checking whether to build Python modules configure:5029: result: no configure:5036: checking whether to build with GSSAPI support configure:5071: result: no configure:5078: checking whether to build with Kerberos 5 support configure:5113: result: no configure:5161: checking whether to build with PAM support configure:5193: result: no configure:5201: checking whether to build with LDAP support configure:5233: result: no configure:5241: checking whether to build with Bonjour support configure:5273: result: no configure:5281: checking whether to build with OpenSSL support configure:5313: result: no configure:5352: WARNING: *** Readline does not work on MinGW --- disabling configure:5625: checking for grep that handles long lines and -e configure:5685: result: /bin/grep configure:5690: checking for egrep configure:5754: result: /bin/grep -E configure:5805: checking for ld used by GCC configure:5868: result: d:/amber/devtool/rtools/mingw64/x86_64-w64-mingw32/bin/ld.exe configure:5877: checking if the linker (d:/amber/devtool/rtools/mingw64/x86_64-w64-mingw32/bin/ld.exe) is GNU ld GNU ld (GNU Binutils) 2.20.51.20100917 configure:5889: result: yes configure:6002: checking for ranlib configure:6018: found /mingw/bin/ranlib configure:6029: result: ranlib configure:6095: checking for strip configure:6111: found /mingw/bin/strip configure:6122: result: strip configure:6145: checking whether it is possible to strip libraries configure:6150: result: yes configure:6204: checking for ar configure:6220: found /mingw/bin/ar configure:6231: result: ar configure:6297: checking for dlltool configure:6313: found /mingw/bin/dlltool configure:6324: result: dlltool configure:6389: checking for dllwrap configure:6405: found /mingw/bin/dllwrap configure:6416: result: dllwrap configure:6481: checking for windres configure:6497: found /mingw/bin/windres configure:6508: result: windres configure:6534: checking for tar configure:6552: found /bin/tar configure:6564: result: /bin/tar configure:6572: checking whether ln -s works configure:6579: result: no, using cp -p configure:6587: checking for gawk configure:6603: found /bin/gawk configure:6614: result: gawk configure:6625: checking for a thread-safe mkdir -p configure:6664: result: /bin/mkdir -p configure:6680: checking for bison configure:6698: found /bin/bison configure:6710: result: /bin/bison configure:6725: using bison (GNU Bison) 2.4.2 configure:6756: checking for flex configure:6801: result: /bin/flex configure:6821: using flex 2.5.35 configure:6833: checking for perl configure:6851: found /bin/perl configure:6863: result: /bin/perl configure:6875: using perl 5.6.1 configure:6882: WARNING: *** The installed version of Perl, /bin/perl, is too old to use with PostgreSQL. *** Perl version 5.8 or later is required, but this is 5.6.1. configure:6895: WARNING: *** Without Perl you will not be able to build PostgreSQL from Git. *** You can obtain Perl from any CPAN mirror site. *** (If you are using the official distribution of PostgreSQL then you do not *** need to worry about this, because the Perl output is pre-generated.) configure:7133: checking for main in -lm configure:7162: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lm >&5 configure:7169: $? = 0 configure:7190: result: yes configure:7201: checking for library containing setproctitle configure:7242: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lm >&5 C:\Users\dell\AppData\Local\Temp\ccYgPCEQ.o:conftest.c:(.text+0xa): undefined reference to `setproctitle' collect2: ld returned 1 exit status configure:7249: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char setproctitle (); | int | main () | { | return setproctitle (); | ; | return 0; | } configure:7242: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lutil -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lutil collect2: ld returned 1 exit status configure:7249: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char setproctitle (); | int | main () | { | return setproctitle (); | ; | return 0; | } configure:7280: result: no configure:7288: checking for library containing dlopen configure:7329: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lm >&5 C:\Users\dell\AppData\Local\Temp\ccQnVSPw.o:conftest.c:(.text+0xa): undefined reference to `dlopen' collect2: ld returned 1 exit status configure:7336: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char dlopen (); | int | main () | { | return dlopen (); | ; | return 0; | } configure:7329: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -ldl -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -ldl collect2: ld returned 1 exit status configure:7336: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char dlopen (); | int | main () | { | return dlopen (); | ; | return 0; | } configure:7367: result: no configure:7375: checking for library containing socket configure:7416: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lm >&5 C:\Users\dell\AppData\Local\Temp\ccCR2Do7.o:conftest.c:(.text+0xa): undefined reference to `socket' collect2: ld returned 1 exit status configure:7423: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char socket (); | int | main () | { | return socket (); | ; | return 0; | } configure:7416: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lsocket -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lsocket collect2: ld returned 1 exit status configure:7423: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char socket (); | int | main () | { | return socket (); | ; | return 0; | } configure:7416: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:7423: $? = 0 configure:7454: result: -lwsock32 configure:7462: checking for library containing shl_load configure:7503: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 C:\Users\dell\AppData\Local\Temp\ccUAgSwr.o:conftest.c:(.text+0xa): undefined reference to `shl_load' collect2: ld returned 1 exit status configure:7510: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | int | main () | { | return shl_load (); | ; | return 0; | } configure:7503: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -ldld -lwsock32 -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -ldld collect2: ld returned 1 exit status configure:7510: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shl_load (); | int | main () | { | return shl_load (); | ; | return 0; | } configure:7541: result: no configure:7641: checking for library containing getopt_long configure:7682: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:7689: $? = 0 configure:7720: result: none required configure:7728: checking for library containing crypt configure:7769: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 C:\Users\dell\AppData\Local\Temp\ccOnOmYu.o:conftest.c:(.text+0xa): undefined reference to `crypt' collect2: ld returned 1 exit status configure:7776: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char crypt (); | int | main () | { | return crypt (); | ; | return 0; | } configure:7769: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lcrypt -lwsock32 -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lcrypt collect2: ld returned 1 exit status configure:7776: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char crypt (); | int | main () | { | return crypt (); | ; | return 0; | } configure:7807: result: no configure:7816: checking for library containing fdatasync configure:7857: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 C:\Users\dell\AppData\Local\Temp\ccGktC14.o:conftest.c:(.text+0xa): undefined reference to `fdatasync' collect2: ld returned 1 exit status configure:7864: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char fdatasync (); | int | main () | { | return fdatasync (); | ; | return 0; | } configure:7857: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lrt -lwsock32 -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lrt collect2: ld returned 1 exit status configure:7864: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char fdatasync (); | int | main () | { | return fdatasync (); | ; | return 0; | } configure:7857: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lposix4 -lwsock32 -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lposix4 collect2: ld returned 1 exit status configure:7864: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char fdatasync (); | int | main () | { | return fdatasync (); | ; | return 0; | } configure:7895: result: no configure:7905: checking for library containing gethostbyname_r configure:7946: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 C:\Users\dell\AppData\Local\Temp\cceQJ8SL.o:conftest.c:(.text+0xa): undefined reference to `gethostbyname_r' collect2: ld returned 1 exit status configure:7953: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char gethostbyname_r (); | int | main () | { | return gethostbyname_r (); | ; | return 0; | } configure:7946: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lnsl -lwsock32 -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lnsl collect2: ld returned 1 exit status configure:7953: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char gethostbyname_r (); | int | main () | { | return gethostbyname_r (); | ; | return 0; | } configure:7984: result: no configure:7993: checking for library containing shmget configure:8034: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 C:\Users\dell\AppData\Local\Temp\cc9btC7f.o:conftest.c:(.text+0xa): undefined reference to `shmget' collect2: ld returned 1 exit status configure:8041: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shmget (); | int | main () | { | return shmget (); | ; | return 0; | } configure:8034: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lcygipc -lwsock32 -lm >&5 d:/amber/devtool/rtools/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.5.2/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lcygipc collect2: ld returned 1 exit status configure:8041: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | /* end confdefs.h. */ | | /* Override any GCC internal prototype to avoid an error. | Use char because int might match the return type of a GCC | builtin and then its argument prototype would still apply. */ | #ifdef __cplusplus | extern "C" | #endif | char shmget (); | int | main () | { | return shmget (); | ; | return 0; | } configure:8072: result: no configure:9401: checking for ANSI C header files configure:9431: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9438: $? = 0 configure:9537: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:9541: $? = 0 configure:9547: ./conftest.exe configure:9551: $? = 0 configure:9569: result: yes configure:9593: checking for sys/types.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for sys/stat.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for stdlib.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for string.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for memory.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for strings.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for inttypes.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for stdint.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9593: checking for unistd.h configure:9614: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9621: $? = 0 configure:9638: result: yes configure:9697: checking crypt.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:64:19: fatal error: crypt.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <crypt.h> configure:9735: result: no configure:9739: checking crypt.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:31:19: fatal error: crypt.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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 | /* end confdefs.h. */ | #include <crypt.h> configure:9775: result: no configure:9808: checking for crypt.h configure:9817: result: no configure:9697: checking dld.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:64:17: fatal error: dld.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <dld.h> configure:9735: result: no configure:9739: checking dld.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:31:17: fatal error: dld.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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 | /* end confdefs.h. */ | #include <dld.h> configure:9775: result: no configure:9808: checking for dld.h configure:9817: result: no configure:9697: checking fp_class.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:64:22: fatal error: fp_class.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <fp_class.h> configure:9735: result: no configure:9739: checking fp_class.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:31:22: fatal error: fp_class.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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 | /* end confdefs.h. */ | #include <fp_class.h> configure:9775: result: no configure:9808: checking for fp_class.h configure:9817: result: no configure:9697: checking getopt.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking getopt.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for getopt.h configure:9817: result: yes configure:9697: checking ieeefp.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 In file included from conftest.c:65:0: d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/ieeefp.h:6:22: fatal error: ansidecl.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <ieeefp.h> configure:9735: result: no configure:9739: checking ieeefp.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c In file included from conftest.c:32:0: d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/ieeefp.h:6:22: fatal error: ansidecl.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <ieeefp.h> configure:9775: result: no configure:9808: checking for ieeefp.h configure:9817: result: no configure:9697: checking ifaddrs.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:65:21: fatal error: ifaddrs.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <ifaddrs.h> configure:9735: result: no configure:9739: checking ifaddrs.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:32:21: fatal error: ifaddrs.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <ifaddrs.h> configure:9775: result: no configure:9808: checking for ifaddrs.h configure:9817: result: no configure:9697: checking langinfo.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:65:22: fatal error: langinfo.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <langinfo.h> configure:9735: result: no configure:9739: checking langinfo.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:32:22: fatal error: langinfo.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <langinfo.h> configure:9775: result: no configure:9808: checking for langinfo.h configure:9817: result: no configure:9697: checking poll.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:65:18: fatal error: poll.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <poll.h> configure:9735: result: no configure:9739: checking poll.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:32:18: fatal error: poll.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | /* end confdefs.h. */ | #include <poll.h> configure:9775: result: no configure:9808: checking for poll.h configure:9817: result: no configure:9697: checking pwd.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking pwd.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for pwd.h configure:9817: result: yes configure:9697: checking sys/ioctl.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:23: fatal error: sys/ioctl.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/ioctl.h> configure:9735: result: no configure:9739: checking sys/ioctl.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:23: fatal error: sys/ioctl.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/ioctl.h> configure:9775: result: no configure:9808: checking for sys/ioctl.h configure:9817: result: no configure:9697: checking sys/ipc.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:21: fatal error: sys/ipc.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/ipc.h> configure:9735: result: no configure:9739: checking sys/ipc.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:21: fatal error: sys/ipc.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/ipc.h> configure:9775: result: no configure:9808: checking for sys/ipc.h configure:9817: result: no configure:9697: checking sys/poll.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:22: fatal error: sys/poll.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/poll.h> configure:9735: result: no configure:9739: checking sys/poll.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:22: fatal error: sys/poll.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/poll.h> configure:9775: result: no configure:9808: checking for sys/poll.h configure:9817: result: no configure:9697: checking sys/pstat.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:23: fatal error: sys/pstat.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/pstat.h> configure:9735: result: no configure:9739: checking sys/pstat.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:23: fatal error: sys/pstat.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/pstat.h> configure:9775: result: no configure:9808: checking for sys/pstat.h configure:9817: result: no configure:9697: checking sys/resource.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:26: fatal error: sys/resource.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/resource.h> configure:9735: result: no configure:9739: checking sys/resource.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:26: fatal error: sys/resource.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/resource.h> configure:9775: result: no configure:9808: checking for sys/resource.h configure:9817: result: no configure:9697: checking sys/select.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:24: fatal error: sys/select.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/select.h> configure:9735: result: no configure:9739: checking sys/select.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:24: fatal error: sys/select.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/select.h> configure:9775: result: no configure:9808: checking for sys/select.h configure:9817: result: no configure:9697: checking sys/sem.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:21: fatal error: sys/sem.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/sem.h> configure:9735: result: no configure:9739: checking sys/sem.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:21: fatal error: sys/sem.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/sem.h> configure:9775: result: no configure:9808: checking for sys/sem.h configure:9817: result: no configure:9697: checking sys/shm.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:66:21: fatal error: sys/shm.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/shm.h> configure:9735: result: no configure:9739: checking sys/shm.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:33:21: fatal error: sys/shm.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | /* end confdefs.h. */ | #include <sys/shm.h> configure:9775: result: no configure:9808: checking for sys/shm.h configure:9817: result: no configure:9697: checking sys/socket.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking sys/socket.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for sys/socket.h configure:9817: result: yes configure:9697: checking sys/sockio.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:67:24: fatal error: sys/sockio.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/sockio.h> configure:9735: result: no configure:9739: checking sys/sockio.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:34:24: fatal error: sys/sockio.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | /* end confdefs.h. */ | #include <sys/sockio.h> configure:9775: result: no configure:9808: checking for sys/sockio.h configure:9817: result: no configure:9697: checking sys/tas.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:67:21: fatal error: sys/tas.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/tas.h> configure:9735: result: no configure:9739: checking sys/tas.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:34:21: fatal error: sys/tas.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | /* end confdefs.h. */ | #include <sys/tas.h> configure:9775: result: no configure:9808: checking for sys/tas.h configure:9817: result: no configure:9697: checking sys/time.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking sys/time.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for sys/time.h configure:9817: result: yes configure:9697: checking sys/un.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:68:20: fatal error: sys/un.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <sys/un.h> configure:9735: result: no configure:9739: checking sys/un.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:35:20: fatal error: sys/un.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | /* end confdefs.h. */ | #include <sys/un.h> configure:9775: result: no configure:9808: checking for sys/un.h configure:9817: result: no configure:9697: checking termios.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:68:21: fatal error: termios.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <termios.h> configure:9735: result: no configure:9739: checking termios.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:35:21: fatal error: termios.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | /* end confdefs.h. */ | #include <termios.h> configure:9775: result: no configure:9808: checking for termios.h configure:9817: result: no configure:9697: checking ucred.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:68:19: fatal error: ucred.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <ucred.h> configure:9735: result: no configure:9739: checking ucred.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:35:19: fatal error: ucred.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | /* end confdefs.h. */ | #include <ucred.h> configure:9775: result: no configure:9808: checking for ucred.h configure:9817: result: no configure:9697: checking utime.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking utime.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for utime.h configure:9817: result: yes configure:9697: checking wchar.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking wchar.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for wchar.h configure:9817: result: yes configure:9697: checking wctype.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9721: $? = 0 configure:9735: result: yes configure:9739: checking wctype.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9761: $? = 0 configure:9775: result: yes configure:9808: checking for wctype.h configure:9817: result: yes configure:9697: checking kernel/OS.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:71:23: fatal error: kernel/OS.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <kernel/OS.h> configure:9735: result: no configure:9739: checking kernel/OS.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:38:23: fatal error: kernel/OS.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <kernel/OS.h> configure:9775: result: no configure:9808: checking for kernel/OS.h configure:9817: result: no configure:9697: checking kernel/image.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:71:26: fatal error: kernel/image.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <kernel/image.h> configure:9735: result: no configure:9739: checking kernel/image.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:38:26: fatal error: kernel/image.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <kernel/image.h> configure:9775: result: no configure:9808: checking for kernel/image.h configure:9817: result: no configure:9697: checking SupportDefs.h usability configure:9714: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:71:25: fatal error: SupportDefs.h: No such file or directory compilation terminated. configure:9721: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #include <SupportDefs.h> configure:9735: result: no configure:9739: checking SupportDefs.h presence configure:9754: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c conftest.c:38:25: fatal error: SupportDefs.h: No such file or directory compilation terminated. configure:9761: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <SupportDefs.h> configure:9775: result: no configure:9808: checking for SupportDefs.h configure:9817: result: no configure:9839: checking for net/if.h configure:9864: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:76:20: fatal error: net/if.h: No such file or directory compilation terminated. configure:9871: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | #include <net/if.h> configure:9888: result: no configure:9920: checking netinet/in.h usability configure:9937: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:9944: $? = 0 configure:9958: result: yes configure:9962: checking netinet/in.h presence configure:9977: gcc -E -I./src/include/port/win32 -DEXEC_BACKEND conftest.c configure:9984: $? = 0 configure:9998: result: yes configure:10031: checking for netinet/in.h configure:10040: result: yes configure:10059: checking for netinet/tcp.h configure:10084: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:77:25: fatal error: netinet/tcp.h: No such file or directory compilation terminated. configure:10091: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | #ifdef HAVE_NETINET_IN_H | #include <netinet/in.h> | #endif | | | #include <netinet/tcp.h> configure:10108: result: no configure:13960: checking whether byte ordering is bigendian configure:13985: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:40:13: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'a' configure:13992: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | /* end confdefs.h. */ | #ifndef __APPLE_CC__ | not a universal capable compiler | #endif | typedef int dummy; | configure:14042: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:14049: $? = 0 configure:14081: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:46:4: error: 'not' undeclared (first use in this function) conftest.c:46:4: note: each undeclared identifier is reported only once for each function it appears in conftest.c:46:8: error: expected ';' before 'big' configure:14088: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | /* end confdefs.h. */ | #include <sys/types.h> | #include <sys/param.h> | | int | main () | { | #if BYTE_ORDER != BIG_ENDIAN | not big endian | #endif | | ; | return 0; | } configure:14340: result: no configure:14365: checking for an ANSI C-conforming const configure:14440: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:68:10: warning: 't' is used uninitialized in this function conftest.c:84:23: warning: 'b' is used uninitialized in this function configure:14447: $? = 0 configure:14462: result: yes configure:14472: checking for inline configure:14498: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:42:14: warning: no previous prototype for 'foo' configure:14505: $? = 0 configure:14523: result: inline configure:14542: checking for quiet inline (no complaint if unreferenced) configure:14572: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:14579: $? = 0 configure:14601: result: yes configure:14611: checking for preprocessor stringizing operator configure:14635: result: yes configure:14645: checking for signed types configure:14671: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:45:43: warning: unused variable 'i' conftest.c:45:29: warning: unused variable 's' conftest.c:45:13: warning: unused variable 'c' configure:14678: $? = 0 configure:14693: result: yes configure:14702: checking for working volatile configure:14731: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:14738: $? = 0 configure:14753: result: yes configure:14763: checking for __func__ configure:14789: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:14796: $? = 0 configure:14811: result: yes configure:14878: checking whether struct tm is in sys/time.h or time.h configure:14908: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:14915: $? = 0 configure:14930: result: time.h configure:14940: checking for struct tm.tm_zone configure:14971: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:50:12: error: 'struct tm' has no member named 'tm_zone' configure:14978: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | /* end confdefs.h. */ | #include <sys/types.h> | #include <time.h> | | | int | main () | { | static struct tm ac_aggr; | if (ac_aggr.tm_zone) | return 0; | ; | return 0; | } configure:15014: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:50:19: error: 'struct tm' has no member named 'tm_zone' configure:15021: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | /* end confdefs.h. */ | #include <sys/types.h> | #include <time.h> | | | int | main () | { | static struct tm ac_aggr; | if (sizeof ac_aggr.tm_zone) | return 0; | ; | return 0; | } configure:15039: result: no configure:15057: checking for tzname configure:15087: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 conftest.c:44:14: warning: 'tzname' redeclared without dllimport attribute: previous dllimport ignored conftest.c: In function 'main': conftest.c:50:1: warning: implicit declaration of function 'atoi' configure:15094: $? = 0 configure:15114: result: yes configure:15124: checking for union semun configure:15155: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:44:21: fatal error: sys/ipc.h: No such file or directory compilation terminated. configure:15162: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | /* end confdefs.h. */ | #include <sys/types.h> | #include <sys/ipc.h> | #include <sys/sem.h> | | int | main () | { | if (sizeof (union semun)) | return 0; | ; | return 0; | } configure:15222: result: no configure:15233: checking for struct sockaddr_un configure:15266: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:52:13: error: invalid application of 'sizeof' to incomplete type 'struct sockaddr_un' configure:15273: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_UN_H | #include <sys/un.h> | #endif | | | int | main () | { | if (sizeof (struct sockaddr_un)) | return 0; | ; | return 0; | } configure:15335: result: no configure:15350: checking for struct sockaddr_storage configure:15383: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:15390: $? = 0 configure:15422: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:52:38: error: expected expression before ')' token configure:15429: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | if (sizeof ((struct sockaddr_storage))) | return 0; | ; | return 0; | } configure:15452: result: yes configure:15463: checking for struct sockaddr_storage.ss_family configure:15496: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:15503: $? = 0 configure:15566: result: yes configure:15576: checking for struct sockaddr_storage.__ss_family configure:15609: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:12: error: 'struct sockaddr_storage' has no member named '__ss_family' configure:15616: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr_storage ac_aggr; | if (ac_aggr.__ss_family) | return 0; | ; | return 0; | } configure:15654: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:19: error: 'struct sockaddr_storage' has no member named '__ss_family' configure:15661: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr_storage ac_aggr; | if (sizeof ac_aggr.__ss_family) | return 0; | ; | return 0; | } configure:15679: result: no configure:15689: checking for struct sockaddr_storage.ss_len configure:15722: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:12: error: 'struct sockaddr_storage' has no member named 'ss_len' configure:15729: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr_storage ac_aggr; | if (ac_aggr.ss_len) | return 0; | ; | return 0; | } configure:15767: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:19: error: 'struct sockaddr_storage' has no member named 'ss_len' configure:15774: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr_storage ac_aggr; | if (sizeof ac_aggr.ss_len) | return 0; | ; | return 0; | } configure:15792: result: no configure:15802: checking for struct sockaddr_storage.__ss_len configure:15835: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:12: error: 'struct sockaddr_storage' has no member named '__ss_len' configure:15842: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr_storage ac_aggr; | if (ac_aggr.__ss_len) | return 0; | ; | return 0; | } configure:15880: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:19: error: 'struct sockaddr_storage' has no member named '__ss_len' configure:15887: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr_storage ac_aggr; | if (sizeof ac_aggr.__ss_len) | return 0; | ; | return 0; | } configure:15905: result: no configure:15915: checking for struct sockaddr.sa_len configure:15948: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:12: error: 'struct sockaddr' has no member named 'sa_len' configure:15955: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr ac_aggr; | if (ac_aggr.sa_len) | return 0; | ; | return 0; | } configure:15993: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:55:19: error: 'struct sockaddr' has no member named 'sa_len' configure:16000: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | | | int | main () | { | static struct sockaddr ac_aggr; | if (sizeof ac_aggr.sa_len) | return 0; | ; | return 0; | } configure:16018: result: no configure:16029: checking for struct addrinfo configure:16061: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:16068: $? = 0 configure:16099: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:53:30: error: expected expression before ')' token configure:16106: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | /* end confdefs.h. */ | #include <sys/types.h> | #include <sys/socket.h> | #include <netdb.h> | | | int | main () | { | if (sizeof ((struct addrinfo))) | return 0; | ; | return 0; | } configure:16129: result: yes configure:16141: checking for intptr_t configure:16169: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:16176: $? = 0 configure:16203: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:82:23: error: expected expression before ')' token configure:16210: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | int | main () | { | if (sizeof ((intptr_t))) | return 0; | ; | return 0; | } configure:16233: result: yes configure:16298: checking for uintptr_t configure:16326: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:16333: $? = 0 configure:16360: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:83:24: error: expected expression before ')' token configure:16367: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | /* end confdefs.h. */ | #include <stdio.h> | #ifdef HAVE_SYS_TYPES_H | # include <sys/types.h> | #endif | #ifdef HAVE_SYS_STAT_H | # include <sys/stat.h> | #endif | #ifdef STDC_HEADERS | # include <stdlib.h> | # include <stddef.h> | #else | # ifdef HAVE_STDLIB_H | # include <stdlib.h> | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include <memory.h> | # endif | # include <string.h> | #endif | #ifdef HAVE_STRINGS_H | # include <strings.h> | #endif | #ifdef HAVE_INTTYPES_H | # include <inttypes.h> | #endif | #ifdef HAVE_STDINT_H | # include <stdint.h> | #endif | #ifdef HAVE_UNISTD_H | # include <unistd.h> | #endif | int | main () | { | if (sizeof ((uintptr_t))) | return 0; | ; | return 0; | } configure:16390: result: yes configure:16456: checking for long long int configure:16503: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:16510: $? = 0 configure:16557: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:16561: $? = 0 configure:16567: ./conftest.exe configure:16571: $? = 0 configure:16598: result: yes configure:16609: checking for struct cmsgcred configure:16641: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:52:23: fatal error: sys/ucred.h: No such file or directory compilation terminated. configure:16648: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | /* end confdefs.h. */ | #include <sys/param.h> | #include <sys/types.h> | #include <sys/socket.h> | #include <sys/ucred.h> | | int | main () | { | if (sizeof (struct cmsgcred)) | return 0; | ; | return 0; | } configure:16709: result: no configure:16719: checking for struct fcred configure:16751: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:52:23: fatal error: sys/ucred.h: No such file or directory compilation terminated. configure:16758: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | /* end confdefs.h. */ | #include <sys/param.h> | #include <sys/types.h> | #include <sys/socket.h> | #include <sys/ucred.h> | | int | main () | { | if (sizeof (struct fcred)) | return 0; | ; | return 0; | } configure:16819: result: no configure:16829: checking for struct sockcred configure:16861: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:52:23: fatal error: sys/ucred.h: No such file or directory compilation terminated. configure:16868: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | /* end confdefs.h. */ | #include <sys/param.h> | #include <sys/types.h> | #include <sys/socket.h> | #include <sys/ucred.h> | | int | main () | { | if (sizeof (struct sockcred)) | return 0; | ; | return 0; | } configure:16929: result: no configure:16941: checking for struct option configure:16972: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 configure:16979: $? = 0 configure:17009: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c: In function 'main': conftest.c:56:28: error: expected expression before ')' token configure:17016: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | /* end confdefs.h. */ | #ifdef HAVE_GETOPT_H | #include <getopt.h> | #endif | | int | main () | { | if (sizeof ((struct option))) | return 0; | ; | return 0; | } configure:17039: result: yes configure:17671: checking for special C compiler options needed for large files configure:17766: result: no configure:17772: checking for _FILE_OFFSET_BITS value needed for large files configure:17807: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:56:3: warning: left shift count >= width of type conftest.c:56:3: warning: left shift count >= width of type conftest.c:57:10: warning: left shift count >= width of type conftest.c:57:10: warning: left shift count >= width of type conftest.c:56:7: error: size of array 'off_t_is_large' is negative conftest.c:58:9: warning: variably modified 'off_t_is_large' at file scope configure:17814: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | /* end confdefs.h. */ | #include <sys/types.h> | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:17858: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:57:3: warning: left shift count >= width of type conftest.c:57:3: warning: left shift count >= width of type conftest.c:58:10: warning: left shift count >= width of type conftest.c:58:10: warning: left shift count >= width of type conftest.c:57:7: error: size of array 'off_t_is_large' is negative conftest.c:59:9: warning: variably modified 'off_t_is_large' at file scope configure:17865: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | /* end confdefs.h. */ | #define _FILE_OFFSET_BITS 64 | #include <sys/types.h> | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:17883: result: unknown configure:17895: checking for _LARGE_FILES value needed for large files configure:17930: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:56:3: warning: left shift count >= width of type conftest.c:56:3: warning: left shift count >= width of type conftest.c:57:10: warning: left shift count >= width of type conftest.c:57:10: warning: left shift count >= width of type conftest.c:56:7: error: size of array 'off_t_is_large' is negative conftest.c:58:9: warning: variably modified 'off_t_is_large' at file scope configure:17937: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | /* end confdefs.h. */ | #include <sys/types.h> | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:17981: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:57:3: warning: left shift count >= width of type conftest.c:57:3: warning: left shift count >= width of type conftest.c:58:10: warning: left shift count >= width of type conftest.c:58:10: warning: left shift count >= width of type conftest.c:57:7: error: size of array 'off_t_is_large' is negative conftest.c:59:9: warning: variably modified 'off_t_is_large' at file scope configure:17988: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | /* end confdefs.h. */ | #define _LARGE_FILES 1 | #include <sys/types.h> | /* Check that off_t can represent 2**63 - 1 correctly. | We can't simply define LARGE_OFF_T to be 9223372036854775807, | since some C++ compilers masquerading as C compilers | incorrectly reject 9223372036854775807. */ | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | && LARGE_OFF_T % 2147483647 == 1) | ? 1 : -1]; | int | main () | { | | ; | return 0; | } configure:18006: result: unknown configure:18026: checking size of off_t configure:18331: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:18335: $? = 0 configure:18341: ./conftest.exe configure:18345: $? = 0 configure:18371: result: 4 configure:18394: checking for int timezone configure:18425: gcc -o conftest.exe -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND -Wl,--allow-multiple-definition conftest.c -lwsock32 -lm >&5 configure:18432: $? = 0 configure:18452: result: yes configure:18461: checking types of arguments for accept() configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, const struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, const struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, const struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, const struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, const struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, void *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, void *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, void *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, void *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (int, void *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, const struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, const struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, const struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, const struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, const struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, void *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, void *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, void *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, void *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:12: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern int accept (unsigned int, void *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, const struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, const struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, const struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, const struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, const struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, void *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, void *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, void *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, void *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (int, void *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, const struct sockaddr *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, const struct sockaddr *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, const struct sockaddr *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, const struct sockaddr *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, const struct sockaddr *, void *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, void *, int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, void *, size_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, void *, socklen_t *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, void *, unsigned int *); | int | main () | { | | ; | return 0; | } configure:18506: gcc -c -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I./src/include/port/win32 -DEXEC_BACKEND conftest.c >&5 conftest.c:58:28: error: conflicting types for 'accept' d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here configure:18513: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.0.2" | #define PACKAGE_STRING "PostgreSQL 9.0.2" | #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" | #define PG_VERSION "9.0.2" | #define PG_MAJORVERSION "9.0" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | #define ENABLE_THREAD_SAFETY 1 | #define PG_KRB_SRVNAM "postgres" | #define HAVE_LIBM 1 | #define HAVE_SPINLOCKS 1 | #define STDC_HEADERS 1 | #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_GETOPT_H 1 | #define HAVE_PWD_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_UTIME_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_NETINET_IN_H 1 | #define USE_INLINE 1 | #define HAVE_STRINGIZE 1 | #define HAVE_FUNCNAME__FUNC 1 | #define HAVE_TZNAME 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE 1 | #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 | #define HAVE_STRUCT_ADDRINFO 1 | #define HAVE_INTPTR_T 1 | #define HAVE_UINTPTR_T 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_STRUCT_OPTION 1 | #define SIZEOF_OFF_T 4 | #define HAVE_INT_TIMEZONE /**/ | /* end confdefs.h. */ | #ifdef HAVE_SYS_TYPES_H | #include <sys/types.h> | #endif | #ifdef HAVE_SYS_SOCKET_H | #include <sys/socket.h> | #endif | extern unsigned int PASCAL accept (unsigned int, void *, void *); | int | main () | { | | ; | return 0; | } configure:18532: error: could not determine argument types ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-mingw32 ac_cv_c_bigendian=no ac_cv_c_compiler_gnu=yes ac_cv_c_const=yes ac_cv_c_inline=inline ac_cv_c_stringize=yes ac_cv_c_volatile=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_DOCBOOKSTYLE_set= ac_cv_env_DOCBOOKSTYLE_value= ac_cv_env_LDFLAGS_EX_set= ac_cv_env_LDFLAGS_EX_value= ac_cv_env_LDFLAGS_SL_set= ac_cv_env_LDFLAGS_SL_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_exeext=.exe ac_cv_func_accept_arg1='unsigned int' ac_cv_func_accept_arg2='void *' ac_cv_func_accept_arg3=void ac_cv_func_accept_return='unsigned int PASCAL' ac_cv_header_SupportDefs_h=no ac_cv_header_crypt_h=no ac_cv_header_dld_h=no ac_cv_header_fp_class_h=no ac_cv_header_getopt_h=yes ac_cv_header_ieeefp_h=no ac_cv_header_ifaddrs_h=no ac_cv_header_inttypes_h=yes ac_cv_header_kernel_OS_h=no ac_cv_header_kernel_image_h=no ac_cv_header_langinfo_h=no ac_cv_header_memory_h=yes ac_cv_header_net_if_h=no ac_cv_header_netinet_in_h=yes ac_cv_header_netinet_tcp_h=no ac_cv_header_poll_h=no ac_cv_header_pwd_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_ioctl_h=no ac_cv_header_sys_ipc_h=no ac_cv_header_sys_poll_h=no ac_cv_header_sys_pstat_h=no ac_cv_header_sys_resource_h=no ac_cv_header_sys_select_h=no ac_cv_header_sys_sem_h=no ac_cv_header_sys_shm_h=no ac_cv_header_sys_socket_h=yes ac_cv_header_sys_sockio_h=no ac_cv_header_sys_stat_h=yes ac_cv_header_sys_tas_h=no ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_sys_un_h=no ac_cv_header_termios_h=no ac_cv_header_ucred_h=no ac_cv_header_unistd_h=yes ac_cv_header_utime_h=yes ac_cv_header_wchar_h=yes ac_cv_header_wctype_h=yes ac_cv_host=i686-pc-mingw32 ac_cv_lib_m_main=yes ac_cv_member_struct_sockaddr_sa_len=no ac_cv_member_struct_sockaddr_storage___ss_family=no ac_cv_member_struct_sockaddr_storage___ss_len=no ac_cv_member_struct_sockaddr_storage_ss_family=yes ac_cv_member_struct_sockaddr_storage_ss_len=no ac_cv_member_struct_tm_tm_zone=no ac_cv_objext=o ac_cv_path_BISON=/bin/bison ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_LD=d:/amber/devtool/rtools/mingw64/x86_64-w64-mingw32/bin/ld.exe ac_cv_path_PERL=/bin/perl ac_cv_path_TAR=/bin/tar ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_DLLTOOL=dlltool ac_cv_prog_ac_ct_DLLWRAP=dllwrap ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_ac_ct_WINDRES=windres ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_gnu_ld=yes ac_cv_search_crypt=no ac_cv_search_dlopen=no ac_cv_search_fdatasync=no ac_cv_search_gethostbyname_r=no ac_cv_search_getopt_long='none required' ac_cv_search_setproctitle=no ac_cv_search_shl_load=no ac_cv_search_shmget=no ac_cv_search_socket=-lwsock32 ac_cv_sizeof_off_t=4 ac_cv_struct_tm=time.h ac_cv_sys_file_offset_bits=unknown ac_cv_sys_large_files=unknown ac_cv_sys_largefile_CC=no ac_cv_type_intptr_t=yes ac_cv_type_long_long_int=yes ac_cv_type_struct_addrinfo=yes ac_cv_type_struct_cmsgcred=no ac_cv_type_struct_fcred=no ac_cv_type_struct_option=yes ac_cv_type_struct_sockaddr_storage=yes ac_cv_type_struct_sockaddr_un=no ac_cv_type_struct_sockcred=no ac_cv_type_uintptr_t=yes ac_cv_type_union_semun=no ac_cv_var_tzname=yes pgac_cv_c_inline_quietly=yes pgac_cv_c_signed=yes pgac_cv_funcname_func_support=yes pgac_cv_path_flex=/bin/flex pgac_cv_var_int_timezone=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## AR='ar' AWK='gawk' BISON='/bin/bison' BISONFLAGS='' CC='gcc' CFLAGS='-O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv' COLLATEINDEX='' CPP='gcc -E' CPPFLAGS=' -I./src/include/port/win32 -DEXEC_BACKEND ' DEFS='' DLLTOOL='dlltool' DLLWRAP='dllwrap' DOCBOOKSTYLE='' DTRACE='' DTRACEFLAGS='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' ELF_SYS='' EXEEXT='.exe' FLEX='/bin/flex' FLEXFLAGS='' GCC='yes' GCOV='' GENHTML='' GREP='/bin/grep' HAVE_IPV6='' HAVE_POSIX_SIGNALS='' INCLUDES='' JADE='' LCOV='' LD='d:/amber/devtool/rtools/mingw64/x86_64-w64-mingw32/bin/ld.exe' LDAP_LIBS_BE='' LDAP_LIBS_FE='' LDFLAGS='-Wl,--allow-multiple-definition ' LDFLAGS_EX='' LDFLAGS_SL='' LIBOBJS='' LIBS='-lwsock32 -lm ' LN_S='cp -p' LTLIBOBJS='' MKDIR_P='/bin/mkdir -p' MSGFMT='' MSGMERGE='' NSGMLS='' OBJEXT='o' OSSP_UUID_LIBS='' OSX='' PACKAGE_BUGREPORT='pgsql-bugs@postgresql.org' PACKAGE_NAME='PostgreSQL' PACKAGE_STRING='PostgreSQL 9.0.2' PACKAGE_TARNAME='postgresql' PACKAGE_VERSION='9.0.2' PATH_SEPARATOR=':' PERL='' PG_MAJORVERSION='9.0' PORTNAME='win32' PTHREAD_CC='' PTHREAD_CFLAGS='' PTHREAD_LIBS='' PYTHON='' RANLIB='ranlib' SHELL='/bin/sh' STRIP='strip' STRIP_SHARED_LIB='strip --strip-unneeded' STRIP_STATIC_LIB='strip -x' SUN_STUDIO_CC='no' TAR='/bin/tar' TAS='' TCLSH='' TCL_CONFIG_SH='' TCL_INCLUDE_SPEC='' TCL_LIBS='' TCL_LIB_FILE='' TCL_LIB_SPEC='' TCL_SHARED_BUILD='' TCL_SHLIB_LD_LIBS='' WANTED_LANGUAGES='' WINDRES='windres' XGETTEXT='' XML2_CONFIG='' XSLTPROC='' ZIC='' ac_ct_CC='gcc' acx_pthread_config='' autodepend='' bindir='${exec_prefix}/bin' build='i686-pc-mingw32' build_alias='' build_cpu='i686' build_os='mingw32' build_vendor='pc' configure_args=' '\''--without-zlib'\''' datadir='${datarootdir}' datarootdir='${prefix}/share' default_port='5432' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' enable_coverage='no' enable_debug='no' enable_dtrace='no' enable_nls='no' enable_profiling='no' enable_rpath='yes' enable_shared='yes' enable_thread_safety='yes' exec_prefix='NONE' have_docbook='' host='i686-pc-mingw32' host_alias='' host_cpu='i686' host_os='mingw32' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' krb_srvtab='' ld_R_works='' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' pdfdir='${docdir}' perl_archlibexp='' perl_embed_ldflags='' perl_privlibexp='' perl_useshrplib='' prefix='NONE' program_transform_name='s,x,x,' psdir='${docdir}' python_additional_libs='' python_configdir='' python_includespec='' python_libdir='' python_libspec='' python_majorversion='' python_version='' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' vpath_build='' with_bonjour='no' with_gnu_ld='yes' with_gssapi='no' with_krb5='no' with_ldap='no' with_libxml='no' with_libxslt='no' with_openssl='no' with_ossp_uuid='no' with_pam='no' with_perl='no' with_python='no' with_system_tzdata='' with_tcl='no' with_zlib='no' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "PostgreSQL" #define PACKAGE_TARNAME "postgresql" #define PACKAGE_VERSION "9.0.2" #define PACKAGE_STRING "PostgreSQL 9.0.2" #define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org" #define PG_VERSION "9.0.2" #define PG_MAJORVERSION "9.0" #define USE_INTEGER_DATETIMES 1 #define DEF_PGPORT 5432 #define DEF_PGPORT_STR "5432" #define BLCKSZ 8192 #define RELSEG_SIZE 131072 #define XLOG_BLCKSZ 8192 #define XLOG_SEG_SIZE (16 * 1024 * 1024) #define ENABLE_THREAD_SAFETY 1 #define PG_KRB_SRVNAM "postgres" #define HAVE_LIBM 1 #define HAVE_SPINLOCKS 1 #define STDC_HEADERS 1 #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_GETOPT_H 1 #define HAVE_PWD_H 1 #define HAVE_SYS_SOCKET_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_UTIME_H 1 #define HAVE_WCHAR_H 1 #define HAVE_WCTYPE_H 1 #define HAVE_NETINET_IN_H 1 #define USE_INLINE 1 #define HAVE_STRINGIZE 1 #define HAVE_FUNCNAME__FUNC 1 #define HAVE_TZNAME 1 #define HAVE_STRUCT_SOCKADDR_STORAGE 1 #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 #define HAVE_STRUCT_ADDRINFO 1 #define HAVE_INTPTR_T 1 #define HAVE_UINTPTR_T 1 #define HAVE_LONG_LONG_INT 1 #define HAVE_STRUCT_OPTION 1 #define SIZEOF_OFF_T 4 #define HAVE_INT_TIMEZONE /**/ configure: exit 1
On 01/25/2011 09:15 AM, Xiaobo Gu wrote: > Hi Andrew, > The config.log is as following So what is the declaration of accept at d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: ? cheers andrew
Hi,I have a talk with MinGW developer, because I am not so familiar with the UNIX configure and build system, can you help to resolve the problem please. <jon_y>: XiaoboGu: try actually reading config.log 20:18 <jon_y>: look for winsock2.h in it 20:18 <jon_y>: you should find it, along with the error nearby 20:19 <tjtag>: thats fixed it, will do that also ktietz 20:20 <XiaoboGu>: d:/amber/devtool/mingw64-1.0-20100913/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: note: previous declaration of 'accept' was here 20:21 <jon_y>: like I said, the accept() probe doesn't work due to difference in expectation 20:23 <tjtag>: brb 20:23 <XiaoboGu>: the path is OK 20:24 <XiaoboGu>: I really can't understand this 20:24 <jon_y>: its probing accept() for known implementations 20:24 <XiaoboGu>: do you mean the configure script has a problem 20:25 <jon_y>: none of them match the one in winsock2.h 20:25 <jon_y>: I don't know, it could be mingw-w64's fault too 20:25 <jon_y>: please contact psql and ask for a list of accept() implementations checked On Tue, Jan 25, 2011 at 10:54 PM, Andrew Dunstan <andrew@dunslane.net> wrote: > > > On 01/25/2011 09:15 AM, Xiaobo Gu wrote: >> >> Hi Andrew, >> The config.log is as following > > > So what is the declaration of accept at > > d:/amber/devtool/rtools/mingw64/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: > > ? > > cheers > > andrew > >
On Thu, Jan 27, 2011 at 9:14 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: > On Thu, Jan 27, 2011 at 8:56 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: >> On Thu, Jan 27, 2011 at 8:51 PM, Andrew Dunstan <andrew@dunslane.net> wrote: >>> >>> >>> On 01/27/2011 07:41 AM, Xiaobo Gu wrote: >>>> >>>> On Thu, Jan 27, 2011 at 8:37 PM, Andrew Dunstan<andrew@dunslane.net> >>>> wrote: >>>>> >>>>> On 01/27/2011 07:31 AM, Xiaobo Gu wrote: >>>>>> >>>>>> Hi, >>>>>> I have a talk with MinGW developer, because I am not so familiar with >>>>>> the UNIX configure and build system, can you help to resolve the >>>>>> problem please. >>>>>> >>>>>> >>>>>> >>>>>> <jon_y>: XiaoboGu: try actually reading config.log >>>>>> 20:18<jon_y>: look for winsock2.h in it >>>>>> 20:18<jon_y>: you should find it, along with the error nearby >>>>>> 20:19<tjtag>: thats fixed it, will do that also ktietz >>>>>> 20:20<XiaoboGu>: >>>>>> >>>>>> >>>>>> d:/amber/devtool/mingw64-1.0-20100913/lib/gcc/../../x86_64-w64-mingw32/include/winsock2.h:1035:37: >>>>>> note: previous declaration of 'accept' was here >>>>>> 20:21<jon_y>: like I said, the accept() probe doesn't work due to >>>>>> difference in expectation >>>>>> 20:23<tjtag>: brb >>>>>> 20:23<XiaoboGu>: the path is OK >>>>>> 20:24<XiaoboGu>: I really can't understand this >>>>>> 20:24<jon_y>: its probing accept() for known implementations >>>>>> 20:24<XiaoboGu>: do you mean the configure script has a problem >>>>>> 20:25<jon_y>: none of them match the one in winsock2.h >>>>>> 20:25<jon_y>: I don't know, it could be mingw-w64's fault too >>>>>> 20:25<jon_y>: please contact psql and ask for a list of accept() >>>>>> implementations checked >>>>>> >>>>> >>>>> >>>>> I am going to ignore your requests until you stop top-answering. >>>> >>>> I am sorry, do you mean there are problems when dealing with the socke >>>> function accept ? >>>> >>> >>> Clearly there is a problem, or configure would have worked. You need to >>> answer the question I asked previously, namely what is the declaration of >>> accept() in the mingw64 headers? You have that source and I don't so I can't >>> answer the question. >> >> #ifndef __WINSOCK_WS1_SHARED >> /* these 46 functions have the same prototypes as in winsock2 */ >> WINSOCK_API_LINKAGE SOCKET WSAAPI accept(SOCKET s,struct sockaddr >> *addr,int *addrlen); >> WINSOCK_API_LINKAGE int WSAAPI bind(SOCKET s,const struct sockaddr >> *name,int namelen); >> WINSOCK_API_LINKAGE int WSAAPI closesocket(SOCKET s); >> WINSOCK_API_LINKAGE int WSAAPI connect(SOCKET s,const struct >> sockaddr *name,int namelen); >>> > And these are type defines for SOCKET and struct sockaddr > > > #ifndef ___WSA_SOCKET_TYPES_H > #define ___WSA_SOCKET_TYPES_H > > #if 0 > typedef UINT_PTR SOCKET; > #else > typedef INT_PTR SOCKET; > #endif > > #define INVALID_SOCKET (SOCKET)(~0) > #define SOCKET_ERROR (-1) > > #endif /* ___WSA_SOCKET_TYPES_H */ > > > struct sockaddr { > u_short sa_family; > char sa_data[14]; > }; > > And the definitions for u_short and UINT_PTR INT_PTR are in : _bsd_types.h typedef unsigned short u_short; basetsd.h #ifndef _W64 #define _W64 #endif #ifdef _WIN64 __MINGW_EXTENSION typedef __int64 INT_PTR,*PINT_PTR; __MINGW_EXTENSION typedef unsigned __int64 UINT_PTR,*PUINT_PTR;__MINGW_EXTENSION typedef __int64 LONG_PTR,*PLONG_PTR; __MINGW_EXTENSION typedef unsigned __int64 ULONG_PTR,*PULONG_PTR; #define __int3264 __int64 #else typedef int INT_PTR,*PINT_PTR; typedef unsigned int UINT_PTR,*PUINT_PTR; typedef long LONG_PTR,*PLONG_PTR; typedefunsigned long ULONG_PTR,*PULONG_PTR; #define __int3264 __int32 #endif > Xiaobo Gu >
On Thu, Jan 27, 2011 at 7:31 AM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: > 20:25 <jon_y>: please contact psql and ask for a list of accept() > implementations checked It looks like we check each argument and the return type for a couple of possibilities: argument 1 can be int or unsigned int argument 2 can be struct sockaddr * or const struct sockaddr * or void * argument 3 can be int * or size_t * or socklen_t * or unsigned int * or void * the return type can be int or unsigned int PASCAL Here's the code: AC_DEFUN([AC_FUNC_ACCEPT_ARGTYPES], [AC_MSG_CHECKING([types of arguments for accept()])AC_CACHE_VAL(ac_cv_func_accept_return,dnl[AC_CACHE_VAL(ac_cv_func_accept_arg1,dnl [AC_CACHE_VAL(ac_cv_func_accept_arg2,dnl [AC_CACHE_VAL(ac_cv_func_accept_arg3,dnl [for ac_cv_func_accept_return in 'int' 'unsigned int PASCAL'; do for ac_cv_func_accept_arg1 in 'int' 'unsigned int'; do for ac_cv_func_accept_arg2 in 'struct sockaddr *' 'const struct sockaddr *' 'void *'; do for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do AC_TRY_COMPILE( [#ifdef HAVE_SYS_TYPES_H #include <sys/types.h>#endif #ifdef HAVE_SYS_SOCKET_H #include <sys/socket.h> #endif extern $ac_cv_func_accept_return accept ($ac_cv_func_accept_arg1, $ac_cv_func_ac cept_arg2, $ac_cv_func_accept_arg3 *);], [], [ac_not_found=no; break 4], [ac_not_found=yes]) done done done done if test "$ac_not_found" = yes; then AC_MSG_ERROR([could not determine argument types]) fi if test"$ac_cv_func_accept_arg3" = "void"; then ac_cv_func_accept_arg3=int fi ])dnl AC_CACHE_VAL ])dnl AC_CACHE_VAL])dnl AC_CACHE_VAL])dnl AC_CACHE_VAL -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
On 01/27/2011 08:51 AM, Robert Haas wrote: > On Thu, Jan 27, 2011 at 7:31 AM, Xiaobo Gu<guxiaobo1982@gmail.com> wrote: >> 20:25<jon_y>: please contact psql and ask for a list of accept() >> implementations checked > It looks like we check each argument and the return type for a couple > of possibilities: > > argument 1 can be int or unsigned int > argument 2 can be struct sockaddr * or const struct sockaddr * or void * > argument 3 can be int * or size_t * or socklen_t * or unsigned int * or void * > the return type can be int or unsigned int PASCAL > > Yeah. it looks like the return type is the likely culprit. It looks like it wants either a signed or unsigned int64. Also, the mingw64 API uses the WSAAPI qualifier instead of PASCAL. cheers andrew
On Thu, Jan 27, 2011 at 10:01 PM, Andrew Dunstan <andrew@dunslane.net> wrote: > > > On 01/27/2011 08:51 AM, Robert Haas wrote: >> >> On Thu, Jan 27, 2011 at 7:31 AM, Xiaobo Gu<guxiaobo1982@gmail.com> wrote: >>> >>> 20:25<jon_y>: please contact psql and ask for a list of accept() >>> implementations checked >> >> It looks like we check each argument and the return type for a couple >> of possibilities: >> >> argument 1 can be int or unsigned int >> argument 2 can be struct sockaddr * or const struct sockaddr * or void * >> argument 3 can be int * or size_t * or socklen_t * or unsigned int * or >> void * >> the return type can be int or unsigned int PASCAL >> >> > > Yeah. it looks like the return type is the likely culprit. It looks like it > wants either a signed or unsigned int64. Also, the mingw64 API uses the > WSAAPI qualifier instead of PASCAL. > I am still trying, but I think it may be the first argument, because MinGW64 define SOCKET as a pointer, but you accept int or unsigned int Xiaobo Gu
On 01/27/2011 09:19 AM, Xiaobo Gu wrote: > On Thu, Jan 27, 2011 at 10:01 PM, Andrew Dunstan<andrew@dunslane.net> wrote: >> >> On 01/27/2011 08:51 AM, Robert Haas wrote: >>> On Thu, Jan 27, 2011 at 7:31 AM, Xiaobo Gu<guxiaobo1982@gmail.com> wrote: >>>> 20:25<jon_y>: please contact psql and ask for a list of accept() >>>> implementations checked >>> It looks like we check each argument and the return type for a couple >>> of possibilities: >>> >>> argument 1 can be int or unsigned int >>> argument 2 can be struct sockaddr * or const struct sockaddr * or void * >>> argument 3 can be int * or size_t * or socklen_t * or unsigned int * or >>> void * >>> the return type can be int or unsigned int PASCAL >>> >>> >> Yeah. it looks like the return type is the likely culprit. It looks like it >> wants either a signed or unsigned int64. Also, the mingw64 API uses the >> WSAAPI qualifier instead of PASCAL. >> > I am still trying, but I think it may be the first argument, because > MinGW64 define SOCKET as a pointer, but you accept int or unsigned int > No it doesn't. It defines it as an INT_PTR or UINT_PTR which in turn is an __int64, I think. But you're right, we might need to look at the first argument as well as the return type. cheers andrew
On Thu, Jan 27, 2011 at 10:44 PM, Xiaobo Gu <guxiaobo1982@gmail.com> wrote: > On Thu, Jan 27, 2011 at 9:32 PM, Andrew Dunstan <andrew@dunslane.net> wrote: >> >> >> On 01/27/2011 07:56 AM, Xiaobo Gu wrote: >>>> >>>> Clearly there is a problem, or configure would have worked. You need to >>>> answer the question I asked previously, namely what is the declaration of >>>> accept() in the mingw64 headers? You have that source and I don't so I >>>> can't >>>> answer the question. >>> >>> #ifndef __WINSOCK_WS1_SHARED >>> /* these 46 functions have the same prototypes as in winsock2 */ >>> WINSOCK_API_LINKAGE SOCKET WSAAPI accept(SOCKET s,struct sockaddr >>> *addr,int *addrlen); >>> WINSOCK_API_LINKAGE int WSAAPI bind(SOCKET s,const struct sockaddr >>> *name,int namelen); >>> WINSOCK_API_LINKAGE int WSAAPI closesocket(SOCKET s); >>> WINSOCK_API_LINKAGE int WSAAPI connect(SOCKET s,const struct >>> sockaddr *name,int namelen); >> >> Ok, now in src/config/ac_func_accept_argtypes.m4 on line 48, try adding the >> following alternatives for the return type: >> >> unsigned int WSAAPI >> int WSAAPI >> unsigned INT_PTR WSAAPI >> INT_PTR WSAAPI > > None of them works, I'll try to add '__int64' as an option to first argument, > >> and see if one of them lets configure pass. AC_DEFUN([AC_FUNC_ACCEPT_ARGTYPES], [AC_MSG_CHECKING([types of arguments for accept()])AC_CACHE_VAL(ac_cv_func_accept_return,dnl[AC_CACHE_VAL(ac_cv_func_accept_arg1,dnl [AC_CACHE_VAL(ac_cv_func_accept_arg2,dnl [AC_CACHE_VAL(ac_cv_func_accept_arg3,dnl [for ac_cv_func_accept_return in 'INT_PTRWSAAPI' 'int' 'unsigned int PASCAL' ; do for ac_cv_func_accept_arg1 in '__int64' 'int' 'unsigned int' ; do for ac_cv_func_accept_arg2 in'struct sockaddr *' 'const struct sockaddr *' 'void *'; do for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do AC_TRY_COMPILE( The above combinition does not pass, another question, Because I just want to build the client side of PostgreSQL, can I ignore this error and let the configure pass Xiaobo Gu
On 01/27/2011 09:55 AM, Xiaobo Gu wrote: > > The above combinition does not pass, another question, > > Because I just want to build the client side of PostgreSQL, can I > ignore this error and let the configure pass > > You can try, but I at least am only interested in getting the whole package to build. cheers andrew