Link to the correct ruby shared object.
[ruby-edje.git] / configure.ac
1 dnl $Id: configure.ac 7 2004-06-19 19:32:33Z tilman $
2
3 AC_INIT(ruby-edje, 0.0.1)
4 AC_CONFIG_SRCDIR([src/rb_edje_main.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(evas, , ,
22         AC_MSG_ERROR(Cannot find evas: Is evas-config in path?))
23
24 AC_PATH_GENERIC(edje, , ,
25         AC_MSG_ERROR(Cannot find edje: Is edje-config in path?))
26
27 AC_CONFIG_FILES([
28 Makefile
29 m4/Makefile
30 src/Makefile
31 ])
32
33 AC_OUTPUT