fix check for ruby.h
[comedilib.git] / configure.ac
1
2 AC_INIT
3 AC_CANONICAL_TARGET([])
4
5 AC_CONFIG_AUX_DIR([.])
6 AS_VERSION(comedilib, COMEDILIB, 0, 7, 21)
7 #COMEDILIB_DEBUG="-Wall -Werror"
8 COMEDILIB_DEBUG="-Wall"
9 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
10 AS_LIBTOOL(COMEDILIB, 0, 7, 18, yes)
11
12 AM_CONFIG_HEADER(config.h)
13
14 ACLOCAL="$ACLOCAL -I m4"
15
16 AM_MAINTAINER_MODE
17
18 AC_PROG_CC
19 AM_PROG_CC_STDC
20 AC_ISC_POSIX
21 AM_PROG_LEX
22 AC_PROG_YACC
23
24 AC_HEADER_STDC([])
25
26 COMEDILIB_CFLAGS="$COMEDILIB_CFLAGS -I\$(top_srcdir)/include $COMEDILIB_DEBUG"
27 COMEDILIB_LIBS="$COMEDILIB_LIBS \$(top_builddir)/lib/libcomedi.la -lm"
28 AC_SUBST(COMEDILIB_CFLAGS)
29 AC_SUBST(COMEDILIB_LIBS)
30
31 AC_PATH_PROG(SWIG, swig, no)
32 if test "$SWIG" == no ; then
33   AC_MSG_WARN([swig not found, will not be able to regenerate code for swig bindings])
34 fi
35 AM_CONDITIONAL(HAVE_SWIG, [test "$SWIG" != "no"])
36
37 AC_ARG_ENABLE([python-binding],[  --disable-python-binding      Disable building of Python binding],
38         [ENABLE_PYTHON=$enableval],[ENABLE_PYTHON="yes"])
39 AM_PATH_PYTHON
40 AM_CHECK_PYTHON_HEADERS(HAVE_PYTHON=yes,[HAVE_PYTHON=no;AC_MSG_WARN([python headers not found, disabling python binding])])
41 AM_CONDITIONAL(HAVE_PYTHON, [test "$HAVE_PYTHON" == "yes" && test "$ENABLE_PYTHON" == "yes"])
42
43 AS_COMPILER_FLAG([-fno-strict-aliasing],[PYTHON_QUIET="$PYTHON_QUIET -fno-strict-aliasing"], true )
44 AS_COMPILER_FLAG([-Wno-unused-function],[PYTHON_QUIET="$PYTHON_QUIET -Wno-unused-function"], true )
45 AC_SUBST(PYTHON_QUIET)
46
47 AC_ARG_ENABLE([ruby-binding],[  --disable-ruby-binding  Disable building of Ruby binding],
48         [ENABLE_RUBY=$enableval],[ENABLE_RUBY="yes"])
49 AC_PATH_PROG(RUBY, ruby, no)
50 if test "$RUBY" != "no" ; then
51         RUBY_INC_DIR=`$RUBY -e "require 'rbconfig'; c = ::Config::CONFIG; print c[['archdir']];"`
52         AC_CHECK_HEADER([$RUBY_INC_DIR/ruby.h],[],[ENABLE_RUBY="no";AC_MSG_WARN([ruby.h not found, disabling Ruby binding])])
53 else
54         AC_MSG_WARN([ruby not found, disabling ruby binding])
55         ENABLE_RUBY="no"
56 fi
57 AM_CONDITIONAL(HAVE_RUBY, [test "$ENABLE_RUBY" == "yes"])
58 AC_ARG_VAR(RUBY_PREFIX,[path prefix for Ruby binding [PREFIX/]])
59 AC_ARG_VAR(RUBY_SO_DIR,[path for Ruby extensions])
60 if test "$RUBY_PREFIX" != "" ; then
61         RUBY_CONFIG_OPTIONS="$RUBY_CONFIG_OPTIONS --prefix=\$(RUBY_PREFIX)"
62 fi
63 if test "$RUBY_SO_DIR" != "" ; then
64         RUBY_CONFIG_OPTIONS="$RUBY_CONFIG_OPTIONS --so-dir=\$(RUBY_SO_DIR)"
65 fi
66 AC_SUBST(RUBY_CONFIG_OPTIONS)
67
68 AC_PATH_PROG(DOCBOOK2MAN, docbook2man, no)
69 if test "$DOCBOOK2MAN" = "no" ; then
70   AC_MSG_WARN([docbook2man not found, will not be able to rebuild man pages])
71 fi
72 AM_CONDITIONAL(HAVE_DOCBOOK2MAN, [test "$DOCBOOK2MAN" != "no"])
73
74 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf, no)
75 if test "$DOCBOOK2PDF" = "no" ; then
76   AC_MSG_WARN([docbook2pdf not found, will not be able to rebuild pdf documentation])
77 fi
78 AM_CONDITIONAL(HAVE_DOCBOOK2PDF, [test "$DOCBOOK2PDF" != "no"])
79
80 AC_PATH_PROG(DOCBOOK2HTML, docbook2html, no)
81 if test "$DOCBOOK2HTML" = "no" ; then
82   AC_MSG_WARN([docbook2html not found, will not be able to rebuild html documentation])
83 fi
84 AM_CONDITIONAL(HAVE_DOCBOOK2HTML, [test "$DOCBOOK2HTML" != "no"])
85
86 pcmciadir="\${sysconfdir}/pcmcia"
87 AC_SUBST(pcmciadir)
88
89 #see: http://linux-hotplug.sourceforge.net/
90 #the hotplug expects the device dependent scripts here:
91 usbhotplugdir="/etc/hotplug/usb"
92 AC_SUBST(usbhotplugdir)
93
94 #firmware for the hotplug script
95 #see: http://linux-hotplug.sourceforge.net/
96 usbfirmwaredir="/usr/share/usb"
97 AC_SUBST(usbfirmwaredir)
98
99 AC_CONFIG_FILES(
100 Makefile
101 comedi_calibrate/Makefile
102 comedi_config/Makefile
103 etc/Makefile
104 etc/pcmcia/Makefile
105 etc/hotplug/Makefile
106 etc/hotplug/usb/Makefile
107 etc/hotplug/usb/usbdux/Makefile
108 doc/Makefile
109 demo/Makefile
110 include/Makefile
111 lib/Makefile
112 man/Makefile
113 swig/Makefile
114 swig/python/Makefile
115 swig/ruby/Makefile
116 testing/Makefile
117 comedilib.spec
118 )
119
120 AC_OUTPUT
121
122