Package: libraw1394-dev Version: 0.10.1-1.1 Followup-For: Bug #259460 Though I get no errors from automake, I get from aclocal: /usr/share/aclocal/libraw1394.m4:6: warning: underquoted definition of AC_LIB_RAW1394_FLAGS /usr/share/aclocal/libraw1394.m4:19: warning: underquoted definition of AC_LIB_RAW1394_HEADERS /usr/share/aclocal/libraw1394.m4:41: warning: underquoted definition of AC_LIB_RAW1394_LIBVERSION /usr/share/aclocal/libraw1394.m4:75: warning: underquoted definition of AC_LIB_RAW1394_RUNTEST /usr/share/aclocal/libraw1394.m4:138: warning: underquoted definition of AC_LIB_RAW1394
This patch fixes the warnings from aclocal caused by libraw1394.m4: --- /usr/share/aclocal/libraw1394.m4.old 2004-11-10 16:08:51.000000000 +0200 +++ /usr/share/aclocal/libraw1394.m4 2005-06-02 17:22:32.000000000 +0300 @@ -3,7 +3,7 @@ dnl This just unconditionally sets the options. It should offer an option for dnl explicitly giving the path to libraw1394 on the configure command line. dnl -AC_DEFUN(AC_LIB_RAW1394_FLAGS, [ +AC_DEFUN([AC_LIB_RAW1394_FLAGS], [ LIBRAW1394_CPPFLAGS="" LIBRAW1394_CFLAGS="" LIBRAW1394_LIBS="-lraw1394" @@ -16,7 +16,7 @@ dnl dnl AC_LIB_RAW1394_HEADERS([ACTION_IF_FOUND[,ACTION_IF_NOT_FOUND]]) dnl -AC_DEFUN(AC_LIB_RAW1394_HEADERS, [ +AC_DEFUN([AC_LIB_RAW1394_HEADERS], [ AC_REQUIRE([AC_LIB_RAW1394_FLAGS]) ac_libraw1394_save_cppflags=$CPPFLAGS @@ -38,7 +38,7 @@ dnl dnl AC_LIB_RAW1394_LIBVERSION(MINIMUMVERSION[,ACTION_IF_FOUND[,ACTION_IF_NOT_FOUND]]) dnl -AC_DEFUN(AC_LIB_RAW1394_LIBVERSION, [ +AC_DEFUN([AC_LIB_RAW1394_LIBVERSION], [ AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_LIB_RAW1394_FLAGS]) @@ -72,7 +72,7 @@ dnl dnl AC_LIB_RAW1394_RUNTEST(MINIMUMVERSION[,ACTION_IF_FOUND dnl [,ACTION_IF_NOT_FOUND[,ACTION_IF_CROSS_COMPILING]]]) -AC_DEFUN(AC_LIB_RAW1394_RUNTEST, [ +AC_DEFUN([AC_LIB_RAW1394_RUNTEST], [ ac_libraw1394_save_cppflags=$CPPFLAGS ac_libraw1394_save_cflags=$CFLAGS ac_libraw1394_save_libs=$LIBS @@ -135,7 +135,7 @@ dnl Versions before 0.9 can't be checked, so this will always fail if the dnl installed libraw1394 is older than 0.9 as if the library weren't found. dnl -AC_DEFUN(AC_LIB_RAW1394, [ +AC_DEFUN([AC_LIB_RAW1394], [ AC_LIB_RAW1394_FLAGS AC_LIB_RAW1394_HEADERS(ac_libraw1394_found=yes, ac_libraw1394_found=no) -- System Information: Debian Release: 3.1 APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.11-1-k7 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) Versions of packages libraw1394-dev depends on: ii libc6 2.3.2.ds1-22 GNU C Library: Shared libraries an ii libc6-dev 2.3.2.ds1-22 GNU C Library: Development Librari ii libraw1394-5 0.10.1-1.1 library for direct access to IEEE -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

