# ====================================================================================== # Author: Francesco Montorsi # # A basic "configure.ac" for a wxCode component. # # Customized for propgrid by gen_makefile.py. # # See # http://www.gnu.org/software/autoconf/manual/html_node/index.html # for more info about autoconf and the autoconf macros. # ====================================================================================== # Init this configure script with basic info about the component # (DON'T PUT ANYTHING BEFORE AC_INIT, JUST COMMENTS) # NOTE: you'll want to replace the first string in [] brackets with the name of your # component, the second string with its version and third one with your mail # (so that users will be able to contact you in case they have problems) AC_INIT([PROPGRID], [1.4.13], [jmsalli@users.sourceforge.net]) AC_CONFIG_AUX_DIR(build) # this is needed, don't touch it # ENABLES/DISABLES THE DEBUG MODE FOR THIS CONFIGURE SCRIPT # (you won't need it unless you get in troubles) #WX_DEBUG_CONFIGURE=1 # you need the wxCode/build/bakefiles in your local repository to generate a configure # script from this configure.ac file since wxcode.m4 is required.... m4_include(../../../build/autoconf/wxcode.m4) WXCODE_INIT ## CONFIGURE OPTIONS ## ## Before starting checks, declare the options of this configure script ## Here you should use the AC_ARG_ENABLE and AC_ARG_WITH macros, ## or the wxCode-specific AM_WXCODE_ARG_ENABLE & AM_WXCODE_ARG_WITH macros, ## to add to this configure script the --enable-XXX and/or --with-XXX ## options required. If you did not use any