Bug in configure-detection of wxaui - Mailing list pgadmin-hackers

From Florian G. Pflug
Subject Bug in configure-detection of wxaui
Date
Msg-id 44AB757D.7000909@phlo.org
Whole thread Raw
Responses Re: Bug in configure-detection of wxaui  ("Dave Page" <dpage@vale-housing.co.uk>)
Re: Bug in configure-detection of wxaui  ("Florian G. Pflug" <fgp@phlo.org>)
List 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

pgadmin-hackers by date:

Previous
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r5245 - trunk/pgadmin3/src/frm
Next
From: svn@pgadmin.org
Date:
Subject: SVN Commit by dpage: r5246 - trunk/pgadmin3