<div dir="ltr">Rich,<div><br></div><div>If I just run wx-config, I get this:</div><div><br></div><div><div>wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--release] [--version-full]</div><div>           [--list] [--selected-config] [--host=HOST] [--toolkit=TOOLKIT]</div><div>           [--universal[=yes|no]] [--unicode[=yes|no]] [--static[=yes|no]]</div><div>           [--debug[=yes|no]] [--version[=VERSION]] [--basename] [--cc] [--cxx]</div><div>           [--cppflags [base]] [--cxxflags [base]] [--cflags]</div><div>           [--rescomp] [--linkdeps] [--ld] [--utility=UTIL]</div><div>           [--libs [LIBS...]] [--optional-libs [LIBS...]]</div><div><br></div><div>    wx-config returns information about the wxWidgets libraries available on</div><div>  your system.  It may be used to retrieve the information required to build</div><div>  applications using these libraries using --cppflags, --cxxflags, --cflags,</div><div>  and --libs options. And you may query the properties of this configuration</div><div>  using --query-{host,toolkit,widgetset,chartype,debugtype,version,linkage}.</div><div><br></div><div>    NOTE:    Usage of --debug and --query-debugtype are only relevant if you</div><div>  have any  versions prior to 2.9 installed  and use the --version option to</div><div>  select an earlier version.</div><div><br></div><div>    If multiple builds of wxWidgets  are available,  you can use the options</div><div>  --prefix, --host, --toolkit, --unicode, --static, --universal or --version</div><div>  to select from them.  The  --selected-config  option shows the name of the</div><div>  current configuration and --list  shows available alternatives which match</div><div>  specified criteria.  The  --utility  option returns the correct version of</div><div>  UTIL to use with the selected build.  The  --linkdeps  option returns only</div><div>  static libraries for your makefile link rule dependencies.</div><div><br></div><div>    The LIBS arguments (comma or space separated) may be used to specify the</div><div>  wxWidgets libraries that  you wish to use. The "std" label may be used  to</div><div>  import all libraries that would be used by default if none were  specified</div><div>  explicitly, e.g. wx-config --libs core,base. The "all" label may  be  used</div><div>  to  import  all libraries that have been compiled which are shown  in  the</div><div>  list  below.  The  --optional-libs parameter should be followed by  a list</div><div>  of  libs that should be linked to, but only if they are available.</div><div><br></div><div>  Available libraries in this build are:</div><div>  xrc webview stc richtext ribbon propgrid aui gl media html adv core xml net base</div></div><div><br></div><div><br></div><div><br></div><div>Trying the option listed in the third paragraph:</div><div><br></div><div><div>>wx-config --selected-config</div><div>>osx_cocoa-unicode-3.0</div></div><div><br></div><div><br></div><div><div>>wx-config --list</div><div>>  Default config is osx_cocoa-unicode-3.0<br></div><div>> Default config will be used for output<br></div></div><div><br></div><div>>wx-config --version<br></div><div><div>>3.0.1</div></div><div><br></div><div><br></div><div>So maybe one of those could be used at configure?</div><div><br></div><div>best</div><div><br></div><div>Carlos</div><div><br></div><div><br></div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 27, 2015 at 1:00 PM, Rich Shepard <span dir="ltr"><<a href="mailto:rshepard@appl-ecosys.com" target="_blank">rshepard@appl-ecosys.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Mon, 27 Jul 2015, Carlos Grohmann wrote:<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
maybe something like<br>
--with-wxwidgets=/usr/local/lib/wxPython-3.0.2.0/bin/wx-config \<br>
during configure?<br>
</blockquote>
<br>
Carlos,<br>
<br>
  The configuration file contains the line<br>
--with-wxwidgets=/usr/bin/wx-config<br>
and wx-config has a way of specifying a version using a mask:<br>
<br>
# get_mask [ _hash ]<br>
# Construct a config filename mask from a pseudo-hash of component variable<br>
s.<br>
# The optional argument is the prefix of the hash to use.  If not specified<br>
# this will return a mask derived from the command line options that were u<br>
sed.<br>
get_mask()<br>
{<br>
    [ $# -gt 0 ] || set m<br>
<br>
    case "$m_ourversion" in<br>
        2.9)<br>
            is29orlater=1<br>
            ;;<br>
        2.*)<br>
            # there is no 2.10 so currently everything else is <= 2.8<br>
            is29orlater=0<br>
            ;;<br>
        *)<br>
            # 3.x and later "is29orlater" too<br>
            is29orlater=1<br>
            ;;<br>
    esac<br>
<br>
    # use 2.8 or 2.9 version of the mask: the difference is the presence of<br>
    # debug type in pre-2.9<br>
    if [ $is29orlater = 0 ]; then<br>
        eval echo<br>
"\${$1_host:+\$$1_host-}\${$1_toolkit}\${$1_widgetset}-\${$1_chartype}-\${$1_debugtype}\${$1_linkage:+-\$$1_linkage}-\${$1_version}\${$1_flavour}"<br>
    else<br>
        eval echo<br>
"\${$1_host:+\$$1_host-}\${$1_toolkit}\${$1_widgetset}-\${$1_chartype}\${$1_linkage:+-\$$1_linkage}-\${$1_version}\${$1_flavour}"<br>
    fi<br>
}<br>
<br>
  So there ought to be a way to pass 'is29orlater=1' on the configuration<br>
line, but I've no idea how to do this.<br>
<br>
Thanks,<br>
<br>
Rich<br>
_______________________________________________<br>
grass-user mailing list<br>
<a href="mailto:grass-user@lists.osgeo.org" target="_blank">grass-user@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/grass-user" rel="noreferrer" target="_blank">http://lists.osgeo.org/mailman/listinfo/grass-user</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div><div dir="ltr">Prof. Carlos Henrique Grohmann<br>Institute of Energy and Environment - Univ. of São Paulo, Brazil<div>- Digital Terrain Analysis | GIS | Remote Sensing - </div><div><br></div><div><a href="http://carlosgrohmann.com/" target="_blank">http://carlosgrohmann.com</a></div><div><a href="http://orcid.org/0000-0001-5073-5572" style="font-size:13px;color:rgb(17,85,204);font-family:arial,sans-serif;background-color:rgb(255,255,255)" target="_blank">http://orcid.org/0000-0001-5073-5572</a><br><div>________________<br>Can’t stop the signal.</div></div></div></div>
</div></div>