prototyped edje_part scriptability and outsourced scriptability code to script.c
[mozilla_edje_plugin.git] / configure.in
blob00517845d505e112b1f8274b328e0508d4436889
1 # Process this file with autoconf to produce a configure script.
2 # ./configure --prefix=/usr --exec-prefix=/ --sysconfdir=/etc
4 AC_INIT(mozilla_edje_plugin, 0.0.1, agenthp@airpost.net)
5 AM_INIT_AUTOMAKE(mozilla_edje_plugin, 0.0.1, agenthp@airpost.net)
7 AC_ISC_POSIX
8 AC_PROG_CC
9 AM_PROG_CC_STDC
10 AC_HEADER_STDC
11 AC_C_CONST
12 AM_PROG_LIBTOOL
14 AM_WITH_DMALLOC
16 # Add the languages which your application supports here.
17 ALL_LINGUAS=""
19 # check for efl
20 PKG_CHECK_MODULES(ECORE, [ecore],
21         [ ],
22         [ AC_MSG_ERROR(Cannot find ecore) ]
25 PKG_CHECK_MODULES(ECORE_CONFIG, [ecore-config],
26         [ ],
27         [ AC_MSG_ERROR(Cannot find ecore-config) ]
30 PKG_CHECK_MODULES(EVAS, [evas],
31         [ ],
32         [ AC_MSG_ERROR(Cannot find evas) ]
35 PKG_CHECK_MODULES(EDJE, [edje],
36         [ ],
37         [ AC_MSG_ERROR(Cannot find edje) ]
40 PKG_CHECK_MODULES(MOZILLA_PLUGIN, [mozilla-plugin],
41         [ ],
42         [ AC_MSG_ERROR(Cannot find mozilla-plugin) ]
45 AC_OUTPUT([
46 Makefile 
47 src/Makefile
48 data/Makefile
49 test/Makefile