| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | elein <elein(at)norcov(dot)com> |
| Cc: | pgsql-hackers(at)postgresql(dot)org, elein <elein(at)varlena(dot)com>, Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
| Subject: | Re: Windows on SuSE? 7.4 |
| Date: | 2003-08-11 18:14:57 |
| Message-ID: | 5069.1060625697@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers pgsql-performance |
elein <elein(at)norcov(dot)com> writes:
> It sounds like Joe's guess on this was right.
I've committed this fix in configure.in:
***************
*** 631,637 ****
AC_CHECK_LIB(gen, main)
AC_CHECK_LIB(PW, main)
AC_CHECK_LIB(resolv, main)
- AC_CHECK_LIB(wsock32, main)
AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
# QNX:
AC_CHECK_LIB(unix, main)
--- 636,641 ----
***************
*** 645,650 ****
--- 649,659 ----
AC_SEARCH_LIBS(fdatasync, [rt posix4])
# Cygwin:
AC_CHECK_LIB(cygipc, shmget)
+ # WIN32:
+ if test "$PORTNAME" = "win32"
+ then
+ AC_CHECK_LIB(wsock32, main)
+ fi
if test "$with_readline" = yes; then
PGAC_CHECK_READLINE
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Robert Treat | 2003-08-11 18:53:12 | Re: Windows on SuSE? 7.4 |
| Previous Message | Tom Lane | 2003-08-11 17:53:31 | Re: Windows on SuSE? 7.4 |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2003-08-11 18:25:03 | Re: Analyze makes queries slow... |
| Previous Message | Tom Lane | 2003-08-11 17:53:31 | Re: Windows on SuSE? 7.4 |