Signal: remove __str__
[oscopy/ivan.git] / configure.ac
blob8a317508748ca27c8cc241ae6f809a1026854b8f
1 dnl                                                      -*-Autoconf-*-
2 dnl Process this file with autoconf to generate configure.
3 dnl
4 dnl The AX_* macros are defined in files in the top-level m4
5 dnl directory.
7 #####################################################################
8 # Set up configuration system
9 #####################################################################
11 AC_INIT([oscopy], [0.32], [agardelein@yahoo.fr])
12 AC_CONFIG_AUX_DIR([build-tools])
13 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
15 AC_PROG_LN_S
16 AC_CONFIG_MACRO_DIR([m4])
17 AC_CONFIG_FILES([
18         Makefile
19         oscopy/Makefile
20         oscopy/graphs/Makefile
21         oscopy/readers/Makefile
22         oscopy/writers/Makefile
23         oscopy_gui/Makefile
24         scheme/Makefile
27 #####################################################################
28 # Check for compiling & linking tools
29 #####################################################################
31 AC_PATH_PROGS([M4], [gm4 m4], [m4])
32 AM_PATH_PYTHON([2.5])
34 #####################################################################
35 # Check for libraries that use pkg-config
36 #####################################################################
38 PKG_PROG_PKG_CONFIG
40 PKG_CHECK_MODULES(PYGTK, [pygtk-2.0 >= 2.10.0], ,
41   AC_MSG_ERROR([PyGTK 2.10.0 or later is required.]))
43 PKG_CHECK_MODULES(PYVTE, [pyvte], ,
44   AC_MSG_ERROR([pyvte not found.]))
47 AC_OUTPUT