> -----Original Message-----
> From: Stefan Csomor [mailto:csomor@advancedconcepts.ch]
> Sent: 01 October 2003 09:09
> To: Dave Page; 'Adam H.Pendleton'; 'Adam Witney'
> Cc: jm@poure.com; 'Julian Smart'; 'pgadmin-hackers'
> Subject: RE: [pgadmin-hackers] pgAdmin III under wxCocoa
>
>
> Hi
>
> I think (I'm not fluent on the console ;-) it's
> --disable-shared for getting static libs
Hi Stefan,
We used --enable-static rather than --disable-shared (can't remember
why). From acinclude.m4:
############################
# Static build of pgAdmin3 #
############################
AC_DEFUN([ENABLE_STATIC],
[AC_ARG_ENABLE(static,
[ --enable-static build a static version of pgAdmin3],
[pg_static_build=yes],
[pg_static_build=no])
])
Looking at that of course, it looks like --disable-static is not defined
anyway which would explain why it doesn't work.
Regards, Dave.