Re: [HACKERS] Another crack at doing a Win32 build under MINGW

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Dann Corbit <DCorbit(at)connx(dot)com>
Cc: pgsql-hackers-win32(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] Another crack at doing a Win32 build under MINGW
Date: 2004-03-04 22:55:21
Message-ID: 4047B3D9.5000503@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-hackers-win32


(guess) try configuring without readline.

cheers

andrew

Dann Corbit wrote:

> 1. I installed the latest version of Mingw from:
> http://www.mingw.org/download.shtml
>
> 2. I installed the current snapshot of Postgresql.
>
> 3. I tried ./configure -- went fine
>
> 4. I tried make clean -- went fine
>
> 5. I tried make and hit a few snags.
>
> 6. For both:
> /postgresql-snapshot/src/backend/utils/float.c
> and
> /postgresql-snapshot/src/backend/utils/timestamp.c
>
> I had to make this change:
> /* for finite() on Solaris */
> #ifdef HAVE_IEEEFP_H
> #ifndef BUILDING_DLL /* bugbug DRC: ieeefp.h is present but badly
> broken on my installation of MINGW */
> #include <ieeefp.h>
> #endif /* end of bug patch */
> #endif
> 7. For some strange reason, one of the symbolic links did not work
> correctly. I did a work-around as follows:
> copy .\src\backend\port\sysv_sema.c src\backend\port\pg_sema.c
>
> 8. After making those changes, I got the following error:
> gcc -O2 -fno-strict-aliasing -Wall -Wmissing-prototypes
> -Wmissing-declarations initdb.o -L../../../src/interfaces/libpq -lpq
> -L../../../src/port -lz -lreadline -lwsock32 -lcrypt -lresolv -lm
> -lpgport -lws2_32 -o initdb
> ../../../src/port/libpgport.a(sprompt.o)(.text+0x1da):sprompt.c:
> undefined reference to `tcsetattr'
> ../../../src/port/libpgport.a(sprompt.o)(.text+0x22d):sprompt.c:
> undefined reference to `tcgetattr'
> ../../../src/port/libpgport.a(sprompt.o)(.text+0x25f):sprompt.c:
> undefined reference to `tcsetattr'
> make[3]: *** [initdb] Error 1
> make[3]: Leaving directory `/e/postgresql-snapshot/src/bin/initdb'
> make[2]: *** [all] Error 2
> make[2]: Leaving directory `/e/postgresql-snapshot/src/bin'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/e/postgresql-snapshot/src'
> make: *** [all] Error 2
>
> Can anyone tell me what is wrong?
>

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Jochem van Dieten 2004-03-04 23:47:23 Re: Slony-I makes progress
Previous Message Dann Corbit 2004-03-04 22:47:24 Another crack at doing a Win32 build under MINGW

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Ronald Kuczek 2004-03-04 23:50:51 Re: [HACKERS] Another crack at doing a Win32
Previous Message Dann Corbit 2004-03-04 22:47:24 Another crack at doing a Win32 build under MINGW