Line # Revision Author
1 3 ahitrov@rambler.ru ##############################################################################
2 571 ahitrov #
3 3 ahitrov@rambler.ru ###############################################################################
4
5 # independent required
6 CORE_REQUIRED += BSD-Resource
7 CORE_REQUIRED += Digest-MD5
8 CORE_REQUIRED += Image-Size
9 143 ahitrov CORE_REQUIRED += Image-Info
10 3 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 175 ahitrov CORE_REQUIRED += DateTime
19 3 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 177 ahitrov CORE_REQUIRED += DateTime-Locale-ru_RU_KOI8_R
25 459 ahitrov CORE_REQUIRED += Cache-Memcached-Fast
26 3 ahitrov@rambler.ru CORE_REQUIRED += cronolog
27 CORE_REQUIRED += clogger
28 CORE_REQUIRED += HTML-Parser
29 CORE_REQUIRED += mtt
30 CORE_REQUIRED += SQL-Abstract
31 CORE_REQUIRED += Log-Dispatch
32 CORE_REQUIRED += Text-Wrapper
33
34 571 ahitrov OPSYS ?= ${shell uname}
35 ifeq (${OPSYS},Linux)
36 CORE_REQUIRED += Linux-Pid
37 endif
38
39 3 ahitrov@rambler.ru # depends on DB_TYPE
40 ifeq (${DB_TYPE},SINGLE)
41 CORE_REQUIRED += postgresql
42 endif
43
44 # depends on DB_TYPE
45 ifeq (${shell perl -e 'print 1 if "${DB_TYPE}" eq "SINGLE" || \
46 "${DB_TYPE}" eq "REMOTE"'},1)
47 CORE_REQUIRED += DBI
48 CORE_REQUIRED += DBD-Pg
49 endif
50
51 # ���� ������ ����� ������ ��������� �� 1000
52 MAX_REQUESTS_PER_CHILD ?= 10000
53
54 DEVELOPMENT ?= NO
55
56 OPTIONS_EXPIRE ?= 600
57 499 ahitrov
58 CONVERT = ${shell export PATH=${LOCAL}/bin:$${PATH}; which convert}
59 ifeq (${CONVERT},)
60 CORE_REQUIRED += ImageMagick
61 endif