From: John L. <jr...@us...> - 2008-01-14 18:56:21
|
Update of /cvsroot/wxlua/wxLua In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19934/wxLua Modified Files: configure Log Message: Fix for $DEBUG="" == $DEBUG="0" in wxwin.m4 Less awkward echo statement in configure.ac Index: configure =================================================================== RCS file: /cvsroot/wxlua/wxLua/configure,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** configure 14 Jan 2008 18:10:30 -0000 1.69 --- configure 14 Jan 2008 18:56:16 -0000 1.70 *************** *** 4790,4794 **** if test "$DEBUG" = "1"; then BUILD="debug" ! elif test "$DEBUG" = ""; then BUILD="release" fi --- 4790,4794 ---- if test "$DEBUG" = "1"; then BUILD="debug" ! elif test "$DEBUG" = "" -o "$DEBUG" = "0"; then BUILD="release" fi *************** *** 7155,7163 **** if test ! "$wxstedit_dir" = ""; then WXSTEDIT=$wxstedit_dir ! echo Path to wxStEdit from --with-wxstedit-dir: \'$WXSTEDIT\' else # Try to get the wxStEdit src dir from the shell environment variable WXSTEDIT=`echo $WXSTEDIT` ! echo Path to wxStEdit from \$WXSTEDIT environment variable: \'$WXSTEDIT\' fi --- 7155,7163 ---- if test ! "$wxstedit_dir" = ""; then WXSTEDIT=$wxstedit_dir ! echo "Path to wxStEdit from --with-wxstedit-dir: '$WXSTEDIT'" else # Try to get the wxStEdit src dir from the shell environment variable WXSTEDIT=`echo $WXSTEDIT` ! echo "Path to wxStEdit from \$WXSTEDIT environment variable: '$WXSTEDIT'" fi *************** *** 7168,7171 **** --- 7168,7174 ---- fi + # Temporarily rewrite WX_LIBS to include all the libs that wxStEdit requires. + WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs html,adv,core,base` + wx_temp="wxcode""_""$WX_PORT" *************** *** 7297,7301 **** For more information about wxStEdit look at http://wxcode.sourceforge.net/components/wxstedit ! For more information about why exactly this check is failed look in config.log. --- 7300,7304 ---- For more information about wxStEdit look at http://wxcode.sourceforge.net/components/wxstedit ! For more information about why exactly this check has failed look in config.log. *************** *** 7307,7311 **** For more information about wxStEdit look at http://wxcode.sourceforge.net/components/wxstedit ! For more information about why exactly this check is failed look in config.log. --- 7310,7314 ---- For more information about wxStEdit look at http://wxcode.sourceforge.net/components/wxstedit ! For more information about why exactly this check has failed look in config.log. *************** *** 12056,12060 **** echo ! echo " - compact list of the wxWidgets library for which" echo " binding modules will be created: " echo " $WXLIB_NAMES" --- 12059,12063 ---- echo ! echo " - compact list of the wxWidgets libraries for which" echo " binding modules will be created: " echo " $WXLIB_NAMES" |