diff options
author | deva <deva> | 2005-04-13 14:05:29 +0000 |
---|---|---|
committer | deva <deva> | 2005-04-13 14:05:29 +0000 |
commit | 067f68c8c6118e9f9241e4f0eb872aad4888dba0 (patch) | |
tree | c5ba5a4f144e38157e045ed7a7d9b1febb664c6e /configure.in | |
parent | 8bb66b01594b5201af3e3afbe28238076e809b50 (diff) |
decoder rewritten for input throgh raw1394 instead of dv1394 (kernel bug in 2.6.x)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d53a1aa..333557a 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # Filename: configure.in AC_INIT(src/miav.cc) -AM_INIT_AUTOMAKE( miav, 0.1.1 ) +AM_INIT_AUTOMAKE( miav, 0.1.2 ) AC_PROG_CXX @@ -28,6 +28,9 @@ if test x$with_gui != xno && test -z "$GUI"; then CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LDFLAGS="$LDFLAGS $SDL_LIBS" + AC_CHECK_HEADER(libraw1394/raw1394.h, , AC_MSG_ERROR([*** libraw1394 headers not found!])) + AC_CHECK_LIB(raw1394, raw1394_get_userdata, , AC_MSG_ERROR([*** libraw1394 not found!])) + dnl Make code aware of the gui AC_DEFINE([USE_GUI], [], [Is defined if the project is configured to compile with gui]) else |