using command line
wxWidgets from CVS (today) ./configure --with-mac --enable-unicode --disable-shared --enable-debug make sudo make install cd contrib/src/stc/ make sudo make install
pgadmin from CVS (today) ./configure --with-mac --enable-unicode --disable-shared --enable-debug make
failed because an error (two actually) in acinclude.m4, because my installation of postgresql has no ssl
in line 129
change
AC_CHECK_LIB(pq, SSL_connect, [pgsql_ssl_libpq=yes], [pgsql_ssl_libpq=np])
^^^^^^^^^^^ ^
with
AC_CHECK_LIB(pq, PQgetssl, [pgsql_ssl_libpq=yes], [pgsql_ssl_libpq=no])
^^^^^^^^ ^
after that it has compiled, unfortunately the resulting executable is not a whole application, but I've created a minimal bundle by hand and the resulting application works, lots of little UI glitches and asserts but works
great!!!
Pax et Bonum
# dott. Jose' Cruanyes Aguilar - C.E. Soft srl # Pzza. Firenze,4 MILANO - XX Settembre 10, CREMONA # 02,33603122 0372,460602
---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faqs/FAQ.html