Re: compile problem

From: Dave Page <dpage(at)postgresql(dot)org>
To: Tim Stahlhut <stahta01(at)highstream(dot)net>
Cc: pgadmin-hackers(at)postgresql(dot)org
Subject: Re: compile problem
Date: 2007-03-13 15:22:44
Message-ID: 45F6C1C4.9080801@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Tim Stahlhut wrote:
> Sorry, about my misunderstanding the permission system.

No problem at all.

> Here's a subset of a patch I did for codeblocks to get 2.9 to work, they
> are maintaining 2.6 support as primary. These constants were everywhere
> so I added the below code to the application common header.
>
> See wx/filedlg.h for the changes.
>
> #if wxCHECK_VERSION(2, 8, 0) && !(WXWIN_COMPATIBILITY_2_6)
> // Note the following defines need removed
> // when CodeBlocks support for wxWidgets 2.6 is dropped
> #define wxOPEN wxFD_OPEN
> #define wxFILE_MUST_EXIST wxFD_FILE_MUST_EXIST
> #define wxMULTIPLE wxFD_MULTIPLE
> #define wxSAVE wxFD_SAVE
> #define wxOVERWRITE_PROMPT wxFD_OVERWRITE_PROMPT
> #define wxCHANGE_DIR wxFD_CHANGE_DIR
> #endif

Yup, it was just two wxSAVE's. Everything else is OK. We only support
2.8 so I've just fixed those two occurances.

Cheers, Dave

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2007-03-13 15:23:29 Re: compile problem
Previous Message Dave Page 2007-03-13 15:18:33 Re: keyword and parse from PostgreSQL file.