OLD | NEW |
1 Installation Instructions | 1 Installation Instructions |
2 ************************* | 2 ************************* |
3 | 3 |
4 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, | 4 Copyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation, |
5 2006, 2007, 2008, 2009 Free Software Foundation, Inc. | 5 Inc. |
6 | 6 |
7 Copying and distribution of this file, with or without modification, | 7 Copying and distribution of this file, with or without modification, |
8 are permitted in any medium without royalty provided the copyright | 8 are permitted in any medium without royalty provided the copyright |
9 notice and this notice are preserved. This file is offered as-is, | 9 notice and this notice are preserved. This file is offered as-is, |
10 without warranty of any kind. | 10 without warranty of any kind. |
11 | 11 |
12 Basic Installation | 12 Basic Installation |
13 ================== | 13 ================== |
14 | 14 |
15 Briefly, the shell commands `./configure; make; make install' should | 15 Briefly, the shell commands `./configure; make; make install' should |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 ================== | 219 ================== |
220 | 220 |
221 On HP-UX, the default C compiler is not ANSI C compatible. If GNU | 221 On HP-UX, the default C compiler is not ANSI C compatible. If GNU |
222 CC is not installed, it is recommended to use the following options in | 222 CC is not installed, it is recommended to use the following options in |
223 order to use an ANSI C compiler: | 223 order to use an ANSI C compiler: |
224 | 224 |
225 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" | 225 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" |
226 | 226 |
227 and if that doesn't work, install pre-built binaries of GCC for HP-UX. | 227 and if that doesn't work, install pre-built binaries of GCC for HP-UX. |
228 | 228 |
| 229 HP-UX `make' updates targets which have the same time stamps as |
| 230 their prerequisites, which makes it generally unusable when shipped |
| 231 generated files such as `configure' are involved. Use GNU `make' |
| 232 instead. |
| 233 |
229 On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot | 234 On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot |
230 parse its `<wchar.h>' header file. The option `-nodtk' can be used as | 235 parse its `<wchar.h>' header file. The option `-nodtk' can be used as |
231 a workaround. If GNU CC is not installed, it is therefore recommended | 236 a workaround. If GNU CC is not installed, it is therefore recommended |
232 to try | 237 to try |
233 | 238 |
234 ./configure CC="cc" | 239 ./configure CC="cc" |
235 | 240 |
236 and if that doesn't work, try | 241 and if that doesn't work, try |
237 | 242 |
238 ./configure CC="cc -nodtk" | 243 ./configure CC="cc -nodtk" |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 the installation locations. | 361 the installation locations. |
357 | 362 |
358 `--no-create' | 363 `--no-create' |
359 `-n' | 364 `-n' |
360 Run the configure checks, but stop before creating any output | 365 Run the configure checks, but stop before creating any output |
361 files. | 366 files. |
362 | 367 |
363 `configure' also accepts some other, not widely useful, options. Run | 368 `configure' also accepts some other, not widely useful, options. Run |
364 `configure --help' for more details. | 369 `configure --help' for more details. |
365 | 370 |
OLD | NEW |