From: Paul Cornett Date: Fri, 20 Feb 2009 06:48:26 +0000 (+0000) Subject: fix for HP aCC X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7e08bc5acd8ee4e2f0756f50bf98937a118f9951 fix for HP aCC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/confbase.h b/include/wx/confbase.h index 3f7b02e35d..ff50f65f4b 100644 --- a/include/wx/confbase.h +++ b/include/wx/confbase.h @@ -43,8 +43,6 @@ class WXDLLIMPEXP_FWD_BASE wxArrayString; #if wxUSE_CONFIG -#include "wx/string.h" - /// should we use registry instead of configuration files under Windows? // (i.e. whether wxConfigBase::Create() will create a wxFileConfig (if it's // false) or wxRegConfig (if it's true and we're under Win32)) @@ -56,6 +54,7 @@ class WXDLLIMPEXP_FWD_BASE wxArrayString; // symbol if the template functions are available #if (!defined(__VISUALC__) || __VISUALC__ > 1200) && \ !defined( __VMS ) && \ + !(defined(__HP_aCC) && defined(__hppa)) && \ !defined (__DMC__) #define wxHAS_CONFIG_TEMPLATE_RW #endif