aMule Forum
English => en_Bugs => Topic started by: morricone on January 04, 2008, 02:16:18 AM
-
Adding:
WX_BASE=$(expr "$WX_SELECTEDCONFIG" : ".*base.*")
and
if test "$WX_BASE" != "0"; then WX_PORT="base"; fi
to configure(:~7960) should make it work.
-
Hi morricone,
The file "configure" is generated from several files like configure.in, m4/*, etc. If you want to change the resultant file, you must change the macro that generates the test, which is probably under the directory "m4".
Cheers!
-
Ok, then in m4/wxwin.m4:869
add:
WX_BASEPORT=$(expr "$WX_SELECTEDCONFIG" : ".*base.*")
and
if test "$WX_BASEPORT" != "0"; then WX_PORT="dfb"; fi
-
You have posted lines with a difference between your first and second post.
if test "$WX_BASE" != "0"; then WX_PORT="base"; fi
if test "$WX_BASEPORT" != "0"; then WX_PORT="dfb"; fi
I believe the correct one is this one, right? A mix of the two:
if test "$WX_BASEPORT" != "0"; then WX_PORT="base"; fi
The fix will be in tomorrow tarball, please test and report.
Cheers!
-
Now it works like a charm.
Thanks!