From: <pst...@us...> - 2008-11-16 17:30:18
|
Revision: 635 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=635&view=rev Author: pstieber Date: 2008-11-16 17:30:13 +0000 (Sun, 16 Nov 2008) Log Message: ----------- Moved the PATH and LD_LIBRARY_PATH instruction to the top of the list. Modified Paths: -------------- web/htdocs/buildingwx/index.php Modified: web/htdocs/buildingwx/index.php =================================================================== --- web/htdocs/buildingwx/index.php 2008-11-16 05:33:37 UTC (rev 634) +++ web/htdocs/buildingwx/index.php 2008-11-16 17:30:13 UTC (rev 635) @@ -183,7 +183,29 @@ </OL> <h3>Building wxWidgets for Linux</h3> + <OL> +<LI> +Before we start the build process, set your <TT>PATH</TT> and +<TT>LD_LIBRARY_PATH</TT> environment variables so your shell will find the +non-stock wxWidgets binaries and libraries that we are about to create and +install. Adding the following lines in <TT>.bash_profile</TT> will do the +trick. + +<PRE> +export PATH=/usr/local/wx289/bin:$PATH +export LD_LIBRARY_PATH=/usr/local/wx289/lib:$LD_LIBRARY_PATH +</PRE> + +After adding the above lines to your <TT>.bash_profile</TT> +file, it is necessary to reload your bash environment to make these changes +available. Use the following command to accomplish this. + +<PRE> +source .bash_profile +</PRE> +</LI> + <LI>Create a directory under your home directory. I typically use <TT>OutsideSource</TT> and change directory to that location. @@ -277,27 +299,6 @@ </LI> <LI> -Make sure your <TT>PATH</TT> and <TT>LD_LIBRARY_PATH</TT> environment -variables are set to find the non-stock wxWidgets binaries and libraries just -created before building Tex2RTF and Jazz++. Adding the following lines in -<TT>.bash_profile</TT> will do the trick. - -<PRE> -export PATH=/usr/local/wx289/bin:$PATH -export LD_LIBRARY_PATH=/usr/local/wx289/lib:$LD_LIBRARY_PATH -</PRE> - -After adding the above lines to your <TT>.bash_profile</TT> -file, it is necessary to reload your bash environment to make these changes -available. Use the following command to accomplish this. - -<PRE> -source .bash_profile -</PRE> - -</LI> - -<LI> Install the release version of the wxWidgets build last to insure this version is the default configuration. If you installed the debug version last, simply re-install the release version. You can run the following command to determine This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |