xref: /OK3568_Linux_fs/external/xserver/INSTALL (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunInstallation Instructions
2*4882a593Smuzhiyun*************************
3*4882a593Smuzhiyun
4*4882a593SmuzhiyunCopyright (C) 1994-1996, 1999-2002, 2004-2011 Free Software Foundation,
5*4882a593SmuzhiyunInc.
6*4882a593Smuzhiyun
7*4882a593Smuzhiyun   Copying and distribution of this file, with or without modification,
8*4882a593Smuzhiyunare permitted in any medium without royalty provided the copyright
9*4882a593Smuzhiyunnotice and this notice are preserved.  This file is offered as-is,
10*4882a593Smuzhiyunwithout warranty of any kind.
11*4882a593Smuzhiyun
12*4882a593SmuzhiyunBasic Installation
13*4882a593Smuzhiyun==================
14*4882a593Smuzhiyun
15*4882a593Smuzhiyun   Briefly, the shell commands `./configure; make; make install' should
16*4882a593Smuzhiyunconfigure, build, and install this package.  The following
17*4882a593Smuzhiyunmore-detailed instructions are generic; see the `README' file for
18*4882a593Smuzhiyuninstructions specific to this package.  Some packages provide this
19*4882a593Smuzhiyun`INSTALL' file but do not implement all of the features documented
20*4882a593Smuzhiyunbelow.  The lack of an optional feature in a given package is not
21*4882a593Smuzhiyunnecessarily a bug.  More recommendations for GNU packages can be found
22*4882a593Smuzhiyunin *note Makefile Conventions: (standards)Makefile Conventions.
23*4882a593Smuzhiyun
24*4882a593Smuzhiyun   The `configure' shell script attempts to guess correct values for
25*4882a593Smuzhiyunvarious system-dependent variables used during compilation.  It uses
26*4882a593Smuzhiyunthose values to create a `Makefile' in each directory of the package.
27*4882a593SmuzhiyunIt may also create one or more `.h' files containing system-dependent
28*4882a593Smuzhiyundefinitions.  Finally, it creates a shell script `config.status' that
29*4882a593Smuzhiyunyou can run in the future to recreate the current configuration, and a
30*4882a593Smuzhiyunfile `config.log' containing compiler output (useful mainly for
31*4882a593Smuzhiyundebugging `configure').
32*4882a593Smuzhiyun
33*4882a593Smuzhiyun   It can also use an optional file (typically called `config.cache'
34*4882a593Smuzhiyunand enabled with `--cache-file=config.cache' or simply `-C') that saves
35*4882a593Smuzhiyunthe results of its tests to speed up reconfiguring.  Caching is
36*4882a593Smuzhiyundisabled by default to prevent problems with accidental use of stale
37*4882a593Smuzhiyuncache files.
38*4882a593Smuzhiyun
39*4882a593Smuzhiyun   If you need to do unusual things to compile the package, please try
40*4882a593Smuzhiyunto figure out how `configure' could check whether to do them, and mail
41*4882a593Smuzhiyundiffs or instructions to the address given in the `README' so they can
42*4882a593Smuzhiyunbe considered for the next release.  If you are using the cache, and at
43*4882a593Smuzhiyunsome point `config.cache' contains results you don't want to keep, you
44*4882a593Smuzhiyunmay remove or edit it.
45*4882a593Smuzhiyun
46*4882a593Smuzhiyun   The file `configure.ac' (or `configure.in') is used to create
47*4882a593Smuzhiyun`configure' by a program called `autoconf'.  You need `configure.ac' if
48*4882a593Smuzhiyunyou want to change it or regenerate `configure' using a newer version
49*4882a593Smuzhiyunof `autoconf'.
50*4882a593Smuzhiyun
51*4882a593Smuzhiyun   The simplest way to compile this package is:
52*4882a593Smuzhiyun
53*4882a593Smuzhiyun  1. `cd' to the directory containing the package's source code and type
54*4882a593Smuzhiyun     `./configure' to configure the package for your system.
55*4882a593Smuzhiyun
56*4882a593Smuzhiyun     Running `configure' might take a while.  While running, it prints
57*4882a593Smuzhiyun     some messages telling which features it is checking for.
58*4882a593Smuzhiyun
59*4882a593Smuzhiyun  2. Type `make' to compile the package.
60*4882a593Smuzhiyun
61*4882a593Smuzhiyun  3. Optionally, type `make check' to run any self-tests that come with
62*4882a593Smuzhiyun     the package, generally using the just-built uninstalled binaries.
63*4882a593Smuzhiyun
64*4882a593Smuzhiyun  4. Type `make install' to install the programs and any data files and
65*4882a593Smuzhiyun     documentation.  When installing into a prefix owned by root, it is
66*4882a593Smuzhiyun     recommended that the package be configured and built as a regular
67*4882a593Smuzhiyun     user, and only the `make install' phase executed with root
68*4882a593Smuzhiyun     privileges.
69*4882a593Smuzhiyun
70*4882a593Smuzhiyun  5. Optionally, type `make installcheck' to repeat any self-tests, but
71*4882a593Smuzhiyun     this time using the binaries in their final installed location.
72*4882a593Smuzhiyun     This target does not install anything.  Running this target as a
73*4882a593Smuzhiyun     regular user, particularly if the prior `make install' required
74*4882a593Smuzhiyun     root privileges, verifies that the installation completed
75*4882a593Smuzhiyun     correctly.
76*4882a593Smuzhiyun
77*4882a593Smuzhiyun  6. You can remove the program binaries and object files from the
78*4882a593Smuzhiyun     source code directory by typing `make clean'.  To also remove the
79*4882a593Smuzhiyun     files that `configure' created (so you can compile the package for
80*4882a593Smuzhiyun     a different kind of computer), type `make distclean'.  There is
81*4882a593Smuzhiyun     also a `make maintainer-clean' target, but that is intended mainly
82*4882a593Smuzhiyun     for the package's developers.  If you use it, you may have to get
83*4882a593Smuzhiyun     all sorts of other programs in order to regenerate files that came
84*4882a593Smuzhiyun     with the distribution.
85*4882a593Smuzhiyun
86*4882a593Smuzhiyun  7. Often, you can also type `make uninstall' to remove the installed
87*4882a593Smuzhiyun     files again.  In practice, not all packages have tested that
88*4882a593Smuzhiyun     uninstallation works correctly, even though it is required by the
89*4882a593Smuzhiyun     GNU Coding Standards.
90*4882a593Smuzhiyun
91*4882a593Smuzhiyun  8. Some packages, particularly those that use Automake, provide `make
92*4882a593Smuzhiyun     distcheck', which can by used by developers to test that all other
93*4882a593Smuzhiyun     targets like `make install' and `make uninstall' work correctly.
94*4882a593Smuzhiyun     This target is generally not run by end users.
95*4882a593Smuzhiyun
96*4882a593SmuzhiyunCompilers and Options
97*4882a593Smuzhiyun=====================
98*4882a593Smuzhiyun
99*4882a593Smuzhiyun   Some systems require unusual options for compilation or linking that
100*4882a593Smuzhiyunthe `configure' script does not know about.  Run `./configure --help'
101*4882a593Smuzhiyunfor details on some of the pertinent environment variables.
102*4882a593Smuzhiyun
103*4882a593Smuzhiyun   You can give `configure' initial values for configuration parameters
104*4882a593Smuzhiyunby setting variables in the command line or in the environment.  Here
105*4882a593Smuzhiyunis an example:
106*4882a593Smuzhiyun
107*4882a593Smuzhiyun     ./configure CC=c99 CFLAGS=-g LIBS=-lposix
108*4882a593Smuzhiyun
109*4882a593Smuzhiyun   *Note Defining Variables::, for more details.
110*4882a593Smuzhiyun
111*4882a593SmuzhiyunCompiling For Multiple Architectures
112*4882a593Smuzhiyun====================================
113*4882a593Smuzhiyun
114*4882a593Smuzhiyun   You can compile the package for more than one kind of computer at the
115*4882a593Smuzhiyunsame time, by placing the object files for each architecture in their
116*4882a593Smuzhiyunown directory.  To do this, you can use GNU `make'.  `cd' to the
117*4882a593Smuzhiyundirectory where you want the object files and executables to go and run
118*4882a593Smuzhiyunthe `configure' script.  `configure' automatically checks for the
119*4882a593Smuzhiyunsource code in the directory that `configure' is in and in `..'.  This
120*4882a593Smuzhiyunis known as a "VPATH" build.
121*4882a593Smuzhiyun
122*4882a593Smuzhiyun   With a non-GNU `make', it is safer to compile the package for one
123*4882a593Smuzhiyunarchitecture at a time in the source code directory.  After you have
124*4882a593Smuzhiyuninstalled the package for one architecture, use `make distclean' before
125*4882a593Smuzhiyunreconfiguring for another architecture.
126*4882a593Smuzhiyun
127*4882a593Smuzhiyun   On MacOS X 10.5 and later systems, you can create libraries and
128*4882a593Smuzhiyunexecutables that work on multiple system types--known as "fat" or
129*4882a593Smuzhiyun"universal" binaries--by specifying multiple `-arch' options to the
130*4882a593Smuzhiyuncompiler but only a single `-arch' option to the preprocessor.  Like
131*4882a593Smuzhiyunthis:
132*4882a593Smuzhiyun
133*4882a593Smuzhiyun     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
134*4882a593Smuzhiyun                 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
135*4882a593Smuzhiyun                 CPP="gcc -E" CXXCPP="g++ -E"
136*4882a593Smuzhiyun
137*4882a593Smuzhiyun   This is not guaranteed to produce working output in all cases, you
138*4882a593Smuzhiyunmay have to build one architecture at a time and combine the results
139*4882a593Smuzhiyunusing the `lipo' tool if you have problems.
140*4882a593Smuzhiyun
141*4882a593SmuzhiyunInstallation Names
142*4882a593Smuzhiyun==================
143*4882a593Smuzhiyun
144*4882a593Smuzhiyun   By default, `make install' installs the package's commands under
145*4882a593Smuzhiyun`/usr/local/bin', include files under `/usr/local/include', etc.  You
146*4882a593Smuzhiyuncan specify an installation prefix other than `/usr/local' by giving
147*4882a593Smuzhiyun`configure' the option `--prefix=PREFIX', where PREFIX must be an
148*4882a593Smuzhiyunabsolute file name.
149*4882a593Smuzhiyun
150*4882a593Smuzhiyun   You can specify separate installation prefixes for
151*4882a593Smuzhiyunarchitecture-specific files and architecture-independent files.  If you
152*4882a593Smuzhiyunpass the option `--exec-prefix=PREFIX' to `configure', the package uses
153*4882a593SmuzhiyunPREFIX as the prefix for installing programs and libraries.
154*4882a593SmuzhiyunDocumentation and other data files still use the regular prefix.
155*4882a593Smuzhiyun
156*4882a593Smuzhiyun   In addition, if you use an unusual directory layout you can give
157*4882a593Smuzhiyunoptions like `--bindir=DIR' to specify different values for particular
158*4882a593Smuzhiyunkinds of files.  Run `configure --help' for a list of the directories
159*4882a593Smuzhiyunyou can set and what kinds of files go in them.  In general, the
160*4882a593Smuzhiyundefault for these options is expressed in terms of `${prefix}', so that
161*4882a593Smuzhiyunspecifying just `--prefix' will affect all of the other directory
162*4882a593Smuzhiyunspecifications that were not explicitly provided.
163*4882a593Smuzhiyun
164*4882a593Smuzhiyun   The most portable way to affect installation locations is to pass the
165*4882a593Smuzhiyuncorrect locations to `configure'; however, many packages provide one or
166*4882a593Smuzhiyunboth of the following shortcuts of passing variable assignments to the
167*4882a593Smuzhiyun`make install' command line to change installation locations without
168*4882a593Smuzhiyunhaving to reconfigure or recompile.
169*4882a593Smuzhiyun
170*4882a593Smuzhiyun   The first method involves providing an override variable for each
171*4882a593Smuzhiyunaffected directory.  For example, `make install
172*4882a593Smuzhiyunprefix=/alternate/directory' will choose an alternate location for all
173*4882a593Smuzhiyundirectory configuration variables that were expressed in terms of
174*4882a593Smuzhiyun`${prefix}'.  Any directories that were specified during `configure',
175*4882a593Smuzhiyunbut not in terms of `${prefix}', must each be overridden at install
176*4882a593Smuzhiyuntime for the entire installation to be relocated.  The approach of
177*4882a593Smuzhiyunmakefile variable overrides for each directory variable is required by
178*4882a593Smuzhiyunthe GNU Coding Standards, and ideally causes no recompilation.
179*4882a593SmuzhiyunHowever, some platforms have known limitations with the semantics of
180*4882a593Smuzhiyunshared libraries that end up requiring recompilation when using this
181*4882a593Smuzhiyunmethod, particularly noticeable in packages that use GNU Libtool.
182*4882a593Smuzhiyun
183*4882a593Smuzhiyun   The second method involves providing the `DESTDIR' variable.  For
184*4882a593Smuzhiyunexample, `make install DESTDIR=/alternate/directory' will prepend
185*4882a593Smuzhiyun`/alternate/directory' before all installation names.  The approach of
186*4882a593Smuzhiyun`DESTDIR' overrides is not required by the GNU Coding Standards, and
187*4882a593Smuzhiyundoes not work on platforms that have drive letters.  On the other hand,
188*4882a593Smuzhiyunit does better at avoiding recompilation issues, and works well even
189*4882a593Smuzhiyunwhen some directory options were not specified in terms of `${prefix}'
190*4882a593Smuzhiyunat `configure' time.
191*4882a593Smuzhiyun
192*4882a593SmuzhiyunOptional Features
193*4882a593Smuzhiyun=================
194*4882a593Smuzhiyun
195*4882a593Smuzhiyun   If the package supports it, you can cause programs to be installed
196*4882a593Smuzhiyunwith an extra prefix or suffix on their names by giving `configure' the
197*4882a593Smuzhiyunoption `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
198*4882a593Smuzhiyun
199*4882a593Smuzhiyun   Some packages pay attention to `--enable-FEATURE' options to
200*4882a593Smuzhiyun`configure', where FEATURE indicates an optional part of the package.
201*4882a593SmuzhiyunThey may also pay attention to `--with-PACKAGE' options, where PACKAGE
202*4882a593Smuzhiyunis something like `gnu-as' or `x' (for the X Window System).  The
203*4882a593Smuzhiyun`README' should mention any `--enable-' and `--with-' options that the
204*4882a593Smuzhiyunpackage recognizes.
205*4882a593Smuzhiyun
206*4882a593Smuzhiyun   For packages that use the X Window System, `configure' can usually
207*4882a593Smuzhiyunfind the X include and library files automatically, but if it doesn't,
208*4882a593Smuzhiyunyou can use the `configure' options `--x-includes=DIR' and
209*4882a593Smuzhiyun`--x-libraries=DIR' to specify their locations.
210*4882a593Smuzhiyun
211*4882a593Smuzhiyun   Some packages offer the ability to configure how verbose the
212*4882a593Smuzhiyunexecution of `make' will be.  For these packages, running `./configure
213*4882a593Smuzhiyun--enable-silent-rules' sets the default to minimal output, which can be
214*4882a593Smuzhiyunoverridden with `make V=1'; while running `./configure
215*4882a593Smuzhiyun--disable-silent-rules' sets the default to verbose, which can be
216*4882a593Smuzhiyunoverridden with `make V=0'.
217*4882a593Smuzhiyun
218*4882a593SmuzhiyunParticular systems
219*4882a593Smuzhiyun==================
220*4882a593Smuzhiyun
221*4882a593Smuzhiyun   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU
222*4882a593SmuzhiyunCC is not installed, it is recommended to use the following options in
223*4882a593Smuzhiyunorder to use an ANSI C compiler:
224*4882a593Smuzhiyun
225*4882a593Smuzhiyun     ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
226*4882a593Smuzhiyun
227*4882a593Smuzhiyunand if that doesn't work, install pre-built binaries of GCC for HP-UX.
228*4882a593Smuzhiyun
229*4882a593Smuzhiyun   HP-UX `make' updates targets which have the same time stamps as
230*4882a593Smuzhiyuntheir prerequisites, which makes it generally unusable when shipped
231*4882a593Smuzhiyungenerated files such as `configure' are involved.  Use GNU `make'
232*4882a593Smuzhiyuninstead.
233*4882a593Smuzhiyun
234*4882a593Smuzhiyun   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
235*4882a593Smuzhiyunparse its `<wchar.h>' header file.  The option `-nodtk' can be used as
236*4882a593Smuzhiyuna workaround.  If GNU CC is not installed, it is therefore recommended
237*4882a593Smuzhiyunto try
238*4882a593Smuzhiyun
239*4882a593Smuzhiyun     ./configure CC="cc"
240*4882a593Smuzhiyun
241*4882a593Smuzhiyunand if that doesn't work, try
242*4882a593Smuzhiyun
243*4882a593Smuzhiyun     ./configure CC="cc -nodtk"
244*4882a593Smuzhiyun
245*4882a593Smuzhiyun   On Solaris, don't put `/usr/ucb' early in your `PATH'.  This
246*4882a593Smuzhiyundirectory contains several dysfunctional programs; working variants of
247*4882a593Smuzhiyunthese programs are available in `/usr/bin'.  So, if you need `/usr/ucb'
248*4882a593Smuzhiyunin your `PATH', put it _after_ `/usr/bin'.
249*4882a593Smuzhiyun
250*4882a593Smuzhiyun   On Haiku, software installed for all users goes in `/boot/common',
251*4882a593Smuzhiyunnot `/usr/local'.  It is recommended to use the following options:
252*4882a593Smuzhiyun
253*4882a593Smuzhiyun     ./configure --prefix=/boot/common
254*4882a593Smuzhiyun
255*4882a593SmuzhiyunSpecifying the System Type
256*4882a593Smuzhiyun==========================
257*4882a593Smuzhiyun
258*4882a593Smuzhiyun   There may be some features `configure' cannot figure out
259*4882a593Smuzhiyunautomatically, but needs to determine by the type of machine the package
260*4882a593Smuzhiyunwill run on.  Usually, assuming the package is built to be run on the
261*4882a593Smuzhiyun_same_ architectures, `configure' can figure that out, but if it prints
262*4882a593Smuzhiyuna message saying it cannot guess the machine type, give it the
263*4882a593Smuzhiyun`--build=TYPE' option.  TYPE can either be a short name for the system
264*4882a593Smuzhiyuntype, such as `sun4', or a canonical name which has the form:
265*4882a593Smuzhiyun
266*4882a593Smuzhiyun     CPU-COMPANY-SYSTEM
267*4882a593Smuzhiyun
268*4882a593Smuzhiyunwhere SYSTEM can have one of these forms:
269*4882a593Smuzhiyun
270*4882a593Smuzhiyun     OS
271*4882a593Smuzhiyun     KERNEL-OS
272*4882a593Smuzhiyun
273*4882a593Smuzhiyun   See the file `config.sub' for the possible values of each field.  If
274*4882a593Smuzhiyun`config.sub' isn't included in this package, then this package doesn't
275*4882a593Smuzhiyunneed to know the machine type.
276*4882a593Smuzhiyun
277*4882a593Smuzhiyun   If you are _building_ compiler tools for cross-compiling, you should
278*4882a593Smuzhiyunuse the option `--target=TYPE' to select the type of system they will
279*4882a593Smuzhiyunproduce code for.
280*4882a593Smuzhiyun
281*4882a593Smuzhiyun   If you want to _use_ a cross compiler, that generates code for a
282*4882a593Smuzhiyunplatform different from the build platform, you should specify the
283*4882a593Smuzhiyun"host" platform (i.e., that on which the generated programs will
284*4882a593Smuzhiyuneventually be run) with `--host=TYPE'.
285*4882a593Smuzhiyun
286*4882a593SmuzhiyunSharing Defaults
287*4882a593Smuzhiyun================
288*4882a593Smuzhiyun
289*4882a593Smuzhiyun   If you want to set default values for `configure' scripts to share,
290*4882a593Smuzhiyunyou can create a site shell script called `config.site' that gives
291*4882a593Smuzhiyundefault values for variables like `CC', `cache_file', and `prefix'.
292*4882a593Smuzhiyun`configure' looks for `PREFIX/share/config.site' if it exists, then
293*4882a593Smuzhiyun`PREFIX/etc/config.site' if it exists.  Or, you can set the
294*4882a593Smuzhiyun`CONFIG_SITE' environment variable to the location of the site script.
295*4882a593SmuzhiyunA warning: not all `configure' scripts look for a site script.
296*4882a593Smuzhiyun
297*4882a593SmuzhiyunDefining Variables
298*4882a593Smuzhiyun==================
299*4882a593Smuzhiyun
300*4882a593Smuzhiyun   Variables not defined in a site shell script can be set in the
301*4882a593Smuzhiyunenvironment passed to `configure'.  However, some packages may run
302*4882a593Smuzhiyunconfigure again during the build, and the customized values of these
303*4882a593Smuzhiyunvariables may be lost.  In order to avoid this problem, you should set
304*4882a593Smuzhiyunthem in the `configure' command line, using `VAR=value'.  For example:
305*4882a593Smuzhiyun
306*4882a593Smuzhiyun     ./configure CC=/usr/local2/bin/gcc
307*4882a593Smuzhiyun
308*4882a593Smuzhiyuncauses the specified `gcc' to be used as the C compiler (unless it is
309*4882a593Smuzhiyunoverridden in the site shell script).
310*4882a593Smuzhiyun
311*4882a593SmuzhiyunUnfortunately, this technique does not work for `CONFIG_SHELL' due to
312*4882a593Smuzhiyunan Autoconf bug.  Until the bug is fixed you can use this workaround:
313*4882a593Smuzhiyun
314*4882a593Smuzhiyun     CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash
315*4882a593Smuzhiyun
316*4882a593Smuzhiyun`configure' Invocation
317*4882a593Smuzhiyun======================
318*4882a593Smuzhiyun
319*4882a593Smuzhiyun   `configure' recognizes the following options to control how it
320*4882a593Smuzhiyunoperates.
321*4882a593Smuzhiyun
322*4882a593Smuzhiyun`--help'
323*4882a593Smuzhiyun`-h'
324*4882a593Smuzhiyun     Print a summary of all of the options to `configure', and exit.
325*4882a593Smuzhiyun
326*4882a593Smuzhiyun`--help=short'
327*4882a593Smuzhiyun`--help=recursive'
328*4882a593Smuzhiyun     Print a summary of the options unique to this package's
329*4882a593Smuzhiyun     `configure', and exit.  The `short' variant lists options used
330*4882a593Smuzhiyun     only in the top level, while the `recursive' variant lists options
331*4882a593Smuzhiyun     also present in any nested packages.
332*4882a593Smuzhiyun
333*4882a593Smuzhiyun`--version'
334*4882a593Smuzhiyun`-V'
335*4882a593Smuzhiyun     Print the version of Autoconf used to generate the `configure'
336*4882a593Smuzhiyun     script, and exit.
337*4882a593Smuzhiyun
338*4882a593Smuzhiyun`--cache-file=FILE'
339*4882a593Smuzhiyun     Enable the cache: use and save the results of the tests in FILE,
340*4882a593Smuzhiyun     traditionally `config.cache'.  FILE defaults to `/dev/null' to
341*4882a593Smuzhiyun     disable caching.
342*4882a593Smuzhiyun
343*4882a593Smuzhiyun`--config-cache'
344*4882a593Smuzhiyun`-C'
345*4882a593Smuzhiyun     Alias for `--cache-file=config.cache'.
346*4882a593Smuzhiyun
347*4882a593Smuzhiyun`--quiet'
348*4882a593Smuzhiyun`--silent'
349*4882a593Smuzhiyun`-q'
350*4882a593Smuzhiyun     Do not print messages saying which checks are being made.  To
351*4882a593Smuzhiyun     suppress all normal output, redirect it to `/dev/null' (any error
352*4882a593Smuzhiyun     messages will still be shown).
353*4882a593Smuzhiyun
354*4882a593Smuzhiyun`--srcdir=DIR'
355*4882a593Smuzhiyun     Look for the package's source code in directory DIR.  Usually
356*4882a593Smuzhiyun     `configure' can determine that directory automatically.
357*4882a593Smuzhiyun
358*4882a593Smuzhiyun`--prefix=DIR'
359*4882a593Smuzhiyun     Use DIR as the installation prefix.  *note Installation Names::
360*4882a593Smuzhiyun     for more details, including other options available for fine-tuning
361*4882a593Smuzhiyun     the installation locations.
362*4882a593Smuzhiyun
363*4882a593Smuzhiyun`--no-create'
364*4882a593Smuzhiyun`-n'
365*4882a593Smuzhiyun     Run the configure checks, but stop before creating any output
366*4882a593Smuzhiyun     files.
367*4882a593Smuzhiyun
368*4882a593Smuzhiyun`configure' also accepts some other, not widely useful, options.  Run
369*4882a593Smuzhiyun`configure --help' for more details.
370*4882a593Smuzhiyun
371