Re: [pgadmin-hackers] acinclude Patch

2003-10-17 Thread Adam H. Pendleton
Dave Page wrote:

Hi Adam,

I have backed out this patch because it is breaking the Slackware build
:-(
Looks like we need something platform specific

 

Yeah, I figured as much.  Okay, I'll go back to the drawing board.  :-)

ahp

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
 subscribe-nomail command to [EMAIL PROTECTED] so that your
 message can get through to the mailing list cleanly


Re: [pgadmin-hackers] acinclude Patch

2003-10-17 Thread Dave Page
 

> -Original Message-
> From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] 
> Sent: 16 October 2003 13:15
> To: Dave Page
> Cc: pgadmin-hackers
> Subject: Re: [pgadmin-hackers] acinclude Patch
> 
> Dave Page wrote:
> 
> >Hi Adam,
> >
> >I can see what the patch does, but why?
> >
> >  
> >
> On the Mac platform, there is no libcrypt, so compilation 
> fails if the static mode is selected.  If it's not necessary 
> to link against that library on any of our platforms, then I 
> can take it out, instead of creating a Mac-specific LIBS string.

Hi Adam,

I have backed out this patch because it is breaking the Slackware build
:-(

Looks like we need something platform specific

Regards, Dave.

---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


Re: [pgadmin-hackers] acinclude Patch

2003-10-16 Thread Dave Page
Thanks, patch applied. 

> -Original Message-
> From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] 
> Sent: 16 October 2003 13:15
> To: Dave Page
> Cc: pgadmin-hackers
> Subject: Re: [pgadmin-hackers] acinclude Patch
> 
> Dave Page wrote:
> 
> >Hi Adam,
> >
> >I can see what the patch does, but why?
> >
> >  
> >
> On the Mac platform, there is no libcrypt, so compilation 
> fails if the static mode is selected.  If it's not necessary 
> to link against that library on any of our platforms, then I 
> can take it out, instead of creating a Mac-specific LIBS string.
> 
> ahp
> 
> 

---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


Re: [pgadmin-hackers] acinclude Patch

2003-10-16 Thread Adam H. Pendleton
Dave Page wrote:

Hi Adam,

I can see what the patch does, but why?

 

On the Mac platform, there is no libcrypt, so compilation fails if the 
static mode is selected.  If it's not necessary to link against that 
library on any of our platforms, then I can take it out, instead of 
creating a Mac-specific LIBS string.

ahp

---(end of broadcast)---
TIP 6: Have you searched our list archives?
  http://archives.postgresql.org


Re: [pgadmin-hackers] acinclude Patch

2003-10-15 Thread Dave Page
Hi Adam,

I can see what the patch does, but why?

Regards, Dave.

> -Original Message-
> From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] 
> Sent: 15 October 2003 17:03
> To: pgadmin-hackers
> Subject: [pgadmin-hackers] acinclude Patch
> 
> Could the port maintainers please apply this patch to 
> acinclude.m4 and let my know if anyone has any problems?  
> This patch is against CVS HEAD, but it should apply to any 
> recent acinclude.
> 
> ahp
> 

---(end of broadcast)---
TIP 4: Don't 'kill -9' the postmaster


[pgadmin-hackers] acinclude Patch

2003-10-15 Thread Adam H. Pendleton
Could the port maintainers please apply this patch to acinclude.m4 and 
let my know if anyone has any problems?  This patch is against CVS HEAD, 
but it should apply to any recent acinclude.

ahp
--- pgadmin3/acinclude.m4   2003-10-09 16:40:21.0 -0400
+++ pgadmin3.new/acinclude.m4   2003-10-15 12:01:17.0 -0400
@@ -111,7 +111,7 @@
 fi
 if test "$pg_static_build" = "yes"
 then
-LIBS="${LIBPQ_HOME}/lib/libpq.a -lcrypt $LIBS -lssl -lcrypto"
+LIBS="${LIBPQ_HOME}/lib/libpq.a $LIBS -lssl -lcrypto"
 else
 LIBS="$LIBS -lssl -lcrypto -lpq"
 fi

---(end of broadcast)---
TIP 8: explain analyze is your friend


Re: [pgadmin-hackers] acinclude patch

2003-10-09 Thread Dave Page
Thanks Adam, patch applied.

Regards, Dave 

> -Original Message-
> From: Adam H. Pendleton [mailto:[EMAIL PROTECTED] 
> Sent: 09 October 2003 15:08
> To: pgadmin-hackers
> Subject: [pgadmin-hackers] acinclude patch
> 
> This patch allows autoconf to handle the new wxWindows library naming.
> 
> ahp
> 
> P.S. -- Can someone confirm that the library naming has 
> changed under cygwin (on Win32)?
> 

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly


[pgadmin-hackers] acinclude patch

2003-10-09 Thread Adam H. Pendleton
This patch allows autoconf to handle the new wxWindows library naming.

ahp

P.S. -- Can someone confirm that the library naming has changed under 
cygwin (on Win32)?
--- pgadmin3/acinclude.m4   2003-10-09 10:02:27.0 -0400
+++ pgadmin3.new/acinclude.m4   2003-10-09 10:02:15.0 -0400
@@ -243,38 +243,74 @@
 LIBS="$LIBS ${WX_HOME}/lib/libwx_macud_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_macud_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_macud_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_macud_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_macud_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_macd-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_macd_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_macd_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_macd_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_macd_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_macd_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_mac-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_mac_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_mac_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_mac_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_mac_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_mac_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_gtk2ud-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk2ud_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk2ud_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_gtk2ud_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk2ud_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk2ud_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_gtk2d-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk2d_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk2d_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_gtk2d_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk2d_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk2d_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_gtk2u-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk2u_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk2u_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_gtk2u_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk2u_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk2u_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_gtkud-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_gtkud_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtkud_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_gtkud_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_gtkud_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtkud_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_gtkd-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_gtkd_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtkd_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_gtkd_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_gtkd_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtkd_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *libwx_gtk-*)
 LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk_xrc-${WX_VERSION}.a"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*libwx_gtk_core*)
+LIBS="$LIBS ${WX_HOME}/lib/libwx_gtk_stc-${WX_VERSION}.a 
${WX_HOME}/lib/libwx_gtk_xrc-${WX_VERSION}.a"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *)
 ;;
 esac
@@ -304,38 +340,74 @@
 LIBS="$LIBS -lwx_macud_stc-${WX_VERSION} -lwx_macud_xrc-${WX_VERSION}"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*wx_macud_core*)
+LIBS="$LIBS -lwx_macud_stc-${WX_VERSION} -lwx_macud_xrc-${WX_VERSION}"
+LIBS="$LIBS $WX_NEW_LDFLAGS"
+;;
 *wx_macd-*)
 LIBS="$LIBS -lwx_macd_stc-${WX_VERSION} -lwx_macd_xrc-${WX_VERSION}"
 LIBS="$LIBS $WX_NEW_LDFLAGS"
 ;;
+*wx_macd_core*)
+LIBS="$LIBS -lwx_macd_stc-${WX_VERSION} -lwx_macd_xrc-${WX_VERSION}"
+LIBS="$LIBS $WX_NE