John Labenski ha scritto:
> On 7/26/07, Francesco Montorsi <[EMAIL PROTECTED]> wrote:
>> Hi,
>>     sorry for this long delay but I was on holiday :)
> 
> No problem, I hope it was nice.
thanks, it was

> Where does wxwin.m4 go?
in one of your aclocal include paths, i.e. type

  aclocal --print-ac-dir

and put the newest wxwin.m4 there.
Be careful that each time you (re)install a wx-2.8 or lower they will 
overwrite that wxwin.m4 with their older copy.

> I got a copy from the wxWidgets trunk and put
> it into the build/autoconf dir but I get the same WX_CONFIG_OPTIONS
> errors as before.
if you want to keep the newest wxwin.m4 in wxLua's build\autoconf folder 
you can do that and then give the "-I ." option to aclocal; you can also 
modify acregen.sh - if you use that as:

Index: acregen.sh
===================================================================
RCS file: /cvsroot/wxlua/wxLua/build/autoconf/acregen.sh,v
retrieving revision 1.3
diff -bu2 -r1.3 acregen.sh
--- acregen.sh
+++ acregen.sh
@@ -72,4 +72,4 @@
  current=$(pwd)
  cd $path
-aclocal && autoconf && mv configure ../..
+aclocal -I. && autoconf && mv configure ../..
  cd $current


In fact, I can commit the following changes:

  - addition of "-I." to acregen.sh
  - addition of the newest wxwin.m4 file in wxLua\build\autoconf

that would perhaps simplify the task of regenerating configure script 
(as IIRC the paths given to -I option have precedence over the path 
indicated by --print-ac-dir and thus having older wxwin.m4 files 
installed in the system wouldn't be a problem anymore)...
what do you say?

Francesco


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
wxlua-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wxlua-users

Reply via email to