Bug in configure-detection of wxaui

From: "Florian G(dot) Pflug" <fgp(at)phlo(dot)org>
To: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Bug in configure-detection of wxaui
Date: 2006-07-05 08:17:01
Message-ID: 44AB757D.7000909@phlo.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi

Building currently fails at least on OSX, but I guess it fails on *nix
too. WXAUI_HOME gets set to the _root_ auf the wxaui sources, but is
later (when doing CPPFLAGS = -I$WXAUI_HOME) assumed to contain the
include directory (<wxaui-root>/include).

The following (trivial) patch helps:
Index: acinclude.m4
===================================================================
--- acinclude.m4 (revision 5245)
+++ acinclude.m4 (working copy)
@@ -516,7 +516,7 @@
#######################
AC_DEFUN([SETUP_WXAUI],
[
- CPPFLAGS="$CPPFLAGS -I${WXAUI_HOME}"
+ CPPFLAGS="$CPPFLAGS -I${WXAUI_HOME}/include"
])

###########

greetings, Florian Pflug

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2006-07-05 08:33:45 SVN Commit by dpage: r5246 - trunk/pgadmin3
Previous Message svn 2006-07-04 11:09:05 SVN Commit by dpage: r5245 - trunk/pgadmin3/src/frm