File: INSTALL.mod_wrap

package info (click to toggle)
proftpd-dfsg 1.3.8.c%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 56,576 kB
  • sloc: perl: 286,353; ansic: 241,458; sh: 16,680; php: 11,586; makefile: 1,092; xml: 93
file content (31 lines) | stat: -rw-r--r-- 1,060 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-----------------------------------------------------------------------------
TJ Saunders <tj@castaglia.org>
2002-01-03
-----------------------------------------------------------------------------

To install mod_wrap, copy the mod_wrap.c file into

  <proftpd-dir>/contrib

after unpacking the proftpd-1.2.5rc1 (or later) source code.  Then run:

  ./configure --with-modules=mod_wrap
  make
  make install

Solaris system users will need to obtain and build the tcpwrappers library, as
it does not come installed by default with Solaris.

mod_wrap-1.2.2 and later will not build properly on FreeBSD-4.4, as they, in
their wisdom, decided to put the NIS/YP functions in a library other than
libnsl.a (which is where Solaris and Linux have those functions).  This means
that, when building proftpd with mod_wrap-1.2.2 (or later) on FreeBSD-4.4
(possibly earlier?) platforms will need to change this line in mod_wrap.c:

 * $Libraries: -lwrap -lnsl$

to be:

 * $Libraries: -lwrap$

----------------------------------------------------------------------------