Another crack at doing a Win32 build under MINGW

From: "Dann Corbit" <DCorbit(at)connx(dot)com>
To: <pgsql-hackers-win32(at)postgresql(dot)org>
Cc: <pgsql-hackers(at)postgresql(dot)org>
Subject: Another crack at doing a Win32 build under MINGW
Date: 2004-03-04 22:47:24
Message-ID: D90A5A6C612A39408103E6ECDD77B829408D1E@voyager.corporate.connx.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-hackers-win32

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?

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2004-03-04 22:55:21 Re: [HACKERS] Another crack at doing a Win32 build under MINGW
Previous Message Tom Lane 2004-03-04 22:31:35 Sigh, 7.3.6 rewrap not right

Browse pgsql-hackers-win32 by date

  From Date Subject
Next Message Andrew Dunstan 2004-03-04 22:55:21 Re: [HACKERS] Another crack at doing a Win32 build under MINGW
Previous Message Lawrence E. Smithmier, Jr. 2004-03-04 21:46:03 Re: [HACKERS] Tablespaces