Hi<br>I&#39;ve been trying to build wxWidgets from source, and downloaded the following straightforward instructions.<br>Everything worked fine until I got to #5 . I got the error : bash: ./configure: No such file or directory;  and it seems that the  &#39;configure&#39; command is not available on my system, ..anywhere . (Ubuntu 11). Why is this command not available , and how do I fix this and continue the build?<strong><br>
AL<br>----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br><a title="refresh" accesskey="2" href="http://gmat.ed-pages.com/wiki/tiki-index.php?page=Building+wxWidgets+for+use+on+Linux">Building wxWidgets for use on Linux</a></strong>
    


GMAT&#39;s GUI is written using the wxWidgets cross-platform GUI library. 
GMAT&#39;s source code is not Unicode compliant, so you may need to download
 and install wxWidgets if you want to run GMAT from its GUI. This 
procedure will take you through the wx build process:<br>
<br>
1. Download wxWidgets from the wx site, and uncompress the source code. On Linux, you should download the wxGTK code base.<br>
<br>
2. Open a console window<br>
<br>
3. Change directories to the folder containing wxWidgets.<br>
<br>
4. Setup a build directory, and change directories to that folder:<br>
<br>
$ mkdir installation<br>
$ cd installation<br>
<br>
5. Configure the framework. wxWidgets provides many different 
configuration options that can be previewed using the configure --help 
option. For example, you may want to turn off some of the graphics file 
formats (TIFF support, for example), change the location of the library 
files, or enable debugging. This is the minimal set that I use (though I
 sometimes omit the optimization option):<br>
<br>
$ configure --with-opengl --enable-shared --enable-optimise<br>
<br>
6. Read the summary information after configuring to be sure that the correct operating system and options were set.<br>
<br>
7. Build wxWidgets:<br>
<br>
$ make<br>
<br>
8. Install it:<br>
<br>
$ make install<br>
<br>
9. Run ldconfig on the install folder (/usr/local/lib, unless you changed it in step 5).