We now use real structs to wrap objects.
[ruby-ecore.git] / configure.ac
1 dnl $Id: configure.ac 39 2004-07-25 13:13:57Z tilman $
2
3 AC_INIT(ruby-ecore, 0.0.1)
4 AC_CONFIG_SRCDIR([src/ecore/rb_ecore.c])
5
6 AM_INIT_AUTOMAKE([dist-bzip2])
7 AM_CONFIG_HEADER(config.h)
8
9 AC_PROG_CC
10 AC_PROG_CC_STDC
11 AC_PROG_INSTALL
12
13 AM_DISABLE_STATIC
14 AC_PROG_LIBTOOL
15
16 AC_HEADER_STDC
17 AC_HEADER_STDBOOL
18
19 AC_RUBY_EXT
20
21 AC_PATH_GENERIC(ecore, , ,
22         AC_MSG_ERROR(Cannot find ecore: Is ecore-config in path?))
23
24 AC_PATH_GENERIC(evas, , ,
25         AC_MSG_ERROR(Cannot find evas: Is evas-config in path?))
26
27 AC_CONFIG_FILES([
28 Makefile
29 m4/Makefile
30 src/Makefile
31 src/ecore/Makefile
32 src/ecore_evas/Makefile
33 src/ecore_job/Makefile
34 src/ecore_x/Makefile
35 ])
36
37 AC_OUTPUT
38