restore README.txt that got lost when I moved the python directory
[comedilib.git] / configure.ac
index a432d1023b33a55599ac548d9eb45888f9790d3e..dc4f93c917697129211e63e909201e05cbe71d0f 100644 (file)
@@ -2,7 +2,8 @@
 AC_INIT
 AC_CANONICAL_TARGET([])
 
-AS_VERSION(comedilib, COMEDILIB, 0, 7, 20, 1)
+AC_CONFIG_AUX_DIR([.])
+AS_VERSION(comedilib, COMEDILIB, 0, 7, 21)
 #COMEDILIB_DEBUG="-Wall -Werror"
 COMEDILIB_DEBUG="-Wall"
 AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
@@ -27,6 +28,12 @@ COMEDILIB_LIBS="$COMEDILIB_LIBS \$(top_builddir)/lib/libcomedi.la -lm"
 AC_SUBST(COMEDILIB_CFLAGS)
 AC_SUBST(COMEDILIB_LIBS)
 
+AC_PATH_PROG(SWIG, swig, no)
+if test "x$SWIG" == xno ; then
+  AC_MSG_WARN([swig not found, will not be able to regenerate code for swig bindings])
+fi
+AM_CONDITIONAL(HAVE_SWIG, [test "x$SWIG" != xno])
+
 AM_PATH_PYTHON
 AM_CHECK_PYTHON_HEADERS(HAVE_PYTHON=yes,[HAVE_PYTHON=no;AC_MSG_WARN([python headers not found, disabling python binding])])
 AM_CONDITIONAL(HAVE_PYTHON, [test "x$HAVE_PYTHON" = xyes])
@@ -35,37 +42,60 @@ AS_COMPILER_FLAG([-fno-strict-aliasing],[PYTHON_QUIET="$PYTHON_QUIET -fno-strict
 AS_COMPILER_FLAG([-Wno-unused-function],[PYTHON_QUIET="$PYTHON_QUIET -Wno-unused-function"], true )
 AC_SUBST(PYTHON_QUIET)
 
+AC_PATH_PROG(RUBY, ruby, no)
+if test "x$RUBY" == xno ; then
+  AC_MSG_WARN([ruby not found, disabling ruby binding])
+fi
+AM_CONDITIONAL(HAVE_RUBY, [test "x$RUBY" != xno])
+
 AC_PATH_PROG(DOCBOOK2MAN, docbook2man, no)
 if test x$DOCBOOK2MAN = xno ; then
-  AC_MSG_WARN([docbook2man not found, disabling documentation])
+  AC_MSG_WARN([docbook2man not found, will not be able to rebuild man pages])
 fi
 AM_CONDITIONAL(HAVE_DOCBOOK2MAN, [test "x$DOCBOOK2MAN" != xno])
 
 AC_PATH_PROG(DOCBOOK2PDF, docbook2pdf, no)
 if test x$DOCBOOK2PDF = xno ; then
-  AC_MSG_WARN([docbook2pdf not found, disabling documentation])
+  AC_MSG_WARN([docbook2pdf not found, will not be able to rebuild pdf documentation])
 fi
 AM_CONDITIONAL(HAVE_DOCBOOK2PDF, [test "x$DOCBOOK2PDF" != xno])
 
 AC_PATH_PROG(DOCBOOK2HTML, docbook2html, no)
 if test x$DOCBOOK2HTML = xno ; then
-  AC_MSG_WARN([docbook2html not found, disabling documentation])
+  AC_MSG_WARN([docbook2html not found, will not be able to rebuild html documentation])
 fi
 AM_CONDITIONAL(HAVE_DOCBOOK2HTML, [test "x$DOCBOOK2HTML" != xno])
 
+pcmciadir="\${sysconfdir}/pcmcia"
+AC_SUBST(pcmciadir)
+
+#see: http://linux-hotplug.sourceforge.net/
+#the hotplug expects the device dependent scripts here:
+usbhotplugdir="/etc/hotplug/usb"
+AC_SUBST(usbhotplugdir)
+
+#firmware for the hotplug script
+#see: http://linux-hotplug.sourceforge.net/
+usbfirmwaredir="/usr/share/usb"
+AC_SUBST(usbfirmwaredir)
 
 AC_CONFIG_FILES(
 Makefile
 comedi_calibrate/Makefile
 comedi_config/Makefile
+etc/Makefile
+etc/pcmcia/Makefile
+etc/hotplug/Makefile
+etc/hotplug/usb/Makefile
+etc/hotplug/usb/usbdux/Makefile
 doc/Makefile
-doc/html/Makefile
-doc/man/Makefile
 demo/Makefile
 include/Makefile
 lib/Makefile
 man/Makefile
-python/Makefile
+swig/Makefile
+swig/python/Makefile
+swig/ruby/Makefile
 testing/Makefile
 comedilib.spec
 )