On Jan 13, 2008 6:29 PM, Ryan Pusztai <[EMAIL PROTECTED]> wrote:
>
> On Jan 13, 2008 5:24 PM, John Labenski <[EMAIL PROTECTED]> wrote:
>
> > Ok, check modules/Makefile and find these lines. What do you have?
> >
> > ### Conditionally set variables: ###
> > ...
> > #WXLIBPOSTFIX = d
> > WXLIBPOSTFIX = ud
> > #WXLIBPOSTFIX = u
>
> They are all commented out.
>
> #WXLIBPOSTFIX = d
> #WXLIBPOSTFIX = ud
> #WXLIBPOSTFIX = u

That's bad.

Francesco, can you help?

=================

Ryan, please do these two things.

1) run this on the command line $wx-config --selected-config
  It should return "gtk2-unicode-2.8"

2) On the command line
   $export WX_DEBUG_CONFIGURE="1"
   then run configure and post the output which will hopefully contain
enough info to figure out what's wrong.

=================

Francesco:

It looks like WX_UNICODE is set from
wxwin.m4 -> WX_DETECT_STANDARD_OPTION_VALUES
using
    WX_SELECTEDCONFIG=$($WX_CONFIG_WITH_ARGS --selected_config)

Later on I see that if "UNICODE = 'auto'" then "UNICODE = $WX_UNICODE"
in wxwin.m4


Ryan gets these values:

UNICODE=???
  At the bottom of wxwin.m4
  WX_BOOLOPT_SUMMARY([UNICODE], ["  - UNICODE mode"], ["  - ANSI mode"])
  prints " - UNICODE mode"
  so UNICODE='1'

WX_UNICODE='1' from config.log

===================

Also in modules/Makefile.in has code like for WXLIBPOSFIX for release
and/or unicode mode.

dnl ### begin block
20_COND_BUILD_RELEASE_UNICODE_1[../../apps/build/bakefiles/apps.bkl,../../modules/build/bakefiles/modules.bkl,../../util/build/bakefile
s/util.bkl,./wxlua.bkl] ###
    COND_BUILD_RELEASE_UNICODE_1="#"
    if test "x$BUILD" = "xrelease" -a "x$UNICODE" = "x1" ; then
        COND_BUILD_RELEASE_UNICODE_1=""
    fi
    AC_SUBST(COND_BUILD_RELEASE_UNICODE_1)

This is from Ryan's config.log, so yes they're all commented

COND_BUILD_DEBUG_UNICODE_0='#'
COND_BUILD_DEBUG_UNICODE_1='#'
COND_BUILD_RELEASE='#'
COND_BUILD_RELEASE_UNICODE_1='#'

===================

So... why isn't UNICODE making it to modules/Makefile.in?

Thanks,
    John

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
wxlua-users mailing list
wxlua-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to