Changes between Version 89 and Version 90 of UsersWikiWinCompile
- Timestamp:
- 11/23/09 16:55:14 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiWinCompile
v89 v90 97 97 == 8. Installing Autoconf, Automake and Libtool == 98 98 99 Download the sourcecode of: 100 101 1. autoconf from ftp.gnu.org/gnu/autoconf 102 2. automake from ftp.gnu.org/gnu/automake 103 3. libtool from ftp.gnu.org/gnu/libtool 104 105 The latest releases 2009-11-11 are: 106 107 * autoconf 2.65 (1.4MB) 108 * automake 1.11.1 (1.2MB) 109 * libtool 2.2.4 (1.8MB) 110 111 Make a folder c:\thesrc and untar the source-files there. 112 113 Launch MSys from Start->Programs->MinGW->msys or from the desktop MSYS icon. 114 115 You now get a terminal-window that understands a bunch of unix/linux-commands (at least enough for compiling) 99 Download the source code from the GNU site: 100 101 1. http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.gz 102 2. http://ftp.gnu.org/gnu/automake/automake-1.11.tar.gz 103 3. http://ftp.gnu.org/gnu/libtool/libtool-2.2.4.tar.gz 104 105 Save the packages in the c:\thesrc folder. 106 107 Launch the MSYS termins from Start->Programs->MinGW->msys or from the desktop MSYS icon. 116 108 {{{ 117 109 # cd /c/thesrc … … 120 112 Now you will get the folders you have copied to the directory listed. The names of the folders will be different than in this example if you have newer releases of the tools. Configure, compile and install autoconf. 121 113 {{{ 114 # tar xvfz autoconf-2.65.tar.gz 122 115 # cd autoconf-2.65 123 116 # ./configure --prefix=/c/mingw … … 132 125 Now configure, compile and install automake. 133 126 {{{ 127 # tar xvfz automake-1.11.tar.gz 134 128 # cd automake-1.11 135 129 # ./configure --prefix=/c/mingw … … 139 133 Now configure, compile and install automake. 140 134 {{{ 135 # tar xvfz libtool-2.2.4.tar.gz 141 136 # cd libtool-2.2.4 142 137 # ./configure --prefix=/c/mingw