File: INSTALL

package info (click to toggle)
bulkmail 1.13-1
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 172 kB
  • ctags: 79
  • sloc: ansic: 1,119; makefile: 52
file content (40 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (3)
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
32
33
34
35
36
37
38
39
40
To compile bulk_mailer

(1)  type "./configure"
(2)  type "make"
(3)  [optionally] type "make install"

If this doesn't work, copy Makefile.OLD to Makefile and...

(1) Edit Makefile and change the configuration parameters
as needed:

a. If your system has strdup() (it probably does), change the line 
that reads

	HASSTRDUP = # -DHAS_STRDUP

to read

	HASSTRDUP = -DHAS_STRDUP

b. If your system has strerror() (it probably does), change the line
that reads

	HASSTRERROR = # -DHAS_STRERROR

to read

	HASSTRERROR = -DHAS_STRERROR

c. If your system needs to link in a special library to get the DNS
resolver routines (Suns certainly do), change the line that reads

	LIBS = # -lresolv

to read

	LIBS = -lresolv


(2) type "make"