Send Beginners mailing list submissions to
        beginners@haskell.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
        beginners-requ...@haskell.org

You can reach the person managing the list at
        beginners-ow...@haskell.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."


Today's Topics:

   1.  install problem (Andy Larocque)
   2. Re:  install problem (Ben Kolera)


----------------------------------------------------------------------

Message: 1
Date: Tue, 17 Jan 2012 20:15:53 -0500
From: Andy Larocque <abla...@gmail.com>
Subject: [Haskell-beginners] install problem
To: Begginers Help Haskell <beginners@haskell.org>
Message-ID:
        <CAD2LBsjnqA8ptmQOMn+_xUF9MyGw=i=v4ykr7kagdaxzewu...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi
I've been trying to build wxWidgets from source, and downloaded the
following straightforward instructions.
Everything worked fine until I got to #5 . I got the error : bash:
./configure: No such file or directory;  and it seems that the  'configure'
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?*
AL
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Building wxWidgets for use on
Linux<http://gmat.ed-pages.com/wiki/tiki-index.php?page=Building+wxWidgets+for+use+on+Linux>
* GMAT's GUI is written using the wxWidgets cross-platform GUI library.
GMAT'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:

1. Download wxWidgets from the wx site, and uncompress the source code. On
Linux, you should download the wxGTK code base.

2. Open a console window

3. Change directories to the folder containing wxWidgets.

4. Setup a build directory, and change directories to that folder:

$ mkdir installation
$ cd installation

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):

$ configure --with-opengl --enable-shared --enable-optimise

6. Read the summary information after configuring to be sure that the
correct operating system and options were set.

7. Build wxWidgets:

$ make

8. Install it:

$ make install

9. Run ldconfig on the install folder (/usr/local/lib, unless you changed
it in step 5).
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://www.haskell.org/pipermail/beginners/attachments/20120117/24556085/attachment-0001.htm>

------------------------------

Message: 2
Date: Wed, 18 Jan 2012 11:39:06 +1000
From: Ben Kolera <ben.kol...@gmail.com>
Subject: Re: [Haskell-beginners] install problem
To: Andy Larocque <abla...@gmail.com>
Cc: Begginers Help Haskell <beginners@haskell.org>
Message-ID:
        <CAPmqrp8tjFw-g1=0fw22pg20wy8xhnrgrda9bhpygzfkfdx...@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

Hi Andy,

configure is not a script/binary that you would install a package for,
but rather it is a script that should be bundled inside the wxWidget
source tarball. If I have interpreted the instructions correctly, this
script is located a directory above your build directory, so try:

../configure

( If that doesn't work, replace '..' with the directory that you
extracted the distribution to )

I hope this helps.

Ben



------------------------------

_______________________________________________
Beginners mailing list
Beginners@haskell.org
http://www.haskell.org/mailman/listinfo/beginners


End of Beginners Digest, Vol 43, Issue 22
*****************************************

Reply via email to