]> git.sur5r.net Git - openldap/blob - INSTALL
Update top-level docs in prep for beta tag.
[openldap] / INSTALL
1 Making and Installing the OpenLDAP Distribution
2
3 **
4 ** It is recommended that you read or at least skim through ALL of the
5 ** instructions in this file before attempting to build the software.
6 **
7 ** You should also check for platform specific hints.
8 ** These are located in doc/install/hints.
9 **
10
11 If you want to build binaries for more than one platform from a single
12 source tree, skip ahead to the "Building LDAP For More Than One Platform"
13 section near the end of this file.
14
15 If you simply want to build LDAP for a single machine platform, follow
16 these steps:
17
18  1. untar the distribution and cd to the top:
19
20         % tar xfz openldap-VERSION.tgz
21         % cd ldap
22
23     If you are reading this file, you probably have already done this!
24
25  2. Type:
26         % ./configure --help
27
28         to list available configuration options.   A description of
29         these options is provided in the 'CONFIGURE OPTIONS' section
30         below.
31
32         The configure script uses environmental variables for
33         determining compiler/linker options.  See the HINTS
34         section for commonly used settings. 
35
36         These environment variables are used: 
37                 CC                      C Compiler      (cc, ecgs)
38                 CFLAGS          C Flags         (-ansi)
39                 CPPFLAGS        CPP Flags       (-I/path/include -Ddef)
40                 LDFLAGS         LDFLAGS         (-L/path/lib -llib)
41
42         See the 'USING ENVIRONMENT VARIABLES' section for information
43         on how to use the variables. 
44
45  3. edit the file include/ldapconfig.h.edit to configure
46     the software for your site (the files are well-commented):
47
48         % vi include/ldapconfig.h.edit
49
50  4. Configure the build system
51
52         % [env settings] ./configure [options]
53
54         If all goes well, the configure script with auto-detect the
55         appropriate settings.  Use configure enable/with options and/or
56         environment variables to obtain desired results.
57
58  5. Build dependencies
59
60         % make depend
61
62  6. Build the system
63
64         % make
65
66     If all goes well, the system will build as configured.  If not,
67         return to step 4 after reviewing the configuration settings.
68
69         You may want to consult the doc/install/hints file for your
70         platform.
71
72  7. Test the standalone system
73
74         This step requires the standalone LDAP server (slapd) with
75         LDBM support.
76
77         % cd tests
78         % make
79
80         If all goes well, the system has been built as configured.  If not,
81         return to step 4 after reviewing your configuration settings.
82
83         You may want to consult the doc/install/hints file for your
84         platform.
85
86  8. install the binaries and man pages.  You may need to be superuser to
87     do this (depending on where you are installing things):
88
89         % su
90         # make install
91
92     That's it!
93
94         See the man pages for the individual applications for
95         information on configuring and using them.  You may also want
96         to edit the configuration files used by the various clients.
97         These configuration files are located in the OpenLDAP
98         configuration directory (normally /usr/local/etc/openldap).
99
100         ldap.conf            - LDAP defaults
101         ldapfilter.conf      - search filter configuration
102         ldapsearchprefs.conf - search object definitions
103         ldaptemplates.conf   - display template definitions
104
105     There are section 5 man pages for all of these files.
106
107
108 Building LDAP For More Than One Platform
109
110 It is now possible to build LDAP for more than one platform from the same
111 source tree.  This is accomplished by using make(1) VPATH support.  If
112 your make(1) program is old and doesn't have VPATH support, install GNU
113 Make.
114
115 Follow these steps for each different platform:
116
117  1.     Create a directory for the platform object files.
118
119         % mkdir obj-platform
120
121  2. Change your working directory to the platform object directory.
122
123         % cd obj-platform
124
125  3. Configure the build system
126
127         % [env settings] ../configure --src-dir=.. [options]
128
129                 ( replace ".." with the appropriate path )
130
131  4. Continue as above (starting at step 6).
132
133         Note: make depend in VPATH environment is not yet supported.
134
135
136 CONFIGURE OPTIONS
137
138 Regrettably, this section has not been written (yet).  See
139 "./configure --help" for current list of options.
140
141
142 USING ENVIRONMENT VARIABLES
143
144 The configure script will also use your environmental
145 variables for determining compiler/linker options.   This can
146 be used to manual specify features and compilation options.
147
148 Supported Environmental Variables
149         CC                      C compiler              (cc, egcc)
150         CFLAGS          C flags                 (-ansi)
151         CPPFLAGS        cpp flags               (-I/path/include -Ddef)
152         LDFLAGS         ld flags                (-s)
153         LIBS            libraries               (-L/usr/local/lib -llib)
154         PATH            command path    /usr/local/bin:/usr/bin:/bin
155
156 * Including alternative compilers
157         Use the CC environment variable to tell configure to
158         use a specific compiler.  For example, to use ecgs
159         instead of the compiler configure choose, use:
160
161         [env] CC=egcc ./configure 
162
163         You can also use CC use specific flags with the
164         specified compiler.  For example, to require strict
165         ANSI C using the GNU C Compiler, use:
166
167         [env] CC="gcc -ansi -predantic" ./configure
168
169         (you can use CFLAGS to specify compiler flags)
170
171 * Preprocessor Flags
172         You may specify additional preprocessor flags by setting
173         CPPFLAGS.  For example, if you would like to use headers
174         installed in /usr/local/include, use:
175
176         [env] CPPFLAGS="-I/usr/local/include" ./configure
177
178         You can also use CPPFLAGS to specify preprocessor macros.
179
180         [env] CPPFLAGS="-D__SPECIAL_FLAG__" ./configure
181
182 * Linker Flags
183         You may specify additional linker flags by setting LDFLAGS.
184         For example, if you would like to use libraries installed
185         in /usr/local/lib, use:
186
187         [env] LDFLAGS="-L/usr/local/lib" ./configure
188
189         You can also use CPPFLAGS to specify linker flags:
190
191         [env] LDFLAGS="-Bstatic" ./configure
192
193 * Path
194         You may alter your path to affect configure ability to
195         find (or not find) commands.  For example, to have configure
196         additionally look in /usr/css/bin for commands, use:
197
198         [env] PATH="/usr/css/bin:$PATH" ./configure
199         
200
201 HINTS
202
203 * Platform specific hints are available in doc/install/hints.
204
205 * Use software under installed in /usr/local/{include,lib}
206         [env] \
207                 CPPFLAGS="-I/usr/local/include" \
208                 LDFLAGS="-L/usr/local/lib" \
209                 ./configure
210
211
212 End of OpenLDAP INSTALL file.