Line # Revision Author
1 8 ahitrov@rambler.ru ##############################################################################
2 501 ahitrov #
3 8 ahitrov@rambler.ru ###############################################################################
4
5 # independent required
6 CORE_REQUIRED += BSD-Resource
7 CORE_REQUIRED += Digest-MD5
8 CORE_REQUIRED += Image-Size
9 142 ahitrov CORE_REQUIRED += Image-Info
10 8 ahitrov@rambler.ru CORE_REQUIRED += String-CRC32
11 CORE_REQUIRED += Time-HiRes
12 CORE_REQUIRED += Time-modules
13 CORE_REQUIRED += cyrillic
14 CORE_REQUIRED += libnet
15 CORE_REQUIRED += URI
16 CORE_REQUIRED += libwww
17 CORE_REQUIRED += MailTools
18 174 ahitrov CORE_REQUIRED += DateTime
19 8 ahitrov@rambler.ru CORE_REQUIRED += HTML-Mason
20 CORE_REQUIRED += apache13
21 CORE_REQUIRED += libapreq
22 CORE_REQUIRED += IO-stringy
23 CORE_REQUIRED += DateTime-Format-Pg
24 459 ahitrov CORE_REQUIRED += Cache-Memcached-Fast
25 222 ahitrov CORE_REQUIRED += Data-Recursive-Encode
26 223 ahitrov CORE_REQUIRED += JSON-XS
27 8 ahitrov@rambler.ru CORE_REQUIRED += cronolog
28 CORE_REQUIRED += clogger
29 CORE_REQUIRED += HTML-Parser
30 CORE_REQUIRED += mtt
31 CORE_REQUIRED += SQL-Abstract
32 CORE_REQUIRED += Log-Dispatch
33 CORE_REQUIRED += Text-Wrapper
34
35 501 ahitrov OPSYS ?= ${shell uname}
36 ifeq (${OPSYS},Linux)
37 CORE_REQUIRED += Linux-Pid
38 endif
39
40 8 ahitrov@rambler.ru # depends on DB_TYPE
41 ifeq (${DB_TYPE},SINGLE)
42 CORE_REQUIRED += postgresql
43 endif
44
45 # depends on DB_TYPE
46 ifeq (${shell perl -e 'print 1 if "${DB_TYPE}" eq "SINGLE" || \
47 "${DB_TYPE}" eq "REMOTE"'},1)
48 CORE_REQUIRED += DBI
49 CORE_REQUIRED += DBD-Pg
50 endif
51
52 # если сильно течет память уменьшить до 1000
53 MAX_REQUESTS_PER_CHILD ?= 10000
54
55 DEVELOPMENT ?= NO
56 662 ahitrov FOREGROUND ?= NO
57 8 ahitrov@rambler.ru
58 OPTIONS_EXPIRE ?= 600
59 496 ahitrov
60 CONVERT = ${shell export PATH=${LOCAL}/bin:$${PATH}; which convert}
61 ifeq (${CONVERT},)
62 CORE_REQUIRED += ImageMagick
63 endif