-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.m4
40 lines (38 loc) · 1.3 KB
/
config.m4
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
PHP_ARG_ENABLE(yii, whether to enable yii framework, [ --enable-yii Enable yii framework])
if test "$PHP_YII" = "yes"; then
AC_DEFINE(HAVE_YII, 1, [Whether you have Yii Framework])
PHP_NEW_EXTENSION(yii,
yii.c \
func.c \
\
system/base/interface/yii_iapplicationcomponent.c \
system/base/interface/yii_iaction.c \
system/base/interface/yii_iauthmanager.c \
system/base/interface/yii_ibehavior.c \
system/base/interface/yii_icache.c \
system/base/interface/yii_icachedependency.c \
system/base/interface/yii_idataprovider.c \
system/base/interface/yii_ifilter.c \
system/base/interface/yii_ilogfilter.c \
system/base/interface/yii_istatepersister.c \
system/base/interface/yii_iuseridentity.c \
system/base/interface/yii_iviewrenderer.c \
system/base/interface/yii_iwebserviceprovider.c \
system/base/interface/yii_iwebuser.c \
system/base/interface/yii_iwidgetfactory.c \
\
system/base/yii_ccomponent.c \
system/base/yii_cevent.c \
\
system/collections/yii_clist.c \
system/collections/yii_clistiterator.c \
system/collections/yii_cmap.c \
system/collections/yii_cmapiterator.c \
system/collections/yii_cqueue.c \
system/collections/yii_cqueueiterator.c \
system/collections/yii_cstack.c \
system/collections/yii_cstackiterator.c \
\
system/yii_yiibase.c,
$ext_shared)
fi