update ltq-vmmc patches
authorJohn Crispin <john@openwrt.org>
Thu, 7 Jul 2011 18:20:42 +0000 (18:20 +0000)
committerJohn Crispin <john@openwrt.org>
Thu, 7 Jul 2011 18:20:42 +0000 (18:20 +0000)
SVN-Revision: 27539

package/ltq-vmmc/200-kernel-37.patch [new file with mode: 0644]
package/ltq-vmmc/patches/000-portability.patch
package/ltq-vmmc/patches/100-ifxmips.patch [deleted file]
package/ltq-vmmc/patches/100-target.patch [new file with mode: 0644]
package/ltq-vmmc/patches/200-kernel-37.patch [deleted file]
package/ltq-vmmc/patches/400-falcon.patch

diff --git a/package/ltq-vmmc/200-kernel-37.patch b/package/ltq-vmmc/200-kernel-37.patch
new file mode 100644 (file)
index 0000000..f5e2b36
--- /dev/null
@@ -0,0 +1,192 @@
+--- a/src/drv_vmmc_init.c
++++ b/src/drv_vmmc_init.c
+@@ -784,7 +784,7 @@
+       dwld.fwDwld.length = IoInit.pram_size;
+      /* download firmware */
+-      ret = ifx_mps_ioctl((IFX_void_t *) command, IFX_NULL, FIO_MPS_DOWNLOAD,
++      ret = ifx_mps_ioctl((IFX_void_t *) command, FIO_MPS_DOWNLOAD,
+                           (IFX_uint32_t) &dwld.fwDwld);
+    }
+@@ -1594,7 +1594,7 @@
+ #ifdef VMMC_DRIVER_UNLOAD_HOOK
+    if (VDevices[0].nDevState & DS_GPIO_RESERVED)
+    {
+-      IFX_int32_t ret;
++      IFX_int32_t ret = 0;
+       VMMC_DRIVER_UNLOAD_HOOK(ret);
+       if (!VMMC_SUCCESS(ret))
+       {
+--- a/src/mps/drv_mps_vmmc_linux.c
++++ b/src/mps/drv_mps_vmmc_linux.c
+@@ -110,7 +110,7 @@
+ #ifndef __KERNEL__
+ IFX_int32_t ifx_mps_open (struct inode *inode, struct file *file_p);
+ IFX_int32_t ifx_mps_close (struct inode *inode, struct file *file_p);
+-IFX_int32_t ifx_mps_ioctl (struct inode *inode, struct file *file_p,
++long ifx_mps_ioctl (struct file *file_p,
+                            IFX_uint32_t nCmd, IFX_ulong_t arg);
+ IFX_int32_t ifx_mps_read_mailbox (mps_devices type, mps_message * rw);
+ IFX_int32_t ifx_mps_write_mailbox (mps_devices type, mps_message * rw);
+@@ -171,7 +171,7 @@
+ static struct file_operations ifx_mps_fops = {
+  owner:THIS_MODULE,
+  poll:ifx_mps_poll,
+- ioctl:ifx_mps_ioctl,
++ unlocked_ioctl:ifx_mps_ioctl,
+  open:ifx_mps_open,
+  release:ifx_mps_close
+ };
+@@ -614,7 +614,7 @@
+  * \return  -ENOIOCTLCMD Invalid command
+  * \ingroup API
+  */
+-IFX_int32_t ifx_mps_ioctl (struct inode * inode, struct file * file_p,
++long ifx_mps_ioctl (struct file *file_p,
+                            IFX_uint32_t nCmd, IFX_ulong_t arg)
+ {
+    IFX_int32_t retvalue = -EINVAL;
+@@ -629,17 +629,18 @@
+       'mps_devices' enum type, which in fact is [0..8]; So, if inode value is
+       [0..NUM_VOICE_CHANNEL+1], then we make sure that we are calling from
+       kernel space. */
+-   if (((IFX_int32_t) inode >= 0) &&
+-       ((IFX_int32_t) inode < NUM_VOICE_CHANNEL + 1))
++   if (((IFX_int32_t) file_p >= 0) &&
++       ((IFX_int32_t) file_p < NUM_VOICE_CHANNEL + 1))
+    {
+       from_kernel = 1;
+       /* Get corresponding mailbox device structure */
+       if ((pMBDev =
+-           ifx_mps_get_device ((mps_devices) ((IFX_int32_t) inode))) == 0)
++           ifx_mps_get_device ((mps_devices) ((IFX_int32_t) file_p))) == 0)
+       {
+          return (-EINVAL);
+       }
++      file_p = NULL;
+    }
+    else
+    {
+--- a/src/drv_vmmc_ioctl.c
++++ b/src/drv_vmmc_ioctl.c
+@@ -427,18 +427,18 @@
+          /* MPS driver will do the USR2KERN so just pass on the pointer. */
+          dwnld_struct.data = (IFX_void_t *)IoInit.pPRAMfw;
+-         ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL,
++         ret = ifx_mps_ioctl((IFX_void_t *)command,
+                              FIO_MPS_DOWNLOAD, (IFX_uint32_t) &dwnld_struct);
+          break;
+       }
+       case FIO_DEV_RESET:
+       {
+-         ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL, FIO_MPS_RESET, 0);
++         ret = ifx_mps_ioctl((IFX_void_t *)command, FIO_MPS_RESET, 0);
+          break;
+       }
+       case FIO_DEV_RESTART:
+       {
+-         ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL, FIO_MPS_RESTART, 0);
++         ret = ifx_mps_ioctl((IFX_void_t *)command, FIO_MPS_RESTART, 0);
+          break;
+       }
+       case FIO_LASTERR:
+--- a/src/mps/drv_mps_vmmc.h
++++ b/src/mps/drv_mps_vmmc.h
+@@ -279,7 +279,7 @@
+ #include <linux/fs.h>
+ IFX_int32_t ifx_mps_open (struct inode *inode, struct file *file_p);
+ IFX_int32_t ifx_mps_close (struct inode *inode, struct file *filp);
+-IFX_int32_t ifx_mps_ioctl (struct inode *inode, struct file *file_p,
++long ifx_mps_ioctl (struct file *filp,
+                            IFX_uint32_t nCmd, unsigned long arg);
+ IFX_int32_t ifx_mps_register_data_callback (mps_devices type, IFX_uint32_t dir,
+                                             IFX_void_t (*callback) (mps_devices
+--- a/src/drv_vmmc_linux.c
++++ b/src/drv_vmmc_linux.c
+@@ -32,7 +32,11 @@
+ #ifdef LINUX_2_6
+ #include <linux/version.h>
+ #ifndef UTS_RELEASE
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
++#include <linux/utsrelease.h>
++#else
+ #include <generated/utsrelease.h>
++#endif
+ #endif /* UTC_RELEASE */
+ #undef CONFIG_DEVFS_FS
+ #endif /* LINUX_2_6 */
+--- a/src/mps/drv_mps_vmmc_common.c
++++ b/src/mps/drv_mps_vmmc_common.c
+@@ -22,7 +22,11 @@
+ #undef USE_PLAIN_VOICE_FIRMWARE
+ #undef PRINT_ON_ERR_INTERRUPT
+ #undef FAIL_ON_ERR_INTERRUPT
+-#include <generated/autoconf.h>
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
++#include <linux/utsrelease.h>
++#else
++#include <generated/utsrelease.h>
++#endif
+ #include <linux/interrupt.h>
+ #include <linux/delay.h>
+@@ -47,8 +51,19 @@
+ #  define ifx_gptu_timer_free       lq_free_timer
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
+ #  define bsp_mask_and_ack_irq      ltq_mask_and_ack_irq
+ #else
++extern void ltq_mask_and_ack_irq(struct irq_data *d);
++static void inline bsp_mask_and_ack_irq(int x)
++{
++      struct irq_data d;
++      d.irq = x;
++      ltq_mask_and_ack_irq(&d);
++}
++#endif
++
++#else
+ #  include <asm/ifx/ifx_regs.h>
+ #  include <asm/ifx/ifx_gptu.h>
+ #endif
+@@ -107,7 +122,9 @@
+ extern mps_mbx_dev *ifx_mps_get_device (mps_devices type);
+ #ifdef LINUX_2_6
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
+ extern IFX_void_t bsp_mask_and_ack_irq (IFX_uint32_t irq_nr);
++#endif
+ #else /* */
+ extern IFX_void_t mask_and_ack_danube_irq (IFX_uint32_t irq_nr);
+--- a/src/mps/drv_mps_vmmc_danube.c
++++ b/src/mps/drv_mps_vmmc_danube.c
+@@ -16,11 +16,16 @@
+ /* ============================= */
+ /* Includes                      */
+ /* ============================= */
++#include "linux/version.h"
+ #include "drv_config.h"
+ #ifdef SYSTEM_DANUBE            /* defined in drv_mps_vmmc_config.h */
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)) 
++#include <linux/autoconf.h>
++#else
+ #include <generated/autoconf.h>
++#endif
+ /* lib_ifxos headers */
+ #include "ifx_types.h"
+@@ -39,6 +44,7 @@
+ #  include <linux/dma-mapping.h>
++#define LQ_RCU_BASE_ADDR      (KSEG1 + LTQ_RCU_BASE_ADDR)
+ # define LQ_RCU_RST           ((u32 *)(LQ_RCU_BASE_ADDR + 0x0010))
+ #define IFX_RCU_RST_REQ_CPU1             (1 << 3)
+ #  define IFX_RCU_RST_REQ        LQ_RCU_RST
index 24e033ee07fd04388f982b08a5cca1ec82d0b7b8..48602476f4f86a8cd81b79acc93722e34ea5af85 100644 (file)
@@ -1,6 +1,6 @@
 --- a/src/Makefile.am
 +++ b/src/Makefile.am
-@@ -228,7 +228,7 @@
+@@ -228,7 +228,7 @@ drv_vmmc_CFLAGS += -fno-common
  drv_vmmc_OBJS = "$(subst .c,.o, $(drv_vmmc_SOURCES) $(nodist_drv_vmmc_SOURCES))"
  
  drv_vmmc.ko: $(drv_vmmc_SOURCES) $(EXTRA_DIST)
@@ -9,7 +9,7 @@
        @for f in $(drv_vmmc_SOURCES) $(nodist_drv_vmmc_SOURCES) ; do \
                if test ! -e $(PWD)/$$f; then \
                        echo "  LN      $$f" ; \
-@@ -236,10 +236,10 @@
+@@ -236,10 +236,10 @@ drv_vmmc.ko: $(drv_vmmc_SOURCES) $(EXTRA
                        ln -s @abs_srcdir@/$$f $(PWD)/$$f; \
                fi; \
        done;
@@ -26,7 +26,7 @@
  clean-generic:
 --- a/src/drv_vmmc_linux.c
 +++ b/src/drv_vmmc_linux.c
-@@ -27,11 +27,12 @@
+@@ -27,11 +27,18 @@
  #include <linux/proc_fs.h>
  #include <linux/wait.h>
  #include <linux/vmalloc.h>
  #ifdef LINUX_2_6
  #include <linux/version.h>
  #ifndef UTS_RELEASE
--#include <linux/utsrelease.h>
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
++#include <linux/autoconf.h>
+ #include <linux/utsrelease.h>
++#else
++#include <generated/autoconf.h>
 +#include <generated/utsrelease.h>
++#endif
  #endif /* UTC_RELEASE */
  #undef CONFIG_DEVFS_FS
  #endif /* LINUX_2_6 */
 --- a/src/mps/drv_mps_vmmc_linux.c
 +++ b/src/mps/drv_mps_vmmc_linux.c
-@@ -23,7 +23,7 @@
+@@ -19,11 +19,22 @@
+ #include "drv_config.h"
+ #include "drv_mps_version.h"
++#include <linux/version.h>
  #ifdef CONFIG_DEBUG_MINI_BOOT
  #define IKOS_MINI_BOOT
  #endif /* */
--#include <linux/autoconf.h>
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
+ #include <linux/autoconf.h>
++#ifndef UTS_RELEASE
++#include <linux/utsrelease.h>
++#endif
++#else
 +#include <generated/autoconf.h>
++#ifndef UTS_RELEASE
++#include <generated/utsrelease.h>
++#endif
++#endif
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/poll.h>
-@@ -34,7 +34,7 @@
+@@ -34,7 +45,13 @@
  #include <linux/delay.h>
  #include <linux/interrupt.h>
  #ifdef LINUX_2_6
--#include <linux/utsrelease.h>
++#ifndef UTS_RELEASE
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33)
+ #include <linux/utsrelease.h>
++#else
 +#include <generated/utsrelease.h>
++#endif
++#endif /* UTC_RELEASE */
  #else /* */
  #include <linux/uts.h>
  #include <linux/moduleparam.h>
+@@ -94,8 +111,13 @@ IFX_int32_t ifx_mps_get_status_proc (IFX
+ #ifndef __KERNEL__
+ IFX_int32_t ifx_mps_open (struct inode *inode, struct file *file_p);
+ IFX_int32_t ifx_mps_close (struct inode *inode, struct file *file_p);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+ IFX_int32_t ifx_mps_ioctl (struct inode *inode, struct file *file_p,
+                            IFX_uint32_t nCmd, IFX_ulong_t arg);
++#else
++long ifx_mps_ioctl (struct file *file_p,
++                           IFX_uint32_t nCmd, IFX_ulong_t arg);
++#endif
+ IFX_int32_t ifx_mps_read_mailbox (mps_devices type, mps_message * rw);
+ IFX_int32_t ifx_mps_write_mailbox (mps_devices type, mps_message * rw);
+ IFX_int32_t ifx_mps_register_data_callback (mps_devices type, IFX_uint32_t dir,
+@@ -155,7 +177,11 @@ IFX_char_t voice_channel_int_name[NUM_VO
+ static struct file_operations ifx_mps_fops = {
+  owner:THIS_MODULE,
+  poll:ifx_mps_poll,
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+  ioctl:ifx_mps_ioctl,
++#else
++ unlocked_ioctl:ifx_mps_ioctl,
++#endif
+  open:ifx_mps_open,
+  release:ifx_mps_close
+ };
+@@ -598,8 +624,13 @@ static IFX_uint32_t ifx_mps_poll (struct
+  * \return  -ENOIOCTLCMD Invalid command
+  * \ingroup API
+  */
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+ IFX_int32_t ifx_mps_ioctl (struct inode * inode, struct file * file_p,
+                            IFX_uint32_t nCmd, IFX_ulong_t arg)
++#else
++long ifx_mps_ioctl (struct file *file_p,
++                           IFX_uint32_t nCmd, IFX_ulong_t arg)
++#endif
+ {
+    IFX_int32_t retvalue = -EINVAL;
+    mps_message rw_struct;
+@@ -613,17 +644,30 @@ IFX_int32_t ifx_mps_ioctl (struct inode 
+       'mps_devices' enum type, which in fact is [0..8]; So, if inode value is
+       [0..NUM_VOICE_CHANNEL+1], then we make sure that we are calling from
+       kernel space. */
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+    if (((IFX_int32_t) inode >= 0) &&
+        ((IFX_int32_t) inode < NUM_VOICE_CHANNEL + 1))
++#else
++   if (((IFX_int32_t) file_p >= 0) &&
++       ((IFX_int32_t) file_p < NUM_VOICE_CHANNEL + 1))
++#endif
+    {
+       from_kernel = 1;
+       /* Get corresponding mailbox device structure */
+       if ((pMBDev =
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+            ifx_mps_get_device ((mps_devices) ((IFX_int32_t) inode))) == 0)
++#else
++           ifx_mps_get_device ((mps_devices) ((IFX_int32_t) file_p))) == 0)
++#endif
+       {
+          return (-EINVAL);
+       }
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
++#else
++      file_p = NULL;
++#endif
+    }
+    else
+    {
 --- a/src/mps/drv_mps_vmmc_common.c
 +++ b/src/mps/drv_mps_vmmc_common.c
-@@ -21,7 +21,7 @@
+@@ -21,7 +21,11 @@
  #undef USE_PLAIN_VOICE_FIRMWARE
  #undef PRINT_ON_ERR_INTERRUPT
  #undef FAIL_ON_ERR_INTERRUPT
--#include <linux/autoconf.h>
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
+ #include <linux/autoconf.h>
++#else
 +#include <generated/autoconf.h>
++#endif
  #include <linux/interrupt.h>
  #include <linux/delay.h>
  
+@@ -92,7 +96,9 @@ extern IFX_uint32_t danube_get_cpu_ver (
+ extern mps_mbx_dev *ifx_mps_get_device (mps_devices type);
+ #ifdef LINUX_2_6
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
+ extern IFX_void_t bsp_mask_and_ack_irq (IFX_uint32_t irq_nr);
++#endif
+ #else /* */
+ extern IFX_void_t mask_and_ack_danube_irq (IFX_uint32_t irq_nr);
 --- a/src/mps/drv_mps_vmmc_danube.c
 +++ b/src/mps/drv_mps_vmmc_danube.c
-@@ -20,7 +20,7 @@
+@@ -20,7 +20,11 @@
  
  #ifdef SYSTEM_DANUBE            /* defined in drv_mps_vmmc_config.h */
  
--#include <linux/autoconf.h>
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
+ #include <linux/autoconf.h>
++#else
 +#include <generated/autoconf.h>
++#endif
  
  /* lib_ifxos headers */
  #include "ifx_types.h"
 --- a/configure.in
 +++ b/configure.in
-@@ -112,7 +112,7 @@
+@@ -112,7 +112,7 @@ dnl Set kernel build path
  AC_ARG_ENABLE(kernelbuild,
          AS_HELP_STRING(--enable-kernelbuild=x,Set the target kernel build path),
          [
                          AC_SUBST([KERNEL_BUILD_PATH],[$enableval])
                  else
                          AC_MSG_ERROR([The kernel build directory is not valid or not configured!])
+--- a/src/drv_vmmc_bbd.c
++++ b/src/drv_vmmc_bbd.c
+@@ -1072,7 +1072,11 @@ static IFX_int32_t vmmc_BBD_DownloadChCr
+    IFX_uint8_t  padBytes = 0;
+ #endif
+    IFX_uint16_t cram_offset, cram_crc,
+-                pCmd [MAX_CMD_WORD]  = {0};
++                pCmd [MAX_CMD_WORD]
++#if defined (__GNUC__) || defined (__GNUG__)
++                   __attribute__ ((aligned(4)))
++#endif
++                   = {0};
+    /* read offset */
+    cpb2w (&cram_offset, &bbd_cram->pData[0], sizeof (IFX_uint16_t));
+--- a/src/drv_vmmc_init.c
++++ b/src/drv_vmmc_init.c
+@@ -776,8 +776,13 @@ IFX_int32_t VMMC_TAPI_LL_FW_Start(IFX_TA
+       dwld.fwDwld.length = IoInit.pram_size;
+      /* download firmware */
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+       ret = ifx_mps_ioctl((IFX_void_t *) command, IFX_NULL, FIO_MPS_DOWNLOAD,
+                           (IFX_uint32_t) &dwld.fwDwld);
++#else
++      ret = ifx_mps_ioctl((IFX_void_t *) command, FIO_MPS_DOWNLOAD,
++                          (IFX_uint32_t) &dwld.fwDwld);
++#endif
+    }
+    if (VMMC_SUCCESS(ret))
+--- a/src/drv_vmmc_ioctl.c
++++ b/src/drv_vmmc_ioctl.c
+@@ -426,18 +426,31 @@ IFX_int32_t VMMC_Dev_Spec_Ioctl (IFX_TAP
+          /* MPS driver will do the USR2KERN so just pass on the pointer. */
+          dwnld_struct.data = (IFX_void_t *)IoInit.pPRAMfw;
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+          ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL,
+                              FIO_MPS_DOWNLOAD, (IFX_uint32_t) &dwnld_struct);
++#else
++         ret = ifx_mps_ioctl((IFX_void_t *)command,
++                             FIO_MPS_DOWNLOAD, (IFX_uint32_t) &dwnld_struct);
++#endif
+          break;
+       }
+       case FIO_DEV_RESET:
+       {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+          ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL, FIO_MPS_RESET, 0);
++#else
++         ret = ifx_mps_ioctl((IFX_void_t *)command, FIO_MPS_RESET, 0);
++#endif
+          break;
+       }
+       case FIO_DEV_RESTART:
+       {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+          ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL, FIO_MPS_RESTART, 0);
++#else
++         ret = ifx_mps_ioctl((IFX_void_t *)command, FIO_MPS_RESTART, 0);
++#endif
+          break;
+       }
+       case FIO_LASTERR:
+--- a/src/mps/drv_mps_vmmc.h
++++ b/src/mps/drv_mps_vmmc.h
+@@ -279,8 +279,13 @@ typedef struct
+ #include <linux/fs.h>
+ IFX_int32_t ifx_mps_open (struct inode *inode, struct file *file_p);
+ IFX_int32_t ifx_mps_close (struct inode *inode, struct file *filp);
++#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)
+ IFX_int32_t ifx_mps_ioctl (struct inode *inode, struct file *file_p,
+                            IFX_uint32_t nCmd, unsigned long arg);
++#else
++long ifx_mps_ioctl (struct file *filp,
++                           IFX_uint32_t nCmd, unsigned long arg);
++#endif
+ IFX_int32_t ifx_mps_register_data_callback (mps_devices type, IFX_uint32_t dir,
+                                             IFX_void_t (*callback) (mps_devices
+                                                                     type));
diff --git a/package/ltq-vmmc/patches/100-ifxmips.patch b/package/ltq-vmmc/patches/100-ifxmips.patch
deleted file mode 100644 (file)
index a6d1c00..0000000
+++ /dev/null
@@ -1,761 +0,0 @@
---- a/src/drv_vmmc_access.h
-+++ b/src/drv_vmmc_access.h
-@@ -24,6 +24,10 @@
- #include "drv_mps_vmmc.h"
- #endif
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#  define IFX_MPS IFXMIPS_MPS_BASE_ADDR
-+#endif
-+
- /* ============================= */
- /* Global Defines                */
- /* ============================= */
---- a/src/drv_vmmc_bbd.c
-+++ b/src/drv_vmmc_bbd.c
-@@ -1072,7 +1072,11 @@ static IFX_int32_t vmmc_BBD_DownloadChCr
-    IFX_uint8_t  padBytes = 0;
- #endif
-    IFX_uint16_t cram_offset, cram_crc,
--                pCmd [MAX_CMD_WORD]  = {0};
-+                pCmd [MAX_CMD_WORD]
-+#if defined (__GNUC__) || defined (__GNUG__)
-+                   __attribute__ ((aligned(4)))
-+#endif
-+                   = {0};
-    /* read offset */
-    cpb2w (&cram_offset, &bbd_cram->pData[0], sizeof (IFX_uint16_t));
---- a/src/drv_vmmc_danube.h
-+++ b/src/drv_vmmc_danube.h
-@@ -15,56 +15,18 @@
- */
- #if defined SYSTEM_DANUBE
--#include <asm/ifx/ifx_gpio.h>
-+#include <lantiq_soc.h>
-+
- #else
- #error no system selected
- #endif
--#define VMMC_TAPI_GPIO_MODULE_ID                        IFX_GPIO_MODULE_TAPI_VMMC
-+#define VMMC_TAPI_GPIO_MODULE_ID             IFX_GPIO_MODULE_TAPI_VMMC
- /**
- */
- #define VMMC_PCM_IF_CFG_HOOK(mode, GPIOreserved, ret) \
- do { \
--   ret = VMMC_statusOk; \
--   /* Reserve P0.0 as TDM/FSC */ \
--   if (!GPIOreserved) \
--      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel0_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel1_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_open_drain_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID);\
--   \
--   /* Reserve P1.9 as TDM/DO */ \
--   if (!GPIOreserved) \
--      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel0_set(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel1_clear(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_dir_out_set(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_open_drain_set(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
--   \
--   /* Reserve P1.10 as TDM/DI */ \
--   if (!GPIOreserved) \
--      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel0_clear(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel1_set(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID);\
--   ret |= ifx_gpio_dir_in_set(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
--   \
--   /* Reserve P1.11 as TDM/DCL */ \
--   if (!GPIOreserved) \
--      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel0_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_altsel1_clear(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_open_drain_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
--   \
--   if (mode == 2) { \
--      /* TDM/FSC+DCL Master */ \
--      ret |= ifx_gpio_dir_out_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
--      ret |= ifx_gpio_dir_out_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
--   } else { \
--      /* TDM/FSC+DCL Slave */ \
--      ret |= ifx_gpio_dir_in_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
--      ret |= ifx_gpio_dir_in_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
--   } \
- } while(0);
- /**
-@@ -72,11 +34,6 @@ do { \
- */
- #define VMMC_DRIVER_UNLOAD_HOOK(ret) \
- do { \
--   ret = VMMC_statusOk; \
--   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
--   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
- } while (0)
- #endif /* _DRV_VMMC_AMAZON_S_H */
---- a/src/drv_vmmc_init.c
-+++ b/src/drv_vmmc_init.c
-@@ -52,6 +52,14 @@
- #include "ifx_pmu.h"
- #endif /* PMU_SUPPORTED */
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#  define IFX_MPS_CAD0SR IFXMIPS_MPS_CAD0SR
-+#  define IFX_MPS_CAD1SR IFXMIPS_MPS_CAD1SR
-+#  define IFX_MPS_CVC0SR IFXMIPS_MPS_CVC0SR
-+#  define IFX_MPS_CVC1SR IFXMIPS_MPS_CVC1SR
-+#  define IFX_MPS_CVC2SR IFXMIPS_MPS_CVC2SR
-+#  define IFX_MPS_CVC3SR IFXMIPS_MPS_CVC3SR
-+#endif
- /* ============================= */
- /* Local Macros & Definitions    */
---- a/src/drv_vmmc_init_cap.c
-+++ b/src/drv_vmmc_init_cap.c
-@@ -22,6 +22,11 @@
- #include "drv_mps_vmmc.h"
- #include "drv_mps_vmmc_device.h"
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#  define IFX_MPS_CHIPID_VERSION_GET   IFXMIPS_MPS_CHIPID_VERSION_GET
-+#  define IFX_MPS_CHIPID               IFXMIPS_MPS_CHIPID
-+#endif
-+
- /* ============================= */
- /* Configuration defintions      */
- /* ============================= */
---- a/src/mps/drv_mps_vmmc_common.c
-+++ b/src/mps/drv_mps_vmmc_common.c
-@@ -17,6 +17,7 @@
- /* Includes                      */
- /* ============================= */
- #include "drv_config.h"
-+#include "drv_vmmc_init.h"
- #undef USE_PLAIN_VOICE_FIRMWARE
- #undef PRINT_ON_ERR_INTERRUPT
-@@ -35,8 +36,22 @@
- #include "ifxos_interrupt.h"
- #include "ifxos_time.h"
--#include <asm/ifx/ifx_regs.h>
--#include <asm/ifx/ifx_gptu.h>
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#  include <lantiq.h>
-+#  include <irq.h>
-+#  include <lantiq_timer.h>
-+
-+#  define ifx_gptu_timer_request    lq_request_timer
-+#  define ifx_gptu_timer_start      lq_start_timer
-+#  define ifx_gptu_countvalue_get   lq_get_count_value
-+#  define ifx_gptu_timer_free       lq_free_timer
-+
-+
-+#  define bsp_mask_and_ack_irq      ltq_mask_and_ack_irq
-+#else
-+#  include <asm/ifx/ifx_regs.h>
-+#  include <asm/ifx/ifx_gptu.h>
-+#endif
- #include "drv_mps_vmmc.h"
- #include "drv_mps_vmmc_dbg.h"
-@@ -98,6 +113,9 @@ extern IFX_void_t bsp_mask_and_ack_irq (
- extern IFX_void_t mask_and_ack_danube_irq (IFX_uint32_t irq_nr);
- #endif /* */
-+
-+extern void sys_hw_setup (void);
-+
- extern IFXOS_event_t fw_ready_evt;
- /* callback function to free all data buffers currently used by voice FW */
- IFX_void_t (*ifx_mps_bufman_freeall)(IFX_void_t) = IFX_NULL;
-@@ -201,7 +219,8 @@ IFX_boolean_t ifx_mps_ext_bufman ()
-  */
- IFX_void_t *ifx_mps_fastbuf_malloc (IFX_size_t size, IFX_int32_t priority)
- {
--   IFX_uint32_t ptr, flags;
-+   IFXOS_INTSTAT flags;
-+   IFX_uint32_t ptr;
-    IFX_int32_t index = fastbuf_index;
-    if (fastbuf_initialized == 0)
-@@ -255,7 +274,7 @@ IFX_void_t *ifx_mps_fastbuf_malloc (IFX_
-  */
- IFX_void_t ifx_mps_fastbuf_free (const IFX_void_t * ptr)
- {
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    IFX_int32_t index = fastbuf_index;
-    IFXOS_LOCKINT (flags);
-@@ -451,7 +470,7 @@ static mps_buffer_state_e ifx_mps_bufman
-  */
- static IFX_int32_t ifx_mps_bufman_inc_level (IFX_uint32_t value)
- {
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    if (mps_buffer.buf_level + value > MPS_BUFFER_MAX_LEVEL)
-    {
-@@ -478,7 +497,7 @@ static IFX_int32_t ifx_mps_bufman_inc_le
-  */
- static IFX_int32_t ifx_mps_bufman_dec_level (IFX_uint32_t value)
- {
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    if (mps_buffer.buf_level < value)
-    {
-@@ -630,7 +649,7 @@ IFX_int32_t ifx_mps_bufman_buf_provide (
-       mem_seg_ptr[i] =
-          (IFX_uint32_t *) CPHYSADDR ((IFX_uint32_t) mps_buffer.
-                                      malloc (segment_size, FASTBUF_FW_OWNED));
--      if (mem_seg_ptr[i] == CPHYSADDR (IFX_NULL))
-+      if (mem_seg_ptr[i] == (IFX_uint32_t *)CPHYSADDR (IFX_NULL))
-       {
-          TRACE (MPS, DBG_LEVEL_HIGH,
-                 ("%s(): cannot allocate buffer\n", __FUNCTION__));
-@@ -946,7 +965,7 @@ IFX_int32_t ifx_mps_common_open (mps_com
-                                  mps_mbx_dev * pMBDev, IFX_int32_t bcommand,
-                                  IFX_boolean_t from_kernel)
- {
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    IFXOS_LOCKINT (flags);
-@@ -1062,7 +1081,7 @@ IFX_int32_t ifx_mps_common_close (mps_mb
- IFX_void_t ifx_mps_release_structures (mps_comm_dev * pDev)
- {
-    IFX_int32_t count;
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    IFXOS_LOCKINT (flags);
-    IFXOS_BlockFree (pFW_img_data);
-@@ -1111,7 +1130,7 @@ IFX_uint32_t ifx_mps_init_structures (mp
-    /* Initialize MPS main structure */
-    memset ((IFX_void_t *) pDev, 0, sizeof (mps_comm_dev));
--   pDev->base_global = (mps_mbx_reg *) IFX_MPS_SRAM;
-+   pDev->base_global = (mps_mbx_reg *) IFXMIPS_MPS_SRAM;
-    pDev->flags = 0x00000000;
-    MBX_Memory = pDev->base_global;
-@@ -1119,9 +1138,11 @@ IFX_uint32_t ifx_mps_init_structures (mp
-       for MBX communication. These are: mailbox base address, mailbox size, *
-       mailbox read index and mailbox write index. for command and voice
-       mailbox, * upstream and downstream direction. */
--   memset ((IFX_void_t *) MBX_Memory,   /* avoid to overwrite CPU boot
--                                           registers */
--           0, sizeof (mps_mbx_reg) - 2 * sizeof (mps_boot_cfg_reg));
-+   memset (
-+      /* avoid to overwrite CPU boot registers */
-+         (IFX_void_t *) MBX_Memory,
-+           0,
-+           sizeof (mps_mbx_reg) - 2 * sizeof (mps_boot_cfg_reg));
-    MBX_Memory->MBX_UPSTR_CMD_BASE =
-       (IFX_uint32_t *) CPHYSADDR ((IFX_uint32_t) MBX_UPSTRM_CMD_FIFO_BASE);
-    MBX_Memory->MBX_UPSTR_CMD_SIZE = MBX_CMD_FIFO_SIZE;
-@@ -1558,7 +1579,7 @@ IFX_int32_t ifx_mps_mbx_read_message (mp
-                                       IFX_uint32_t * bytes)
- {
-    IFX_int32_t i, ret;
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    IFXOS_LOCKINT (flags);
-@@ -1768,7 +1789,7 @@ IFX_int32_t ifx_mps_mbx_write_message (m
- {
-    mps_fifo *mbx;
-    IFX_uint32_t i;
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    IFX_int32_t retval = -EAGAIN;
-    IFX_int32_t retries = 0;
-    IFX_uint32_t word = 0;
-@@ -2163,6 +2184,7 @@ IFX_int32_t ifx_mps_mbx_write_cmd (mps_m
-       TRACE (MPS, DBG_LEVEL_HIGH,
-              ("%s(): Invalid device ID %d !\n", __FUNCTION__, pMBDev->devID));
-    }
-+
-    return retval;
- }
-@@ -2186,7 +2208,7 @@ IFX_void_t ifx_mps_mbx_data_upstream (IF
-    mps_mbx_dev *mbx_dev;
-    MbxMsg_s msg;
-    IFX_uint32_t bytes_read = 0;
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    IFX_int32_t ret;
-    /* set pointer to data upstream mailbox, no matter if 0,1,2 or 3 because
-@@ -2277,7 +2299,7 @@ IFX_void_t ifx_mps_mbx_data_upstream (IF
-          {
-             ifx_mps_bufman_dec_level (1);
-             if ((ifx_mps_bufman_get_level () <= mps_buffer.buf_threshold) &&
--                (atomic_read (&pMPSDev->provide_buffer->object.count) == 0))
-+                ((volatile unsigned int)pMPSDev->provide_buffer->object.count == 0))
-             {
-                IFXOS_LockRelease (pMPSDev->provide_buffer);
-             }
-@@ -2320,7 +2342,7 @@ IFX_void_t ifx_mps_mbx_data_upstream (IF
- #endif /* CONFIG_PROC_FS */
-             ifx_mps_bufman_dec_level (1);
-             if ((ifx_mps_bufman_get_level () <= mps_buffer.buf_threshold) &&
--                (atomic_read (&pMPSDev->provide_buffer->object.count) == 0))
-+                ((volatile unsigned int)pMPSDev->provide_buffer->object.count == 0))
-             {
-                IFXOS_LockRelease (pMPSDev->provide_buffer);
-             }
-@@ -2350,7 +2372,7 @@ IFX_void_t ifx_mps_mbx_data_upstream (IF
- IFX_void_t ifx_mps_mbx_cmd_upstream (IFX_ulong_t dummy)
- {
-    mps_fifo *mbx;
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    /* set pointer to upstream command mailbox */
-    mbx = &(pMPSDev->cmd_upstrm_fifo);
-@@ -2398,7 +2420,7 @@ IFX_void_t ifx_mps_mbx_event_upstream (I
-    mps_event_msg msg;
-    IFX_int32_t length = 0;
-    IFX_int32_t read_length = 0;
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    /* set pointer to upstream event mailbox */
-    mbx = &(pMPSDev->event_upstrm_fifo);
-@@ -2613,6 +2635,7 @@ IFX_void_t ifx_mps_enable_mailbox_int ()
- #endif
-    *IFX_MPS_AD0ENR = Ad0Reg.val;
-+
- }
- /**
-@@ -2641,7 +2664,7 @@ IFX_void_t ifx_mps_disable_mailbox_int (
- */
- IFX_void_t ifx_mps_dd_mbx_int_enable (IFX_void_t)
- {
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    MPS_Ad0Reg_u Ad0Reg;
-    IFXOS_LOCKINT (flags);
-@@ -2667,7 +2690,7 @@ IFX_void_t ifx_mps_dd_mbx_int_enable (IF
- */
- IFX_void_t ifx_mps_dd_mbx_int_disable (IFX_void_t)
- {
--   IFX_uint32_t flags;
-+   IFXOS_INTSTAT flags;
-    MPS_Ad0Reg_u Ad0Reg;
-    IFXOS_LOCKINT (flags);
-@@ -2732,7 +2755,6 @@ irqreturn_t ifx_mps_ad0_irq (IFX_int32_t
- #else /* */
-    mask_and_ack_danube_irq (irq);
- #endif /* */
--
-    /* FW is up and ready to process commands */
-    if (MPS_Ad0StatusReg.fld.dl_end)
-    {
-@@ -2794,6 +2816,7 @@ irqreturn_t ifx_mps_ad0_irq (IFX_int32_t
-       }
-    }
-+
-    if (MPS_Ad0StatusReg.fld.du_mbx)
-    {
- #ifdef CONFIG_PROC_FS
-@@ -2938,12 +2961,12 @@ irqreturn_t ifx_mps_vc_irq (IFX_int32_t 
-    IFX_MPS_CVC0SR[chan] = MPS_VCStatusReg.val;
-    /* handle only enabled interrupts */
-    MPS_VCStatusReg.val &= IFX_MPS_VC0ENR[chan];
--
- #ifdef LINUX_2_6
-    bsp_mask_and_ack_irq (irq);
- #else /* */
-    mask_and_ack_danube_irq (irq);
- #endif /* */
-+
-    pMPSDev->event.MPS_VCStatReg[chan].val = MPS_VCStatusReg.val;
- #ifdef PRINT_ON_ERR_INTERRUPT
-    if (MPS_VCStatusReg.fld.rcv_ov)
-@@ -3087,7 +3110,8 @@ IFX_int32_t ifx_mps_get_fw_version (IFX_
-  */
- IFX_return_t ifx_mps_init_gpt ()
- {
--   IFX_uint32_t flags, timer_flags, timer, loops = 0;
-+   unsigned long flags;
-+   IFX_uint32_t timer_flags, timer, loops = 0;
-    IFX_ulong_t count;
- #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
-    timer = TIMER1A;
-@@ -3160,6 +3184,7 @@ IFX_void_t ifx_mps_shutdown_gpt (IFX_voi
- #else /* Danube */
-    timer = TIMER1B;
- #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
-+
-    ifx_gptu_timer_free (timer);
- }
---- a/src/mps/drv_mps_vmmc_danube.c
-+++ b/src/mps/drv_mps_vmmc_danube.c
-@@ -32,9 +32,21 @@
- #include "ifxos_select.h"
- #include "ifxos_interrupt.h"
--#include <asm/ifx/ifx_regs.h>
--#include <asm/ifx/ifx_gpio.h>
--#include <asm/ifx/common_routines.h>
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#  include <lantiq.h>
-+#  include <irq.h>
-+#  include <lantiq_timer.h>
-+#  include <linux/dma-mapping.h>
-+
-+
-+# define LQ_RCU_RST           ((u32 *)(LQ_RCU_BASE_ADDR + 0x0010))
-+#define IFX_RCU_RST_REQ_CPU1             (1 << 3)
-+#  define IFX_RCU_RST_REQ        LQ_RCU_RST
-+#else
-+#  include <asm/ifx/ifx_regs.h>
-+#  include <asm/ifx_vpe.h>
-+#  include <asm/ifx/ifx_gpio.h>
-+#endif
- #include "drv_mps_vmmc.h"
- #include "drv_mps_vmmc_dbg.h"
-@@ -71,6 +83,20 @@ IFX_void_t ifx_mps_release (IFX_void_t);
- /* Local function definition     */
- /* ============================= */
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+IFX_uint32_t ifx_get_cp1_size(IFX_void_t)
-+{
-+      return 1;
-+}
-+
-+unsigned int *ltq_get_cp1_base(void);
-+
-+IFX_uint32_t *ifx_get_cp1_base(IFX_void_t)
-+{
-+      return ltq_get_cp1_base();
-+}
-+#endif
-+
- /******************************************************************************
-  * DANUBE Specific Routines
-  ******************************************************************************/
-@@ -130,6 +156,15 @@ IFX_int32_t ifx_mps_download_firmware (m
-    }
-    /* check if FW image fits in available memory space */
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+   if (mem > ifx_get_cp1_size()<<20)
-+   {
-+      TRACE (MPS, DBG_LEVEL_HIGH,
-+      ("[%s %s %d]: error, firmware memory exceeds reserved space (%i > %i)!\n",
-+                 __FILE__, __func__, __LINE__, mem, ifx_get_cp1_size()<<20));
-+      return IFX_ERROR;
-+   }
-+#else
-    if (mem > ifx_get_cp1_size())
-    {
-       TRACE (MPS, DBG_LEVEL_HIGH,
-@@ -137,6 +172,7 @@ IFX_int32_t ifx_mps_download_firmware (m
-                  __FILE__, __func__, __LINE__, mem, ifx_get_cp1_size()));
-       return IFX_ERROR;
-    }
-+#endif
-    /* reset the driver */
-    ifx_mps_reset ();
-@@ -357,7 +393,7 @@ IFX_void_t ifx_mps_release (IFX_void_t)
-  */
- IFX_void_t ifx_mps_wdog_expiry()
- {
--   IFX_uint32_t flags;
-+   unsigned long flags;
-    IFXOS_LOCKINT (flags);
-    /* recalculate and compare the firmware checksum */
---- a/src/mps/drv_mps_vmmc_device.h
-+++ b/src/mps/drv_mps_vmmc_device.h
-@@ -16,8 +16,58 @@
-                  declarations.
- *******************************************************************************/
--#include <asm/ifx/ifx_regs.h>
--#include <asm/ifx_vpe.h>
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#  include <lantiq.h>
-+#  include <irq.h>
-+#  include <lantiq_soc.h>
-+#  include <gpio.h>
-+#define IFXMIPS_MPS_SRAM              ((u32 *)(KSEG1 + 0x1F200000))
-+#define IFXMIPS_MPS_BASE_ADDR         (KSEG1 + 0x1F107000)
-+#define IFXMIPS_MPS_CHIPID            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0344))
-+#define IFXMIPS_MPS_VC0ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0000))
-+#define IFXMIPS_MPS_RVC0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0010))
-+#define IFXMIPS_MPS_CVC0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0030))
-+#define IFXMIPS_MPS_CVC1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0034))
-+#define IFXMIPS_MPS_CVC2SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0038))
-+#define IFXMIPS_MPS_CVC3SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x003C))
-+#define IFXMIPS_MPS_RAD0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0040))
-+#define IFXMIPS_MPS_RAD1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0044))
-+#define IFXMIPS_MPS_SAD0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0048))
-+#define IFXMIPS_MPS_SAD1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x004C))
-+#define IFXMIPS_MPS_CAD0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0050))
-+#define IFXMIPS_MPS_CAD1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0054))
-+#define IFXMIPS_MPS_AD0ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0058))
-+#define IFXMIPS_MPS_AD1ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x005C))
-+
-+#define IFXMIPS_MPS_CHIPID_VERSION_GET(value) (((value) >> 28) & ((1 << 4) - 1))
-+#define IFXMIPS_MPS_CHIPID_VERSION_SET(value) ((((1 << 4) - 1) & (value)) << 28)
-+#define IFXMIPS_MPS_CHIPID_PARTNUM_GET(value) (((value) >> 12) & ((1 << 16) - 1))
-+#define IFXMIPS_MPS_CHIPID_PARTNUM_SET(value) ((((1 << 16) - 1) & (value)) << 12)
-+#define IFXMIPS_MPS_CHIPID_MANID_GET(value)   (((value) >> 1) & ((1 << 10) - 1))
-+#define IFXMIPS_MPS_CHIPID_MANID_SET(value)   ((((1 << 10) - 1) & (value)) << 1)
-+#else
-+#  include <asm/ifx/ifx_regs.h>
-+#  include <asm/ifx_vpe.h>
-+#endif
-+/* MPS register */
-+#  define IFX_MPS_AD0ENR      IFXMIPS_MPS_AD0ENR
-+#  define IFX_MPS_AD1ENR      IFXMIPS_MPS_AD1ENR
-+#  define IFX_MPS_RAD0SR      IFXMIPS_MPS_RAD0SR
-+#  define IFX_MPS_RAD1SR      IFXMIPS_MPS_RAD1SR
-+#  define IFX_MPS_VC0ENR      IFXMIPS_MPS_VC0ENR
-+#  define IFX_MPS_RVC0SR      IFXMIPS_MPS_RVC0SR
-+#  define IFX_MPS_CVC0SR      IFXMIPS_MPS_CVC0SR
-+#  define IFX_MPS_CAD0SR      IFXMIPS_MPS_CAD0SR
-+#  define IFX_MPS_CAD1SR      IFXMIPS_MPS_CAD1SR
-+#  define IFX_MPS_CVC1SR      IFXMIPS_MPS_CVC1SR
-+#  define IFX_MPS_CVC2SR      IFXMIPS_MPS_CVC2SR
-+#  define IFX_MPS_CVC3SR      IFXMIPS_MPS_CVC3SR
-+#  define IFX_MPS_SAD0SR      IFXMIPS_MPS_SAD0SR
-+/* interrupt vectors */
-+#  define INT_NUM_IM4_IRL14   (INT_NUM_IM4_IRL0 + 14)
-+#  define INT_NUM_IM4_IRL18   (INT_NUM_IM4_IRL0 + 18)
-+#  define INT_NUM_IM4_IRL19   (INT_NUM_IM4_IRL0 + 19)
-+#  define IFX_ICU_IM4_IER     IFXMIPS_ICU_IM4_IER
- /* ============================= */
- /* MPS Common defines            */
-@@ -26,32 +76,28 @@
- #define MPS_BASEADDRESS 0xBF107000
- #define MPS_RAD0SR      MPS_BASEADDRESS + 0x0004
--#define MPS_RAD0SR_DU   (1<<0)
--#define MPS_RAD0SR_CU   (1<<1)
--
- #define MBX_BASEADDRESS 0xBF200000
- #define VCPU_BASEADDRESS 0xBF208000     /* 0xBF108000 */
- /*---------------------------------------------------------------------------*/
-+#if !defined(CONFIG_LANTIQ)
-+/* enabling interrupts is done with request_irq by the BSP
-+   The related code should not be needed anymore */
- #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
- /* TODO: doublecheck - IM4 or different! */
- #define MPS_INTERRUPTS_ENABLE(X)  *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) |= X;
- #define MPS_INTERRUPTS_DISABLE(X) *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) &= ~X;
--#define MPS_INTERRUPTS_CLEAR(X)   *((volatile IFX_uint32_t*) IFX_ICU_IM4_ISR) = X;
--#define MPS_INTERRUPTS_SET(X)     *((volatile IFX_uint32_t*) IFX_ICU_IM4_IRSR) = X;/* |= ? */
- #else /* Danube */
- /* TODO: possibly needs to be changed to IM4 !!!!!! */
- #ifdef LINUX_2_6
- #define MPS_INTERRUPTS_ENABLE(X)  *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) |= X;
- #define MPS_INTERRUPTS_DISABLE(X) *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) &= ~X;
--#define MPS_INTERRUPTS_CLEAR(X)   *((volatile IFX_uint32_t*) IFX_ICU_IM4_ISR) = X;
--#define MPS_INTERRUPTS_SET(X)     *((volatile IFX_uint32_t*) IFX_ICU_IM4_IRSR) = X;/* |= ? */
- #else /* */
- #define MPS_INTERRUPTS_ENABLE(X)  *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_IER) |= X;
- #define MPS_INTERRUPTS_DISABLE(X) *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_IER) &= ~X;
--#define MPS_INTERRUPTS_CLEAR(X)   *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_ISR) = X;
--#define MPS_INTERRUPTS_SET(X)     *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_IRSR) = X;/* |= ? */
- #endif /* LINUX_2_6 */
- #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
-+#endif /* !defined(CONFIG_LANTIQ) */
-+
- /*---------------------------------------------------------------------------*/
- /*---------------------------------------------------------------------------*/
-@@ -142,53 +188,9 @@
- #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
- /* ***** Amazon-S specific defines ***** */
- #define IFX_MPS_Base      AMAZON_S_MPS
--
--//#define IFX_MPS_CHIPID              AMAZON_S_MPS_CHIPID
--//#define IFX_MPS_CHIPID_VERSION_GET  AMAZON_S_MPS_CHIPID_VERSION_GET
--
--//#define IFX_MPS_AD0ENR    AMAZON_S_MPS_AD0ENR
--//#define IFX_MPS_AD1ENR    AMAZON_S_MPS_AD1ENR
--//#define IFX_MPS_VC0ENR    AMAZON_S_MPS_VC0ENR
--//#define IFX_MPS_SAD0SR    AMAZON_S_MPS_SAD0SR
--//#define IFX_MPS_RAD0SR    AMAZON_S_MPS_RAD0SR
--//#define IFX_MPS_CAD0SR    AMAZON_S_MPS_CAD0SR
--//#define IFX_MPS_RAD1SR    AMAZON_S_MPS_RAD1SR
--//#define IFX_MPS_CAD1SR    AMAZON_S_MPS_CAD1SR
--//#define IFX_MPS_RVC0SR    AMAZON_S_MPS_RVC0SR
--//#define IFX_MPS_CVC0SR    AMAZON_S_MPS_CVC0SR
--//#define IFX_MPS_CVC1SR    AMAZON_S_MPS_CVC1SR
--//#define IFX_MPS_CVC2SR    AMAZON_S_MPS_CVC2SR
--//#define IFX_MPS_CVC3SR    AMAZON_S_MPS_CVC3SR
--
--//#define IFX_MPS_SRAM      AMAZON_S_MPS_SRAM
- #else /* */
- /* ***** DANUBE specific defines ***** */
- #define IFX_MPS_Base      DANUBE_MPS
--
--//#define IFX_MPS_CHIPID    DANUBE_MPS_CHIPID
--//#define IFX_MPS_CHIPID_VERSION_GET  DANUBE_MPS_CHIPID_VERSION_GET
--//#define IFX_MPS_CHIPID_VERSION_SET  DANUBE_MPS_CHIPID_VERSION_SET
--//#define IFX_MPS_CHIPID_PARTNUM_GET  DANUBE_MPS_CHIPID_PARTNUM_GET
--//#define IFX_MPS_CHIPID_PARTNUM_SET  DANUBE_MPS_CHIPID_PARTNUM_SET
--//#define IFX_MPS_CHIPID_MANID_GET    DANUBE_MPS_CHIPID_MANID_GET
--//#define IFX_MPS_CHIPID_MANID_SET    DANUBE_MPS_CHIPID_MANID_SET
--//#define IFX_MPS_SUBVER              DANUBE_MPS_SUBVER
--
--//#define IFX_MPS_AD0ENR    DANUBE_MPS_AD0ENR
--//#define IFX_MPS_AD1ENR    DANUBE_MPS_AD1ENR
--//#define IFX_MPS_VC0ENR    DANUBE_MPS_VC0ENR
--//#define IFX_MPS_SAD0SR    DANUBE_MPS_SAD0SR
--//#define IFX_MPS_RAD0SR    DANUBE_MPS_RAD0SR
--//#define IFX_MPS_CAD0SR    DANUBE_MPS_CAD0SR
--//#define IFX_MPS_RAD1SR    DANUBE_MPS_RAD1SR
--//#define IFX_MPS_CAD1SR    DANUBE_MPS_CAD1SR
--//#define IFX_MPS_RVC0SR    DANUBE_MPS_RVC0SR
--//#define IFX_MPS_CVC0SR    DANUBE_MPS_CVC0SR
--//#define IFX_MPS_CVC1SR    DANUBE_MPS_CVC1SR
--//#define IFX_MPS_CVC2SR    DANUBE_MPS_CVC2SR
--//#define IFX_MPS_CVC3SR    DANUBE_MPS_CVC3SR
--
--//#define IFX_MPS_SRAM      DANUBE_MPS_SRAM
- #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
- typedef enum
- {
---- a/src/mps/drv_mps_vmmc_linux.c
-+++ b/src/mps/drv_mps_vmmc_linux.c
-@@ -19,11 +19,16 @@
- #include "drv_config.h"
- #include "drv_mps_version.h"
-+#include <linux/version.h>
- #ifdef CONFIG_DEBUG_MINI_BOOT
- #define IKOS_MINI_BOOT
- #endif /* */
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
-+#include <linux/autoconf.h>
-+#else
- #include <generated/autoconf.h>
-+#endif
- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/poll.h>
-@@ -34,16 +39,27 @@
- #include <linux/delay.h>
- #include <linux/interrupt.h>
- #ifdef LINUX_2_6
-+#ifndef UTS_RELEASE
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33)
-+#include <linux/utsrelease.h>
-+#else
- #include <generated/utsrelease.h>
-+#endif
-+#endif /* UTC_RELEASE */
- #else /* */
- #include <linux/uts.h>
- #include <linux/moduleparam.h>
- #endif /* */
--
--#include <asm/ifx/irq.h>
--#include <asm/ifx/ifx_regs.h>
--#include <asm/ifx_vpe.h>
-+#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
-+#include "drv_vmmc_init.h"
-+#  include <lantiq.h>
-+#  include <irq.h>
-+#else
-+#  include <asm/ifx/irq.h>
-+#  include <asm/ifx/ifx_regs.h>
-+#  include <asm/ifx_vpe.h>
-+#endif
- /* lib_ifxos headers */
- #include "ifx_types.h"
-@@ -915,7 +931,7 @@ IFX_int32_t ifx_mps_ioctl (struct inode 
- #endif /* MPS_FIFO_BLOCKING_WRITE */
-       case FIO_MPS_GET_STATUS:
-          {
--            IFX_uint32_t flags;
-+            unsigned long flags;
-             /* get the status of the channel */
-             if (!from_kernel)
-@@ -949,7 +965,7 @@ IFX_int32_t ifx_mps_ioctl (struct inode 
- #if CONFIG_MPS_HISTORY_SIZE > 0
-       case FIO_MPS_GET_CMD_HISTORY:
-          {
--            IFX_uint32_t flags;
-+            unsigned long flags;
-             if (from_kernel)
-             {
-@@ -1641,6 +1657,7 @@ IFX_int32_t ifx_mps_get_status_proc (IFX
-          sprintf (buf + len, "   minLv: \t  %8d\n",
-                   ifx_mps_dev.voice_mb[i].upstrm_fifo->min_space);
-    }
-+
-    return len;
- }
-@@ -2247,9 +2264,11 @@ IFX_int32_t __init ifx_mps_init_module (
-          return result;
-    }
-+#if !defined(CONFIG_LANTIQ)
-+   /** \todo This is handled already with request_irq, remove */
-    /* Enable all MPS Interrupts at ICU0 */
-    MPS_INTERRUPTS_ENABLE (0x0000FF80);
--
-+#endif
-    /* enable mailbox interrupts */
-    ifx_mps_enable_mailbox_int ();
-    /* init FW ready event */
-@@ -2377,9 +2396,11 @@ ifx_mps_cleanup_module (IFX_void_t)
-    /* disable mailbox interrupts */
-    ifx_mps_disable_mailbox_int ();
-+#if !defined(CONFIG_LANTIQ)
-    /* disable Interrupts at ICU0 */
--   MPS_INTERRUPTS_DISABLE (DANUBE_MPS_AD0_IR4); /* Disable DFE/AFE 0 Interrupts
--                                                 */
-+   /* Disable DFE/AFE 0 Interrupts*/
-+   MPS_INTERRUPTS_DISABLE (DANUBE_MPS_AD0_IR4);
-+#endif
-    /* disable all MPS interrupts */
-    ifx_mps_disable_all_int ();
---- a/src/drv_vmmc_ioctl.c
-+++ b/src/drv_vmmc_ioctl.c
-@@ -18,6 +18,7 @@
- /* Includes                      */
- /* ============================= */
- #include "drv_api.h"
-+#include "drv_vmmc_init.h"
- #include "drv_vmmc_api.h"
- #include "drv_vmmc_bbd.h"
diff --git a/package/ltq-vmmc/patches/100-target.patch b/package/ltq-vmmc/patches/100-target.patch
new file mode 100644 (file)
index 0000000..eae621e
--- /dev/null
@@ -0,0 +1,738 @@
+--- a/src/drv_vmmc_access.h
++++ b/src/drv_vmmc_access.h
+@@ -24,6 +24,10 @@
+ #include "drv_mps_vmmc.h"
+ #endif
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++#  define IFX_MPS IFXMIPS_MPS_BASE_ADDR
++#endif
++
+ /* ============================= */
+ /* Global Defines                */
+ /* ============================= */
+--- a/src/drv_vmmc_danube.h
++++ b/src/drv_vmmc_danube.h
+@@ -15,56 +15,18 @@
+ */
+ #if defined SYSTEM_DANUBE
+-#include <asm/ifx/ifx_gpio.h>
++#include <lantiq_soc.h>
++
+ #else
+ #error no system selected
+ #endif
+-#define VMMC_TAPI_GPIO_MODULE_ID                        IFX_GPIO_MODULE_TAPI_VMMC
++#define VMMC_TAPI_GPIO_MODULE_ID             IFX_GPIO_MODULE_TAPI_VMMC
+ /**
+ */
+ #define VMMC_PCM_IF_CFG_HOOK(mode, GPIOreserved, ret) \
+ do { \
+-   ret = VMMC_statusOk; \
+-   /* Reserve P0.0 as TDM/FSC */ \
+-   if (!GPIOreserved) \
+-      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel0_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel1_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_open_drain_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID);\
+-   \
+-   /* Reserve P1.9 as TDM/DO */ \
+-   if (!GPIOreserved) \
+-      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel0_set(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel1_clear(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_dir_out_set(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_open_drain_set(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
+-   \
+-   /* Reserve P1.10 as TDM/DI */ \
+-   if (!GPIOreserved) \
+-      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel0_clear(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel1_set(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID);\
+-   ret |= ifx_gpio_dir_in_set(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
+-   \
+-   /* Reserve P1.11 as TDM/DCL */ \
+-   if (!GPIOreserved) \
+-      ret |= ifx_gpio_pin_reserve(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel0_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_altsel1_clear(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_open_drain_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+-   \
+-   if (mode == 2) { \
+-      /* TDM/FSC+DCL Master */ \
+-      ret |= ifx_gpio_dir_out_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
+-      ret |= ifx_gpio_dir_out_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+-   } else { \
+-      /* TDM/FSC+DCL Slave */ \
+-      ret |= ifx_gpio_dir_in_set(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
+-      ret |= ifx_gpio_dir_in_set(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+-   } \
+ } while(0);
+ /**
+@@ -72,11 +34,6 @@
+ */
+ #define VMMC_DRIVER_UNLOAD_HOOK(ret) \
+ do { \
+-   ret = VMMC_statusOk; \
+-   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(0, 0), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(1, 9), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(1,10), VMMC_TAPI_GPIO_MODULE_ID); \
+-   ret |= ifx_gpio_pin_free(IFX_GPIO_PIN_ID(1,11), VMMC_TAPI_GPIO_MODULE_ID); \
+ } while (0)
+ #endif /* _DRV_VMMC_AMAZON_S_H */
+--- a/src/drv_vmmc_init.c
++++ b/src/drv_vmmc_init.c
+@@ -52,6 +52,14 @@
+ #include "ifx_pmu.h"
+ #endif /* PMU_SUPPORTED */
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++#  define IFX_MPS_CAD0SR IFXMIPS_MPS_CAD0SR
++#  define IFX_MPS_CAD1SR IFXMIPS_MPS_CAD1SR
++#  define IFX_MPS_CVC0SR IFXMIPS_MPS_CVC0SR
++#  define IFX_MPS_CVC1SR IFXMIPS_MPS_CVC1SR
++#  define IFX_MPS_CVC2SR IFXMIPS_MPS_CVC2SR
++#  define IFX_MPS_CVC3SR IFXMIPS_MPS_CVC3SR
++#endif
+ /* ============================= */
+ /* Local Macros & Definitions    */
+@@ -1591,7 +1599,7 @@
+ #ifdef VMMC_DRIVER_UNLOAD_HOOK
+    if (VDevices[0].nDevState & DS_GPIO_RESERVED)
+    {
+-      IFX_int32_t ret;
++      IFX_int32_t ret = 0;
+       VMMC_DRIVER_UNLOAD_HOOK(ret);
+       if (!VMMC_SUCCESS(ret))
+       {
+--- a/src/drv_vmmc_init_cap.c
++++ b/src/drv_vmmc_init_cap.c
+@@ -22,6 +22,11 @@
+ #include "drv_mps_vmmc.h"
+ #include "drv_mps_vmmc_device.h"
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++#  define IFX_MPS_CHIPID_VERSION_GET   IFXMIPS_MPS_CHIPID_VERSION_GET
++#  define IFX_MPS_CHIPID               IFXMIPS_MPS_CHIPID
++#endif
++
+ /* ============================= */
+ /* Configuration defintions      */
+ /* ============================= */
+--- a/src/mps/drv_mps_vmmc_common.c
++++ b/src/mps/drv_mps_vmmc_common.c
+@@ -17,6 +17,7 @@
+ /* Includes                      */
+ /* ============================= */
+ #include "drv_config.h"
++#include "drv_vmmc_init.h"
+ #undef USE_PLAIN_VOICE_FIRMWARE
+ #undef PRINT_ON_ERR_INTERRUPT
+@@ -39,8 +40,32 @@
+ #include "ifxos_interrupt.h"
+ #include "ifxos_time.h"
+-#include <asm/ifx/ifx_regs.h>
+-#include <asm/ifx/ifx_gptu.h>
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++#  include <lantiq.h>
++#  include <irq.h>
++#  include <lantiq_timer.h>
++
++#  define ifx_gptu_timer_request    lq_request_timer
++#  define ifx_gptu_timer_start      lq_start_timer
++#  define ifx_gptu_countvalue_get   lq_get_count_value
++#  define ifx_gptu_timer_free       lq_free_timer
++
++
++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
++#  define bsp_mask_and_ack_irq      ltq_mask_and_ack_irq
++#else
++extern void ltq_mask_and_ack_irq(struct irq_data *d);
++static void inline bsp_mask_and_ack_irq(int x)
++{
++      struct irq_data d;
++      d.irq = x;
++      ltq_mask_and_ack_irq(&d);
++}
++#endif
++#else
++#  include <asm/ifx/ifx_regs.h>
++#  include <asm/ifx/ifx_gptu.h>
++#endif
+ #include "drv_mps_vmmc.h"
+ #include "drv_mps_vmmc_dbg.h"
+@@ -104,6 +129,9 @@
+ extern IFX_void_t mask_and_ack_danube_irq (IFX_uint32_t irq_nr);
+ #endif /* */
++
++extern void sys_hw_setup (void);
++
+ extern IFXOS_event_t fw_ready_evt;
+ /* callback function to free all data buffers currently used by voice FW */
+ IFX_void_t (*ifx_mps_bufman_freeall)(IFX_void_t) = IFX_NULL;
+@@ -207,7 +235,8 @@
+  */
+ IFX_void_t *ifx_mps_fastbuf_malloc (IFX_size_t size, IFX_int32_t priority)
+ {
+-   IFX_uint32_t ptr, flags;
++   IFXOS_INTSTAT flags;
++   IFX_uint32_t ptr;
+    IFX_int32_t index = fastbuf_index;
+    if (fastbuf_initialized == 0)
+@@ -261,7 +290,7 @@
+  */
+ IFX_void_t ifx_mps_fastbuf_free (const IFX_void_t * ptr)
+ {
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    IFX_int32_t index = fastbuf_index;
+    IFXOS_LOCKINT (flags);
+@@ -457,7 +486,7 @@
+  */
+ static IFX_int32_t ifx_mps_bufman_inc_level (IFX_uint32_t value)
+ {
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    if (mps_buffer.buf_level + value > MPS_BUFFER_MAX_LEVEL)
+    {
+@@ -484,7 +513,7 @@
+  */
+ static IFX_int32_t ifx_mps_bufman_dec_level (IFX_uint32_t value)
+ {
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    if (mps_buffer.buf_level < value)
+    {
+@@ -636,7 +665,7 @@
+       mem_seg_ptr[i] =
+          (IFX_uint32_t *) CPHYSADDR ((IFX_uint32_t) mps_buffer.
+                                      malloc (segment_size, FASTBUF_FW_OWNED));
+-      if (mem_seg_ptr[i] == CPHYSADDR (IFX_NULL))
++      if (mem_seg_ptr[i] == (IFX_uint32_t *)CPHYSADDR (IFX_NULL))
+       {
+          TRACE (MPS, DBG_LEVEL_HIGH,
+                 ("%s(): cannot allocate buffer\n", __FUNCTION__));
+@@ -952,7 +981,7 @@
+                                  mps_mbx_dev * pMBDev, IFX_int32_t bcommand,
+                                  IFX_boolean_t from_kernel)
+ {
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    IFXOS_LOCKINT (flags);
+@@ -1068,7 +1097,7 @@
+ IFX_void_t ifx_mps_release_structures (mps_comm_dev * pDev)
+ {
+    IFX_int32_t count;
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    IFXOS_LOCKINT (flags);
+    IFXOS_BlockFree (pFW_img_data);
+@@ -1117,7 +1146,7 @@
+    /* Initialize MPS main structure */
+    memset ((IFX_void_t *) pDev, 0, sizeof (mps_comm_dev));
+-   pDev->base_global = (mps_mbx_reg *) IFX_MPS_SRAM;
++   pDev->base_global = (mps_mbx_reg *) IFXMIPS_MPS_SRAM;
+    pDev->flags = 0x00000000;
+    MBX_Memory = pDev->base_global;
+@@ -1125,9 +1154,11 @@
+       for MBX communication. These are: mailbox base address, mailbox size, *
+       mailbox read index and mailbox write index. for command and voice
+       mailbox, * upstream and downstream direction. */
+-   memset ((IFX_void_t *) MBX_Memory,   /* avoid to overwrite CPU boot
+-                                           registers */
+-           0, sizeof (mps_mbx_reg) - 2 * sizeof (mps_boot_cfg_reg));
++   memset (
++      /* avoid to overwrite CPU boot registers */
++         (IFX_void_t *) MBX_Memory,
++           0,
++           sizeof (mps_mbx_reg) - 2 * sizeof (mps_boot_cfg_reg));
+    MBX_Memory->MBX_UPSTR_CMD_BASE =
+       (IFX_uint32_t *) CPHYSADDR ((IFX_uint32_t) MBX_UPSTRM_CMD_FIFO_BASE);
+    MBX_Memory->MBX_UPSTR_CMD_SIZE = MBX_CMD_FIFO_SIZE;
+@@ -1564,7 +1595,7 @@
+                                       IFX_uint32_t * bytes)
+ {
+    IFX_int32_t i, ret;
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    IFXOS_LOCKINT (flags);
+@@ -1774,7 +1805,7 @@
+ {
+    mps_fifo *mbx;
+    IFX_uint32_t i;
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    IFX_int32_t retval = -EAGAIN;
+    IFX_int32_t retries = 0;
+    IFX_uint32_t word = 0;
+@@ -2169,6 +2200,7 @@
+       TRACE (MPS, DBG_LEVEL_HIGH,
+              ("%s(): Invalid device ID %d !\n", __FUNCTION__, pMBDev->devID));
+    }
++
+    return retval;
+ }
+@@ -2192,7 +2224,7 @@
+    mps_mbx_dev *mbx_dev;
+    MbxMsg_s msg;
+    IFX_uint32_t bytes_read = 0;
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    IFX_int32_t ret;
+    /* set pointer to data upstream mailbox, no matter if 0,1,2 or 3 because
+@@ -2283,7 +2315,7 @@
+          {
+             ifx_mps_bufman_dec_level (1);
+             if ((ifx_mps_bufman_get_level () <= mps_buffer.buf_threshold) &&
+-                (atomic_read (&pMPSDev->provide_buffer->object.count) == 0))
++                ((volatile unsigned int)pMPSDev->provide_buffer->object.count == 0))
+             {
+                IFXOS_LockRelease (pMPSDev->provide_buffer);
+             }
+@@ -2326,7 +2358,7 @@
+ #endif /* CONFIG_PROC_FS */
+             ifx_mps_bufman_dec_level (1);
+             if ((ifx_mps_bufman_get_level () <= mps_buffer.buf_threshold) &&
+-                (atomic_read (&pMPSDev->provide_buffer->object.count) == 0))
++                ((volatile unsigned int)pMPSDev->provide_buffer->object.count == 0))
+             {
+                IFXOS_LockRelease (pMPSDev->provide_buffer);
+             }
+@@ -2356,7 +2388,7 @@
+ IFX_void_t ifx_mps_mbx_cmd_upstream (IFX_ulong_t dummy)
+ {
+    mps_fifo *mbx;
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    /* set pointer to upstream command mailbox */
+    mbx = &(pMPSDev->cmd_upstrm_fifo);
+@@ -2404,7 +2436,7 @@
+    mps_event_msg msg;
+    IFX_int32_t length = 0;
+    IFX_int32_t read_length = 0;
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    /* set pointer to upstream event mailbox */
+    mbx = &(pMPSDev->event_upstrm_fifo);
+@@ -2619,6 +2651,7 @@
+ #endif
+    *IFX_MPS_AD0ENR = Ad0Reg.val;
++
+ }
+ /**
+@@ -2647,7 +2680,7 @@
+ */
+ IFX_void_t ifx_mps_dd_mbx_int_enable (IFX_void_t)
+ {
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    MPS_Ad0Reg_u Ad0Reg;
+    IFXOS_LOCKINT (flags);
+@@ -2673,7 +2706,7 @@
+ */
+ IFX_void_t ifx_mps_dd_mbx_int_disable (IFX_void_t)
+ {
+-   IFX_uint32_t flags;
++   IFXOS_INTSTAT flags;
+    MPS_Ad0Reg_u Ad0Reg;
+    IFXOS_LOCKINT (flags);
+@@ -2738,7 +2771,6 @@
+ #else /* */
+    mask_and_ack_danube_irq (irq);
+ #endif /* */
+-
+    /* FW is up and ready to process commands */
+    if (MPS_Ad0StatusReg.fld.dl_end)
+    {
+@@ -2800,6 +2832,7 @@
+       }
+    }
++
+    if (MPS_Ad0StatusReg.fld.du_mbx)
+    {
+ #ifdef CONFIG_PROC_FS
+@@ -2944,12 +2977,12 @@
+    IFX_MPS_CVC0SR[chan] = MPS_VCStatusReg.val;
+    /* handle only enabled interrupts */
+    MPS_VCStatusReg.val &= IFX_MPS_VC0ENR[chan];
+-
+ #ifdef LINUX_2_6
+    bsp_mask_and_ack_irq (irq);
+ #else /* */
+    mask_and_ack_danube_irq (irq);
+ #endif /* */
++
+    pMPSDev->event.MPS_VCStatReg[chan].val = MPS_VCStatusReg.val;
+ #ifdef PRINT_ON_ERR_INTERRUPT
+    if (MPS_VCStatusReg.fld.rcv_ov)
+@@ -3093,7 +3126,8 @@
+  */
+ IFX_return_t ifx_mps_init_gpt ()
+ {
+-   IFX_uint32_t flags, timer_flags, timer, loops = 0;
++   unsigned long flags;
++   IFX_uint32_t timer_flags, timer, loops = 0;
+    IFX_ulong_t count;
+ #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
+    timer = TIMER1A;
+@@ -3166,6 +3200,7 @@
+ #else /* Danube */
+    timer = TIMER1B;
+ #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
++
+    ifx_gptu_timer_free (timer);
+ }
+--- a/src/mps/drv_mps_vmmc_danube.c
++++ b/src/mps/drv_mps_vmmc_danube.c
+@@ -16,6 +16,7 @@
+ /* ============================= */
+ /* Includes                      */
+ /* ============================= */
++#include "linux/version.h"
+ #include "drv_config.h"
+ #ifdef SYSTEM_DANUBE            /* defined in drv_mps_vmmc_config.h */
+@@ -36,9 +37,22 @@
+ #include "ifxos_select.h"
+ #include "ifxos_interrupt.h"
+-#include <asm/ifx/ifx_regs.h>
+-#include <asm/ifx/ifx_gpio.h>
+-#include <asm/ifx/common_routines.h>
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++#  include <lantiq.h>
++#  include <irq.h>
++#  include <lantiq_timer.h>
++#  include <linux/dma-mapping.h>
++
++
++#define LQ_RCU_BASE_ADDR      (KSEG1 + LTQ_RCU_BASE_ADDR)
++# define LQ_RCU_RST           ((u32 *)(LQ_RCU_BASE_ADDR + 0x0010))
++#define IFX_RCU_RST_REQ_CPU1             (1 << 3)
++#  define IFX_RCU_RST_REQ        LQ_RCU_RST
++#else
++#  include <asm/ifx/ifx_regs.h>
++#  include <asm/ifx_vpe.h>
++#  include <asm/ifx/ifx_gpio.h>
++#endif
+ #include "drv_mps_vmmc.h"
+ #include "drv_mps_vmmc_dbg.h"
+@@ -75,6 +89,20 @@
+ /* Local function definition     */
+ /* ============================= */
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++IFX_uint32_t ifx_get_cp1_size(IFX_void_t)
++{
++      return 1;
++}
++
++unsigned int *ltq_get_cp1_base(void);
++
++IFX_uint32_t *ifx_get_cp1_base(IFX_void_t)
++{
++      return ltq_get_cp1_base();
++}
++#endif
++
+ /******************************************************************************
+  * DANUBE Specific Routines
+  ******************************************************************************/
+@@ -134,6 +162,15 @@
+    }
+    /* check if FW image fits in available memory space */
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++   if (mem > ifx_get_cp1_size()<<20)
++   {
++      TRACE (MPS, DBG_LEVEL_HIGH,
++      ("[%s %s %d]: error, firmware memory exceeds reserved space (%i > %i)!\n",
++                 __FILE__, __func__, __LINE__, mem, ifx_get_cp1_size()<<20));
++      return IFX_ERROR;
++   }
++#else
+    if (mem > ifx_get_cp1_size())
+    {
+       TRACE (MPS, DBG_LEVEL_HIGH,
+@@ -141,6 +178,7 @@
+                  __FILE__, __func__, __LINE__, mem, ifx_get_cp1_size()));
+       return IFX_ERROR;
+    }
++#endif
+    /* reset the driver */
+    ifx_mps_reset ();
+@@ -361,7 +399,7 @@
+  */
+ IFX_void_t ifx_mps_wdog_expiry()
+ {
+-   IFX_uint32_t flags;
++   unsigned long flags;
+    IFXOS_LOCKINT (flags);
+    /* recalculate and compare the firmware checksum */
+--- a/src/mps/drv_mps_vmmc_device.h
++++ b/src/mps/drv_mps_vmmc_device.h
+@@ -16,8 +16,58 @@
+                  declarations.
+ *******************************************************************************/
+-#include <asm/ifx/ifx_regs.h>
+-#include <asm/ifx_vpe.h>
++#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,28))
++#  include <lantiq.h>
++#  include <irq.h>
++#  include <lantiq_soc.h>
++#  include <gpio.h>
++#define IFXMIPS_MPS_SRAM              ((u32 *)(KSEG1 + 0x1F200000))
++#define IFXMIPS_MPS_BASE_ADDR         (KSEG1 + 0x1F107000)
++#define IFXMIPS_MPS_CHIPID            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0344))
++#define IFXMIPS_MPS_VC0ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0000))
++#define IFXMIPS_MPS_RVC0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0010))
++#define IFXMIPS_MPS_CVC0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0030))
++#define IFXMIPS_MPS_CVC1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0034))
++#define IFXMIPS_MPS_CVC2SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0038))
++#define IFXMIPS_MPS_CVC3SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x003C))
++#define IFXMIPS_MPS_RAD0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0040))
++#define IFXMIPS_MPS_RAD1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0044))
++#define IFXMIPS_MPS_SAD0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0048))
++#define IFXMIPS_MPS_SAD1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x004C))
++#define IFXMIPS_MPS_CAD0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0050))
++#define IFXMIPS_MPS_CAD1SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0054))
++#define IFXMIPS_MPS_AD0ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0058))
++#define IFXMIPS_MPS_AD1ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x005C))
++
++#define IFXMIPS_MPS_CHIPID_VERSION_GET(value) (((value) >> 28) & ((1 << 4) - 1))
++#define IFXMIPS_MPS_CHIPID_VERSION_SET(value) ((((1 << 4) - 1) & (value)) << 28)
++#define IFXMIPS_MPS_CHIPID_PARTNUM_GET(value) (((value) >> 12) & ((1 << 16) - 1))
++#define IFXMIPS_MPS_CHIPID_PARTNUM_SET(value) ((((1 << 16) - 1) & (value)) << 12)
++#define IFXMIPS_MPS_CHIPID_MANID_GET(value)   (((value) >> 1) & ((1 << 10) - 1))
++#define IFXMIPS_MPS_CHIPID_MANID_SET(value)   ((((1 << 10) - 1) & (value)) << 1)
++#else
++#  include <asm/ifx/ifx_regs.h>
++#  include <asm/ifx_vpe.h>
++#endif
++/* MPS register */
++#  define IFX_MPS_AD0ENR      IFXMIPS_MPS_AD0ENR
++#  define IFX_MPS_AD1ENR      IFXMIPS_MPS_AD1ENR
++#  define IFX_MPS_RAD0SR      IFXMIPS_MPS_RAD0SR
++#  define IFX_MPS_RAD1SR      IFXMIPS_MPS_RAD1SR
++#  define IFX_MPS_VC0ENR      IFXMIPS_MPS_VC0ENR
++#  define IFX_MPS_RVC0SR      IFXMIPS_MPS_RVC0SR
++#  define IFX_MPS_CVC0SR      IFXMIPS_MPS_CVC0SR
++#  define IFX_MPS_CAD0SR      IFXMIPS_MPS_CAD0SR
++#  define IFX_MPS_CAD1SR      IFXMIPS_MPS_CAD1SR
++#  define IFX_MPS_CVC1SR      IFXMIPS_MPS_CVC1SR
++#  define IFX_MPS_CVC2SR      IFXMIPS_MPS_CVC2SR
++#  define IFX_MPS_CVC3SR      IFXMIPS_MPS_CVC3SR
++#  define IFX_MPS_SAD0SR      IFXMIPS_MPS_SAD0SR
++/* interrupt vectors */
++#  define INT_NUM_IM4_IRL14   (INT_NUM_IM4_IRL0 + 14)
++#  define INT_NUM_IM4_IRL18   (INT_NUM_IM4_IRL0 + 18)
++#  define INT_NUM_IM4_IRL19   (INT_NUM_IM4_IRL0 + 19)
++#  define IFX_ICU_IM4_IER     IFXMIPS_ICU_IM4_IER
+ /* ============================= */
+ /* MPS Common defines            */
+@@ -26,32 +76,28 @@
+ #define MPS_BASEADDRESS 0xBF107000
+ #define MPS_RAD0SR      MPS_BASEADDRESS + 0x0004
+-#define MPS_RAD0SR_DU   (1<<0)
+-#define MPS_RAD0SR_CU   (1<<1)
+-
+ #define MBX_BASEADDRESS 0xBF200000
+ #define VCPU_BASEADDRESS 0xBF208000     /* 0xBF108000 */
+ /*---------------------------------------------------------------------------*/
++#if !defined(CONFIG_LANTIQ)
++/* enabling interrupts is done with request_irq by the BSP
++   The related code should not be needed anymore */
+ #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
+ /* TODO: doublecheck - IM4 or different! */
+ #define MPS_INTERRUPTS_ENABLE(X)  *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) |= X;
+ #define MPS_INTERRUPTS_DISABLE(X) *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) &= ~X;
+-#define MPS_INTERRUPTS_CLEAR(X)   *((volatile IFX_uint32_t*) IFX_ICU_IM4_ISR) = X;
+-#define MPS_INTERRUPTS_SET(X)     *((volatile IFX_uint32_t*) IFX_ICU_IM4_IRSR) = X;/* |= ? */
+ #else /* Danube */
+ /* TODO: possibly needs to be changed to IM4 !!!!!! */
+ #ifdef LINUX_2_6
+ #define MPS_INTERRUPTS_ENABLE(X)  *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) |= X;
+ #define MPS_INTERRUPTS_DISABLE(X) *((volatile IFX_uint32_t*) IFX_ICU_IM4_IER) &= ~X;
+-#define MPS_INTERRUPTS_CLEAR(X)   *((volatile IFX_uint32_t*) IFX_ICU_IM4_ISR) = X;
+-#define MPS_INTERRUPTS_SET(X)     *((volatile IFX_uint32_t*) IFX_ICU_IM4_IRSR) = X;/* |= ? */
+ #else /* */
+ #define MPS_INTERRUPTS_ENABLE(X)  *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_IER) |= X;
+ #define MPS_INTERRUPTS_DISABLE(X) *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_IER) &= ~X;
+-#define MPS_INTERRUPTS_CLEAR(X)   *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_ISR) = X;
+-#define MPS_INTERRUPTS_SET(X)     *((volatile IFX_uint32_t*) DANUBE_ICU_IM5_IRSR) = X;/* |= ? */
+ #endif /* LINUX_2_6 */
+ #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
++#endif /* !defined(CONFIG_LANTIQ) */
++
+ /*---------------------------------------------------------------------------*/
+ /*---------------------------------------------------------------------------*/
+@@ -142,53 +188,9 @@
+ #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
+ /* ***** Amazon-S specific defines ***** */
+ #define IFX_MPS_Base      AMAZON_S_MPS
+-
+-//#define IFX_MPS_CHIPID              AMAZON_S_MPS_CHIPID
+-//#define IFX_MPS_CHIPID_VERSION_GET  AMAZON_S_MPS_CHIPID_VERSION_GET
+-
+-//#define IFX_MPS_AD0ENR    AMAZON_S_MPS_AD0ENR
+-//#define IFX_MPS_AD1ENR    AMAZON_S_MPS_AD1ENR
+-//#define IFX_MPS_VC0ENR    AMAZON_S_MPS_VC0ENR
+-//#define IFX_MPS_SAD0SR    AMAZON_S_MPS_SAD0SR
+-//#define IFX_MPS_RAD0SR    AMAZON_S_MPS_RAD0SR
+-//#define IFX_MPS_CAD0SR    AMAZON_S_MPS_CAD0SR
+-//#define IFX_MPS_RAD1SR    AMAZON_S_MPS_RAD1SR
+-//#define IFX_MPS_CAD1SR    AMAZON_S_MPS_CAD1SR
+-//#define IFX_MPS_RVC0SR    AMAZON_S_MPS_RVC0SR
+-//#define IFX_MPS_CVC0SR    AMAZON_S_MPS_CVC0SR
+-//#define IFX_MPS_CVC1SR    AMAZON_S_MPS_CVC1SR
+-//#define IFX_MPS_CVC2SR    AMAZON_S_MPS_CVC2SR
+-//#define IFX_MPS_CVC3SR    AMAZON_S_MPS_CVC3SR
+-
+-//#define IFX_MPS_SRAM      AMAZON_S_MPS_SRAM
+ #else /* */
+ /* ***** DANUBE specific defines ***** */
+ #define IFX_MPS_Base      DANUBE_MPS
+-
+-//#define IFX_MPS_CHIPID    DANUBE_MPS_CHIPID
+-//#define IFX_MPS_CHIPID_VERSION_GET  DANUBE_MPS_CHIPID_VERSION_GET
+-//#define IFX_MPS_CHIPID_VERSION_SET  DANUBE_MPS_CHIPID_VERSION_SET
+-//#define IFX_MPS_CHIPID_PARTNUM_GET  DANUBE_MPS_CHIPID_PARTNUM_GET
+-//#define IFX_MPS_CHIPID_PARTNUM_SET  DANUBE_MPS_CHIPID_PARTNUM_SET
+-//#define IFX_MPS_CHIPID_MANID_GET    DANUBE_MPS_CHIPID_MANID_GET
+-//#define IFX_MPS_CHIPID_MANID_SET    DANUBE_MPS_CHIPID_MANID_SET
+-//#define IFX_MPS_SUBVER              DANUBE_MPS_SUBVER
+-
+-//#define IFX_MPS_AD0ENR    DANUBE_MPS_AD0ENR
+-//#define IFX_MPS_AD1ENR    DANUBE_MPS_AD1ENR
+-//#define IFX_MPS_VC0ENR    DANUBE_MPS_VC0ENR
+-//#define IFX_MPS_SAD0SR    DANUBE_MPS_SAD0SR
+-//#define IFX_MPS_RAD0SR    DANUBE_MPS_RAD0SR
+-//#define IFX_MPS_CAD0SR    DANUBE_MPS_CAD0SR
+-//#define IFX_MPS_RAD1SR    DANUBE_MPS_RAD1SR
+-//#define IFX_MPS_CAD1SR    DANUBE_MPS_CAD1SR
+-//#define IFX_MPS_RVC0SR    DANUBE_MPS_RVC0SR
+-//#define IFX_MPS_CVC0SR    DANUBE_MPS_CVC0SR
+-//#define IFX_MPS_CVC1SR    DANUBE_MPS_CVC1SR
+-//#define IFX_MPS_CVC2SR    DANUBE_MPS_CVC2SR
+-//#define IFX_MPS_CVC3SR    DANUBE_MPS_CVC3SR
+-
+-//#define IFX_MPS_SRAM      DANUBE_MPS_SRAM
+ #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
+ typedef enum
+ {
+--- a/src/mps/drv_mps_vmmc_linux.c
++++ b/src/mps/drv_mps_vmmc_linux.c
+@@ -57,10 +57,11 @@
+ #include <linux/moduleparam.h>
+ #endif /* */
+-
++#if !defined CONFIG_LANTIQ
+ #include <asm/ifx/irq.h>
+ #include <asm/ifx/ifx_regs.h>
+ #include <asm/ifx_vpe.h>
++#endif
+ /* lib_ifxos headers */
+ #include "ifx_types.h"
+@@ -959,7 +960,7 @@
+ #endif /* MPS_FIFO_BLOCKING_WRITE */
+       case FIO_MPS_GET_STATUS:
+          {
+-            IFX_uint32_t flags;
++            unsigned long flags;
+             /* get the status of the channel */
+             if (!from_kernel)
+@@ -993,7 +994,7 @@
+ #if CONFIG_MPS_HISTORY_SIZE > 0
+       case FIO_MPS_GET_CMD_HISTORY:
+          {
+-            IFX_uint32_t flags;
++            unsigned long flags;
+             if (from_kernel)
+             {
+@@ -1685,6 +1686,7 @@
+          sprintf (buf + len, "   minLv: \t  %8d\n",
+                   ifx_mps_dev.voice_mb[i].upstrm_fifo->min_space);
+    }
++
+    return len;
+ }
+@@ -2291,9 +2293,11 @@
+          return result;
+    }
++#if !defined(CONFIG_LANTIQ)
++   /** \todo This is handled already with request_irq, remove */
+    /* Enable all MPS Interrupts at ICU0 */
+    MPS_INTERRUPTS_ENABLE (0x0000FF80);
+-
++#endif
+    /* enable mailbox interrupts */
+    ifx_mps_enable_mailbox_int ();
+    /* init FW ready event */
+@@ -2421,9 +2425,11 @@
+    /* disable mailbox interrupts */
+    ifx_mps_disable_mailbox_int ();
++#if !defined(CONFIG_LANTIQ)
+    /* disable Interrupts at ICU0 */
+-   MPS_INTERRUPTS_DISABLE (DANUBE_MPS_AD0_IR4); /* Disable DFE/AFE 0 Interrupts
+-                                                 */
++   /* Disable DFE/AFE 0 Interrupts*/
++   MPS_INTERRUPTS_DISABLE (DANUBE_MPS_AD0_IR4);
++#endif
+    /* disable all MPS interrupts */
+    ifx_mps_disable_all_int ();
+--- a/src/drv_vmmc_ioctl.c
++++ b/src/drv_vmmc_ioctl.c
+@@ -18,6 +18,7 @@
+ /* Includes                      */
+ /* ============================= */
+ #include "drv_api.h"
++#include "drv_vmmc_init.h"
+ #include "drv_vmmc_api.h"
+ #include "drv_vmmc_bbd.h"
diff --git a/package/ltq-vmmc/patches/200-kernel-37.patch b/package/ltq-vmmc/patches/200-kernel-37.patch
deleted file mode 100644 (file)
index f5e2b36..0000000
+++ /dev/null
@@ -1,192 +0,0 @@
---- a/src/drv_vmmc_init.c
-+++ b/src/drv_vmmc_init.c
-@@ -784,7 +784,7 @@
-       dwld.fwDwld.length = IoInit.pram_size;
-      /* download firmware */
--      ret = ifx_mps_ioctl((IFX_void_t *) command, IFX_NULL, FIO_MPS_DOWNLOAD,
-+      ret = ifx_mps_ioctl((IFX_void_t *) command, FIO_MPS_DOWNLOAD,
-                           (IFX_uint32_t) &dwld.fwDwld);
-    }
-@@ -1594,7 +1594,7 @@
- #ifdef VMMC_DRIVER_UNLOAD_HOOK
-    if (VDevices[0].nDevState & DS_GPIO_RESERVED)
-    {
--      IFX_int32_t ret;
-+      IFX_int32_t ret = 0;
-       VMMC_DRIVER_UNLOAD_HOOK(ret);
-       if (!VMMC_SUCCESS(ret))
-       {
---- a/src/mps/drv_mps_vmmc_linux.c
-+++ b/src/mps/drv_mps_vmmc_linux.c
-@@ -110,7 +110,7 @@
- #ifndef __KERNEL__
- IFX_int32_t ifx_mps_open (struct inode *inode, struct file *file_p);
- IFX_int32_t ifx_mps_close (struct inode *inode, struct file *file_p);
--IFX_int32_t ifx_mps_ioctl (struct inode *inode, struct file *file_p,
-+long ifx_mps_ioctl (struct file *file_p,
-                            IFX_uint32_t nCmd, IFX_ulong_t arg);
- IFX_int32_t ifx_mps_read_mailbox (mps_devices type, mps_message * rw);
- IFX_int32_t ifx_mps_write_mailbox (mps_devices type, mps_message * rw);
-@@ -171,7 +171,7 @@
- static struct file_operations ifx_mps_fops = {
-  owner:THIS_MODULE,
-  poll:ifx_mps_poll,
-- ioctl:ifx_mps_ioctl,
-+ unlocked_ioctl:ifx_mps_ioctl,
-  open:ifx_mps_open,
-  release:ifx_mps_close
- };
-@@ -614,7 +614,7 @@
-  * \return  -ENOIOCTLCMD Invalid command
-  * \ingroup API
-  */
--IFX_int32_t ifx_mps_ioctl (struct inode * inode, struct file * file_p,
-+long ifx_mps_ioctl (struct file *file_p,
-                            IFX_uint32_t nCmd, IFX_ulong_t arg)
- {
-    IFX_int32_t retvalue = -EINVAL;
-@@ -629,17 +629,18 @@
-       'mps_devices' enum type, which in fact is [0..8]; So, if inode value is
-       [0..NUM_VOICE_CHANNEL+1], then we make sure that we are calling from
-       kernel space. */
--   if (((IFX_int32_t) inode >= 0) &&
--       ((IFX_int32_t) inode < NUM_VOICE_CHANNEL + 1))
-+   if (((IFX_int32_t) file_p >= 0) &&
-+       ((IFX_int32_t) file_p < NUM_VOICE_CHANNEL + 1))
-    {
-       from_kernel = 1;
-       /* Get corresponding mailbox device structure */
-       if ((pMBDev =
--           ifx_mps_get_device ((mps_devices) ((IFX_int32_t) inode))) == 0)
-+           ifx_mps_get_device ((mps_devices) ((IFX_int32_t) file_p))) == 0)
-       {
-          return (-EINVAL);
-       }
-+      file_p = NULL;
-    }
-    else
-    {
---- a/src/drv_vmmc_ioctl.c
-+++ b/src/drv_vmmc_ioctl.c
-@@ -427,18 +427,18 @@
-          /* MPS driver will do the USR2KERN so just pass on the pointer. */
-          dwnld_struct.data = (IFX_void_t *)IoInit.pPRAMfw;
--         ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL,
-+         ret = ifx_mps_ioctl((IFX_void_t *)command,
-                              FIO_MPS_DOWNLOAD, (IFX_uint32_t) &dwnld_struct);
-          break;
-       }
-       case FIO_DEV_RESET:
-       {
--         ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL, FIO_MPS_RESET, 0);
-+         ret = ifx_mps_ioctl((IFX_void_t *)command, FIO_MPS_RESET, 0);
-          break;
-       }
-       case FIO_DEV_RESTART:
-       {
--         ret = ifx_mps_ioctl((IFX_void_t *)command, IFX_NULL, FIO_MPS_RESTART, 0);
-+         ret = ifx_mps_ioctl((IFX_void_t *)command, FIO_MPS_RESTART, 0);
-          break;
-       }
-       case FIO_LASTERR:
---- a/src/mps/drv_mps_vmmc.h
-+++ b/src/mps/drv_mps_vmmc.h
-@@ -279,7 +279,7 @@
- #include <linux/fs.h>
- IFX_int32_t ifx_mps_open (struct inode *inode, struct file *file_p);
- IFX_int32_t ifx_mps_close (struct inode *inode, struct file *filp);
--IFX_int32_t ifx_mps_ioctl (struct inode *inode, struct file *file_p,
-+long ifx_mps_ioctl (struct file *filp,
-                            IFX_uint32_t nCmd, unsigned long arg);
- IFX_int32_t ifx_mps_register_data_callback (mps_devices type, IFX_uint32_t dir,
-                                             IFX_void_t (*callback) (mps_devices
---- a/src/drv_vmmc_linux.c
-+++ b/src/drv_vmmc_linux.c
-@@ -32,7 +32,11 @@
- #ifdef LINUX_2_6
- #include <linux/version.h>
- #ifndef UTS_RELEASE
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
-+#include <linux/utsrelease.h>
-+#else
- #include <generated/utsrelease.h>
-+#endif
- #endif /* UTC_RELEASE */
- #undef CONFIG_DEVFS_FS
- #endif /* LINUX_2_6 */
---- a/src/mps/drv_mps_vmmc_common.c
-+++ b/src/mps/drv_mps_vmmc_common.c
-@@ -22,7 +22,11 @@
- #undef USE_PLAIN_VOICE_FIRMWARE
- #undef PRINT_ON_ERR_INTERRUPT
- #undef FAIL_ON_ERR_INTERRUPT
--#include <generated/autoconf.h>
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33))
-+#include <linux/utsrelease.h>
-+#else
-+#include <generated/utsrelease.h>
-+#endif
- #include <linux/interrupt.h>
- #include <linux/delay.h>
-@@ -47,8 +51,19 @@
- #  define ifx_gptu_timer_free       lq_free_timer
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
- #  define bsp_mask_and_ack_irq      ltq_mask_and_ack_irq
- #else
-+extern void ltq_mask_and_ack_irq(struct irq_data *d);
-+static void inline bsp_mask_and_ack_irq(int x)
-+{
-+      struct irq_data d;
-+      d.irq = x;
-+      ltq_mask_and_ack_irq(&d);
-+}
-+#endif
-+
-+#else
- #  include <asm/ifx/ifx_regs.h>
- #  include <asm/ifx/ifx_gptu.h>
- #endif
-@@ -107,7 +122,9 @@
- extern mps_mbx_dev *ifx_mps_get_device (mps_devices type);
- #ifdef LINUX_2_6
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,39))
- extern IFX_void_t bsp_mask_and_ack_irq (IFX_uint32_t irq_nr);
-+#endif
- #else /* */
- extern IFX_void_t mask_and_ack_danube_irq (IFX_uint32_t irq_nr);
---- a/src/mps/drv_mps_vmmc_danube.c
-+++ b/src/mps/drv_mps_vmmc_danube.c
-@@ -16,11 +16,16 @@
- /* ============================= */
- /* Includes                      */
- /* ============================= */
-+#include "linux/version.h"
- #include "drv_config.h"
- #ifdef SYSTEM_DANUBE            /* defined in drv_mps_vmmc_config.h */
-+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)) 
-+#include <linux/autoconf.h>
-+#else
- #include <generated/autoconf.h>
-+#endif
- /* lib_ifxos headers */
- #include "ifx_types.h"
-@@ -39,6 +44,7 @@
- #  include <linux/dma-mapping.h>
-+#define LQ_RCU_BASE_ADDR      (KSEG1 + LTQ_RCU_BASE_ADDR)
- # define LQ_RCU_RST           ((u32 *)(LQ_RCU_BASE_ADDR + 0x0010))
- #define IFX_RCU_RST_REQ_CPU1             (1 << 3)
- #  define IFX_RCU_RST_REQ        LQ_RCU_RST
index 2793d771256531fc53ed4529163dde45b13199a0..490d6e5dc91f143ed3ba789114dd01319b5132e7 100644 (file)
  endif
  
  if PMC_SUPPORT
---- a/src/Makefile.in
-+++ b/src/Makefile.in
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.9.2 from Makefile.am.
-+# Makefile.in generated by automake 1.11.1 from Makefile.am.
- # @configure_input@
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -25,17 +26,12 @@
- #
- #
--SOURCES = $(drv_vmmc_SOURCES) $(nodist_drv_vmmc_SOURCES) $(drv_vmmc_ko_SOURCES)
--
--srcdir = @srcdir@
--top_srcdir = @top_srcdir@
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
--top_builddir = ..
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
--INSTALL = @INSTALL@
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
- install_sh_SCRIPT = $(install_sh) -c
-@@ -66,33 +62,36 @@ POST_UNINSTALL = :
- @VMMC_WITH_MPS_TRUE@@VR9_TRUE@am__append_5 = \
- @VMMC_WITH_MPS_TRUE@@VR9_TRUE@   mps/drv_mps_vmmc_ar9.c
--@PMC_SUPPORT_TRUE@am__append_6 = \
-+@FALCON_TRUE@@VMMC_WITH_MPS_TRUE@am__append_6 = \
-+@FALCON_TRUE@@VMMC_WITH_MPS_TRUE@   mps/drv_mps_vmmc_falcon.c
-+
-+@PMC_SUPPORT_TRUE@am__append_7 = \
- @PMC_SUPPORT_TRUE@   drv_vmmc_pmc.c
--@EVALUATION_TRUE@am__append_7 = \
-+@EVALUATION_TRUE@am__append_8 = \
- @EVALUATION_TRUE@   drv_vmmc_eval.c
--@LIN_SUPPORT_TRUE@am__append_8 = \
-+@LIN_SUPPORT_TRUE@am__append_9 = \
- @LIN_SUPPORT_TRUE@   drv_vmmc_lin.c
- # include these coefficients only for INCA-IP2 packages
--@IPP_EVAL_SYSTEM_PARAMETERS_TRUE@am__append_9 = \
-+@IPP_EVAL_SYSTEM_PARAMETERS_TRUE@am__append_10 = \
- @IPP_EVAL_SYSTEM_PARAMETERS_TRUE@   ipp_voice_params_ref.h \
- @IPP_EVAL_SYSTEM_PARAMETERS_TRUE@   ipp_voice_params_eval.h
--@VMMC_WITH_MPS_TRUE@am__append_10 = \
-+@VMMC_WITH_MPS_TRUE@am__append_11 = \
- @VMMC_WITH_MPS_TRUE@   -I@abs_top_srcdir@/src/mps
--@KERNEL_2_6_FALSE@am__append_11 = -I@KERNEL_INCL_PATH@
--@HL_TAPI_INCL_PATH_SET_TRUE@am__append_12 = -I@HL_TAPI_INCL_PATH@ -I@HL_TAPI_INCL_PATH@/include
--@HL_TAPI_INCL_PATH_SET_FALSE@am__append_13 = -I@abs_top_srcdir@/src/drv_tapi/include
--@MPS_INCL_PATH_SET_TRUE@am__append_14 = -I@MPS_INCL_PATH@ -I@MPS_INCL_PATH@/include
--@MPS_INCL_PATH_SET_FALSE@am__append_15 = -I@abs_top_srcdir@/../drv_mps_vmmc/include
--@EVENT_LOGGER_DEBUG_TRUE@am__append_16 = -I@abs_top_srcdir@/../event_logger/include
-+@KERNEL_2_6_FALSE@am__append_12 = -I@KERNEL_INCL_PATH@
-+@HL_TAPI_INCL_PATH_SET_TRUE@am__append_13 = -I@HL_TAPI_INCL_PATH@ -I@HL_TAPI_INCL_PATH@/include
-+@HL_TAPI_INCL_PATH_SET_FALSE@am__append_14 = -I@abs_top_srcdir@/src/drv_tapi/include
-+@MPS_INCL_PATH_SET_TRUE@am__append_15 = -I@MPS_INCL_PATH@ -I@MPS_INCL_PATH@/include
-+@MPS_INCL_PATH_SET_FALSE@am__append_16 = -I@abs_top_srcdir@/../drv_mps_vmmc/include
-+@EVENT_LOGGER_DEBUG_TRUE@am__append_17 = -I@abs_top_srcdir@/../event_logger/include
- # Extra rule for linux-2.6 kernel object
--@KERNEL_2_6_TRUE@am__append_17 = -fno-common
-+@KERNEL_2_6_TRUE@am__append_18 = -fno-common
- subdir = src
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-@@ -102,8 +101,8 @@ am__configure_deps = $(am__aclocal_m4_de
- mkinstalldirs = $(install_sh) -d
- CONFIG_HEADER = $(top_builddir)/drv_config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- am__installdirs = "$(DESTDIR)$(bindir)"
--binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- PROGRAMS = $(bin_PROGRAMS)
- am__drv_vmmc_SOURCES_DIST = drv_vmmc_alm.c drv_vmmc_api.c \
-       drv_vmmc_bbd.c drv_vmmc_con.c drv_vmmc_cod.c drv_vmmc_event.c \
-@@ -115,7 +114,8 @@ am__drv_vmmc_SOURCES_DIST = drv_vmmc_alm
-       drv_vmmc_audio.c lib/lib_bbd/src/lib_bbd.c drv_vmmc_dect.c \
-       mps/drv_mps_vmmc_linux.c mps/drv_mps_vmmc_common.c \
-       mps/drv_mps_vmmc_crc32.c mps/drv_mps_vmmc_danube.c \
--      mps/drv_mps_vmmc_ar9.c drv_vmmc_pmc.c
-+      mps/drv_mps_vmmc_ar9.c mps/drv_mps_vmmc_falcon.c \
-+      drv_vmmc_pmc.c
- @DECT_SUPPORT_TRUE@am__objects_1 = drv_vmmc-drv_vmmc_dect.$(OBJEXT)
- @VMMC_WITH_MPS_TRUE@am__objects_2 =  \
- @VMMC_WITH_MPS_TRUE@  drv_vmmc-drv_mps_vmmc_linux.$(OBJEXT) \
-@@ -124,7 +124,8 @@ am__drv_vmmc_SOURCES_DIST = drv_vmmc_alm
- @DANUBE_TRUE@@VMMC_WITH_MPS_TRUE@am__objects_3 = drv_vmmc-drv_mps_vmmc_danube.$(OBJEXT)
- @AR9_TRUE@@VMMC_WITH_MPS_TRUE@am__objects_4 = drv_vmmc-drv_mps_vmmc_ar9.$(OBJEXT)
- @VMMC_WITH_MPS_TRUE@@VR9_TRUE@am__objects_5 = drv_vmmc-drv_mps_vmmc_ar9.$(OBJEXT)
--@PMC_SUPPORT_TRUE@am__objects_6 = drv_vmmc-drv_vmmc_pmc.$(OBJEXT)
-+@FALCON_TRUE@@VMMC_WITH_MPS_TRUE@am__objects_6 = drv_vmmc-drv_mps_vmmc_falcon.$(OBJEXT)
-+@PMC_SUPPORT_TRUE@am__objects_7 = drv_vmmc-drv_vmmc_pmc.$(OBJEXT)
- am_drv_vmmc_OBJECTS = drv_vmmc-drv_vmmc_alm.$(OBJEXT) \
-       drv_vmmc-drv_vmmc_api.$(OBJEXT) \
-       drv_vmmc-drv_vmmc_bbd.$(OBJEXT) \
-@@ -148,19 +149,23 @@ am_drv_vmmc_OBJECTS = drv_vmmc-drv_vmmc_
-       drv_vmmc-drv_vmmc_stream.$(OBJEXT) \
-       drv_vmmc-drv_vmmc_audio.$(OBJEXT) drv_vmmc-lib_bbd.$(OBJEXT) \
-       $(am__objects_1) $(am__objects_2) $(am__objects_3) \
--      $(am__objects_4) $(am__objects_5) $(am__objects_6)
--@EVALUATION_TRUE@am__objects_7 = drv_vmmc-drv_vmmc_eval.$(OBJEXT)
--@LIN_SUPPORT_TRUE@am__objects_8 = drv_vmmc-drv_vmmc_lin.$(OBJEXT)
--nodist_drv_vmmc_OBJECTS = $(am__objects_7) $(am__objects_8)
-+      $(am__objects_4) $(am__objects_5) $(am__objects_6) \
-+      $(am__objects_7)
-+@EVALUATION_TRUE@am__objects_8 = drv_vmmc-drv_vmmc_eval.$(OBJEXT)
-+@LIN_SUPPORT_TRUE@am__objects_9 = drv_vmmc-drv_vmmc_lin.$(OBJEXT)
-+nodist_drv_vmmc_OBJECTS = $(am__objects_8) $(am__objects_9)
- drv_vmmc_OBJECTS = $(am_drv_vmmc_OBJECTS) $(nodist_drv_vmmc_OBJECTS)
- drv_vmmc_LDADD = $(LDADD)
-+drv_vmmc_LINK = $(CCLD) $(drv_vmmc_CFLAGS) $(CFLAGS) \
-+      $(drv_vmmc_LDFLAGS) $(LDFLAGS) -o $@
- am__drv_vmmc_ko_SOURCES_DIST = @top_srcdir@/LICENSE
- am_drv_vmmc_ko_OBJECTS =
- drv_vmmc_ko_OBJECTS = $(am_drv_vmmc_ko_OBJECTS)
- drv_vmmc_ko_LDADD = $(LDADD)
--DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
-+DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
-       $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
- CCLD = $(CC)
-@@ -173,11 +178,7 @@ ETAGS = etags
- CTAGS = ctags
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
--AMDEP_FALSE = @AMDEP_FALSE@
--AMDEP_TRUE = @AMDEP_TRUE@
- AMTAR = @AMTAR@
--AR9_FALSE = @AR9_FALSE@
--AR9_TRUE = @AR9_TRUE@
- AUTOCONF = @AUTOCONF@
- AUTOHEADER = @AUTOHEADER@
- AUTOMAKE = @AUTOMAKE@
-@@ -188,83 +189,47 @@ CFLAGS = @CFLAGS@
- CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
- CPPFLAGS = @CPPFLAGS@
- CYGPATH_W = @CYGPATH_W@
--DANUBE_FALSE = @DANUBE_FALSE@
--DANUBE_TRUE = @DANUBE_TRUE@
--DEBUG_FALSE = @DEBUG_FALSE@
--DEBUG_TRUE = @DEBUG_TRUE@
--DECT_SUPPORT_FALSE = @DECT_SUPPORT_FALSE@
--DECT_SUPPORT_TRUE = @DECT_SUPPORT_TRUE@
- DEFS = @DEFS@
- DEPDIR = @DEPDIR@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
--ENABLE_OBSOLETE_PREMAPPING_FALSE = @ENABLE_OBSOLETE_PREMAPPING_FALSE@
--ENABLE_OBSOLETE_PREMAPPING_TRUE = @ENABLE_OBSOLETE_PREMAPPING_TRUE@
--EVALUATION_FALSE = @EVALUATION_FALSE@
--EVALUATION_TRUE = @EVALUATION_TRUE@
--EVENT_LOGGER_DEBUG_FALSE = @EVENT_LOGGER_DEBUG_FALSE@
--EVENT_LOGGER_DEBUG_TRUE = @EVENT_LOGGER_DEBUG_TRUE@
- EXEEXT = @EXEEXT@
- HL_TAPI_INCL_PATH = @HL_TAPI_INCL_PATH@
--HL_TAPI_INCL_PATH_SET_FALSE = @HL_TAPI_INCL_PATH_SET_FALSE@
--HL_TAPI_INCL_PATH_SET_TRUE = @HL_TAPI_INCL_PATH_SET_TRUE@
- IFXOS_INCL_PATH = @IFXOS_INCL_PATH@
-+INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
--IPP_EVAL_SYSTEM_PARAMETERS_FALSE = @IPP_EVAL_SYSTEM_PARAMETERS_FALSE@
--IPP_EVAL_SYSTEM_PARAMETERS_TRUE = @IPP_EVAL_SYSTEM_PARAMETERS_TRUE@
--KERNEL_2_6_FALSE = @KERNEL_2_6_FALSE@
--KERNEL_2_6_TRUE = @KERNEL_2_6_TRUE@
- KERNEL_ARCH = @KERNEL_ARCH@
- KERNEL_BUILD_PATH = @KERNEL_BUILD_PATH@
- KERNEL_INCL_PATH = @KERNEL_INCL_PATH@
--KPI_SUPPORT_FALSE = @KPI_SUPPORT_FALSE@
--KPI_SUPPORT_TRUE = @KPI_SUPPORT_TRUE@
- LDFLAGS = @LDFLAGS@
- LIBOBJS = @LIBOBJS@
- LIBS = @LIBS@
--LIN_SUPPORT_FALSE = @LIN_SUPPORT_FALSE@
--LIN_SUPPORT_TRUE = @LIN_SUPPORT_TRUE@
- LTLIBOBJS = @LTLIBOBJS@
- MAKEINFO = @MAKEINFO@
-+MKDIR_P = @MKDIR_P@
- MPS_INCL_PATH = @MPS_INCL_PATH@
--MPS_INCL_PATH_SET_FALSE = @MPS_INCL_PATH_SET_FALSE@
--MPS_INCL_PATH_SET_TRUE = @MPS_INCL_PATH_SET_TRUE@
- OBJEXT = @OBJEXT@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PATH_SEPARATOR = @PATH_SEPARATOR@
--PMC_SUPPORT_FALSE = @PMC_SUPPORT_FALSE@
--PMC_SUPPORT_TRUE = @PMC_SUPPORT_TRUE@
--PMU_SUPPORT_FALSE = @PMU_SUPPORT_FALSE@
--PMU_SUPPORT_TRUE = @PMU_SUPPORT_TRUE@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- STRIP = @STRIP@
--TAPI_FALSE = @TAPI_FALSE@
--TAPI_TRUE = @TAPI_TRUE@
--USE_BUFFERPOOL_FALSE = @USE_BUFFERPOOL_FALSE@
--USE_BUFFERPOOL_TRUE = @USE_BUFFERPOOL_TRUE@
--USE_MODULE_FALSE = @USE_MODULE_FALSE@
--USE_MODULE_TRUE = @USE_MODULE_TRUE@
- VERSION = @VERSION@
--VMMC_WITH_MPS_FALSE = @VMMC_WITH_MPS_FALSE@
--VMMC_WITH_MPS_TRUE = @VMMC_WITH_MPS_TRUE@
--VR9_FALSE = @VR9_FALSE@
--VR9_TRUE = @VR9_TRUE@
--WARNINGS_FALSE = @WARNINGS_FALSE@
--WARNINGS_TRUE = @WARNINGS_TRUE@
-+abs_builddir = @abs_builddir@
-+abs_srcdir = @abs_srcdir@
-+abs_top_builddir = @abs_top_builddir@
-+abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
--ac_ct_STRIP = @ac_ct_STRIP@
--am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
--am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -272,24 +237,36 @@ am__tar = @am__tar@
- am__untar = @am__untar@
- bindir = @bindir@
- build_alias = @build_alias@
-+builddir = @builddir@
- datadir = @datadir@
-+datarootdir = @datarootdir@
-+docdir = @docdir@
-+dvidir = @dvidir@
- exec_prefix = @exec_prefix@
- host_alias = @host_alias@
-+htmldir = @htmldir@
- includedir = @includedir@
- infodir = @infodir@
- install_sh = @install_sh@
- libdir = @libdir@
- libexecdir = @libexecdir@
-+localedir = @localedir@
- localstatedir = @localstatedir@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-+pdfdir = @pdfdir@
- prefix = @prefix@
- program_transform_name = @program_transform_name@
-+psdir = @psdir@
- sbindir = @sbindir@
- sharedstatedir = @sharedstatedir@
-+srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
-+top_builddir = @top_builddir@
-+top_srcdir = @top_srcdir@
- # dummy file required for distcheck target
- @KERNEL_2_6_TRUE@drv_vmmc_ko_SOURCES = @top_srcdir@/LICENSE
- drv_vmmc_SOURCES = drv_vmmc_alm.c drv_vmmc_api.c drv_vmmc_bbd.c \
-@@ -301,8 +278,8 @@ drv_vmmc_SOURCES = drv_vmmc_alm.c drv_vm
-       drv_vmmc_sig_mftd.c drv_vmmc_sig_utg.c drv_vmmc_stream.c \
-       drv_vmmc_audio.c lib/lib_bbd/src/lib_bbd.c $(am__append_1) \
-       $(am__append_2) $(am__append_3) $(am__append_4) \
--      $(am__append_5) $(am__append_6)
--nodist_drv_vmmc_SOURCES = $(am__append_7) $(am__append_8)
-+      $(am__append_5) $(am__append_6) $(am__append_7)
-+nodist_drv_vmmc_SOURCES = $(am__append_8) $(am__append_9)
- EXTRA_DIST = ../drv_version.h ../include/vmmc_io.h \
-       ../include/drv_vmmc_errno.h ../include/drv_vmmc_strerrno.h \
-       drv_api.h drv_vmmc_access.h drv_vmmc_api.h drv_vmmc_bbd.h \
-@@ -326,24 +303,24 @@ EXTRA_DIST = ../drv_version.h ../include
-       mps/drv_mps_vmmc_dbg.h mps/drv_mps_vmmc_crc32.h mps/CHANGELOG \
-       lib/lib_gr909/lib_tapi_lt_gr909.h \
-       lib/lib_gr909/lib_tapi_lt_gr909.c \
--      lib/lib_gr909/lib_tapi_lt_gr909_vmmc.c $(am__append_9)
-+      lib/lib_gr909/lib_tapi_lt_gr909_vmmc.c $(am__append_10)
- INCLUDES = -I@abs_top_srcdir@ -I@abs_top_srcdir@/include \
-       -I@abs_top_srcdir@/src -I@abs_top_builddir@ \
-       -I@abs_top_srcdir@/src/lib/lib_fifo \
-       -I@abs_top_srcdir@/src/lib/lib_bufferpool \
-       -I@abs_top_srcdir@/src/lib/lib_bbd/src -I@IFXOS_INCL_PATH@ \
--      $(am__append_10) $(am__append_11) $(am__append_12) \
--      $(am__append_13) $(am__append_14) $(am__append_15) \
--      $(am__append_16)
-+      $(am__append_11) $(am__append_12) $(am__append_13) \
-+      $(am__append_14) $(am__append_15) $(am__append_16) \
-+      $(am__append_17)
- # -Wpointer-arith
- @WARNINGS_FALSE@AM_CFLAGS = -Wall
- @WARNINGS_TRUE@AM_CFLAGS = -Wall -Wimplicit -Wreturn-type -Wunused -Wswitch -Wcomment -Wparentheses
- @USE_MODULE_FALSE@drv_vmmc_CFLAGS = -D__LINUX__ -DLINUX -D__KERNEL__ \
- @USE_MODULE_FALSE@    -DEXPORT_SYMTAB $(AM_CFLAGS) \
--@USE_MODULE_FALSE@    $(am__append_17)
-+@USE_MODULE_FALSE@    $(am__append_18)
- @USE_MODULE_TRUE@drv_vmmc_CFLAGS = -D__LINUX__ -DLINUX -D__KERNEL__ \
- @USE_MODULE_TRUE@     -DMODULE -DEXPORT_SYMTAB $(AM_CFLAGS) \
--@USE_MODULE_TRUE@     $(am__append_17)
-+@USE_MODULE_TRUE@     $(am__append_18)
- drv_vmmc_LDFLAGS = -r -nostdlib
- @KERNEL_2_6_TRUE@drv_vmmc_OBJS = "$(subst .c,.o, $(drv_vmmc_SOURCES) $(nodist_drv_vmmc_SOURCES))"
- all: all-am
-@@ -354,14 +331,14 @@ $(srcdir)/Makefile.in:  $(srcdir)/Makefi
-       @for dep in $?; do \
-         case '$(am__configure_deps)' in \
-           *$$dep*) \
--            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--              && exit 0; \
-+            ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+              && { if test -f $@; then exit 0; else break; fi; }; \
-             exit 1;; \
-         esac; \
-       done; \
--      echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
--      cd $(top_srcdir) && \
--        $(AUTOMAKE) --gnu  src/Makefile
-+      echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
-+      $(am__cd) $(top_srcdir) && \
-+        $(AUTOMAKE) --gnu src/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
-       @case '$?' in \
-@@ -379,35 +356,50 @@ $(top_srcdir)/configure:  $(am__configur
-       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
-       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- install-binPROGRAMS: $(bin_PROGRAMS)
-       @$(NORMAL_INSTALL)
--      test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
--      @list='$(bin_PROGRAMS)'; for p in $$list; do \
--        p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--        if test -f $$p \
--        ; then \
--          f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--         echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
--         $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
--        else :; fi; \
--      done
-+      test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
-+      @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
-+      for p in $$list; do echo "$$p $$p"; done | \
-+      sed 's/$(EXEEXT)$$//' | \
-+      while read p p1; do if test -f $$p; \
-+        then echo "$$p"; echo "$$p"; else :; fi; \
-+      done | \
-+      sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+          -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+      sed 'N;N;N;s,\n, ,g' | \
-+      $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+        { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+          if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+          else { print "f", $$3 "/" $$4, $$1; } } \
-+        END { for (d in files) print "f", d, files[d] }' | \
-+      while read type dir files; do \
-+          if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+          test -z "$$files" || { \
-+            echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
-+            $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
-+          } \
-+      ; done
- uninstall-binPROGRAMS:
-       @$(NORMAL_UNINSTALL)
--      @list='$(bin_PROGRAMS)'; for p in $$list; do \
--        f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--        echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
--        rm -f "$(DESTDIR)$(bindir)/$$f"; \
--      done
-+      @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
-+      files=`for p in $$list; do echo "$$p"; done | \
-+        sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+            -e 's/$$/$(EXEEXT)/' `; \
-+      test -n "$$list" || exit 0; \
-+      echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
-+      cd "$(DESTDIR)$(bindir)" && rm -f $$files
- clean-binPROGRAMS:
-       -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
- drv_vmmc$(EXEEXT): $(drv_vmmc_OBJECTS) $(drv_vmmc_DEPENDENCIES) 
-       @rm -f drv_vmmc$(EXEEXT)
--      $(LINK) $(drv_vmmc_LDFLAGS) $(drv_vmmc_OBJECTS) $(drv_vmmc_LDADD) $(LIBS)
-+      $(drv_vmmc_LINK) $(drv_vmmc_OBJECTS) $(drv_vmmc_LDADD) $(LIBS)
- @KERNEL_2_6_FALSE@drv_vmmc.ko$(EXEEXT): $(drv_vmmc_ko_OBJECTS) $(drv_vmmc_ko_DEPENDENCIES) 
- @KERNEL_2_6_FALSE@    @rm -f drv_vmmc.ko$(EXEEXT)
--@KERNEL_2_6_FALSE@    $(LINK) $(drv_vmmc_ko_LDFLAGS) $(drv_vmmc_ko_OBJECTS) $(drv_vmmc_ko_LDADD) $(LIBS)
-+@KERNEL_2_6_FALSE@    $(LINK) $(drv_vmmc_ko_OBJECTS) $(drv_vmmc_ko_LDADD) $(LIBS)
- mostlyclean-compile:
-       -rm -f *.$(OBJEXT)
-@@ -419,6 +411,7 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Po@am__quote@
-+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Po@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-drv_vmmc_api.Po@am__quote@
-@@ -449,541 +442,560 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drv_vmmc-lib_bbd.Po@am__quote@
- .c.o:
--@am__fastdepCC_TRUE@  if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(COMPILE) -c $<
- .c.obj:
--@am__fastdepCC_TRUE@  if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
- drv_vmmc-drv_vmmc_alm.o: drv_vmmc_alm.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_alm.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo" -c -o drv_vmmc-drv_vmmc_alm.o `test -f 'drv_vmmc_alm.c' || echo '$(srcdir)/'`drv_vmmc_alm.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_alm.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo -c -o drv_vmmc-drv_vmmc_alm.o `test -f 'drv_vmmc_alm.c' || echo '$(srcdir)/'`drv_vmmc_alm.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_alm.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_alm.c' object='drv_vmmc-drv_vmmc_alm.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_alm.o `test -f 'drv_vmmc_alm.c' || echo '$(srcdir)/'`drv_vmmc_alm.c
- drv_vmmc-drv_vmmc_alm.obj: drv_vmmc_alm.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_alm.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo" -c -o drv_vmmc-drv_vmmc_alm.obj `if test -f 'drv_vmmc_alm.c'; then $(CYGPATH_W) 'drv_vmmc_alm.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_alm.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_alm.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo -c -o drv_vmmc-drv_vmmc_alm.obj `if test -f 'drv_vmmc_alm.c'; then $(CYGPATH_W) 'drv_vmmc_alm.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_alm.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_alm.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_alm.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_alm.c' object='drv_vmmc-drv_vmmc_alm.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_alm.obj `if test -f 'drv_vmmc_alm.c'; then $(CYGPATH_W) 'drv_vmmc_alm.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_alm.c'; fi`
- drv_vmmc-drv_vmmc_api.o: drv_vmmc_api.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_api.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo" -c -o drv_vmmc-drv_vmmc_api.o `test -f 'drv_vmmc_api.c' || echo '$(srcdir)/'`drv_vmmc_api.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_api.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo -c -o drv_vmmc-drv_vmmc_api.o `test -f 'drv_vmmc_api.c' || echo '$(srcdir)/'`drv_vmmc_api.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_api.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_api.c' object='drv_vmmc-drv_vmmc_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_api.o `test -f 'drv_vmmc_api.c' || echo '$(srcdir)/'`drv_vmmc_api.c
- drv_vmmc-drv_vmmc_api.obj: drv_vmmc_api.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_api.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo" -c -o drv_vmmc-drv_vmmc_api.obj `if test -f 'drv_vmmc_api.c'; then $(CYGPATH_W) 'drv_vmmc_api.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_api.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_api.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo -c -o drv_vmmc-drv_vmmc_api.obj `if test -f 'drv_vmmc_api.c'; then $(CYGPATH_W) 'drv_vmmc_api.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_api.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_api.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_api.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_api.c' object='drv_vmmc-drv_vmmc_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_api.obj `if test -f 'drv_vmmc_api.c'; then $(CYGPATH_W) 'drv_vmmc_api.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_api.c'; fi`
- drv_vmmc-drv_vmmc_bbd.o: drv_vmmc_bbd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_bbd.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo" -c -o drv_vmmc-drv_vmmc_bbd.o `test -f 'drv_vmmc_bbd.c' || echo '$(srcdir)/'`drv_vmmc_bbd.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_bbd.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo -c -o drv_vmmc-drv_vmmc_bbd.o `test -f 'drv_vmmc_bbd.c' || echo '$(srcdir)/'`drv_vmmc_bbd.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_bbd.c' object='drv_vmmc-drv_vmmc_bbd.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_bbd.o `test -f 'drv_vmmc_bbd.c' || echo '$(srcdir)/'`drv_vmmc_bbd.c
- drv_vmmc-drv_vmmc_bbd.obj: drv_vmmc_bbd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_bbd.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo" -c -o drv_vmmc-drv_vmmc_bbd.obj `if test -f 'drv_vmmc_bbd.c'; then $(CYGPATH_W) 'drv_vmmc_bbd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_bbd.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_bbd.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo -c -o drv_vmmc-drv_vmmc_bbd.obj `if test -f 'drv_vmmc_bbd.c'; then $(CYGPATH_W) 'drv_vmmc_bbd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_bbd.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_bbd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_bbd.c' object='drv_vmmc-drv_vmmc_bbd.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_bbd.obj `if test -f 'drv_vmmc_bbd.c'; then $(CYGPATH_W) 'drv_vmmc_bbd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_bbd.c'; fi`
- drv_vmmc-drv_vmmc_con.o: drv_vmmc_con.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_con.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo" -c -o drv_vmmc-drv_vmmc_con.o `test -f 'drv_vmmc_con.c' || echo '$(srcdir)/'`drv_vmmc_con.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_con.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo -c -o drv_vmmc-drv_vmmc_con.o `test -f 'drv_vmmc_con.c' || echo '$(srcdir)/'`drv_vmmc_con.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_con.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_con.c' object='drv_vmmc-drv_vmmc_con.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_con.o `test -f 'drv_vmmc_con.c' || echo '$(srcdir)/'`drv_vmmc_con.c
- drv_vmmc-drv_vmmc_con.obj: drv_vmmc_con.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_con.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo" -c -o drv_vmmc-drv_vmmc_con.obj `if test -f 'drv_vmmc_con.c'; then $(CYGPATH_W) 'drv_vmmc_con.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_con.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_con.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo -c -o drv_vmmc-drv_vmmc_con.obj `if test -f 'drv_vmmc_con.c'; then $(CYGPATH_W) 'drv_vmmc_con.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_con.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_con.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_con.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_con.c' object='drv_vmmc-drv_vmmc_con.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_con.obj `if test -f 'drv_vmmc_con.c'; then $(CYGPATH_W) 'drv_vmmc_con.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_con.c'; fi`
- drv_vmmc-drv_vmmc_cod.o: drv_vmmc_cod.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_cod.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo" -c -o drv_vmmc-drv_vmmc_cod.o `test -f 'drv_vmmc_cod.c' || echo '$(srcdir)/'`drv_vmmc_cod.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_cod.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo -c -o drv_vmmc-drv_vmmc_cod.o `test -f 'drv_vmmc_cod.c' || echo '$(srcdir)/'`drv_vmmc_cod.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_cod.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_cod.c' object='drv_vmmc-drv_vmmc_cod.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_cod.o `test -f 'drv_vmmc_cod.c' || echo '$(srcdir)/'`drv_vmmc_cod.c
- drv_vmmc-drv_vmmc_cod.obj: drv_vmmc_cod.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_cod.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo" -c -o drv_vmmc-drv_vmmc_cod.obj `if test -f 'drv_vmmc_cod.c'; then $(CYGPATH_W) 'drv_vmmc_cod.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_cod.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_cod.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo -c -o drv_vmmc-drv_vmmc_cod.obj `if test -f 'drv_vmmc_cod.c'; then $(CYGPATH_W) 'drv_vmmc_cod.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_cod.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_cod.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_cod.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_cod.c' object='drv_vmmc-drv_vmmc_cod.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_cod.obj `if test -f 'drv_vmmc_cod.c'; then $(CYGPATH_W) 'drv_vmmc_cod.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_cod.c'; fi`
- drv_vmmc-drv_vmmc_event.o: drv_vmmc_event.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_event.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo" -c -o drv_vmmc-drv_vmmc_event.o `test -f 'drv_vmmc_event.c' || echo '$(srcdir)/'`drv_vmmc_event.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_event.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo -c -o drv_vmmc-drv_vmmc_event.o `test -f 'drv_vmmc_event.c' || echo '$(srcdir)/'`drv_vmmc_event.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_event.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_event.c' object='drv_vmmc-drv_vmmc_event.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_event.o `test -f 'drv_vmmc_event.c' || echo '$(srcdir)/'`drv_vmmc_event.c
- drv_vmmc-drv_vmmc_event.obj: drv_vmmc_event.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_event.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo" -c -o drv_vmmc-drv_vmmc_event.obj `if test -f 'drv_vmmc_event.c'; then $(CYGPATH_W) 'drv_vmmc_event.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_event.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_event.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo -c -o drv_vmmc-drv_vmmc_event.obj `if test -f 'drv_vmmc_event.c'; then $(CYGPATH_W) 'drv_vmmc_event.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_event.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_event.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_event.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_event.c' object='drv_vmmc-drv_vmmc_event.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_event.obj `if test -f 'drv_vmmc_event.c'; then $(CYGPATH_W) 'drv_vmmc_event.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_event.c'; fi`
- drv_vmmc-drv_vmmc_gr909.o: drv_vmmc_gr909.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_gr909.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo" -c -o drv_vmmc-drv_vmmc_gr909.o `test -f 'drv_vmmc_gr909.c' || echo '$(srcdir)/'`drv_vmmc_gr909.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_gr909.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo -c -o drv_vmmc-drv_vmmc_gr909.o `test -f 'drv_vmmc_gr909.c' || echo '$(srcdir)/'`drv_vmmc_gr909.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_gr909.c' object='drv_vmmc-drv_vmmc_gr909.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_gr909.o `test -f 'drv_vmmc_gr909.c' || echo '$(srcdir)/'`drv_vmmc_gr909.c
- drv_vmmc-drv_vmmc_gr909.obj: drv_vmmc_gr909.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_gr909.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo" -c -o drv_vmmc-drv_vmmc_gr909.obj `if test -f 'drv_vmmc_gr909.c'; then $(CYGPATH_W) 'drv_vmmc_gr909.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_gr909.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_gr909.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo -c -o drv_vmmc-drv_vmmc_gr909.obj `if test -f 'drv_vmmc_gr909.c'; then $(CYGPATH_W) 'drv_vmmc_gr909.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_gr909.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_gr909.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_gr909.c' object='drv_vmmc-drv_vmmc_gr909.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_gr909.obj `if test -f 'drv_vmmc_gr909.c'; then $(CYGPATH_W) 'drv_vmmc_gr909.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_gr909.c'; fi`
- drv_vmmc-drv_vmmc_init.o: drv_vmmc_init.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo" -c -o drv_vmmc-drv_vmmc_init.o `test -f 'drv_vmmc_init.c' || echo '$(srcdir)/'`drv_vmmc_init.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo -c -o drv_vmmc-drv_vmmc_init.o `test -f 'drv_vmmc_init.c' || echo '$(srcdir)/'`drv_vmmc_init.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_init.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_init.c' object='drv_vmmc-drv_vmmc_init.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_init.o `test -f 'drv_vmmc_init.c' || echo '$(srcdir)/'`drv_vmmc_init.c
- drv_vmmc-drv_vmmc_init.obj: drv_vmmc_init.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo" -c -o drv_vmmc-drv_vmmc_init.obj `if test -f 'drv_vmmc_init.c'; then $(CYGPATH_W) 'drv_vmmc_init.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_init.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo -c -o drv_vmmc-drv_vmmc_init.obj `if test -f 'drv_vmmc_init.c'; then $(CYGPATH_W) 'drv_vmmc_init.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_init.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_init.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_init.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_init.c' object='drv_vmmc-drv_vmmc_init.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_init.obj `if test -f 'drv_vmmc_init.c'; then $(CYGPATH_W) 'drv_vmmc_init.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_init.c'; fi`
- drv_vmmc-drv_vmmc_init_cap.o: drv_vmmc_init_cap.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init_cap.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo" -c -o drv_vmmc-drv_vmmc_init_cap.o `test -f 'drv_vmmc_init_cap.c' || echo '$(srcdir)/'`drv_vmmc_init_cap.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init_cap.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo -c -o drv_vmmc-drv_vmmc_init_cap.o `test -f 'drv_vmmc_init_cap.c' || echo '$(srcdir)/'`drv_vmmc_init_cap.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_init_cap.c' object='drv_vmmc-drv_vmmc_init_cap.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_init_cap.o `test -f 'drv_vmmc_init_cap.c' || echo '$(srcdir)/'`drv_vmmc_init_cap.c
- drv_vmmc-drv_vmmc_init_cap.obj: drv_vmmc_init_cap.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init_cap.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo" -c -o drv_vmmc-drv_vmmc_init_cap.obj `if test -f 'drv_vmmc_init_cap.c'; then $(CYGPATH_W) 'drv_vmmc_init_cap.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_init_cap.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_init_cap.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo -c -o drv_vmmc-drv_vmmc_init_cap.obj `if test -f 'drv_vmmc_init_cap.c'; then $(CYGPATH_W) 'drv_vmmc_init_cap.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_init_cap.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_init_cap.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_init_cap.c' object='drv_vmmc-drv_vmmc_init_cap.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_init_cap.obj `if test -f 'drv_vmmc_init_cap.c'; then $(CYGPATH_W) 'drv_vmmc_init_cap.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_init_cap.c'; fi`
- drv_vmmc-drv_vmmc_int.o: drv_vmmc_int.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_int.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo" -c -o drv_vmmc-drv_vmmc_int.o `test -f 'drv_vmmc_int.c' || echo '$(srcdir)/'`drv_vmmc_int.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_int.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo -c -o drv_vmmc-drv_vmmc_int.o `test -f 'drv_vmmc_int.c' || echo '$(srcdir)/'`drv_vmmc_int.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_int.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_int.c' object='drv_vmmc-drv_vmmc_int.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_int.o `test -f 'drv_vmmc_int.c' || echo '$(srcdir)/'`drv_vmmc_int.c
- drv_vmmc-drv_vmmc_int.obj: drv_vmmc_int.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_int.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo" -c -o drv_vmmc-drv_vmmc_int.obj `if test -f 'drv_vmmc_int.c'; then $(CYGPATH_W) 'drv_vmmc_int.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_int.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_int.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo -c -o drv_vmmc-drv_vmmc_int.obj `if test -f 'drv_vmmc_int.c'; then $(CYGPATH_W) 'drv_vmmc_int.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_int.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_int.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_int.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_int.c' object='drv_vmmc-drv_vmmc_int.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_int.obj `if test -f 'drv_vmmc_int.c'; then $(CYGPATH_W) 'drv_vmmc_int.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_int.c'; fi`
- drv_vmmc-drv_vmmc_ioctl.o: drv_vmmc_ioctl.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_ioctl.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo" -c -o drv_vmmc-drv_vmmc_ioctl.o `test -f 'drv_vmmc_ioctl.c' || echo '$(srcdir)/'`drv_vmmc_ioctl.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_ioctl.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo -c -o drv_vmmc-drv_vmmc_ioctl.o `test -f 'drv_vmmc_ioctl.c' || echo '$(srcdir)/'`drv_vmmc_ioctl.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_ioctl.c' object='drv_vmmc-drv_vmmc_ioctl.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_ioctl.o `test -f 'drv_vmmc_ioctl.c' || echo '$(srcdir)/'`drv_vmmc_ioctl.c
- drv_vmmc-drv_vmmc_ioctl.obj: drv_vmmc_ioctl.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_ioctl.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo" -c -o drv_vmmc-drv_vmmc_ioctl.obj `if test -f 'drv_vmmc_ioctl.c'; then $(CYGPATH_W) 'drv_vmmc_ioctl.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_ioctl.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_ioctl.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo -c -o drv_vmmc-drv_vmmc_ioctl.obj `if test -f 'drv_vmmc_ioctl.c'; then $(CYGPATH_W) 'drv_vmmc_ioctl.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_ioctl.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_ioctl.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_ioctl.c' object='drv_vmmc-drv_vmmc_ioctl.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_ioctl.obj `if test -f 'drv_vmmc_ioctl.c'; then $(CYGPATH_W) 'drv_vmmc_ioctl.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_ioctl.c'; fi`
- drv_vmmc-drv_vmmc_linux.o: drv_vmmc_linux.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_linux.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo" -c -o drv_vmmc-drv_vmmc_linux.o `test -f 'drv_vmmc_linux.c' || echo '$(srcdir)/'`drv_vmmc_linux.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_linux.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo -c -o drv_vmmc-drv_vmmc_linux.o `test -f 'drv_vmmc_linux.c' || echo '$(srcdir)/'`drv_vmmc_linux.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_linux.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_linux.c' object='drv_vmmc-drv_vmmc_linux.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_linux.o `test -f 'drv_vmmc_linux.c' || echo '$(srcdir)/'`drv_vmmc_linux.c
- drv_vmmc-drv_vmmc_linux.obj: drv_vmmc_linux.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_linux.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo" -c -o drv_vmmc-drv_vmmc_linux.obj `if test -f 'drv_vmmc_linux.c'; then $(CYGPATH_W) 'drv_vmmc_linux.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_linux.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_linux.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo -c -o drv_vmmc-drv_vmmc_linux.obj `if test -f 'drv_vmmc_linux.c'; then $(CYGPATH_W) 'drv_vmmc_linux.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_linux.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_linux.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_linux.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_linux.c' object='drv_vmmc-drv_vmmc_linux.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_linux.obj `if test -f 'drv_vmmc_linux.c'; then $(CYGPATH_W) 'drv_vmmc_linux.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_linux.c'; fi`
- drv_vmmc-drv_vmmc_pcm.o: drv_vmmc_pcm.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pcm.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo" -c -o drv_vmmc-drv_vmmc_pcm.o `test -f 'drv_vmmc_pcm.c' || echo '$(srcdir)/'`drv_vmmc_pcm.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pcm.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo -c -o drv_vmmc-drv_vmmc_pcm.o `test -f 'drv_vmmc_pcm.c' || echo '$(srcdir)/'`drv_vmmc_pcm.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_pcm.c' object='drv_vmmc-drv_vmmc_pcm.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_pcm.o `test -f 'drv_vmmc_pcm.c' || echo '$(srcdir)/'`drv_vmmc_pcm.c
- drv_vmmc-drv_vmmc_pcm.obj: drv_vmmc_pcm.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pcm.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo" -c -o drv_vmmc-drv_vmmc_pcm.obj `if test -f 'drv_vmmc_pcm.c'; then $(CYGPATH_W) 'drv_vmmc_pcm.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_pcm.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pcm.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo -c -o drv_vmmc-drv_vmmc_pcm.obj `if test -f 'drv_vmmc_pcm.c'; then $(CYGPATH_W) 'drv_vmmc_pcm.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_pcm.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_pcm.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_pcm.c' object='drv_vmmc-drv_vmmc_pcm.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_pcm.obj `if test -f 'drv_vmmc_pcm.c'; then $(CYGPATH_W) 'drv_vmmc_pcm.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_pcm.c'; fi`
- drv_vmmc-drv_vmmc_res.o: drv_vmmc_res.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_res.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo" -c -o drv_vmmc-drv_vmmc_res.o `test -f 'drv_vmmc_res.c' || echo '$(srcdir)/'`drv_vmmc_res.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_res.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo -c -o drv_vmmc-drv_vmmc_res.o `test -f 'drv_vmmc_res.c' || echo '$(srcdir)/'`drv_vmmc_res.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_res.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_res.c' object='drv_vmmc-drv_vmmc_res.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_res.o `test -f 'drv_vmmc_res.c' || echo '$(srcdir)/'`drv_vmmc_res.c
- drv_vmmc-drv_vmmc_res.obj: drv_vmmc_res.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_res.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo" -c -o drv_vmmc-drv_vmmc_res.obj `if test -f 'drv_vmmc_res.c'; then $(CYGPATH_W) 'drv_vmmc_res.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_res.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_res.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo -c -o drv_vmmc-drv_vmmc_res.obj `if test -f 'drv_vmmc_res.c'; then $(CYGPATH_W) 'drv_vmmc_res.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_res.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_res.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_res.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_res.c' object='drv_vmmc-drv_vmmc_res.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_res.obj `if test -f 'drv_vmmc_res.c'; then $(CYGPATH_W) 'drv_vmmc_res.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_res.c'; fi`
- drv_vmmc-drv_vmmc_sig.o: drv_vmmc_sig.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo" -c -o drv_vmmc-drv_vmmc_sig.o `test -f 'drv_vmmc_sig.c' || echo '$(srcdir)/'`drv_vmmc_sig.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo -c -o drv_vmmc-drv_vmmc_sig.o `test -f 'drv_vmmc_sig.c' || echo '$(srcdir)/'`drv_vmmc_sig.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig.c' object='drv_vmmc-drv_vmmc_sig.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig.o `test -f 'drv_vmmc_sig.c' || echo '$(srcdir)/'`drv_vmmc_sig.c
- drv_vmmc-drv_vmmc_sig.obj: drv_vmmc_sig.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo" -c -o drv_vmmc-drv_vmmc_sig.obj `if test -f 'drv_vmmc_sig.c'; then $(CYGPATH_W) 'drv_vmmc_sig.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo -c -o drv_vmmc-drv_vmmc_sig.obj `if test -f 'drv_vmmc_sig.c'; then $(CYGPATH_W) 'drv_vmmc_sig.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig.c' object='drv_vmmc-drv_vmmc_sig.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig.obj `if test -f 'drv_vmmc_sig.c'; then $(CYGPATH_W) 'drv_vmmc_sig.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig.c'; fi`
- drv_vmmc-drv_vmmc_sig_cid.o: drv_vmmc_sig_cid.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cid.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo" -c -o drv_vmmc-drv_vmmc_sig_cid.o `test -f 'drv_vmmc_sig_cid.c' || echo '$(srcdir)/'`drv_vmmc_sig_cid.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cid.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo -c -o drv_vmmc-drv_vmmc_sig_cid.o `test -f 'drv_vmmc_sig_cid.c' || echo '$(srcdir)/'`drv_vmmc_sig_cid.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_cid.c' object='drv_vmmc-drv_vmmc_sig_cid.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_cid.o `test -f 'drv_vmmc_sig_cid.c' || echo '$(srcdir)/'`drv_vmmc_sig_cid.c
- drv_vmmc-drv_vmmc_sig_cid.obj: drv_vmmc_sig_cid.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cid.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo" -c -o drv_vmmc-drv_vmmc_sig_cid.obj `if test -f 'drv_vmmc_sig_cid.c'; then $(CYGPATH_W) 'drv_vmmc_sig_cid.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_cid.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cid.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo -c -o drv_vmmc-drv_vmmc_sig_cid.obj `if test -f 'drv_vmmc_sig_cid.c'; then $(CYGPATH_W) 'drv_vmmc_sig_cid.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_cid.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cid.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_cid.c' object='drv_vmmc-drv_vmmc_sig_cid.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_cid.obj `if test -f 'drv_vmmc_sig_cid.c'; then $(CYGPATH_W) 'drv_vmmc_sig_cid.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_cid.c'; fi`
- drv_vmmc-drv_vmmc_sig_cptd.o: drv_vmmc_sig_cptd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cptd.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo" -c -o drv_vmmc-drv_vmmc_sig_cptd.o `test -f 'drv_vmmc_sig_cptd.c' || echo '$(srcdir)/'`drv_vmmc_sig_cptd.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cptd.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo -c -o drv_vmmc-drv_vmmc_sig_cptd.o `test -f 'drv_vmmc_sig_cptd.c' || echo '$(srcdir)/'`drv_vmmc_sig_cptd.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_cptd.c' object='drv_vmmc-drv_vmmc_sig_cptd.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_cptd.o `test -f 'drv_vmmc_sig_cptd.c' || echo '$(srcdir)/'`drv_vmmc_sig_cptd.c
- drv_vmmc-drv_vmmc_sig_cptd.obj: drv_vmmc_sig_cptd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cptd.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo" -c -o drv_vmmc-drv_vmmc_sig_cptd.obj `if test -f 'drv_vmmc_sig_cptd.c'; then $(CYGPATH_W) 'drv_vmmc_sig_cptd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_cptd.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_cptd.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo -c -o drv_vmmc-drv_vmmc_sig_cptd.obj `if test -f 'drv_vmmc_sig_cptd.c'; then $(CYGPATH_W) 'drv_vmmc_sig_cptd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_cptd.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_cptd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_cptd.c' object='drv_vmmc-drv_vmmc_sig_cptd.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_cptd.obj `if test -f 'drv_vmmc_sig_cptd.c'; then $(CYGPATH_W) 'drv_vmmc_sig_cptd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_cptd.c'; fi`
- drv_vmmc-drv_vmmc_sig_dtmfg.o: drv_vmmc_sig_dtmfg.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_dtmfg.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo" -c -o drv_vmmc-drv_vmmc_sig_dtmfg.o `test -f 'drv_vmmc_sig_dtmfg.c' || echo '$(srcdir)/'`drv_vmmc_sig_dtmfg.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_dtmfg.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo -c -o drv_vmmc-drv_vmmc_sig_dtmfg.o `test -f 'drv_vmmc_sig_dtmfg.c' || echo '$(srcdir)/'`drv_vmmc_sig_dtmfg.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_dtmfg.c' object='drv_vmmc-drv_vmmc_sig_dtmfg.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_dtmfg.o `test -f 'drv_vmmc_sig_dtmfg.c' || echo '$(srcdir)/'`drv_vmmc_sig_dtmfg.c
- drv_vmmc-drv_vmmc_sig_dtmfg.obj: drv_vmmc_sig_dtmfg.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_dtmfg.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo" -c -o drv_vmmc-drv_vmmc_sig_dtmfg.obj `if test -f 'drv_vmmc_sig_dtmfg.c'; then $(CYGPATH_W) 'drv_vmmc_sig_dtmfg.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_dtmfg.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_dtmfg.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo -c -o drv_vmmc-drv_vmmc_sig_dtmfg.obj `if test -f 'drv_vmmc_sig_dtmfg.c'; then $(CYGPATH_W) 'drv_vmmc_sig_dtmfg.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_dtmfg.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_dtmfg.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_dtmfg.c' object='drv_vmmc-drv_vmmc_sig_dtmfg.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_dtmfg.obj `if test -f 'drv_vmmc_sig_dtmfg.c'; then $(CYGPATH_W) 'drv_vmmc_sig_dtmfg.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_dtmfg.c'; fi`
- drv_vmmc-drv_vmmc_sig_mftd.o: drv_vmmc_sig_mftd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_mftd.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo" -c -o drv_vmmc-drv_vmmc_sig_mftd.o `test -f 'drv_vmmc_sig_mftd.c' || echo '$(srcdir)/'`drv_vmmc_sig_mftd.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_mftd.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo -c -o drv_vmmc-drv_vmmc_sig_mftd.o `test -f 'drv_vmmc_sig_mftd.c' || echo '$(srcdir)/'`drv_vmmc_sig_mftd.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_mftd.c' object='drv_vmmc-drv_vmmc_sig_mftd.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_mftd.o `test -f 'drv_vmmc_sig_mftd.c' || echo '$(srcdir)/'`drv_vmmc_sig_mftd.c
- drv_vmmc-drv_vmmc_sig_mftd.obj: drv_vmmc_sig_mftd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_mftd.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo" -c -o drv_vmmc-drv_vmmc_sig_mftd.obj `if test -f 'drv_vmmc_sig_mftd.c'; then $(CYGPATH_W) 'drv_vmmc_sig_mftd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_mftd.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_mftd.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo -c -o drv_vmmc-drv_vmmc_sig_mftd.obj `if test -f 'drv_vmmc_sig_mftd.c'; then $(CYGPATH_W) 'drv_vmmc_sig_mftd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_mftd.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_mftd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_mftd.c' object='drv_vmmc-drv_vmmc_sig_mftd.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_mftd.obj `if test -f 'drv_vmmc_sig_mftd.c'; then $(CYGPATH_W) 'drv_vmmc_sig_mftd.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_mftd.c'; fi`
- drv_vmmc-drv_vmmc_sig_utg.o: drv_vmmc_sig_utg.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_utg.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo" -c -o drv_vmmc-drv_vmmc_sig_utg.o `test -f 'drv_vmmc_sig_utg.c' || echo '$(srcdir)/'`drv_vmmc_sig_utg.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_utg.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo -c -o drv_vmmc-drv_vmmc_sig_utg.o `test -f 'drv_vmmc_sig_utg.c' || echo '$(srcdir)/'`drv_vmmc_sig_utg.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_utg.c' object='drv_vmmc-drv_vmmc_sig_utg.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_utg.o `test -f 'drv_vmmc_sig_utg.c' || echo '$(srcdir)/'`drv_vmmc_sig_utg.c
- drv_vmmc-drv_vmmc_sig_utg.obj: drv_vmmc_sig_utg.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_utg.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo" -c -o drv_vmmc-drv_vmmc_sig_utg.obj `if test -f 'drv_vmmc_sig_utg.c'; then $(CYGPATH_W) 'drv_vmmc_sig_utg.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_utg.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_sig_utg.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo -c -o drv_vmmc-drv_vmmc_sig_utg.obj `if test -f 'drv_vmmc_sig_utg.c'; then $(CYGPATH_W) 'drv_vmmc_sig_utg.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_utg.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_sig_utg.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_sig_utg.c' object='drv_vmmc-drv_vmmc_sig_utg.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_sig_utg.obj `if test -f 'drv_vmmc_sig_utg.c'; then $(CYGPATH_W) 'drv_vmmc_sig_utg.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_sig_utg.c'; fi`
- drv_vmmc-drv_vmmc_stream.o: drv_vmmc_stream.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_stream.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo" -c -o drv_vmmc-drv_vmmc_stream.o `test -f 'drv_vmmc_stream.c' || echo '$(srcdir)/'`drv_vmmc_stream.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_stream.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo -c -o drv_vmmc-drv_vmmc_stream.o `test -f 'drv_vmmc_stream.c' || echo '$(srcdir)/'`drv_vmmc_stream.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_stream.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_stream.c' object='drv_vmmc-drv_vmmc_stream.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_stream.o `test -f 'drv_vmmc_stream.c' || echo '$(srcdir)/'`drv_vmmc_stream.c
- drv_vmmc-drv_vmmc_stream.obj: drv_vmmc_stream.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_stream.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo" -c -o drv_vmmc-drv_vmmc_stream.obj `if test -f 'drv_vmmc_stream.c'; then $(CYGPATH_W) 'drv_vmmc_stream.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_stream.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_stream.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo -c -o drv_vmmc-drv_vmmc_stream.obj `if test -f 'drv_vmmc_stream.c'; then $(CYGPATH_W) 'drv_vmmc_stream.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_stream.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_stream.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_stream.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_stream.c' object='drv_vmmc-drv_vmmc_stream.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_stream.obj `if test -f 'drv_vmmc_stream.c'; then $(CYGPATH_W) 'drv_vmmc_stream.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_stream.c'; fi`
- drv_vmmc-drv_vmmc_audio.o: drv_vmmc_audio.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_audio.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo" -c -o drv_vmmc-drv_vmmc_audio.o `test -f 'drv_vmmc_audio.c' || echo '$(srcdir)/'`drv_vmmc_audio.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_audio.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo -c -o drv_vmmc-drv_vmmc_audio.o `test -f 'drv_vmmc_audio.c' || echo '$(srcdir)/'`drv_vmmc_audio.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_audio.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_audio.c' object='drv_vmmc-drv_vmmc_audio.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_audio.o `test -f 'drv_vmmc_audio.c' || echo '$(srcdir)/'`drv_vmmc_audio.c
- drv_vmmc-drv_vmmc_audio.obj: drv_vmmc_audio.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_audio.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo" -c -o drv_vmmc-drv_vmmc_audio.obj `if test -f 'drv_vmmc_audio.c'; then $(CYGPATH_W) 'drv_vmmc_audio.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_audio.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_audio.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo -c -o drv_vmmc-drv_vmmc_audio.obj `if test -f 'drv_vmmc_audio.c'; then $(CYGPATH_W) 'drv_vmmc_audio.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_audio.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_audio.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_audio.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_audio.c' object='drv_vmmc-drv_vmmc_audio.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_audio.obj `if test -f 'drv_vmmc_audio.c'; then $(CYGPATH_W) 'drv_vmmc_audio.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_audio.c'; fi`
- drv_vmmc-lib_bbd.o: lib/lib_bbd/src/lib_bbd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-lib_bbd.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-lib_bbd.Tpo" -c -o drv_vmmc-lib_bbd.o `test -f 'lib/lib_bbd/src/lib_bbd.c' || echo '$(srcdir)/'`lib/lib_bbd/src/lib_bbd.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-lib_bbd.Tpo" "$(DEPDIR)/drv_vmmc-lib_bbd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-lib_bbd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-lib_bbd.o -MD -MP -MF $(DEPDIR)/drv_vmmc-lib_bbd.Tpo -c -o drv_vmmc-lib_bbd.o `test -f 'lib/lib_bbd/src/lib_bbd.c' || echo '$(srcdir)/'`lib/lib_bbd/src/lib_bbd.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-lib_bbd.Tpo $(DEPDIR)/drv_vmmc-lib_bbd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='lib/lib_bbd/src/lib_bbd.c' object='drv_vmmc-lib_bbd.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-lib_bbd.o `test -f 'lib/lib_bbd/src/lib_bbd.c' || echo '$(srcdir)/'`lib/lib_bbd/src/lib_bbd.c
- drv_vmmc-lib_bbd.obj: lib/lib_bbd/src/lib_bbd.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-lib_bbd.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-lib_bbd.Tpo" -c -o drv_vmmc-lib_bbd.obj `if test -f 'lib/lib_bbd/src/lib_bbd.c'; then $(CYGPATH_W) 'lib/lib_bbd/src/lib_bbd.c'; else $(CYGPATH_W) '$(srcdir)/lib/lib_bbd/src/lib_bbd.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-lib_bbd.Tpo" "$(DEPDIR)/drv_vmmc-lib_bbd.Po"; else rm -f "$(DEPDIR)/drv_vmmc-lib_bbd.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-lib_bbd.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-lib_bbd.Tpo -c -o drv_vmmc-lib_bbd.obj `if test -f 'lib/lib_bbd/src/lib_bbd.c'; then $(CYGPATH_W) 'lib/lib_bbd/src/lib_bbd.c'; else $(CYGPATH_W) '$(srcdir)/lib/lib_bbd/src/lib_bbd.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-lib_bbd.Tpo $(DEPDIR)/drv_vmmc-lib_bbd.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='lib/lib_bbd/src/lib_bbd.c' object='drv_vmmc-lib_bbd.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-lib_bbd.obj `if test -f 'lib/lib_bbd/src/lib_bbd.c'; then $(CYGPATH_W) 'lib/lib_bbd/src/lib_bbd.c'; else $(CYGPATH_W) '$(srcdir)/lib/lib_bbd/src/lib_bbd.c'; fi`
- drv_vmmc-drv_vmmc_dect.o: drv_vmmc_dect.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_dect.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo" -c -o drv_vmmc-drv_vmmc_dect.o `test -f 'drv_vmmc_dect.c' || echo '$(srcdir)/'`drv_vmmc_dect.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_dect.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo -c -o drv_vmmc-drv_vmmc_dect.o `test -f 'drv_vmmc_dect.c' || echo '$(srcdir)/'`drv_vmmc_dect.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_dect.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_dect.c' object='drv_vmmc-drv_vmmc_dect.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_dect.o `test -f 'drv_vmmc_dect.c' || echo '$(srcdir)/'`drv_vmmc_dect.c
- drv_vmmc-drv_vmmc_dect.obj: drv_vmmc_dect.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_dect.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo" -c -o drv_vmmc-drv_vmmc_dect.obj `if test -f 'drv_vmmc_dect.c'; then $(CYGPATH_W) 'drv_vmmc_dect.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_dect.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_dect.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo -c -o drv_vmmc-drv_vmmc_dect.obj `if test -f 'drv_vmmc_dect.c'; then $(CYGPATH_W) 'drv_vmmc_dect.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_dect.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_dect.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_dect.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_dect.c' object='drv_vmmc-drv_vmmc_dect.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_dect.obj `if test -f 'drv_vmmc_dect.c'; then $(CYGPATH_W) 'drv_vmmc_dect.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_dect.c'; fi`
- drv_vmmc-drv_mps_vmmc_linux.o: mps/drv_mps_vmmc_linux.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_linux.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo" -c -o drv_vmmc-drv_mps_vmmc_linux.o `test -f 'mps/drv_mps_vmmc_linux.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_linux.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_linux.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo -c -o drv_vmmc-drv_mps_vmmc_linux.o `test -f 'mps/drv_mps_vmmc_linux.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_linux.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_linux.c' object='drv_vmmc-drv_mps_vmmc_linux.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_linux.o `test -f 'mps/drv_mps_vmmc_linux.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_linux.c
- drv_vmmc-drv_mps_vmmc_linux.obj: mps/drv_mps_vmmc_linux.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_linux.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo" -c -o drv_vmmc-drv_mps_vmmc_linux.obj `if test -f 'mps/drv_mps_vmmc_linux.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_linux.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_linux.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_linux.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo -c -o drv_vmmc-drv_mps_vmmc_linux.obj `if test -f 'mps/drv_mps_vmmc_linux.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_linux.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_linux.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_linux.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_linux.c' object='drv_vmmc-drv_mps_vmmc_linux.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_linux.obj `if test -f 'mps/drv_mps_vmmc_linux.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_linux.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_linux.c'; fi`
- drv_vmmc-drv_mps_vmmc_common.o: mps/drv_mps_vmmc_common.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_common.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo" -c -o drv_vmmc-drv_mps_vmmc_common.o `test -f 'mps/drv_mps_vmmc_common.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_common.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_common.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo -c -o drv_vmmc-drv_mps_vmmc_common.o `test -f 'mps/drv_mps_vmmc_common.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_common.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_common.c' object='drv_vmmc-drv_mps_vmmc_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_common.o `test -f 'mps/drv_mps_vmmc_common.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_common.c
- drv_vmmc-drv_mps_vmmc_common.obj: mps/drv_mps_vmmc_common.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_common.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo" -c -o drv_vmmc-drv_mps_vmmc_common.obj `if test -f 'mps/drv_mps_vmmc_common.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_common.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_common.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_common.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo -c -o drv_vmmc-drv_mps_vmmc_common.obj `if test -f 'mps/drv_mps_vmmc_common.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_common.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_common.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_common.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_common.c' object='drv_vmmc-drv_mps_vmmc_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_common.obj `if test -f 'mps/drv_mps_vmmc_common.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_common.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_common.c'; fi`
- drv_vmmc-drv_mps_vmmc_crc32.o: mps/drv_mps_vmmc_crc32.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_crc32.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo" -c -o drv_vmmc-drv_mps_vmmc_crc32.o `test -f 'mps/drv_mps_vmmc_crc32.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_crc32.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_crc32.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo -c -o drv_vmmc-drv_mps_vmmc_crc32.o `test -f 'mps/drv_mps_vmmc_crc32.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_crc32.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_crc32.c' object='drv_vmmc-drv_mps_vmmc_crc32.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_crc32.o `test -f 'mps/drv_mps_vmmc_crc32.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_crc32.c
- drv_vmmc-drv_mps_vmmc_crc32.obj: mps/drv_mps_vmmc_crc32.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_crc32.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo" -c -o drv_vmmc-drv_mps_vmmc_crc32.obj `if test -f 'mps/drv_mps_vmmc_crc32.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_crc32.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_crc32.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_crc32.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo -c -o drv_vmmc-drv_mps_vmmc_crc32.obj `if test -f 'mps/drv_mps_vmmc_crc32.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_crc32.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_crc32.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_crc32.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_crc32.c' object='drv_vmmc-drv_mps_vmmc_crc32.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_crc32.obj `if test -f 'mps/drv_mps_vmmc_crc32.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_crc32.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_crc32.c'; fi`
- drv_vmmc-drv_mps_vmmc_danube.o: mps/drv_mps_vmmc_danube.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_danube.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo" -c -o drv_vmmc-drv_mps_vmmc_danube.o `test -f 'mps/drv_mps_vmmc_danube.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_danube.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_danube.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo -c -o drv_vmmc-drv_mps_vmmc_danube.o `test -f 'mps/drv_mps_vmmc_danube.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_danube.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_danube.c' object='drv_vmmc-drv_mps_vmmc_danube.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_danube.o `test -f 'mps/drv_mps_vmmc_danube.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_danube.c
- drv_vmmc-drv_mps_vmmc_danube.obj: mps/drv_mps_vmmc_danube.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_danube.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo" -c -o drv_vmmc-drv_mps_vmmc_danube.obj `if test -f 'mps/drv_mps_vmmc_danube.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_danube.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_danube.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_danube.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo -c -o drv_vmmc-drv_mps_vmmc_danube.obj `if test -f 'mps/drv_mps_vmmc_danube.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_danube.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_danube.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_danube.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_danube.c' object='drv_vmmc-drv_mps_vmmc_danube.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_danube.obj `if test -f 'mps/drv_mps_vmmc_danube.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_danube.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_danube.c'; fi`
- drv_vmmc-drv_mps_vmmc_ar9.o: mps/drv_mps_vmmc_ar9.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_ar9.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo" -c -o drv_vmmc-drv_mps_vmmc_ar9.o `test -f 'mps/drv_mps_vmmc_ar9.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_ar9.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_ar9.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo -c -o drv_vmmc-drv_mps_vmmc_ar9.o `test -f 'mps/drv_mps_vmmc_ar9.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_ar9.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_ar9.c' object='drv_vmmc-drv_mps_vmmc_ar9.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_ar9.o `test -f 'mps/drv_mps_vmmc_ar9.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_ar9.c
- drv_vmmc-drv_mps_vmmc_ar9.obj: mps/drv_mps_vmmc_ar9.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_ar9.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo" -c -o drv_vmmc-drv_mps_vmmc_ar9.obj `if test -f 'mps/drv_mps_vmmc_ar9.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_ar9.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_ar9.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo" "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_ar9.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo -c -o drv_vmmc-drv_mps_vmmc_ar9.obj `if test -f 'mps/drv_mps_vmmc_ar9.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_ar9.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_ar9.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_ar9.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_ar9.c' object='drv_vmmc-drv_mps_vmmc_ar9.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_ar9.obj `if test -f 'mps/drv_mps_vmmc_ar9.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_ar9.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_ar9.c'; fi`
-+drv_vmmc-drv_mps_vmmc_falcon.o: mps/drv_mps_vmmc_falcon.c
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_falcon.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Tpo -c -o drv_vmmc-drv_mps_vmmc_falcon.o `test -f 'mps/drv_mps_vmmc_falcon.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_falcon.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Po
-+@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_falcon.c' object='drv_vmmc-drv_mps_vmmc_falcon.o' libtool=no @AMDEPBACKSLASH@
-+@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-+@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_falcon.o `test -f 'mps/drv_mps_vmmc_falcon.c' || echo '$(srcdir)/'`mps/drv_mps_vmmc_falcon.c
-+
-+drv_vmmc-drv_mps_vmmc_falcon.obj: mps/drv_mps_vmmc_falcon.c
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_mps_vmmc_falcon.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Tpo -c -o drv_vmmc-drv_mps_vmmc_falcon.obj `if test -f 'mps/drv_mps_vmmc_falcon.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_falcon.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_falcon.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Tpo $(DEPDIR)/drv_vmmc-drv_mps_vmmc_falcon.Po
-+@AMDEP_TRUE@@am__fastdepCC_FALSE@     source='mps/drv_mps_vmmc_falcon.c' object='drv_vmmc-drv_mps_vmmc_falcon.obj' libtool=no @AMDEPBACKSLASH@
-+@AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-+@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_mps_vmmc_falcon.obj `if test -f 'mps/drv_mps_vmmc_falcon.c'; then $(CYGPATH_W) 'mps/drv_mps_vmmc_falcon.c'; else $(CYGPATH_W) '$(srcdir)/mps/drv_mps_vmmc_falcon.c'; fi`
-+
- drv_vmmc-drv_vmmc_pmc.o: drv_vmmc_pmc.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pmc.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo" -c -o drv_vmmc-drv_vmmc_pmc.o `test -f 'drv_vmmc_pmc.c' || echo '$(srcdir)/'`drv_vmmc_pmc.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pmc.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo -c -o drv_vmmc-drv_vmmc_pmc.o `test -f 'drv_vmmc_pmc.c' || echo '$(srcdir)/'`drv_vmmc_pmc.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_pmc.c' object='drv_vmmc-drv_vmmc_pmc.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_pmc.o `test -f 'drv_vmmc_pmc.c' || echo '$(srcdir)/'`drv_vmmc_pmc.c
- drv_vmmc-drv_vmmc_pmc.obj: drv_vmmc_pmc.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pmc.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo" -c -o drv_vmmc-drv_vmmc_pmc.obj `if test -f 'drv_vmmc_pmc.c'; then $(CYGPATH_W) 'drv_vmmc_pmc.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_pmc.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_pmc.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo -c -o drv_vmmc-drv_vmmc_pmc.obj `if test -f 'drv_vmmc_pmc.c'; then $(CYGPATH_W) 'drv_vmmc_pmc.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_pmc.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_pmc.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_pmc.c' object='drv_vmmc-drv_vmmc_pmc.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_pmc.obj `if test -f 'drv_vmmc_pmc.c'; then $(CYGPATH_W) 'drv_vmmc_pmc.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_pmc.c'; fi`
- drv_vmmc-drv_vmmc_eval.o: drv_vmmc_eval.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_eval.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo" -c -o drv_vmmc-drv_vmmc_eval.o `test -f 'drv_vmmc_eval.c' || echo '$(srcdir)/'`drv_vmmc_eval.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_eval.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo -c -o drv_vmmc-drv_vmmc_eval.o `test -f 'drv_vmmc_eval.c' || echo '$(srcdir)/'`drv_vmmc_eval.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_eval.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_eval.c' object='drv_vmmc-drv_vmmc_eval.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_eval.o `test -f 'drv_vmmc_eval.c' || echo '$(srcdir)/'`drv_vmmc_eval.c
- drv_vmmc-drv_vmmc_eval.obj: drv_vmmc_eval.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_eval.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo" -c -o drv_vmmc-drv_vmmc_eval.obj `if test -f 'drv_vmmc_eval.c'; then $(CYGPATH_W) 'drv_vmmc_eval.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_eval.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_eval.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo -c -o drv_vmmc-drv_vmmc_eval.obj `if test -f 'drv_vmmc_eval.c'; then $(CYGPATH_W) 'drv_vmmc_eval.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_eval.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_eval.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_eval.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_eval.c' object='drv_vmmc-drv_vmmc_eval.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_eval.obj `if test -f 'drv_vmmc_eval.c'; then $(CYGPATH_W) 'drv_vmmc_eval.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_eval.c'; fi`
- drv_vmmc-drv_vmmc_lin.o: drv_vmmc_lin.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_lin.o -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo" -c -o drv_vmmc-drv_vmmc_lin.o `test -f 'drv_vmmc_lin.c' || echo '$(srcdir)/'`drv_vmmc_lin.c; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_lin.o -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo -c -o drv_vmmc-drv_vmmc_lin.o `test -f 'drv_vmmc_lin.c' || echo '$(srcdir)/'`drv_vmmc_lin.c
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_lin.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_lin.c' object='drv_vmmc-drv_vmmc_lin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_lin.o `test -f 'drv_vmmc_lin.c' || echo '$(srcdir)/'`drv_vmmc_lin.c
- drv_vmmc-drv_vmmc_lin.obj: drv_vmmc_lin.c
--@am__fastdepCC_TRUE@  if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_lin.obj -MD -MP -MF "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo" -c -o drv_vmmc-drv_vmmc_lin.obj `if test -f 'drv_vmmc_lin.c'; then $(CYGPATH_W) 'drv_vmmc_lin.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_lin.c'; fi`; \
--@am__fastdepCC_TRUE@  then mv -f "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo" "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Po"; else rm -f "$(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo"; exit 1; fi
-+@am__fastdepCC_TRUE@  $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -MT drv_vmmc-drv_vmmc_lin.obj -MD -MP -MF $(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo -c -o drv_vmmc-drv_vmmc_lin.obj `if test -f 'drv_vmmc_lin.c'; then $(CYGPATH_W) 'drv_vmmc_lin.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_lin.c'; fi`
-+@am__fastdepCC_TRUE@  $(am__mv) $(DEPDIR)/drv_vmmc-drv_vmmc_lin.Tpo $(DEPDIR)/drv_vmmc-drv_vmmc_lin.Po
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     source='drv_vmmc_lin.c' object='drv_vmmc-drv_vmmc_lin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@     DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(drv_vmmc_CFLAGS) $(CFLAGS) -c -o drv_vmmc-drv_vmmc_lin.obj `if test -f 'drv_vmmc_lin.c'; then $(CYGPATH_W) 'drv_vmmc_lin.c'; else $(CYGPATH_W) '$(srcdir)/drv_vmmc_lin.c'; fi`
--uninstall-info-am:
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-       list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
-       unique=`for i in $$list; do \
-           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-         done | \
--        $(AWK) '    { files[$$0] = 1; } \
--             END { for (i in files) print i; }'`; \
-+        $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+            END { if (nonempty) { for (i in files) print i; }; }'`; \
-       mkid -fID $$unique
- tags: TAGS
- TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
-               $(TAGS_FILES) $(LISP)
--      tags=; \
-+      set x; \
-       here=`pwd`; \
-       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
-       unique=`for i in $$list; do \
-           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-         done | \
--        $(AWK) '    { files[$$0] = 1; } \
--             END { for (i in files) print i; }'`; \
--      if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+        $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+            END { if (nonempty) { for (i in files) print i; }; }'`; \
-+      shift; \
-+      if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
-         test -n "$$unique" || unique=$$empty_fix; \
--        $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--          $$tags $$unique; \
-+        if test $$# -gt 0; then \
-+          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+            "$$@" $$unique; \
-+        else \
-+          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+            $$unique; \
-+        fi; \
-       fi
- ctags: CTAGS
- CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
-               $(TAGS_FILES) $(LISP)
--      tags=; \
--      here=`pwd`; \
-       list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
-       unique=`for i in $$list; do \
-           if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-         done | \
--        $(AWK) '    { files[$$0] = 1; } \
--             END { for (i in files) print i; }'`; \
--      test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+        $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+            END { if (nonempty) { for (i in files) print i; }; }'`; \
-+      test -z "$(CTAGS_ARGS)$$unique" \
-         || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--           $$tags $$unique
-+           $$unique
- GTAGS:
-       here=`$(am__cd) $(top_builddir) && pwd` \
--        && cd $(top_srcdir) \
--        && gtags -i $(GTAGS_ARGS) $$here
-+        && $(am__cd) $(top_srcdir) \
-+        && gtags -i $(GTAGS_ARGS) "$$here"
- distclean-tags:
-       -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
- distdir: $(DISTFILES)
--      $(mkdir_p) $(distdir)/.. $(distdir)/../include $(distdir)/lib/lib_bbd/src $(distdir)/lib/lib_bufferpool $(distdir)/lib/lib_fifo $(distdir)/lib/lib_gr909 $(distdir)/mps
--      @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
--      topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
--      list='$(DISTFILES)'; for file in $$list; do \
--        case $$file in \
--          $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
--          $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
--        esac; \
-+      @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-+      topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-+      list='$(DISTFILES)'; \
-+        dist_files=`for file in $$list; do echo $$file; done | \
-+        sed -e "s|^$$srcdirstrip/||;t" \
-+            -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
-+      case $$dist_files in \
-+        */*) $(MKDIR_P) `echo "$$dist_files" | \
-+                         sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
-+                         sort -u` ;; \
-+      esac; \
-+      for file in $$dist_files; do \
-         if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
--        dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
--        if test "$$dir" != "$$file" && test "$$dir" != "."; then \
--          dir="/$$dir"; \
--          $(mkdir_p) "$(distdir)$$dir"; \
--        else \
--          dir=''; \
--        fi; \
-         if test -d $$d/$$file; then \
-+          dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+          if test -d "$(distdir)/$$file"; then \
-+            find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+          fi; \
-           if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--            cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+            cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+            find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-           fi; \
--          cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+          cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
-         else \
--          test -f $(distdir)/$$file \
--          || cp -p $$d/$$file $(distdir)/$$file \
-+          test -f "$(distdir)/$$file" \
-+          || cp -p $$d/$$file "$(distdir)/$$file" \
-           || exit 1; \
-         fi; \
-       done
-@@ -992,7 +1004,7 @@ check: check-am
- all-am: Makefile $(PROGRAMS)
- installdirs:
-       for dir in "$(DESTDIR)$(bindir)"; do \
--        test -z "$$dir" || $(mkdir_p) "$$dir"; \
-+        test -z "$$dir" || $(MKDIR_P) "$$dir"; \
-       done
- install: install-am
- install-exec: install-exec-am
-@@ -1014,6 +1026,7 @@ mostlyclean-generic:
- distclean-generic:
-       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+      -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- maintainer-clean-generic:
-       @echo "This command is intended for maintainers to use"
-@@ -1034,20 +1047,39 @@ dvi-am:
- html: html-am
-+html-am:
-+
- info: info-am
- info-am:
- install-data-am:
-+install-dvi: install-dvi-am
-+
-+install-dvi-am:
-+
- install-exec-am: install-binPROGRAMS
-       @$(NORMAL_INSTALL)
-       $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
-+install-html: install-html-am
-+
-+install-html-am:
- install-info: install-info-am
-+install-info-am:
-+
- install-man:
-+install-pdf: install-pdf-am
-+
-+install-pdf-am:
-+
-+install-ps: install-ps-am
-+
-+install-ps-am:
-+
- installcheck-am:
- maintainer-clean: maintainer-clean-am
-@@ -1067,19 +1099,22 @@ ps: ps-am
- ps-am:
--uninstall-am: uninstall-binPROGRAMS uninstall-info-am
-+uninstall-am: uninstall-binPROGRAMS
-+
-+.MAKE: install-am install-exec-am install-strip
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
-       clean-generic ctags distclean distclean-compile \
-       distclean-generic distclean-tags distdir dvi dvi-am html \
-       html-am info info-am install install-am install-binPROGRAMS \
--      install-data install-data-am install-exec install-exec-am \
--      install-exec-hook install-info install-info-am install-man \
-+      install-data install-data-am install-dvi install-dvi-am \
-+      install-exec install-exec-am install-exec-hook install-html \
-+      install-html-am install-info install-info-am install-man \
-+      install-pdf install-pdf-am install-ps install-ps-am \
-       install-strip installcheck installcheck-am installdirs \
-       maintainer-clean maintainer-clean-generic mostlyclean \
-       mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
--      tags uninstall uninstall-am uninstall-binPROGRAMS \
--      uninstall-info-am
-+      tags uninstall uninstall-am uninstall-binPROGRAMS
- lint:
-@@ -1097,7 +1132,7 @@ install-exec-hook: $(bin_PROGRAMS)
-       done
- @KERNEL_2_6_TRUE@drv_vmmc.ko: $(drv_vmmc_SOURCES) $(EXTRA_DIST)
--@KERNEL_2_6_TRUE@     @echo -e "Making Linux 2.6.x kernel object"
-+@KERNEL_2_6_TRUE@     @echo "Making Linux 2.6.x kernel object"
- @KERNEL_2_6_TRUE@     @for f in $(drv_vmmc_SOURCES) $(nodist_drv_vmmc_SOURCES) ; do \
- @KERNEL_2_6_TRUE@             if test ! -e $(PWD)/$$f; then \
- @KERNEL_2_6_TRUE@                     echo "  LN      $$f" ; \
-@@ -1105,10 +1140,10 @@ install-exec-hook: $(bin_PROGRAMS)
- @KERNEL_2_6_TRUE@                     ln -s @abs_srcdir@/$$f $(PWD)/$$f; \
- @KERNEL_2_6_TRUE@             fi; \
- @KERNEL_2_6_TRUE@     done;
--@KERNEL_2_6_TRUE@     @echo -e "# drv_vmmc: Generated to build Linux 2.6.x kernel object" > $(PWD)/Kbuild
--@KERNEL_2_6_TRUE@     @echo -e "obj-m := $(subst .ko,.o,$@)"                  >> $(PWD)/Kbuild
--@KERNEL_2_6_TRUE@     @echo -e "$(subst .ko,,$@)-y := $(drv_vmmc_OBJS)"       >> $(PWD)/Kbuild
--@KERNEL_2_6_TRUE@     @echo -e "EXTRA_CFLAGS := -DHAVE_CONFIG_H  $(CFLAGS) $(drv_vmmc_CFLAGS) $(INCLUDES)"    >> $(PWD)/Kbuild
-+@KERNEL_2_6_TRUE@     @echo "# drv_vmmc: Generated to build Linux 2.6.x kernel object" > $(PWD)/Kbuild
-+@KERNEL_2_6_TRUE@     @echo "obj-m := $(subst .ko,.o,$@)"                     >> $(PWD)/Kbuild
-+@KERNEL_2_6_TRUE@     @echo "$(subst .ko,,$@)-y := $(drv_vmmc_OBJS)"  >> $(PWD)/Kbuild
-+@KERNEL_2_6_TRUE@     @echo "EXTRA_CFLAGS := -DHAVE_CONFIG_H  $(CFLAGS) $(drv_vmmc_CFLAGS) $(INCLUDES)"       >> $(PWD)/Kbuild
- @KERNEL_2_6_TRUE@     $(MAKE) ARCH=@KERNEL_ARCH@ -C @KERNEL_BUILD_PATH@ O=@KERNEL_BUILD_PATH@ M=$(PWD) modules
- @KERNEL_2_6_TRUE@clean-generic:
-@@ -1117,6 +1152,7 @@ install-exec-hook: $(bin_PROGRAMS)
- @KERNEL_2_6_TRUE@     @- find . -name "*.o" | xargs rm -f
- @KERNEL_2_6_TRUE@     @- rm -f Module.symvers Kbuild
- @KERNEL_2_6_TRUE@     @- rm -rf .tmp_versions drv_vmmc.mod.c
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
 --- a/drv_version.h
 +++ b/drv_version.h
 @@ -36,6 +36,10 @@
  #define IFX_MPS_PLATFORM_NAME "MIPS24KEc"
 --- a/src/mps/drv_mps_vmmc_linux.c
 +++ b/src/mps/drv_mps_vmmc_linux.c
-@@ -55,6 +55,9 @@
- #include "drv_vmmc_init.h"
- #  include <lantiq.h>
- #  include <irq.h>
-+#  ifdef CONFIG_SOC_LANTIQ_FALCON
-+#    include <falcon_irq.h>
-+#  endif
- #else
- #  include <asm/ifx/irq.h>
- #  include <asm/ifx/ifx_regs.h>
-@@ -2197,7 +2200,7 @@ IFX_int32_t __init ifx_mps_init_module (
+@@ -2225,7 +2225,7 @@ IFX_int32_t __init ifx_mps_init_module (
  #if defined(CONFIG_MIPS) && !defined(CONFIG_MIPS_UNCACHED)
  #if defined(SYSTEM_DANUBE)
     bDoCacheOps = IFX_TRUE; /* on Danube always perform cache ops */
     /* on AR9/VR9 cache is configured by BSP;
        here we check whether the D-cache is shared or partitioned;
        1) in case of shared D-cache all cache operations are omitted;
-@@ -2227,6 +2230,7 @@ IFX_int32_t __init ifx_mps_init_module (
+@@ -2255,7 +2255,8 @@ IFX_int32_t __init ifx_mps_init_module (
  
     /* reset the device before initializing the device driver */
     ifx_mps_reset ();
+-   result = request_irq (INT_NUM_IM4_IRL18,
 +
-    result = request_irq (INT_NUM_IM4_IRL18,
++  result = request_irq (INT_NUM_IM4_IRL18,
  #ifdef LINUX_2_6
                           ifx_mps_ad0_irq, IRQF_DISABLED
+ #else /* */
+@@ -2396,7 +2397,7 @@ IFX_int32_t __init ifx_mps_init_module (
+    if (result = ifx_mps_init_gpt_danube ())
+       return result;
+ #endif /*DANUBE*/
+-      TRACE (MPS, DBG_LEVEL_HIGH, ("Downloading Firmware...\n"));
++   TRACE (MPS, DBG_LEVEL_HIGH, ("Downloading Firmware...\n"));
+    ifx_mps_download_firmware (IFX_NULL, (mps_fw *) 0xa0a00000);
+    udelay (500);
+    TRACE (MPS, DBG_LEVEL_HIGH, ("Providing Buffers...\n"));
 --- /dev/null
 +++ b/src/mps/drv_mps_vmmc_falcon.c
 @@ -0,0 +1,463 @@
 +  this software module.
 +
 +****************************************************************************
-+   Module      : drv_mps_vmmc_ar9.c
-+   Description : This file contains the implementation of the AR9/VR9 specific
++   Module      : drv_mps_vmmc_falcon.c
++   Description : This file contains the implementation of the FALC-ON specific
 +                 driver functions.
 +*******************************************************************************/
 +
 +#endif /* SYSTEM_FALCON */
 --- a/src/mps/drv_mps_vmmc_common.c
 +++ b/src/mps/drv_mps_vmmc_common.c
-@@ -67,6 +67,10 @@ static void inline bsp_mask_and_ack_irq(
+@@ -66,6 +66,10 @@ static void inline bsp_mask_and_ack_irq(
  #  include <asm/ifx/ifx_regs.h>
  #  include <asm/ifx/ifx_gptu.h>
  #endif
  
  #include "drv_mps_vmmc.h"
  #include "drv_mps_vmmc_dbg.h"
-@@ -1157,7 +1161,12 @@ IFX_uint32_t ifx_mps_init_structures (mp
+@@ -1156,7 +1160,12 @@ IFX_uint32_t ifx_mps_init_structures (mp
        mailbox, * upstream and downstream direction. */
     memset (
        /* avoid to overwrite CPU boot registers */
             0,
             sizeof (mps_mbx_reg) - 2 * sizeof (mps_boot_cfg_reg));
     MBX_Memory->MBX_UPSTR_CMD_BASE =
-@@ -2670,6 +2679,7 @@ IFX_void_t ifx_mps_disable_mailbox_int (
+@@ -2651,7 +2660,6 @@ IFX_void_t ifx_mps_enable_mailbox_int ()
+ #endif
+    *IFX_MPS_AD0ENR = Ad0Reg.val;
+-
+ }
+ /**
+@@ -2669,6 +2677,7 @@ IFX_void_t ifx_mps_disable_mailbox_int (
     Ad0Reg.fld.cu_mbx = 0;
     Ad0Reg.fld.du_mbx = 0;
     *IFX_MPS_AD0ENR = Ad0Reg.val;
  }
  
  /**
-@@ -2767,11 +2777,13 @@ irqreturn_t ifx_mps_ad0_irq (IFX_int32_t
+@@ -2766,11 +2775,13 @@ irqreturn_t ifx_mps_ad0_irq (IFX_int32_t
     /* handle only enabled interrupts */
     MPS_Ad0StatusReg.val &= *IFX_MPS_AD0ENR;
  
     /* FW is up and ready to process commands */
     if (MPS_Ad0StatusReg.fld.dl_end)
     {
-@@ -2920,11 +2932,13 @@ irqreturn_t ifx_mps_ad1_irq (IFX_int32_t
+@@ -2919,11 +2930,13 @@ irqreturn_t ifx_mps_ad1_irq (IFX_int32_t
     /* handle only enabled interrupts */
     MPS_Ad1StatusReg.val &= *IFX_MPS_AD1ENR;
  
     pMPSDev->event.MPS_Ad1Reg.val = MPS_Ad1StatusReg.val;
  
     /* use callback function or queue wake up to notify about data reception */
-@@ -2978,11 +2992,13 @@ irqreturn_t ifx_mps_vc_irq (IFX_int32_t 
+@@ -2977,11 +2990,13 @@ irqreturn_t ifx_mps_vc_irq (IFX_int32_t 
     IFX_MPS_CVC0SR[chan] = MPS_VCStatusReg.val;
     /* handle only enabled interrupts */
     MPS_VCStatusReg.val &= IFX_MPS_VC0ENR[chan];
  
     pMPSDev->event.MPS_VCStatReg[chan].val = MPS_VCStatusReg.val;
  #ifdef PRINT_ON_ERR_INTERRUPT
-@@ -3127,6 +3143,7 @@ IFX_int32_t ifx_mps_get_fw_version (IFX_
+@@ -3126,6 +3141,7 @@ IFX_int32_t ifx_mps_get_fw_version (IFX_
   */
  IFX_return_t ifx_mps_init_gpt ()
  {
     unsigned long flags;
     IFX_uint32_t timer_flags, timer, loops = 0;
     IFX_ulong_t count;
-@@ -3135,7 +3152,11 @@ IFX_return_t ifx_mps_init_gpt ()
+@@ -3134,7 +3150,11 @@ IFX_return_t ifx_mps_init_gpt ()
  #else /* Danube */
     timer = TIMER1B;
  #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
     /* calibration loop - required to syncronize GPTC interrupt with falling
        edge of FSC clock */
     timer_flags =
-@@ -3180,7 +3201,7 @@ Probably already in use.\r\n", __FILE__,
+@@ -3179,7 +3199,7 @@ Probably already in use.\r\n", __FILE__,
  #endif /* DEBUG */
  
     IFXOS_UNLOCKINT (flags);
     return IFX_SUCCESS;
  }
  
-@@ -3195,6 +3216,9 @@ Probably already in use.\r\n", __FILE__,
+@@ -3194,6 +3214,9 @@ Probably already in use.\r\n", __FILE__,
   */
  IFX_void_t ifx_mps_shutdown_gpt (IFX_void_t)
  {
     IFX_uint32_t timer;
  #if defined(SYSTEM_AR9) || defined(SYSTEM_VR9)
     timer = TIMER1A;
-@@ -3203,6 +3227,7 @@ IFX_void_t ifx_mps_shutdown_gpt (IFX_voi
+@@ -3202,6 +3225,7 @@ IFX_void_t ifx_mps_shutdown_gpt (IFX_voi
  #endif /* SYSTEM_AR9 || SYSTEM_VR9 */
  
     ifx_gptu_timer_free (timer);
  /**
 --- a/src/mps/drv_mps_vmmc_device.h
 +++ b/src/mps/drv_mps_vmmc_device.h
-@@ -73,10 +73,11 @@
+@@ -22,7 +22,12 @@
+ #  include <lantiq_soc.h>
+ #  include <gpio.h>
+ #define IFXMIPS_MPS_SRAM              ((u32 *)(KSEG1 + 0x1F200000))
++#if defined(SYSTEM_FALCON)
++#define IFXMIPS_MPS_BASE_ADDR         (KSEG1 + 0x1D004000)
++#else
+ #define IFXMIPS_MPS_BASE_ADDR         (KSEG1 + 0x1F107000)
++#endif
++
+ #define IFXMIPS_MPS_CHIPID            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0344))
+ #define IFXMIPS_MPS_VC0ENR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0000))
+ #define IFXMIPS_MPS_RVC0SR            ((u32 *)(IFXMIPS_MPS_BASE_ADDR + 0x0010))
+@@ -73,10 +78,11 @@
  /* MPS Common defines            */
  /* ============================= */
  
  #define VCPU_BASEADDRESS 0xBF208000     /* 0xBF108000 */
  /*---------------------------------------------------------------------------*/
  #if !defined(CONFIG_LANTIQ)
-@@ -118,7 +119,6 @@
+@@ -118,7 +124,6 @@
  /*---------------------------------------------------------------------------*/
  
  #ifdef CONFIG_MPS_EVENT_MBX
  #define MBX_CMD_FIFO_SIZE  64 /**< Size of command FIFO in bytes */
  #define MBX_DATA_UPSTRM_FIFO_SIZE 64
  #define MBX_DATA_DNSTRM_FIFO_SIZE 128
-@@ -294,6 +294,10 @@ typedef struct
+@@ -294,6 +299,10 @@ typedef struct
  #ifdef CONFIG_MPS_EVENT_MBX
  typedef struct
  {
     volatile IFX_uint32_t *MBX_UPSTR_CMD_BASE;  /**< Upstream Command FIFO Base Address */
     volatile IFX_uint32_t MBX_UPSTR_CMD_SIZE;   /**< Upstream Command FIFO size in byte */
     volatile IFX_uint32_t *MBX_DNSTR_CMD_BASE;  /**< Downstream Command FIFO Base Address */
-@@ -317,13 +321,19 @@ typedef struct
+@@ -317,13 +326,19 @@ typedef struct
     volatile IFX_uint32_t MBX_UPSTR_EVENT_WRITE; /**< Upstream Event FIFO Write Index */
     volatile IFX_uint32_t MBX_EVENT[MBX_EVENT_DATA_WORDS];
     volatile IFX_uint32_t reserved[4];
     volatile IFX_uint32_t *MBX_UPSTR_CMD_BASE;  /**< Upstream Command FIFO Base Address */
     volatile IFX_uint32_t MBX_UPSTR_CMD_SIZE;   /**< Upstream Command FIFO size in byte */
     volatile IFX_uint32_t *MBX_DNSTR_CMD_BASE;  /**< Downstream Command FIFO Base Address */
-@@ -341,8 +351,10 @@ typedef struct
+@@ -341,8 +356,10 @@ typedef struct
     volatile IFX_uint32_t MBX_DNSTR_DATA_READ;   /**< Downstream Data FIFO Read Index */
     volatile IFX_uint32_t MBX_DNSTR_DATA_WRITE;  /**< Downstream Data FIFO Write Index */
     volatile IFX_uint32_t MBX_DATA[MBX_DATA_WORDS];
  } mps_mbx_reg;
  #endif /* CONFIG_MPS_EVENT_MBX */
  
---- a/configure
-+++ b/configure
-@@ -1,85 +1,426 @@
- #! /bin/sh
- # Guess values for system-dependent variables and create Makefiles.
--# Generated by GNU Autoconf 2.59 for VMMC Device Driver 1.9.0.
-+# Generated by GNU Autoconf 2.68 for VMMC Device Driver 1.9.0.
- #
- # Copyright (C) 2009, Lantiq Deutschland GmbH
- # For licensing information please see the file 'LICENSE' in the root folder of
- # this software module.
- #
--# Copyright (C) 2003 Free Software Foundation, Inc.
-+#
-+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-+# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
-+# Foundation, Inc.
-+#
-+#
- # This configure script is free software; the Free Software Foundation
- # gives unlimited permission to copy, distribute and modify it.
--## --------------------- ##
--## M4sh Initialization.  ##
--## --------------------- ##
-+## -------------------- ##
-+## M4sh Initialization. ##
-+## -------------------- ##
--# Be Bourne compatible
--if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
-   emulate sh
-   NULLCMD=:
--  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
-   # is contrary to our usage.  Disable this feature.
-   alias -g '${1+"$@"}'='"$@"'
--elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
--  set -o posix
-+  setopt NO_GLOB_SUBST
-+else
-+  case `(set -o) 2>/dev/null` in #(
-+  *posix*) :
-+    set -o posix ;; #(
-+  *) :
-+     ;;
-+esac
- fi
--DUALCASE=1; export DUALCASE # for MKS sh
--# Support unset when possible.
--if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
--  as_unset=unset
--else
--  as_unset=false
-+
-+as_nl='
-+'
-+export as_nl
-+# Printing a long string crashes Solaris 7 /usr/bin/printf.
-+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-+# Prefer a ksh shell builtin over an external printf program on Solaris,
-+# but without wasting forks for bash or zsh.
-+if test -z "$BASH_VERSION$ZSH_VERSION" \
-+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
-+  as_echo='print -r --'
-+  as_echo_n='print -rn --'
-+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
-+  as_echo='printf %s\n'
-+  as_echo_n='printf %s'
-+else
-+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
-+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
-+    as_echo_n='/usr/ucb/echo -n'
-+  else
-+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
-+    as_echo_n_body='eval
-+      arg=$1;
-+      case $arg in #(
-+      *"$as_nl"*)
-+      expr "X$arg" : "X\\(.*\\)$as_nl";
-+      arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
-+      esac;
-+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
-+    '
-+    export as_echo_n_body
-+    as_echo_n='sh -c $as_echo_n_body as_echo'
-+  fi
-+  export as_echo_body
-+  as_echo='sh -c $as_echo_body as_echo'
-+fi
-+
-+# The user is always right.
-+if test "${PATH_SEPARATOR+set}" != set; then
-+  PATH_SEPARATOR=:
-+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
-+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
-+      PATH_SEPARATOR=';'
-+  }
- fi
--# Work around bugs in pre-3.0 UWIN ksh.
--$as_unset ENV MAIL MAILPATH
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+IFS=" ""      $as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+as_myself=
-+case $0 in #((
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+  done
-+IFS=$as_save_IFS
-+
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  exit 1
-+fi
-+
-+# Unset variables that we do not need and which cause bugs (e.g. in
-+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
-+# suppresses any "Segmentation fault" message there.  '((' could
-+# trigger a bug in pdksh 5.2.14.
-+for as_var in BASH_ENV ENV MAIL MAILPATH
-+do eval test x\${$as_var+set} = xset \
-+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-+done
- PS1='$ '
- PS2='> '
- PS4='+ '
- # NLS nuisances.
--for as_var in \
--  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
--  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
--  LC_TELEPHONE LC_TIME
-+LC_ALL=C
-+export LC_ALL
-+LANGUAGE=C
-+export LANGUAGE
-+
-+# CDPATH.
-+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-+
-+if test "x$CONFIG_SHELL" = x; then
-+  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
-+  emulate sh
-+  NULLCMD=:
-+  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
-+  # is contrary to our usage.  Disable this feature.
-+  alias -g '\${1+\"\$@\"}'='\"\$@\"'
-+  setopt NO_GLOB_SUBST
-+else
-+  case \`(set -o) 2>/dev/null\` in #(
-+  *posix*) :
-+    set -o posix ;; #(
-+  *) :
-+     ;;
-+esac
-+fi
-+"
-+  as_required="as_fn_return () { (exit \$1); }
-+as_fn_success () { as_fn_return 0; }
-+as_fn_failure () { as_fn_return 1; }
-+as_fn_ret_success () { return 0; }
-+as_fn_ret_failure () { return 1; }
-+
-+exitcode=0
-+as_fn_success || { exitcode=1; echo as_fn_success failed.; }
-+as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
-+as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
-+as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
-+if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
-+
-+else
-+  exitcode=1; echo positional parameters were not saved.
-+fi
-+test x\$exitcode = x0 || exit 1"
-+  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
-+  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
-+  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
-+  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
-+  if (eval "$as_required") 2>/dev/null; then :
-+  as_have_required=yes
-+else
-+  as_have_required=no
-+fi
-+  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
-+
-+else
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+as_found=false
-+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
- do
--  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
--    eval $as_var=C; export $as_var
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+  as_found=:
-+  case $as_dir in #(
-+       /*)
-+         for as_base in sh bash ksh sh5; do
-+           # Try only shells that exist, to save several forks.
-+           as_shell=$as_dir/$as_base
-+           if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
-+                  { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
-+  CONFIG_SHELL=$as_shell as_have_required=yes
-+                 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
-+  break 2
-+fi
-+fi
-+         done;;
-+       esac
-+  as_found=false
-+done
-+$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
-+            { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
-+  CONFIG_SHELL=$SHELL as_have_required=yes
-+fi; }
-+IFS=$as_save_IFS
-+
-+
-+      if test "x$CONFIG_SHELL" != x; then :
-+  # We cannot yet assume a decent shell, so we have to provide a
-+      # neutralization value for shells without unset; and this also
-+      # works around shells that cannot unset nonexistent variables.
-+      # Preserve -v and -x to the replacement shell.
-+      BASH_ENV=/dev/null
-+      ENV=/dev/null
-+      (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
-+      export CONFIG_SHELL
-+      case $- in # ((((
-+        *v*x* | *x*v* ) as_opts=-vx ;;
-+        *v* ) as_opts=-v ;;
-+        *x* ) as_opts=-x ;;
-+        * ) as_opts= ;;
-+      esac
-+      exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
-+fi
-+
-+    if test x$as_have_required = xno; then :
-+  $as_echo "$0: This script requires a shell more modern than all"
-+  $as_echo "$0: the shells that I found on your system."
-+  if test x${ZSH_VERSION+set} = xset ; then
-+    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
-+    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
-   else
--    $as_unset $as_var
-+    $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
-+$0: including any error possibly output before this
-+$0: message. Then install a modern shell, or manually run
-+$0: the script under such a shell if you do have one."
-   fi
--done
-+  exit 1
-+fi
-+fi
-+fi
-+SHELL=${CONFIG_SHELL-/bin/sh}
-+export SHELL
-+# Unset more variables known to interfere with behavior of common tools.
-+CLICOLOR_FORCE= GREP_OPTIONS=
-+unset CLICOLOR_FORCE GREP_OPTIONS
-+
-+## --------------------- ##
-+## M4sh Shell Functions. ##
-+## --------------------- ##
-+# as_fn_unset VAR
-+# ---------------
-+# Portably unset VAR.
-+as_fn_unset ()
-+{
-+  { eval $1=; unset $1;}
-+}
-+as_unset=as_fn_unset
-+
-+# as_fn_set_status STATUS
-+# -----------------------
-+# Set $? to STATUS, without forking.
-+as_fn_set_status ()
-+{
-+  return $1
-+} # as_fn_set_status
-+
-+# as_fn_exit STATUS
-+# -----------------
-+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-+as_fn_exit ()
-+{
-+  set +e
-+  as_fn_set_status $1
-+  exit $1
-+} # as_fn_exit
-+
-+# as_fn_mkdir_p
-+# -------------
-+# Create "$as_dir" as a directory, including parents if necessary.
-+as_fn_mkdir_p ()
-+{
-+
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || eval $as_mkdir_p || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+       X"$as_dir" : 'X\(//\)[^/]' \| \
-+       X"$as_dir" : 'X\(//\)$' \| \
-+       X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
-+
-+
-+} # as_fn_mkdir_p
-+# as_fn_append VAR VALUE
-+# ----------------------
-+# Append the text in VALUE to the end of the definition contained in VAR. Take
-+# advantage of any shell optimizations that allow amortized linear growth over
-+# repeated appends, instead of the typical quadratic growth present in naive
-+# implementations.
-+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
-+  eval 'as_fn_append ()
-+  {
-+    eval $1+=\$2
-+  }'
-+else
-+  as_fn_append ()
-+  {
-+    eval $1=\$$1\$2
-+  }
-+fi # as_fn_append
-+
-+# as_fn_arith ARG...
-+# ------------------
-+# Perform arithmetic evaluation on the ARGs, and store the result in the
-+# global $as_val. Take advantage of shells that can avoid forks. The arguments
-+# must be portable across $(()) and expr.
-+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
-+  eval 'as_fn_arith ()
-+  {
-+    as_val=$(( $* ))
-+  }'
-+else
-+  as_fn_arith ()
-+  {
-+    as_val=`expr "$@" || test $? -eq 1`
-+  }
-+fi # as_fn_arith
--# Required to use basename.
--if expr a : '\(a\)' >/dev/null 2>&1; then
-+
-+# as_fn_error STATUS ERROR [LINENO LOG_FD]
-+# ----------------------------------------
-+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-+# script with STATUS, using 1 if that was 0.
-+as_fn_error ()
-+{
-+  as_status=$1; test $as_status -eq 0 && as_status=1
-+  if test "$4"; then
-+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
-+  fi
-+  $as_echo "$as_me: error: $2" >&2
-+  as_fn_exit $as_status
-+} # as_fn_error
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-   as_expr=expr
- else
-   as_expr=false
- fi
--if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-   as_basename=basename
- else
-   as_basename=false
- fi
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
--# Name of the executable.
--as_me=`$as_basename "$0" ||
-+as_me=`$as_basename -- "$0" ||
- $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-        X"$0" : 'X\(//\)$' \| \
--       X"$0" : 'X\(/\)$' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X/"$0" |
--    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
--        /^X\/\(\/\/\)$/{ s//\1/; q; }
--        /^X\/\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--
-+       X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\/\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\/\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
--# PATH needs CR, and LINENO needs CR and PATH.
- # Avoid depending upon Character Ranges.
- as_cr_letters='abcdefghijklmnopqrstuvwxyz'
- as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-@@ -87,146 +428,107 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTE
- as_cr_digits='0123456789'
- as_cr_alnum=$as_cr_Letters$as_cr_digits
--# The user is always right.
--if test "${PATH_SEPARATOR+set}" != set; then
--  echo "#! /bin/sh" >conf$$.sh
--  echo  "exit 0"   >>conf$$.sh
--  chmod +x conf$$.sh
--  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
--    PATH_SEPARATOR=';'
--  else
--    PATH_SEPARATOR=:
--  fi
--  rm -f conf$$.sh
--fi
--
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
--  # Find who we are.  Look in the path if we contain no path at all
--  # relative or not.
--  case $0 in
--    *[\\/]* ) as_myself=$0 ;;
--    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH
--do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
--done
--
--       ;;
--  esac
--  # We did not find ourselves, most probably we were run as `sh COMMAND'
--  # in which case we are not to be found in the path.
--  if test "x$as_myself" = x; then
--    as_myself=$0
--  fi
--  if test ! -f "$as_myself"; then
--    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
--   { (exit 1); exit 1; }; }
--  fi
--  case $CONFIG_SHELL in
--  '')
--    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
--do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for as_base in sh bash ksh sh5; do
--       case $as_dir in
--       /*)
--         if ("$as_dir/$as_base" -c '
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
--           $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
--           $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
--           CONFIG_SHELL=$as_dir/$as_base
--           export CONFIG_SHELL
--           exec "$CONFIG_SHELL" "$0" ${1+"$@"}
--         fi;;
--       esac
--       done
--done
--;;
--  esac
--
--  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
--  # uniformly replaced by the line number.  The first 'sed' inserts a
--  # line-number line before each line; the second 'sed' does the real
--  # work.  The second script uses 'N' to pair each line-number line
--  # with the numbered line, and appends trailing '-' during
--  # substitution so that $LINENO is not a special case at line end.
--  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
--  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
--  sed '=' <$as_myself |
-+  as_lineno_1=$LINENO as_lineno_1a=$LINENO
-+  as_lineno_2=$LINENO as_lineno_2a=$LINENO
-+  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
-+  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
-+  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
-+  sed -n '
-+    p
-+    /[$]LINENO/=
-+  ' <$as_myself |
-     sed '
-+      s/[$]LINENO.*/&-/
-+      t lineno
-+      b
-+      :lineno
-       N
--      s,$,-,
--      : loop
--      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
-+      :loop
-+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
-       t loop
--      s,-$,,
--      s,^['$as_cr_digits']*\n,,
-+      s/-\n.*//
-     ' >$as_me.lineno &&
--  chmod +x $as_me.lineno ||
--    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
--   { (exit 1); exit 1; }; }
-+  chmod +x "$as_me.lineno" ||
-+    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
-   # Don't try to exec as it changes $[0], causing all sort of problems
-   # (the dirname of $[0] is not the place where we might find the
--  # original and so on.  Autoconf is especially sensible to this).
--  . ./$as_me.lineno
-+  # original and so on.  Autoconf is especially sensitive to this).
-+  . "./$as_me.lineno"
-   # Exit status is that of the last command.
-   exit
- }
--
--case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
--  *c*,-n*) ECHO_N= ECHO_C='
--' ECHO_T='    ' ;;
--  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
--  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in #(((((
-+-n*)
-+  case `echo 'xy\c'` in
-+  *c*) ECHO_T='       ';;     # ECHO_T is single tab character.
-+  xy)  ECHO_C='\c';;
-+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
-+       ECHO_T='       ';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
- esac
--if expr a : '\(a\)' >/dev/null 2>&1; then
--  as_expr=expr
-+rm -f conf$$ conf$$.exe conf$$.file
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
- else
--  as_expr=false
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir 2>/dev/null
- fi
--
--rm -f conf$$ conf$$.exe conf$$.file
--echo >conf$$.file
--if ln -s conf$$.file conf$$ 2>/dev/null; then
--  # We could just check for DJGPP; but this test a) works b) is more generic
--  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
--  if test -f conf$$.exe; then
--    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-+if (echo >conf$$.file) 2>/dev/null; then
-+  if ln -s conf$$.file conf$$ 2>/dev/null; then
-     as_ln_s='ln -s'
-+    # ... but there are two gotchas:
-+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+    # In both cases, we have to default to `cp -p'.
-+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+      as_ln_s='cp -p'
-+  elif ln conf$$.file conf$$ 2>/dev/null; then
-+    as_ln_s=ln
-+  else
-+    as_ln_s='cp -p'
-   fi
--elif ln conf$$.file conf$$ 2>/dev/null; then
--  as_ln_s=ln
- else
-   as_ln_s='cp -p'
- fi
--rm -f conf$$ conf$$.exe conf$$.file
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
- if mkdir -p . 2>/dev/null; then
--  as_mkdir_p=:
-+  as_mkdir_p='mkdir -p "$as_dir"'
- else
-   test -d ./-p && rmdir ./-p
-   as_mkdir_p=false
- fi
--as_executable_p="test -f"
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+      test -d "$1/.";
-+      else
-+      case $1 in #(
-+      -*)set "./$1";;
-+      esac;
-+      case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
-+      ???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
- # Sed expression to map a string onto a valid CPP name.
- as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -235,38 +537,25 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P
- as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
--# IFS
--# We need space, tab and new line, in precisely that order.
--as_nl='
--'
--IFS="         $as_nl"
--
--# CDPATH.
--$as_unset CDPATH
--
-+test -n "$DJDIR" || exec 7<&0 </dev/null
-+exec 6>&1
- # Name of the host.
--# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
-+# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
- # so uname gets run too.
- ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
--exec 6>&1
--
- #
- # Initializations.
- #
- ac_default_prefix=/usr/local
-+ac_clean_files=
- ac_config_libobj_dir=.
-+LIBOBJS=
- cross_compiling=no
- subdirs=
- MFLAGS=
- MAKEFLAGS=
--SHELL=${CONFIG_SHELL-/bin/sh}
--
--# Maximum number of lines to put in a shell here document.
--# This variable seems obsolete.  It should probably be removed, and
--# only ac_max_sed_lines should be used.
--: ${ac_max_here_lines=38}
- # Identity of this package.
- PACKAGE_NAME='VMMC Device Driver'
-@@ -274,14 +563,206 @@ PACKAGE_TARNAME='drv_vmmc'
- PACKAGE_VERSION='1.9.0'
- PACKAGE_STRING='VMMC Device Driver 1.9.0'
- PACKAGE_BUGREPORT=''
-+PACKAGE_URL=''
- ac_unique_file="src/drv_vmmc_int.c"
--ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CONFIGURE_OPTIONS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE KERNEL_2_6_TRUE KERNEL_2_6_FALSE KERNEL_ARCH KERNEL_INCL_PATH KERNEL_BUILD_PATH IFXOS_INCL_PATH ENABLE_OBSOLETE_PREMAPPING_TRUE ENABLE_OBSOLETE_PREMAPPING_FALSE WARNINGS_TRUE WARNINGS_FALSE DEBUG_TRUE DEBUG_FALSE HL_TAPI_INCL_PATH_SET_TRUE HL_TAPI_INCL_PATH_SET_FALSE HL_TAPI_INCL_PATH MPS_INCL_PATH_SET_TRUE MPS_INCL_PATH_SET_FALSE MPS_INCL_PATH EVALUATION_TRUE EVALUATION_FALSE USE_MODULE_TRUE USE_MODULE_FALSE USE_BUFFERPOOL_TRUE USE_BUFFERPOOL_FALSE TAPI_TRUE TAPI_FALSE IPP_EVAL_SYSTEM_PARAMETERS_TRUE IPP_EVAL_SYSTEM_PARAMETERS_FALSE EVENT_LOGGER_DEBUG_TRUE EVENT_LOGGER_DEBUG_FALSE KPI_SUPPORT_TRUE KPI_SUPPORT_FALSE DECT_SUPPORT_TRUE DECT_SUPPORT_FALSE LIN_SUPPORT_TRUE LIN_SUPPORT_FALSE PMU_SUPPORT_TRUE PMU_SUPPORT_FALSE PMC_SUPPORT_TRUE PMC_SUPPORT_FALSE DANUBE_TRUE DANUBE_FALSE AR9_TRUE AR9_FALSE VR9_TRUE VR9_FALSE VMMC_WITH_MPS_TRUE VMMC_WITH_MPS_FALSE LIBOBJS LTLIBOBJS'
-+ac_subst_vars='am__EXEEXT_FALSE
-+am__EXEEXT_TRUE
-+LTLIBOBJS
-+LIBOBJS
-+VMMC_WITH_MPS_FALSE
-+VMMC_WITH_MPS_TRUE
-+FALCON_FALSE
-+FALCON_TRUE
-+VR9_FALSE
-+VR9_TRUE
-+AR9_FALSE
-+AR9_TRUE
-+DANUBE_FALSE
-+DANUBE_TRUE
-+PMC_SUPPORT_FALSE
-+PMC_SUPPORT_TRUE
-+PMU_SUPPORT_FALSE
-+PMU_SUPPORT_TRUE
-+LIN_SUPPORT_FALSE
-+LIN_SUPPORT_TRUE
-+DECT_SUPPORT_FALSE
-+DECT_SUPPORT_TRUE
-+KPI_SUPPORT_FALSE
-+KPI_SUPPORT_TRUE
-+EVENT_LOGGER_DEBUG_FALSE
-+EVENT_LOGGER_DEBUG_TRUE
-+IPP_EVAL_SYSTEM_PARAMETERS_FALSE
-+IPP_EVAL_SYSTEM_PARAMETERS_TRUE
-+TAPI_FALSE
-+TAPI_TRUE
-+USE_BUFFERPOOL_FALSE
-+USE_BUFFERPOOL_TRUE
-+USE_MODULE_FALSE
-+USE_MODULE_TRUE
-+EVALUATION_FALSE
-+EVALUATION_TRUE
-+MPS_INCL_PATH
-+MPS_INCL_PATH_SET_FALSE
-+MPS_INCL_PATH_SET_TRUE
-+HL_TAPI_INCL_PATH
-+HL_TAPI_INCL_PATH_SET_FALSE
-+HL_TAPI_INCL_PATH_SET_TRUE
-+DEBUG_FALSE
-+DEBUG_TRUE
-+WARNINGS_FALSE
-+WARNINGS_TRUE
-+ENABLE_OBSOLETE_PREMAPPING_FALSE
-+ENABLE_OBSOLETE_PREMAPPING_TRUE
-+IFXOS_INCL_PATH
-+KERNEL_BUILD_PATH
-+KERNEL_INCL_PATH
-+KERNEL_ARCH
-+KERNEL_2_6_FALSE
-+KERNEL_2_6_TRUE
-+am__fastdepCC_FALSE
-+am__fastdepCC_TRUE
-+CCDEPMODE
-+AMDEPBACKSLASH
-+AMDEP_FALSE
-+AMDEP_TRUE
-+am__quote
-+am__include
-+DEPDIR
-+OBJEXT
-+EXEEXT
-+ac_ct_CC
-+CPPFLAGS
-+LDFLAGS
-+CFLAGS
-+CC
-+CONFIGURE_OPTIONS
-+am__untar
-+am__tar
-+AMTAR
-+am__leading_dot
-+SET_MAKE
-+AWK
-+mkdir_p
-+MKDIR_P
-+INSTALL_STRIP_PROGRAM
-+STRIP
-+install_sh
-+MAKEINFO
-+AUTOHEADER
-+AUTOMAKE
-+AUTOCONF
-+ACLOCAL
-+VERSION
-+PACKAGE
-+CYGPATH_W
-+am__isrc
-+INSTALL_DATA
-+INSTALL_SCRIPT
-+INSTALL_PROGRAM
-+target_alias
-+host_alias
-+build_alias
-+LIBS
-+ECHO_T
-+ECHO_N
-+ECHO_C
-+DEFS
-+mandir
-+localedir
-+libdir
-+psdir
-+pdfdir
-+dvidir
-+htmldir
-+infodir
-+docdir
-+oldincludedir
-+includedir
-+localstatedir
-+sharedstatedir
-+sysconfdir
-+datadir
-+datarootdir
-+libexecdir
-+sbindir
-+bindir
-+program_transform_name
-+prefix
-+exec_prefix
-+PACKAGE_URL
-+PACKAGE_BUGREPORT
-+PACKAGE_STRING
-+PACKAGE_VERSION
-+PACKAGE_TARNAME
-+PACKAGE_NAME
-+PATH_SEPARATOR
-+SHELL'
- ac_subst_files=''
-+ac_user_opts='
-+enable_option_checking
-+enable_dependency_tracking
-+enable_linux_26
-+enable_kernelincl
-+enable_kernelbuild
-+with_ifxos_incl
-+enable_ifxos_incl
-+enable_obsolete_premapping
-+enable_warnings
-+enable_debug
-+enable_proc
-+enable_user_config
-+enable_tapiincl
-+enable_mpsincl
-+with_max_devices
-+enable_eval
-+enable_trace
-+enable_module
-+enable_bufferhandling
-+enable_packet_owner_id
-+enable_lt
-+enable_hdlc
-+enable_hdlc_idle_patt
-+enable_voice
-+enable_dtmf
-+enable_cid
-+enable_fax
-+enable_t38
-+enable_cont_measurement
-+enable_phone_detection
-+enable_audio
-+enable_ipp_eval_system
-+enable_el_debug
-+enable_alm
-+enable_kpi
-+enable_dect
-+enable_dect_nibble_swap
-+enable_lin
-+enable_pmu
-+enable_pmc
-+enable_calibration
-+enable_history_buf
-+enable_announcements
-+enable_fxo_act
-+with_device
-+with_cflags
-+with_mps
-+'
-+      ac_precious_vars='build_alias
-+host_alias
-+target_alias
-+CC
-+CFLAGS
-+LDFLAGS
-+LIBS
-+CPPFLAGS'
-+
- # Initialize some variables set by options.
- ac_init_help=
- ac_init_version=false
-+ac_unrecognized_opts=
-+ac_unrecognized_sep=
- # The variables have the same names as the options, with
- # dashes changed to underlines.
- cache_file=/dev/null
-@@ -304,34 +785,49 @@ x_libraries=NONE
- # and all the variables that are supposed to be based on exec_prefix
- # by default will actually change.
- # Use braces instead of parens because sh, perl, etc. also accept them.
-+# (The list follows the same order as the GNU Coding Standards.)
- bindir='${exec_prefix}/bin'
- sbindir='${exec_prefix}/sbin'
- libexecdir='${exec_prefix}/libexec'
--datadir='${prefix}/share'
-+datarootdir='${prefix}/share'
-+datadir='${datarootdir}'
- sysconfdir='${prefix}/etc'
- sharedstatedir='${prefix}/com'
- localstatedir='${prefix}/var'
--libdir='${exec_prefix}/lib'
- includedir='${prefix}/include'
- oldincludedir='/usr/include'
--infodir='${prefix}/info'
--mandir='${prefix}/man'
-+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
-+infodir='${datarootdir}/info'
-+htmldir='${docdir}'
-+dvidir='${docdir}'
-+pdfdir='${docdir}'
-+psdir='${docdir}'
-+libdir='${exec_prefix}/lib'
-+localedir='${datarootdir}/locale'
-+mandir='${datarootdir}/man'
- ac_prev=
-+ac_dashdash=
- for ac_option
- do
-   # If the previous option needs an argument, assign it.
-   if test -n "$ac_prev"; then
--    eval "$ac_prev=\$ac_option"
-+    eval $ac_prev=\$ac_option
-     ac_prev=
-     continue
-   fi
--  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
-+  case $ac_option in
-+  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
-+  *=)   ac_optarg= ;;
-+  *)    ac_optarg=yes ;;
-+  esac
-   # Accept the important Cygnus configure options, so we can diagnose typos.
--  case $ac_option in
-+  case $ac_dashdash$ac_option in
-+  --)
-+    ac_dashdash=yes ;;
-   -bindir | --bindir | --bindi | --bind | --bin | --bi)
-     ac_prev=bindir ;;
-@@ -353,33 +849,59 @@ do
-   --config-cache | -C)
-     cache_file=config.cache ;;
--  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
-+  -datadir | --datadir | --datadi | --datad)
-     ac_prev=datadir ;;
--  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
--  | --da=*)
-+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
-     datadir=$ac_optarg ;;
-+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
-+  | --dataroo | --dataro | --datar)
-+    ac_prev=datarootdir ;;
-+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
-+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
-+    datarootdir=$ac_optarg ;;
-+
-   -disable-* | --disable-*)
--    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-+    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
-     # Reject names that are not valid shell variable names.
--    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
--      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
--   { (exit 1); exit 1; }; }
--    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
--    eval "enable_$ac_feature=no" ;;
-+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-+      as_fn_error $? "invalid feature name: $ac_useropt"
-+    ac_useropt_orig=$ac_useropt
-+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
-+    case $ac_user_opts in
-+      *"
-+"enable_$ac_useropt"
-+"*) ;;
-+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
-+       ac_unrecognized_sep=', ';;
-+    esac
-+    eval enable_$ac_useropt=no ;;
-+
-+  -docdir | --docdir | --docdi | --doc | --do)
-+    ac_prev=docdir ;;
-+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
-+    docdir=$ac_optarg ;;
-+
-+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
-+    ac_prev=dvidir ;;
-+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
-+    dvidir=$ac_optarg ;;
-   -enable-* | --enable-*)
--    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-+    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
-     # Reject names that are not valid shell variable names.
--    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
--      { echo "$as_me: error: invalid feature name: $ac_feature" >&2
--   { (exit 1); exit 1; }; }
--    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
--    case $ac_option in
--      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
--      *) ac_optarg=yes ;;
-+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-+      as_fn_error $? "invalid feature name: $ac_useropt"
-+    ac_useropt_orig=$ac_useropt
-+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
-+    case $ac_user_opts in
-+      *"
-+"enable_$ac_useropt"
-+"*) ;;
-+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
-+       ac_unrecognized_sep=', ';;
-     esac
--    eval "enable_$ac_feature='$ac_optarg'" ;;
-+    eval enable_$ac_useropt=\$ac_optarg ;;
-   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
-   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
-@@ -406,6 +928,12 @@ do
-   -host=* | --host=* | --hos=* | --ho=*)
-     host_alias=$ac_optarg ;;
-+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
-+    ac_prev=htmldir ;;
-+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
-+  | --ht=*)
-+    htmldir=$ac_optarg ;;
-+
-   -includedir | --includedir | --includedi | --included | --include \
-   | --includ | --inclu | --incl | --inc)
-     ac_prev=includedir ;;
-@@ -430,13 +958,16 @@ do
-   | --libexe=* | --libex=* | --libe=*)
-     libexecdir=$ac_optarg ;;
-+  -localedir | --localedir | --localedi | --localed | --locale)
-+    ac_prev=localedir ;;
-+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
-+    localedir=$ac_optarg ;;
-+
-   -localstatedir | --localstatedir | --localstatedi | --localstated \
--  | --localstate | --localstat | --localsta | --localst \
--  | --locals | --local | --loca | --loc | --lo)
-+  | --localstate | --localstat | --localsta | --localst | --locals)
-     ac_prev=localstatedir ;;
-   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
--  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
--  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
-+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
-     localstatedir=$ac_optarg ;;
-   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
-@@ -501,6 +1032,16 @@ do
-   | --progr-tra=* | --program-tr=* | --program-t=*)
-     program_transform_name=$ac_optarg ;;
-+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
-+    ac_prev=pdfdir ;;
-+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
-+    pdfdir=$ac_optarg ;;
-+
-+  -psdir | --psdir | --psdi | --psd | --ps)
-+    ac_prev=psdir ;;
-+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
-+    psdir=$ac_optarg ;;
-+
-   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-   | -silent | --silent | --silen | --sile | --sil)
-     silent=yes ;;
-@@ -551,26 +1092,36 @@ do
-     ac_init_version=: ;;
-   -with-* | --with-*)
--    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-+    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
-     # Reject names that are not valid shell variable names.
--    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
--      { echo "$as_me: error: invalid package name: $ac_package" >&2
--   { (exit 1); exit 1; }; }
--    ac_package=`echo $ac_package| sed 's/-/_/g'`
--    case $ac_option in
--      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
--      *) ac_optarg=yes ;;
-+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-+      as_fn_error $? "invalid package name: $ac_useropt"
-+    ac_useropt_orig=$ac_useropt
-+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
-+    case $ac_user_opts in
-+      *"
-+"with_$ac_useropt"
-+"*) ;;
-+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
-+       ac_unrecognized_sep=', ';;
-     esac
--    eval "with_$ac_package='$ac_optarg'" ;;
-+    eval with_$ac_useropt=\$ac_optarg ;;
-   -without-* | --without-*)
--    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-+    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
-     # Reject names that are not valid shell variable names.
--    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
--      { echo "$as_me: error: invalid package name: $ac_package" >&2
--   { (exit 1); exit 1; }; }
--    ac_package=`echo $ac_package | sed 's/-/_/g'`
--    eval "with_$ac_package=no" ;;
-+    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
-+      as_fn_error $? "invalid package name: $ac_useropt"
-+    ac_useropt_orig=$ac_useropt
-+    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
-+    case $ac_user_opts in
-+      *"
-+"with_$ac_useropt"
-+"*) ;;
-+      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
-+       ac_unrecognized_sep=', ';;
-+    esac
-+    eval with_$ac_useropt=no ;;
-   --x)
-     # Obsolete; use --with-x.
-@@ -590,27 +1141,26 @@ do
-   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
-     x_libraries=$ac_optarg ;;
--  -*) { echo "$as_me: error: unrecognized option: $ac_option
--Try \`$0 --help' for more information." >&2
--   { (exit 1); exit 1; }; }
-+  -*) as_fn_error $? "unrecognized option: \`$ac_option'
-+Try \`$0 --help' for more information"
-     ;;
-   *=*)
-     ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
-     # Reject names that are not valid shell variable names.
--    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
--      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
--   { (exit 1); exit 1; }; }
--    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
--    eval "$ac_envvar='$ac_optarg'"
-+    case $ac_envvar in #(
-+      '' | [0-9]* | *[!_$as_cr_alnum]* )
-+      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
-+    esac
-+    eval $ac_envvar=\$ac_optarg
-     export $ac_envvar ;;
-   *)
-     # FIXME: should be removed in autoconf 3.0.
--    echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-+    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
-     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
--      echo "$as_me: WARNING: invalid host type: $ac_option" >&2
--    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
-+      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
-+    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
-     ;;
-   esac
-@@ -618,31 +1168,36 @@ done
- if test -n "$ac_prev"; then
-   ac_option=--`echo $ac_prev | sed 's/_/-/g'`
--  { echo "$as_me: error: missing argument to $ac_option" >&2
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "missing argument to $ac_option"
- fi
--# Be sure to have absolute paths.
--for ac_var in exec_prefix prefix
--do
--  eval ac_val=$`echo $ac_var`
--  case $ac_val in
--    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
--    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
--   { (exit 1); exit 1; }; };;
-+if test -n "$ac_unrecognized_opts"; then
-+  case $enable_option_checking in
-+    no) ;;
-+    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
-+    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
-   esac
--done
-+fi
--# Be sure to have absolute paths.
--for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
--            localstatedir libdir includedir oldincludedir infodir mandir
-+# Check all directory arguments for consistency.
-+for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
-+              datadir sysconfdir sharedstatedir localstatedir includedir \
-+              oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
-+              libdir localedir mandir
- do
--  eval ac_val=$`echo $ac_var`
-+  eval ac_val=\$$ac_var
-+  # Remove trailing slashes.
-   case $ac_val in
--    [\\/$]* | ?:[\\/]* ) ;;
--    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
--   { (exit 1); exit 1; }; };;
-+    */ )
-+      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
-+      eval $ac_var=\$ac_val;;
-   esac
-+  # Be sure to have absolute directory names.
-+  case $ac_val in
-+    [\\/$]* | ?:[\\/]* )  continue;;
-+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
-+  esac
-+  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
- done
- # There might be people who depend on the old broken behavior: `$host'
-@@ -656,8 +1211,8 @@ target=$target_alias
- if test "x$host_alias" != x; then
-   if test "x$build_alias" = x; then
-     cross_compiling=maybe
--    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
--    If a cross compiler is detected then cross compile mode will be used." >&2
-+    $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
-+    If a cross compiler is detected then cross compile mode will be used" >&2
-   elif test "x$build_alias" != "x$host_alias"; then
-     cross_compiling=yes
-   fi
-@@ -669,70 +1224,72 @@ test -n "$host_alias" && ac_tool_prefix=
- test "$silent" = yes && exec 6>/dev/null
-+ac_pwd=`pwd` && test -n "$ac_pwd" &&
-+ac_ls_di=`ls -di .` &&
-+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
-+  as_fn_error $? "working directory cannot be determined"
-+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
-+  as_fn_error $? "pwd does not report name of working directory"
-+
-+
- # Find the source files, if location was not specified.
- if test -z "$srcdir"; then
-   ac_srcdir_defaulted=yes
--  # Try the directory containing this script, then its parent.
--  ac_confdir=`(dirname "$0") 2>/dev/null ||
--$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$0" : 'X\(//\)[^/]' \| \
--       X"$0" : 'X\(//\)$' \| \
--       X"$0" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$0" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
-+  # Try the directory containing this script, then the parent directory.
-+  ac_confdir=`$as_dirname -- "$as_myself" ||
-+$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+       X"$as_myself" : 'X\(//\)[^/]' \| \
-+       X"$as_myself" : 'X\(//\)$' \| \
-+       X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$as_myself" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-   srcdir=$ac_confdir
--  if test ! -r $srcdir/$ac_unique_file; then
-+  if test ! -r "$srcdir/$ac_unique_file"; then
-     srcdir=..
-   fi
- else
-   ac_srcdir_defaulted=no
- fi
--if test ! -r $srcdir/$ac_unique_file; then
--  if test "$ac_srcdir_defaulted" = yes; then
--    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
--   { (exit 1); exit 1; }; }
--  else
--    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
--   { (exit 1); exit 1; }; }
--  fi
--fi
--(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
--  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
--   { (exit 1); exit 1; }; }
--srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
--ac_env_build_alias_set=${build_alias+set}
--ac_env_build_alias_value=$build_alias
--ac_cv_env_build_alias_set=${build_alias+set}
--ac_cv_env_build_alias_value=$build_alias
--ac_env_host_alias_set=${host_alias+set}
--ac_env_host_alias_value=$host_alias
--ac_cv_env_host_alias_set=${host_alias+set}
--ac_cv_env_host_alias_value=$host_alias
--ac_env_target_alias_set=${target_alias+set}
--ac_env_target_alias_value=$target_alias
--ac_cv_env_target_alias_set=${target_alias+set}
--ac_cv_env_target_alias_value=$target_alias
--ac_env_CC_set=${CC+set}
--ac_env_CC_value=$CC
--ac_cv_env_CC_set=${CC+set}
--ac_cv_env_CC_value=$CC
--ac_env_CFLAGS_set=${CFLAGS+set}
--ac_env_CFLAGS_value=$CFLAGS
--ac_cv_env_CFLAGS_set=${CFLAGS+set}
--ac_cv_env_CFLAGS_value=$CFLAGS
--ac_env_LDFLAGS_set=${LDFLAGS+set}
--ac_env_LDFLAGS_value=$LDFLAGS
--ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
--ac_cv_env_LDFLAGS_value=$LDFLAGS
--ac_env_CPPFLAGS_set=${CPPFLAGS+set}
--ac_env_CPPFLAGS_value=$CPPFLAGS
--ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
--ac_cv_env_CPPFLAGS_value=$CPPFLAGS
-+if test ! -r "$srcdir/$ac_unique_file"; then
-+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
-+  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
-+fi
-+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
-+ac_abs_confdir=`(
-+      cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
-+      pwd)`
-+# When building in place, set srcdir=.
-+if test "$ac_abs_confdir" = "$ac_pwd"; then
-+  srcdir=.
-+fi
-+# Remove unnecessary trailing slashes from srcdir.
-+# Double slashes in file names in object file debugging info
-+# mess up M-x gdb in Emacs.
-+case $srcdir in
-+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
-+esac
-+for ac_var in $ac_precious_vars; do
-+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_env_${ac_var}_value=\$${ac_var}
-+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
-+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
-+done
- #
- # Report the --help message.
-@@ -755,20 +1312,17 @@ Configuration:
-       --help=short        display options specific to this package
-       --help=recursive    display the short help of all the included packages
-   -V, --version           display version information and exit
--  -q, --quiet, --silent   do not print \`checking...' messages
-+  -q, --quiet, --silent   do not print \`checking ...' messages
-       --cache-file=FILE   cache test results in FILE [disabled]
-   -C, --config-cache      alias for \`--cache-file=config.cache'
-   -n, --no-create         do not create output files
-       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
--_ACEOF
--
--  cat <<_ACEOF
- Installation directories:
-   --prefix=PREFIX         install architecture-independent files in PREFIX
--                        [$ac_default_prefix]
-+                          [$ac_default_prefix]
-   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
--                        [PREFIX]
-+                          [PREFIX]
- By default, \`make install' will install all the files in
- \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
-@@ -778,18 +1332,25 @@ for instance \`--prefix=\$HOME'.
- For better control, use the options below.
- Fine tuning of the installation directories:
--  --bindir=DIR           user executables [EPREFIX/bin]
--  --sbindir=DIR          system admin executables [EPREFIX/sbin]
--  --libexecdir=DIR       program executables [EPREFIX/libexec]
--  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
--  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
--  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
--  --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
--  --libdir=DIR           object code libraries [EPREFIX/lib]
--  --includedir=DIR       C header files [PREFIX/include]
--  --oldincludedir=DIR    C header files for non-gcc [/usr/include]
--  --infodir=DIR          info documentation [PREFIX/info]
--  --mandir=DIR           man documentation [PREFIX/man]
-+  --bindir=DIR            user executables [EPREFIX/bin]
-+  --sbindir=DIR           system admin executables [EPREFIX/sbin]
-+  --libexecdir=DIR        program executables [EPREFIX/libexec]
-+  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
-+  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
-+  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
-+  --libdir=DIR            object code libraries [EPREFIX/lib]
-+  --includedir=DIR        C header files [PREFIX/include]
-+  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
-+  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
-+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
-+  --infodir=DIR           info documentation [DATAROOTDIR/info]
-+  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
-+  --mandir=DIR            man documentation [DATAROOTDIR/man]
-+  --docdir=DIR            documentation root [DATAROOTDIR/doc/drv_vmmc]
-+  --htmldir=DIR           html documentation [DOCDIR]
-+  --dvidir=DIR            dvi documentation [DOCDIR]
-+  --pdfdir=DIR            pdf documentation [DOCDIR]
-+  --psdir=DIR             ps documentation [DOCDIR]
- _ACEOF
-   cat <<\_ACEOF
-@@ -808,6 +1369,7 @@ if test -n "$ac_init_help"; then
-   cat <<\_ACEOF
- Optional Features:
-+  --disable-option-checking  ignore unrecognized --enable/--with options
-   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
-   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
-   --disable-dependency-tracking  speeds up one-time build
-@@ -890,111 +1452,80 @@ Some influential environment variables:
-   CFLAGS      C compiler flags
-   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-               nonstandard directory <lib dir>
--  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
--              headers in a nonstandard directory <include dir>
-+  LIBS        libraries to pass to the linker, e.g. -l<library>
-+  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
-+              you have headers in a nonstandard directory <include dir>
- Use these variables to override the choices made by `configure' or to help
- it to find libraries and programs with nonstandard names/locations.
-+Report bugs to the package provider.
- _ACEOF
-+ac_status=$?
- fi
- if test "$ac_init_help" = "recursive"; then
-   # If there are subdirs, report their specific --help.
--  ac_popdir=`pwd`
-   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
--    test -d $ac_dir || continue
-+    test -d "$ac_dir" ||
-+      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
-+      continue
-     ac_builddir=.
--if test "$ac_dir" != .; then
--  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
--  # A "../" for each directory in $ac_dir_suffix.
--  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
--else
--  ac_dir_suffix= ac_top_builddir=
--fi
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
- case $srcdir in
--  .)  # No --srcdir option.  We are building in place.
-+  .)  # We are building in place.
-     ac_srcdir=.
--    if test -z "$ac_top_builddir"; then
--       ac_top_srcdir=.
--    else
--       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
--    fi ;;
--  [\\/]* | ?:[\\/]* )  # Absolute path.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-     ac_srcdir=$srcdir$ac_dir_suffix;
--    ac_top_srcdir=$srcdir ;;
--  *) # Relative path.
--    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
--    ac_top_srcdir=$ac_top_builddir$srcdir ;;
--esac
--
--# Do not use `cd foo && pwd` to compute absolute paths, because
--# the directories may not exist.
--case `pwd` in
--.) ac_abs_builddir="$ac_dir";;
--*)
--  case "$ac_dir" in
--  .) ac_abs_builddir=`pwd`;;
--  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
--  *) ac_abs_builddir=`pwd`/"$ac_dir";;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_top_builddir=${ac_top_builddir}.;;
--*)
--  case ${ac_top_builddir}. in
--  .) ac_abs_top_builddir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
--  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_srcdir=$ac_srcdir;;
--*)
--  case $ac_srcdir in
--  .) ac_abs_srcdir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
--  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_top_srcdir=$ac_top_srcdir;;
--*)
--  case $ac_top_srcdir in
--  .) ac_abs_top_srcdir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
--  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
--  esac;;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
- esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
--    cd $ac_dir
--    # Check for guested configure; otherwise get Cygnus style configure.
--    if test -f $ac_srcdir/configure.gnu; then
--      echo
--      $SHELL $ac_srcdir/configure.gnu  --help=recursive
--    elif test -f $ac_srcdir/configure; then
--      echo
--      $SHELL $ac_srcdir/configure  --help=recursive
--    elif test -f $ac_srcdir/configure.ac ||
--         test -f $ac_srcdir/configure.in; then
--      echo
--      $ac_configure --help
-+    cd "$ac_dir" || { ac_status=$?; continue; }
-+    # Check for guested configure.
-+    if test -f "$ac_srcdir/configure.gnu"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
-+    elif test -f "$ac_srcdir/configure"; then
-+      echo &&
-+      $SHELL "$ac_srcdir/configure" --help=recursive
-     else
--      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
--    fi
--    cd $ac_popdir
-+      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
-+    fi || ac_status=$?
-+    cd "$ac_pwd" || { ac_status=$?; break; }
-   done
- fi
--test -n "$ac_init_help" && exit 0
-+test -n "$ac_init_help" && exit $ac_status
- if $ac_init_version; then
-   cat <<\_ACEOF
- VMMC Device Driver configure 1.9.0
--generated by GNU Autoconf 2.59
-+generated by GNU Autoconf 2.68
--Copyright (C) 2003 Free Software Foundation, Inc.
-+Copyright (C) 2010 Free Software Foundation, Inc.
- This configure script is free software; the Free Software Foundation
- gives unlimited permission to copy, distribute and modify it.
-@@ -1002,19 +1533,61 @@ Copyright (C) 2009, Lantiq Deutschland G
- For licensing information please see the file 'LICENSE' in the root folder of
- this software module.
- _ACEOF
--  exit 0
-+  exit
- fi
--exec 5>config.log
--cat >&5 <<_ACEOF
-+
-+## ------------------------ ##
-+## Autoconf initialization. ##
-+## ------------------------ ##
-+
-+# ac_fn_c_try_compile LINENO
-+# --------------------------
-+# Try to compile conftest.$ac_ext, and return whether this succeeded.
-+ac_fn_c_try_compile ()
-+{
-+  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-+  rm -f conftest.$ac_objext
-+  if { { ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_compile") 2>conftest.err
-+  ac_status=$?
-+  if test -s conftest.err; then
-+    grep -v '^ *+' conftest.err >conftest.er1
-+    cat conftest.er1 >&5
-+    mv -f conftest.er1 conftest.err
-+  fi
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; } && {
-+       test -z "$ac_c_werror_flag" ||
-+       test ! -s conftest.err
-+       } && test -s conftest.$ac_objext; then :
-+  ac_retval=0
-+else
-+  $as_echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+      ac_retval=1
-+fi
-+  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
-+  as_fn_set_status $ac_retval
-+
-+} # ac_fn_c_try_compile
-+cat >config.log <<_ACEOF
- This file contains any messages produced by compilers while
- running configure, to aid debugging if configure makes a mistake.
- It was created by VMMC Device Driver $as_me 1.9.0, which was
--generated by GNU Autoconf 2.59.  Invocation command line was
-+generated by GNU Autoconf 2.68.  Invocation command line was
-   $ $0 $@
- _ACEOF
-+exec 5>>config.log
- {
- cat <<_ASUNAME
- ## --------- ##
-@@ -1033,7 +1606,7 @@ uname -v = `(uname -v) 2>/dev/null || ec
- /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
- /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
- /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
--hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown`
-+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
- /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
- /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
- /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
-@@ -1045,8 +1618,9 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  echo "PATH: $as_dir"
--done
-+    $as_echo "PATH: $as_dir"
-+  done
-+IFS=$as_save_IFS
- } >&5
-@@ -1068,7 +1642,6 @@ _ACEOF
- ac_configure_args=
- ac_configure_args0=
- ac_configure_args1=
--ac_sep=
- ac_must_keep_next=false
- for ac_pass in 1 2
- do
-@@ -1079,13 +1652,13 @@ do
-     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-     | -silent | --silent | --silen | --sile | --sil)
-       continue ;;
--    *" "*|*"  "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
--      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    *\'*)
-+      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
-     esac
-     case $ac_pass in
--    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
-+    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
-     2)
--      ac_configure_args1="$ac_configure_args1 '$ac_arg'"
-+      as_fn_append ac_configure_args1 " '$ac_arg'"
-       if test $ac_must_keep_next = true; then
-       ac_must_keep_next=false # Got value, back to normal.
-       else
-@@ -1101,104 +1674,115 @@ do
-         -* ) ac_must_keep_next=true ;;
-       esac
-       fi
--      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
--      # Get rid of the leading space.
--      ac_sep=" "
-+      as_fn_append ac_configure_args " '$ac_arg'"
-       ;;
-     esac
-   done
- done
--$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
--$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
-+{ ac_configure_args0=; unset ac_configure_args0;}
-+{ ac_configure_args1=; unset ac_configure_args1;}
- # When interrupted or exit'd, cleanup temporary files, and complete
- # config.log.  We remove comments because anyway the quotes in there
- # would cause problems or look ugly.
--# WARNING: Be sure not to use single quotes in there, as some shells,
--# such as our DU 5.0 friend, will then `close' the trap.
-+# WARNING: Use '\'' to represent an apostrophe within the trap.
-+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
- trap 'exit_status=$?
-   # Save into config.log some information that might help in debugging.
-   {
-     echo
--    cat <<\_ASBOX
--## ---------------- ##
-+    $as_echo "## ---------------- ##
- ## Cache variables. ##
--## ---------------- ##
--_ASBOX
-+## ---------------- ##"
-     echo
-     # The following way of writing the cache mishandles newlines in values,
--{
-+(
-+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
-+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
-+      *) { eval $ac_var=; unset $ac_var;} ;;
-+      esac ;;
-+    esac
-+  done
-   (set) 2>&1 |
--    case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
--    *ac_space=\ *)
-+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-       sed -n \
--      "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
--        s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
--      ;;
-+      "s/'\''/'\''\\\\'\'''\''/g;
-+        s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
-+      ;; #(
-     *)
--      sed -n \
--      "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-       ;;
--    esac;
--}
-+    esac |
-+    sort
-+)
-     echo
--    cat <<\_ASBOX
--## ----------------- ##
-+    $as_echo "## ----------------- ##
- ## Output variables. ##
--## ----------------- ##
--_ASBOX
-+## ----------------- ##"
-     echo
-     for ac_var in $ac_subst_vars
-     do
--      eval ac_val=$`echo $ac_var`
--      echo "$ac_var='"'"'$ac_val'"'"'"
-+      eval ac_val=\$$ac_var
-+      case $ac_val in
-+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+      esac
-+      $as_echo "$ac_var='\''$ac_val'\''"
-     done | sort
-     echo
-     if test -n "$ac_subst_files"; then
--      cat <<\_ASBOX
--## ------------- ##
--## Output files. ##
--## ------------- ##
--_ASBOX
-+      $as_echo "## ------------------- ##
-+## File substitutions. ##
-+## ------------------- ##"
-       echo
-       for ac_var in $ac_subst_files
-       do
--      eval ac_val=$`echo $ac_var`
--      echo "$ac_var='"'"'$ac_val'"'"'"
-+      eval ac_val=\$$ac_var
-+      case $ac_val in
-+      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
-+      esac
-+      $as_echo "$ac_var='\''$ac_val'\''"
-       done | sort
-       echo
-     fi
-     if test -s confdefs.h; then
--      cat <<\_ASBOX
--## ----------- ##
-+      $as_echo "## ----------- ##
- ## confdefs.h. ##
--## ----------- ##
--_ASBOX
-+## ----------- ##"
-       echo
--      sed "/^$/d" confdefs.h | sort
-+      cat confdefs.h
-       echo
-     fi
-     test "$ac_signal" != 0 &&
--      echo "$as_me: caught signal $ac_signal"
--    echo "$as_me: exit $exit_status"
-+      $as_echo "$as_me: caught signal $ac_signal"
-+    $as_echo "$as_me: exit $exit_status"
-   } >&5
--  rm -f core *.core &&
--  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
-+  rm -f core *.core core.conftest.* &&
-+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
-     exit $exit_status
--     ' 0
-+' 0
- for ac_signal in 1 2 13 15; do
--  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
-+  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
- done
- ac_signal=0
- # confdefs.h avoids OS command line length limits that DEFS can exceed.
--rm -rf conftest* confdefs.h
--# AIX cpp loses on an empty file, so make sure it contains at least a newline.
--echo >confdefs.h
-+rm -f -r conftest* confdefs.h
-+
-+$as_echo "/* confdefs.h */" > confdefs.h
- # Predefined preprocessor variables.
-@@ -1206,112 +1790,137 @@ cat >>confdefs.h <<_ACEOF
- #define PACKAGE_NAME "$PACKAGE_NAME"
- _ACEOF
--
- cat >>confdefs.h <<_ACEOF
- #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
- _ACEOF
--
- cat >>confdefs.h <<_ACEOF
- #define PACKAGE_VERSION "$PACKAGE_VERSION"
- _ACEOF
--
- cat >>confdefs.h <<_ACEOF
- #define PACKAGE_STRING "$PACKAGE_STRING"
- _ACEOF
--
- cat >>confdefs.h <<_ACEOF
- #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
- _ACEOF
-+cat >>confdefs.h <<_ACEOF
-+#define PACKAGE_URL "$PACKAGE_URL"
-+_ACEOF
-+
- # Let the site file select an alternate cache file if it wants to.
--# Prefer explicitly selected file to automatically selected ones.
--if test -z "$CONFIG_SITE"; then
--  if test "x$prefix" != xNONE; then
--    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
--  else
--    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
--  fi
-+# Prefer an explicitly selected file to automatically selected ones.
-+ac_site_file1=NONE
-+ac_site_file2=NONE
-+if test -n "$CONFIG_SITE"; then
-+  # We do not want a PATH search for config.site.
-+  case $CONFIG_SITE in #((
-+    -*)  ac_site_file1=./$CONFIG_SITE;;
-+    */*) ac_site_file1=$CONFIG_SITE;;
-+    *)   ac_site_file1=./$CONFIG_SITE;;
-+  esac
-+elif test "x$prefix" != xNONE; then
-+  ac_site_file1=$prefix/share/config.site
-+  ac_site_file2=$prefix/etc/config.site
-+else
-+  ac_site_file1=$ac_default_prefix/share/config.site
-+  ac_site_file2=$ac_default_prefix/etc/config.site
- fi
--for ac_site_file in $CONFIG_SITE; do
--  if test -r "$ac_site_file"; then
--    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
--echo "$as_me: loading site script $ac_site_file" >&6;}
-+for ac_site_file in "$ac_site_file1" "$ac_site_file2"
-+do
-+  test "x$ac_site_file" = xNONE && continue
-+  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
-+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
-+$as_echo "$as_me: loading site script $ac_site_file" >&6;}
-     sed 's/^/| /' "$ac_site_file" >&5
--    . "$ac_site_file"
-+    . "$ac_site_file" \
-+      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+as_fn_error $? "failed to load site script $ac_site_file
-+See \`config.log' for more details" "$LINENO" 5; }
-   fi
- done
- if test -r "$cache_file"; then
--  # Some versions of bash will fail to source /dev/null (special
--  # files actually), so we avoid doing that.
--  if test -f "$cache_file"; then
--    { echo "$as_me:$LINENO: loading cache $cache_file" >&5
--echo "$as_me: loading cache $cache_file" >&6;}
-+  # Some versions of bash will fail to source /dev/null (special files
-+  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
-+  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
-+    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
-+$as_echo "$as_me: loading cache $cache_file" >&6;}
-     case $cache_file in
--      [\\/]* | ?:[\\/]* ) . $cache_file;;
--      *)                      . ./$cache_file;;
-+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
-+      *)                      . "./$cache_file";;
-     esac
-   fi
- else
--  { echo "$as_me:$LINENO: creating cache $cache_file" >&5
--echo "$as_me: creating cache $cache_file" >&6;}
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
-+$as_echo "$as_me: creating cache $cache_file" >&6;}
-   >$cache_file
- fi
- # Check that the precious variables saved in the cache have kept the same
- # value.
- ac_cache_corrupted=false
--for ac_var in `(set) 2>&1 |
--             sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
-+for ac_var in $ac_precious_vars; do
-   eval ac_old_set=\$ac_cv_env_${ac_var}_set
-   eval ac_new_set=\$ac_env_${ac_var}_set
--  eval ac_old_val="\$ac_cv_env_${ac_var}_value"
--  eval ac_new_val="\$ac_env_${ac_var}_value"
-+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
-+  eval ac_new_val=\$ac_env_${ac_var}_value
-   case $ac_old_set,$ac_new_set in
-     set,)
--      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
--echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
-+$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
-       ac_cache_corrupted=: ;;
-     ,set)
--      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
--echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
-+$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
-       ac_cache_corrupted=: ;;
-     ,);;
-     *)
-       if test "x$ac_old_val" != "x$ac_new_val"; then
--      { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
--echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
--      { echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5
--echo "$as_me:   former value:  $ac_old_val" >&2;}
--      { echo "$as_me:$LINENO:   current value: $ac_new_val" >&5
--echo "$as_me:   current value: $ac_new_val" >&2;}
--      ac_cache_corrupted=:
-+      # differences in whitespace do not lead to failure.
-+      ac_old_val_w=`echo x $ac_old_val`
-+      ac_new_val_w=`echo x $ac_new_val`
-+      if test "$ac_old_val_w" != "$ac_new_val_w"; then
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
-+$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-+        ac_cache_corrupted=:
-+      else
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
-+$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
-+        eval $ac_var=\$ac_old_val
-+      fi
-+      { $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
-+$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
-+      { $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
-+$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
-       fi;;
-   esac
-   # Pass precious variables to config.status.
-   if test "$ac_new_set" = set; then
-     case $ac_new_val in
--    *" "*|*"  "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
--      ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
-     *) ac_arg=$ac_var=$ac_new_val ;;
-     esac
-     case " $ac_configure_args " in
-       *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
--      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
-+      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
-     esac
-   fi
- done
- if $ac_cache_corrupted; then
--  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
--echo "$as_me: error: changes in the environment can compromise the build" >&2;}
--  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
--echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
--   { (exit 1); exit 1; }; }
--fi
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
-+$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-+  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
-+fi
-+## -------------------- ##
-+## Main body of script. ##
-+## -------------------- ##
- ac_ext=c
- ac_cpp='$CPP $CPPFLAGS'
-@@ -1321,57 +1930,37 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+am__api_version='1.11'
-+ac_aux_dir=
-+for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
-+  if test -f "$ac_dir/install-sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install-sh -c"
-+    break
-+  elif test -f "$ac_dir/install.sh"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/install.sh -c"
-+    break
-+  elif test -f "$ac_dir/shtool"; then
-+    ac_aux_dir=$ac_dir
-+    ac_install_sh="$ac_aux_dir/shtool install -c"
-+    break
-+  fi
-+done
-+if test -z "$ac_aux_dir"; then
-+  as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
-+fi
-+# These three variables are undocumented and unsupported,
-+# and are intended to be withdrawn in a future Autoconf release.
-+# They can cause serious problems if a builder's source tree is in a directory
-+# whose full name contains unusual characters.
-+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
-+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
-+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--
--am__api_version="1.9"
--ac_aux_dir=
--for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
--  if test -f $ac_dir/install-sh; then
--    ac_aux_dir=$ac_dir
--    ac_install_sh="$ac_aux_dir/install-sh -c"
--    break
--  elif test -f $ac_dir/install.sh; then
--    ac_aux_dir=$ac_dir
--    ac_install_sh="$ac_aux_dir/install.sh -c"
--    break
--  elif test -f $ac_dir/shtool; then
--    ac_aux_dir=$ac_dir
--    ac_install_sh="$ac_aux_dir/shtool install -c"
--    break
--  fi
--done
--if test -z "$ac_aux_dir"; then
--  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
--echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
--   { (exit 1); exit 1; }; }
--fi
--ac_config_guess="$SHELL $ac_aux_dir/config.guess"
--ac_config_sub="$SHELL $ac_aux_dir/config.sub"
--ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
--
- # Find a good install program.  We prefer a C program (faster),
- # so one script is as good as another.  But avoid the broken or
- # incompatible versions:
-@@ -1385,22 +1974,23 @@ ac_configure="$SHELL $ac_aux_dir/configu
- # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
- # OS/2's system install, which has a completely different semantic
- # ./install, which can be erroneously created by make from ./install.sh.
--echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
--echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
-+# Reject install programs that cannot install multiple files.
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
-+$as_echo_n "checking for a BSD-compatible install... " >&6; }
- if test -z "$INSTALL"; then
--if test "${ac_cv_path_install+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+if ${ac_cv_path_install+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
- for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  # Account for people who put trailing slashes in PATH elements.
--case $as_dir/ in
--  ./ | .// | /cC/* | \
-+    # Account for people who put trailing slashes in PATH elements.
-+case $as_dir/ in #((
-+  ./ | .// | /[cC]/* | \
-   /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
--  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \
-+  ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
-   /usr/ucb/* ) ;;
-   *)
-     # OSF1 and SCO ODT 3.0 have their own names for install.
-@@ -1408,7 +1998,7 @@ case $as_dir/ in
-     # by default.
-     for ac_prog in ginstall scoinst install; do
-       for ac_exec_ext in '' $ac_executable_extensions; do
--      if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
-+      if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
-         if test $ac_prog = install &&
-           grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
-           # AIX install.  It has an incompatible calling convention.
-@@ -1418,30 +2008,43 @@ case $as_dir/ in
-           # program-specific install script used by HP pwplus--don't use.
-           :
-         else
--          ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
--          break 3
-+          rm -rf conftest.one conftest.two conftest.dir
-+          echo one > conftest.one
-+          echo two > conftest.two
-+          mkdir conftest.dir
-+          if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
-+            test -s conftest.one && test -s conftest.two &&
-+            test -s conftest.dir/conftest.one &&
-+            test -s conftest.dir/conftest.two
-+          then
-+            ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
-+            break 3
-+          fi
-         fi
-       fi
-       done
-     done
-     ;;
- esac
--done
-+  done
-+IFS=$as_save_IFS
-+
-+rm -rf conftest.one conftest.two conftest.dir
- fi
-   if test "${ac_cv_path_install+set}" = set; then
-     INSTALL=$ac_cv_path_install
-   else
--    # As a last resort, use the slow shell script.  We don't cache a
--    # path for INSTALL within a source directory, because that will
-+    # As a last resort, use the slow shell script.  Don't cache a
-+    # value for INSTALL within a source directory, because that will
-     # break other packages using the cache if that directory is
--    # removed, or if the path is relative.
-+    # removed, or if the value is a relative name.
-     INSTALL=$ac_install_sh
-   fi
- fi
--echo "$as_me:$LINENO: result: $INSTALL" >&5
--echo "${ECHO_T}$INSTALL" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
-+$as_echo "$INSTALL" >&6; }
- # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
- # It thinks the first close brace ends the variable substitution.
-@@ -1451,21 +2054,34 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCR
- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
--echo "$as_me:$LINENO: checking whether build environment is sane" >&5
--echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
-+$as_echo_n "checking whether build environment is sane... " >&6; }
- # Just in case
- sleep 1
- echo timestamp > conftest.file
-+# Reject unsafe characters in $srcdir or the absolute working directory
-+# name.  Accept space and tab only in the latter.
-+am_lf='
-+'
-+case `pwd` in
-+  *[\\\"\#\$\&\'\`$am_lf]*)
-+    as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;;
-+esac
-+case $srcdir in
-+  *[\\\"\#\$\&\'\`$am_lf\ \   ]*)
-+    as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
-+esac
-+
- # Do `set' in a subshell so we don't clobber the current shell's
- # arguments.  Must try -L first in case configure is actually a
- # symlink; some systems play weird games with the mod time of symlinks
- # (eg FreeBSD returns the mod time of the symlink's containing
- # directory).
- if (
--   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
-+   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
-    if test "$*" = "X"; then
-       # -L didn't work.
--      set X `ls -t $srcdir/configure conftest.file`
-+      set X `ls -t "$srcdir/configure" conftest.file`
-    fi
-    rm -f conftest.file
-    if test "$*" != "X $srcdir/configure conftest.file" \
-@@ -1475,11 +2091,8 @@ if (
-       # if, for instance, CONFIG_SHELL is bash and it inherits a
-       # broken ls alias from the environment.  This has actually
-       # happened.  Such a system could not be considered "sane".
--      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken
--alias in your environment" >&5
--echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken
--alias in your environment" >&2;}
--   { (exit 1); exit 1; }; }
-+      as_fn_error $? "ls -t appears to fail.  Make sure there is not a broken
-+alias in your environment" "$LINENO" 5
-    fi
-    test "$2" = conftest.file
-@@ -1488,81 +2101,206 @@ then
-    # Ok.
-    :
- else
--   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
--Check your system clock" >&5
--echo "$as_me: error: newly created file is older than distributed files!
--Check your system clock" >&2;}
--   { (exit 1); exit 1; }; }
-+   as_fn_error $? "newly created file is older than distributed files!
-+Check your system clock" "$LINENO" 5
- fi
--echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-+$as_echo "yes" >&6; }
- test "$program_prefix" != NONE &&
--  program_transform_name="s,^,$program_prefix,;$program_transform_name"
-+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
- # Use a double $ so make ignores it.
- test "$program_suffix" != NONE &&
--  program_transform_name="s,\$,$program_suffix,;$program_transform_name"
--# Double any \ or $.  echo might interpret backslashes.
-+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
-+# Double any \ or $.
- # By default was `s,x,x', remove it if useless.
--cat <<\_ACEOF >conftest.sed
--s/[\\$]/&&/g;s/;s,x,x,$//
--_ACEOF
--program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
--rm conftest.sed
-+ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
-+program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
- # expand $ac_aux_dir to an absolute path
- am_aux_dir=`cd $ac_aux_dir && pwd`
--test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
-+if test x"${MISSING+set}" != xset; then
-+  case $am_aux_dir in
-+  *\ * | *\   *)
-+    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
-+  *)
-+    MISSING="\${SHELL} $am_aux_dir/missing" ;;
-+  esac
-+fi
- # Use eval to expand $SHELL
- if eval "$MISSING --run true"; then
-   am_missing_run="$MISSING --run "
- else
-   am_missing_run=
--  { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
--echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5
-+$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
- fi
--if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
--  # We used to keeping the `.' as first argument, in order to
--  # allow $(mkdir_p) to be used without argument.  As in
--  #   $(mkdir_p) $(somedir)
--  # where $(somedir) is conditionally defined.  However this is wrong
--  # for two reasons:
--  #  1. if the package is installed by a user who cannot write `.'
--  #     make install will fail,
--  #  2. the above comment should most certainly read
--  #     $(mkdir_p) $(DESTDIR)$(somedir)
--  #     so it does not work when $(somedir) is undefined and
--  #     $(DESTDIR) is not.
--  #  To support the latter case, we have to write
--  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
--  #  so the `.' trick is pointless.
--  mkdir_p='mkdir -p --'
--else
--  # On NextStep and OpenStep, the `mkdir' command does not
--  # recognize any option.  It will interpret all options as
--  # directories to create, and then abort because `.' already
--  # exists.
--  for d in ./-p ./--version;
--  do
--    test -d $d && rmdir $d
-+if test x"${install_sh}" != xset; then
-+  case $am_aux_dir in
-+  *\ * | *\   *)
-+    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
-+  *)
-+    install_sh="\${SHELL} $am_aux_dir/install-sh"
-+  esac
-+fi
-+
-+# Installed binaries are usually stripped using `strip' when the user
-+# run `make install-strip'.  However `strip' might not be the right
-+# tool to use in cross-compilation environments, therefore Automake
-+# will honor the `STRIP' environment variable to overrule this program.
-+if test "$cross_compiling" != no; then
-+  if test -n "$ac_tool_prefix"; then
-+  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}strip; ac_word=$2
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_STRIP+:} false; then :
-+  $as_echo_n "(cached) " >&6
-+else
-+  if test -n "$STRIP"; then
-+  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+  done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+STRIP=$ac_cv_prog_STRIP
-+if test -n "$STRIP"; then
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
-+$as_echo "$STRIP" >&6; }
-+else
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_STRIP"; then
-+  ac_ct_STRIP=$STRIP
-+  # Extract the first word of "strip", so it can be a program name with args.
-+set dummy strip; ac_word=$2
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
-+  $as_echo_n "(cached) " >&6
-+else
-+  if test -n "$ac_ct_STRIP"; then
-+  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+    ac_cv_prog_ac_ct_STRIP="strip"
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    break 2
-+  fi
-+done
-+  done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-+if test -n "$ac_ct_STRIP"; then
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
-+$as_echo "$ac_ct_STRIP" >&6; }
-+else
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
-+fi
-+
-+  if test "x$ac_ct_STRIP" = x; then
-+    STRIP=":"
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    STRIP=$ac_ct_STRIP
-+  fi
-+else
-+  STRIP="$ac_cv_prog_STRIP"
-+fi
-+
-+fi
-+INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
-+
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
-+$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
-+if test -z "$MKDIR_P"; then
-+  if ${ac_cv_path_mkdir+:} false; then :
-+  $as_echo_n "(cached) " >&6
-+else
-+  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
-+do
-+  IFS=$as_save_IFS
-+  test -z "$as_dir" && as_dir=.
-+    for ac_prog in mkdir gmkdir; do
-+       for ac_exec_ext in '' $ac_executable_extensions; do
-+         { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
-+         case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
-+           'mkdir (GNU coreutils) '* | \
-+           'mkdir (coreutils) '* | \
-+           'mkdir (fileutils) '4.1*)
-+             ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
-+             break 3;;
-+         esac
-+       done
-+       done
-   done
--  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
--  if test -f "$ac_aux_dir/mkinstalldirs"; then
--    mkdir_p='$(mkinstalldirs)'
-+IFS=$as_save_IFS
-+
-+fi
-+
-+  test -d ./--version && rmdir ./--version
-+  if test "${ac_cv_path_mkdir+set}" = set; then
-+    MKDIR_P="$ac_cv_path_mkdir -p"
-   else
--    mkdir_p='$(install_sh) -d'
-+    # As a last resort, use the slow shell script.  Don't cache a
-+    # value for MKDIR_P within a source directory, because that will
-+    # break other packages using the cache if that directory is
-+    # removed, or if the value is a relative name.
-+    MKDIR_P="$ac_install_sh -d"
-   fi
- fi
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
-+$as_echo "$MKDIR_P" >&6; }
-+
-+mkdir_p="$MKDIR_P"
-+case $mkdir_p in
-+  [\\/$]* | ?:[\\/]*) ;;
-+  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
-+esac
- for ac_prog in gawk mawk nawk awk
- do
-   # Extract the first word of "$ac_prog", so it can be a program name with args.
- set dummy $ac_prog; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_AWK+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_AWK+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$AWK"; then
-   ac_cv_prog_AWK="$AWK" # Let the user override the test.
-@@ -1572,55 +2310,59 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     ac_cv_prog_AWK="$ac_prog"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- fi
- fi
- AWK=$ac_cv_prog_AWK
- if test -n "$AWK"; then
--  echo "$as_me:$LINENO: result: $AWK" >&5
--echo "${ECHO_T}$AWK" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
-+$as_echo "$AWK" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
-+
-   test -n "$AWK" && break
- done
--echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
--echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
--set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
--if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
-+$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
-+set x ${MAKE-make}
-+ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
-+if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   cat >conftest.make <<\_ACEOF
-+SHELL = /bin/sh
- all:
--      @echo 'ac_maketemp="$(MAKE)"'
-+      @echo '@@@%%%=$(MAKE)=@@@%%%'
- _ACEOF
--# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
--eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
--if test -n "$ac_maketemp"; then
--  eval ac_cv_prog_make_${ac_make}_set=yes
--else
--  eval ac_cv_prog_make_${ac_make}_set=no
--fi
-+# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
-+case `${MAKE-make} -f conftest.make 2>/dev/null` in
-+  *@@@%%%=?*=@@@%%%*)
-+    eval ac_cv_prog_make_${ac_make}_set=yes;;
-+  *)
-+    eval ac_cv_prog_make_${ac_make}_set=no;;
-+esac
- rm -f conftest.make
- fi
--if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
--  echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
-+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-+$as_echo "yes" >&6; }
-   SET_MAKE=
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
-   SET_MAKE="MAKE=${MAKE-make}"
- fi
-@@ -1633,12 +2375,14 @@ else
- fi
- rmdir .tst 2>/dev/null
--# test to see if srcdir already configured
--if test "`cd $srcdir && pwd`" != "`pwd`" &&
--   test -f $srcdir/config.status; then
--  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
--echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
--   { (exit 1); exit 1; }; }
-+if test "`cd $srcdir && pwd`" != "`pwd`"; then
-+  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
-+  # is not polluted with repeated "-I."
-+  am__isrc=' -I$(srcdir)'
-+  # test to see if srcdir already configured
-+  if test -f $srcdir/config.status; then
-+    as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
-+  fi
- fi
- # test whether we have cygpath
-@@ -1681,96 +2425,6 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_ru
- MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
--install_sh=${install_sh-"$am_aux_dir/install-sh"}
--
--# Installed binaries are usually stripped using `strip' when the user
--# run `make install-strip'.  However `strip' might not be the right
--# tool to use in cross-compilation environments, therefore Automake
--# will honor the `STRIP' environment variable to overrule this program.
--if test "$cross_compiling" != no; then
--  if test -n "$ac_tool_prefix"; then
--  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
--set dummy ${ac_tool_prefix}strip; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_STRIP+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  if test -n "$STRIP"; then
--  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
--else
--as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH
--do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
--    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
--    break 2
--  fi
--done
--done
--
--fi
--fi
--STRIP=$ac_cv_prog_STRIP
--if test -n "$STRIP"; then
--  echo "$as_me:$LINENO: result: $STRIP" >&5
--echo "${ECHO_T}$STRIP" >&6
--else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
--fi
--
--fi
--if test -z "$ac_cv_prog_STRIP"; then
--  ac_ct_STRIP=$STRIP
--  # Extract the first word of "strip", so it can be a program name with args.
--set dummy strip; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  if test -n "$ac_ct_STRIP"; then
--  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
--else
--as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH
--do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
--    ac_cv_prog_ac_ct_STRIP="strip"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
--    break 2
--  fi
--done
--done
--
--  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
--fi
--fi
--ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
--if test -n "$ac_ct_STRIP"; then
--  echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
--echo "${ECHO_T}$ac_ct_STRIP" >&6
--else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
--fi
--
--  STRIP=$ac_ct_STRIP
--else
--  STRIP="$ac_cv_prog_STRIP"
--fi
--
--fi
--INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
--
- # We need awk for the "check" target.  The system "awk" is bad on
- # some platforms.
- # Always define AMTAR for backward compatibility.
-@@ -1804,7 +2458,7 @@ for c_arg in $ac_configure_args; do
- done
--          ac_config_headers="$ac_config_headers drv_config.h"
-+ac_config_headers="$ac_config_headers drv_config.h"
- if [ "$CFLAGS" == "" ] ; then
-@@ -1819,10 +2473,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
- if test -n "$ac_tool_prefix"; then
-   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
- set dummy ${ac_tool_prefix}gcc; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_CC+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$CC"; then
-   ac_cv_prog_CC="$CC" # Let the user override the test.
-@@ -1832,35 +2486,37 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     ac_cv_prog_CC="${ac_tool_prefix}gcc"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- fi
- fi
- CC=$ac_cv_prog_CC
- if test -n "$CC"; then
--  echo "$as_me:$LINENO: result: $CC" >&5
--echo "${ECHO_T}$CC" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-+$as_echo "$CC" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
-+
- fi
- if test -z "$ac_cv_prog_CC"; then
-   ac_ct_CC=$CC
-   # Extract the first word of "gcc", so it can be a program name with args.
- set dummy gcc; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_ac_ct_CC+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$ac_ct_CC"; then
-   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-@@ -1870,39 +2526,50 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     ac_cv_prog_ac_ct_CC="gcc"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- fi
- fi
- ac_ct_CC=$ac_cv_prog_ac_ct_CC
- if test -n "$ac_ct_CC"; then
--  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
--echo "${ECHO_T}$ac_ct_CC" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-+$as_echo "$ac_ct_CC" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
--  CC=$ac_ct_CC
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
- else
-   CC="$ac_cv_prog_CC"
- fi
- if test -z "$CC"; then
--  if test -n "$ac_tool_prefix"; then
--  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
-+          if test -n "$ac_tool_prefix"; then
-+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
- set dummy ${ac_tool_prefix}cc; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_CC+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$CC"; then
-   ac_cv_prog_CC="$CC" # Let the user override the test.
-@@ -1912,77 +2579,37 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     ac_cv_prog_CC="${ac_tool_prefix}cc"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- fi
- fi
- CC=$ac_cv_prog_CC
- if test -n "$CC"; then
--  echo "$as_me:$LINENO: result: $CC" >&5
--echo "${ECHO_T}$CC" >&6
--else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
--fi
--
--fi
--if test -z "$ac_cv_prog_CC"; then
--  ac_ct_CC=$CC
--  # Extract the first word of "cc", so it can be a program name with args.
--set dummy cc; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  if test -n "$ac_ct_CC"; then
--  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
--else
--as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH
--do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
--    ac_cv_prog_ac_ct_CC="cc"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
--    break 2
--  fi
--done
--done
--
--fi
--fi
--ac_ct_CC=$ac_cv_prog_ac_ct_CC
--if test -n "$ac_ct_CC"; then
--  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
--echo "${ECHO_T}$ac_ct_CC" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-+$as_echo "$CC" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
--  CC=$ac_ct_CC
--else
--  CC="$ac_cv_prog_CC"
--fi
-+  fi
- fi
- if test -z "$CC"; then
-   # Extract the first word of "cc", so it can be a program name with args.
- set dummy cc; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_CC+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$CC"; then
-   ac_cv_prog_CC="$CC" # Let the user override the test.
-@@ -1993,18 +2620,19 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
-        ac_prog_rejected=yes
-        continue
-      fi
-     ac_cv_prog_CC="cc"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- if test $ac_prog_rejected = yes; then
-   # We found a bogon in the path, so make sure we never use it.
-@@ -2022,24 +2650,25 @@ fi
- fi
- CC=$ac_cv_prog_CC
- if test -n "$CC"; then
--  echo "$as_me:$LINENO: result: $CC" >&5
--echo "${ECHO_T}$CC" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-+$as_echo "$CC" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
-+
- fi
- if test -z "$CC"; then
-   if test -n "$ac_tool_prefix"; then
--  for ac_prog in cl
-+  for ac_prog in cl.exe
-   do
-     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
- set dummy $ac_tool_prefix$ac_prog; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_CC+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$CC"; then
-   ac_cv_prog_CC="$CC" # Let the user override the test.
-@@ -2049,39 +2678,41 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- fi
- fi
- CC=$ac_cv_prog_CC
- if test -n "$CC"; then
--  echo "$as_me:$LINENO: result: $CC" >&5
--echo "${ECHO_T}$CC" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
-+$as_echo "$CC" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
-+
-     test -n "$CC" && break
-   done
- fi
- if test -z "$CC"; then
-   ac_ct_CC=$CC
--  for ac_prog in cl
-+  for ac_prog in cl.exe
- do
-   # Extract the first word of "$ac_prog", so it can be a program name with args.
- set dummy $ac_prog; ac_word=$2
--echo "$as_me:$LINENO: checking for $ac_word" >&5
--echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
--if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if ${ac_cv_prog_ac_ct_CC+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -n "$ac_ct_CC"; then
-   ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
-@@ -2091,66 +2722,78 @@ for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  for ac_exec_ext in '' $ac_executable_extensions; do
--  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
-+    for ac_exec_ext in '' $ac_executable_extensions; do
-+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-     ac_cv_prog_ac_ct_CC="$ac_prog"
--    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-+    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-   fi
- done
--done
-+  done
-+IFS=$as_save_IFS
- fi
- fi
- ac_ct_CC=$ac_cv_prog_ac_ct_CC
- if test -n "$ac_ct_CC"; then
--  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
--echo "${ECHO_T}$ac_ct_CC" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
-+$as_echo "$ac_ct_CC" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
- fi
-+
-   test -n "$ac_ct_CC" && break
- done
--  CC=$ac_ct_CC
--fi
--
-+  if test "x$ac_ct_CC" = x; then
-+    CC=""
-+  else
-+    case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+    CC=$ac_ct_CC
-+  fi
-+fi
-+
- fi
--test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
--See \`config.log' for more details." >&5
--echo "$as_me: error: no acceptable C compiler found in \$PATH
--See \`config.log' for more details." >&2;}
--   { (exit 1); exit 1; }; }
-+test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+as_fn_error $? "no acceptable C compiler found in \$PATH
-+See \`config.log' for more details" "$LINENO" 5; }
- # Provide some information about the compiler.
--echo "$as_me:$LINENO:" \
--     "checking for C compiler version" >&5
--ac_compiler=`set X $ac_compile; echo $2`
--{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
--  (eval $ac_compiler --version </dev/null >&5) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }
--{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
--  (eval $ac_compiler -v </dev/null >&5) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }
--{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
--  (eval $ac_compiler -V </dev/null >&5) 2>&5
-+$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
-+set X $ac_compile
-+ac_compiler=$2
-+for ac_option in --version -v -V -qversion; do
-+  { { ac_try="$ac_compiler $ac_option >&5"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }
-+  if test -s conftest.err; then
-+    sed '10a\
-+... rest of stderr output deleted ...
-+         10q' conftest.err >conftest.er1
-+    cat conftest.er1 >&5
-+  fi
-+  rm -f conftest.er1 conftest.err
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }
-+done
--cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
-+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
- int
-@@ -2162,112 +2805,108 @@ main ()
- }
- _ACEOF
- ac_clean_files_save=$ac_clean_files
--ac_clean_files="$ac_clean_files a.out a.exe b.out"
-+ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
- # Try to create an executable without -o first, disregard a.out.
- # It will help us diagnose broken compilers, and finding out an intuition
- # of exeext.
--echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
--echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
--ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
--if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
--  (eval $ac_link_default) 2>&5
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
-+$as_echo_n "checking whether the C compiler works... " >&6; }
-+ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-+
-+# The possible output files:
-+ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
-+
-+ac_rmfiles=
-+for ac_file in $ac_files
-+do
-+  case $ac_file in
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
-+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
-+  esac
-+done
-+rm -f $ac_rmfiles
-+
-+if { { ac_try="$ac_link_default"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_link_default") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; then
--  # Find the output, starting from the most likely.  This scheme is
--# not robust to junk in `.', hence go to wildcards (a.*) only as a last
--# resort.
--
--# Be careful to initialize this variable, since it used to be cached.
--# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
--ac_cv_exeext=
--# b.out is created by i960 compilers.
--for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }; then :
-+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
-+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
-+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
-+# so that the user can short-circuit this test for compilers unknown to
-+# Autoconf.
-+for ac_file in $ac_files ''
- do
-   test -f "$ac_file" || continue
-   case $ac_file in
--    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
--      ;;
--    conftest.$ac_ext )
--      # This is the source file.
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
-       ;;
-     [ab].out )
-       # We found the default executable, but exeext='' is most
-       # certainly right.
-       break;;
-     *.* )
--      ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
--      # FIXME: I believe we export ac_cv_exeext for Libtool,
--      # but it would be cool to find out if it's true.  Does anybody
--      # maintain Libtool? --akim.
--      export ac_cv_exeext
-+      if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
-+      then :; else
-+         ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
-+      fi
-+      # We set ac_cv_exeext here because the later test for it is not
-+      # safe: cross compilers may not add the suffix if given an `-o'
-+      # argument, so we may need to know it at that point already.
-+      # Even if this section looks crufty: it has the advantage of
-+      # actually working.
-       break;;
-     * )
-       break;;
-   esac
- done
--else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
-+test "$ac_cv_exeext" = no && ac_cv_exeext=
--{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
--See \`config.log' for more details." >&5
--echo "$as_me: error: C compiler cannot create executables
--See \`config.log' for more details." >&2;}
--   { (exit 77); exit 77; }; }
-+else
-+  ac_file=''
- fi
-+if test -z "$ac_file"; then :
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
-+$as_echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+as_fn_error 77 "C compiler cannot create executables
-+See \`config.log' for more details" "$LINENO" 5; }
-+else
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-+$as_echo "yes" >&6; }
-+fi
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
-+$as_echo_n "checking for C compiler default output file name... " >&6; }
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
-+$as_echo "$ac_file" >&6; }
- ac_exeext=$ac_cv_exeext
--echo "$as_me:$LINENO: result: $ac_file" >&5
--echo "${ECHO_T}$ac_file" >&6
--
--# Check the compiler produces executables we can run.  If not, either
--# the compiler is broken, or we cross compile.
--echo "$as_me:$LINENO: checking whether the C compiler works" >&5
--echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
--# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
--# If not cross compiling, check that we can run a simple program.
--if test "$cross_compiling" != yes; then
--  if { ac_try='./$ac_file'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
--    cross_compiling=no
--  else
--    if test "$cross_compiling" = maybe; then
--      cross_compiling=yes
--    else
--      { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
--If you meant to cross compile, use \`--host'.
--See \`config.log' for more details." >&5
--echo "$as_me: error: cannot run C compiled programs.
--If you meant to cross compile, use \`--host'.
--See \`config.log' for more details." >&2;}
--   { (exit 1); exit 1; }; }
--    fi
--  fi
--fi
--echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
--rm -f a.out a.exe conftest$ac_cv_exeext b.out
-+rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
- ac_clean_files=$ac_clean_files_save
--# Check the compiler produces executables we can run.  If not, either
--# the compiler is broken, or we cross compile.
--echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
--echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
--echo "$as_me:$LINENO: result: $cross_compiling" >&5
--echo "${ECHO_T}$cross_compiling" >&6
--
--echo "$as_me:$LINENO: checking for suffix of executables" >&5
--echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
--if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
--  (eval $ac_link) 2>&5
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
-+$as_echo_n "checking for suffix of executables... " >&6; }
-+if { { ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_link") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; then
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }; then :
-   # If both `conftest.exe' and `conftest' are `present' (well, observable)
- # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
- # work properly (i.e., refer to `conftest.exe'), while it won't with
-@@ -2275,38 +2914,90 @@ if { (eval echo "$as_me:$LINENO: \"$ac_l
- for ac_file in conftest.exe conftest conftest.*; do
-   test -f "$ac_file" || continue
-   case $ac_file in
--    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
-     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
--        export ac_cv_exeext
-         break;;
-     * ) break;;
-   esac
- done
- else
--  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
--See \`config.log' for more details." >&5
--echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
--See \`config.log' for more details." >&2;}
--   { (exit 1); exit 1; }; }
--fi
--
--rm -f conftest$ac_cv_exeext
--echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
--echo "${ECHO_T}$ac_cv_exeext" >&6
-+  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+as_fn_error $? "cannot compute suffix of executables: cannot compile and link
-+See \`config.log' for more details" "$LINENO" 5; }
-+fi
-+rm -f conftest conftest$ac_cv_exeext
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
-+$as_echo "$ac_cv_exeext" >&6; }
- rm -f conftest.$ac_ext
- EXEEXT=$ac_cv_exeext
- ac_exeext=$EXEEXT
--echo "$as_me:$LINENO: checking for suffix of object files" >&5
--echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
--if test "${ac_cv_objext+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
-+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-+/* end confdefs.h.  */
-+#include <stdio.h>
-+int
-+main ()
-+{
-+FILE *f = fopen ("conftest.out", "w");
-+ return ferror (f) || fclose (f) != 0;
-+
-+  ;
-+  return 0;
-+}
- _ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
-+ac_clean_files="$ac_clean_files conftest.out"
-+# Check that the compiler produces executables we can run.  If not, either
-+# the compiler is broken, or we cross compile.
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
-+$as_echo_n "checking whether we are cross compiling... " >&6; }
-+if test "$cross_compiling" != yes; then
-+  { { ac_try="$ac_link"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_link") 2>&5
-+  ac_status=$?
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }
-+  if { ac_try='./conftest$ac_cv_exeext'
-+  { { case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_try") 2>&5
-+  ac_status=$?
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }; }; then
-+    cross_compiling=no
-+  else
-+    if test "$cross_compiling" = maybe; then
-+      cross_compiling=yes
-+    else
-+      { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+as_fn_error $? "cannot run C compiled programs.
-+If you meant to cross compile, use \`--host'.
-+See \`config.log' for more details" "$LINENO" 5; }
-+    fi
-+  fi
-+fi
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
-+$as_echo "$cross_compiling" >&6; }
-+
-+rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
-+ac_clean_files=$ac_clean_files_save
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
-+$as_echo_n "checking for suffix of object files... " >&6; }
-+if ${ac_cv_objext+:} false; then :
-+  $as_echo_n "(cached) " >&6
-+else
-+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
- int
-@@ -2318,45 +3009,46 @@ main ()
- }
- _ACEOF
- rm -f conftest.o conftest.obj
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>&5
-+if { { ac_try="$ac_compile"
-+case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_compile") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; then
--  for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }; then :
-+  for ac_file in conftest.o conftest.obj conftest.*; do
-+  test -f "$ac_file" || continue;
-   case $ac_file in
--    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
-+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
-     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
-        break;;
-   esac
- done
- else
--  echo "$as_me: failed program was:" >&5
-+  $as_echo "$as_me: failed program was:" >&5
- sed 's/^/| /' conftest.$ac_ext >&5
--{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
--See \`config.log' for more details." >&5
--echo "$as_me: error: cannot compute suffix of object files: cannot compile
--See \`config.log' for more details." >&2;}
--   { (exit 1); exit 1; }; }
-+{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
-+$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
-+as_fn_error $? "cannot compute suffix of object files: cannot compile
-+See \`config.log' for more details" "$LINENO" 5; }
- fi
--
- rm -f conftest.$ac_cv_objext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
--echo "${ECHO_T}$ac_cv_objext" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
-+$as_echo "$ac_cv_objext" >&6; }
- OBJEXT=$ac_cv_objext
- ac_objext=$OBJEXT
--echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
--echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
--if test "${ac_cv_c_compiler_gnu+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
-+$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
-+if ${ac_cv_c_compiler_gnu+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
--  cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
-+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
- int
-@@ -2370,55 +3062,34 @@ main ()
-   return 0;
- }
- _ACEOF
--rm -f conftest.$ac_objext
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>conftest.er1
--  ac_status=$?
--  grep -v '^ *+' conftest.er1 >conftest.err
--  rm -f conftest.er1
--  cat conftest.err >&5
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       { ac_try='test -z "$ac_c_werror_flag"
--                       || test ! -s conftest.err'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; } &&
--       { ac_try='test -s conftest.$ac_objext'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
-+if ac_fn_c_try_compile "$LINENO"; then :
-   ac_compiler_gnu=yes
- else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--ac_compiler_gnu=no
-+  ac_compiler_gnu=no
- fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- ac_cv_c_compiler_gnu=$ac_compiler_gnu
- fi
--echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
--echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
--GCC=`test $ac_compiler_gnu = yes && echo yes`
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
-+$as_echo "$ac_cv_c_compiler_gnu" >&6; }
-+if test $ac_compiler_gnu = yes; then
-+  GCC=yes
-+else
-+  GCC=
-+fi
- ac_test_CFLAGS=${CFLAGS+set}
- ac_save_CFLAGS=$CFLAGS
--CFLAGS="-g"
--echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
--echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
--if test "${ac_cv_prog_cc_g+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
--else
--  cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
-+$as_echo_n "checking whether $CC accepts -g... " >&6; }
-+if ${ac_cv_prog_cc_g+:} false; then :
-+  $as_echo_n "(cached) " >&6
-+else
-+  ac_save_c_werror_flag=$ac_c_werror_flag
-+   ac_c_werror_flag=yes
-+   ac_cv_prog_cc_g=no
-+   CFLAGS="-g"
-+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
- int
-@@ -2429,39 +3100,49 @@ main ()
-   return 0;
- }
- _ACEOF
--rm -f conftest.$ac_objext
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>conftest.er1
--  ac_status=$?
--  grep -v '^ *+' conftest.er1 >conftest.err
--  rm -f conftest.er1
--  cat conftest.err >&5
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       { ac_try='test -z "$ac_c_werror_flag"
--                       || test ! -s conftest.err'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; } &&
--       { ac_try='test -s conftest.$ac_objext'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
-+if ac_fn_c_try_compile "$LINENO"; then :
-   ac_cv_prog_cc_g=yes
- else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
-+  CFLAGS=""
-+      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+if ac_fn_c_try_compile "$LINENO"; then :
--ac_cv_prog_cc_g=no
-+else
-+  ac_c_werror_flag=$ac_save_c_werror_flag
-+       CFLAGS="-g"
-+       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+if ac_fn_c_try_compile "$LINENO"; then :
-+  ac_cv_prog_cc_g=yes
- fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- fi
--echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
--echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+fi
-+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-+   ac_c_werror_flag=$ac_save_c_werror_flag
-+fi
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
-+$as_echo "$ac_cv_prog_cc_g" >&6; }
- if test "$ac_test_CFLAGS" = set; then
-   CFLAGS=$ac_save_CFLAGS
- elif test $ac_cv_prog_cc_g = yes; then
-@@ -2477,18 +3158,14 @@ else
-     CFLAGS=
-   fi
- fi
--echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
--echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
--if test "${ac_cv_prog_cc_stdc+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
-+$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
-+if ${ac_cv_prog_cc_c89+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
--  ac_cv_prog_cc_stdc=no
-+  ac_cv_prog_cc_c89=no
- ac_save_CC=$CC
--cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
-+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
- #include <stdarg.h>
- #include <stdio.h>
-@@ -2516,12 +3193,17 @@ static char *f (char * (*g) (char **, in
- /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
-    function prototypes and stuff, but not '\xHH' hex character constants.
-    These don't provoke an error unfortunately, instead are silently treated
--   as 'x'.  The following induces an error, until -std1 is added to get
-+   as 'x'.  The following induces an error, until -std is added to get
-    proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
-    array size at least.  It's necessary to write '\x00'==0 to get something
--   that's true only with -std1.  */
-+   that's true only with -std.  */
- int osf4_cc_array ['\x00' == 0 ? 1 : -1];
-+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
-+   inside strings and character constants.  */
-+#define FOO(x) 'x'
-+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
-+
- int test (int i, double x);
- struct s1 {int (*f) (int a);};
- struct s2 {int (*f) (double a);};
-@@ -2536,205 +3218,37 @@ return f (e, argv, 0) != argv[0]  ||  f 
-   return 0;
- }
- _ACEOF
--# Don't try gcc -ansi; that turns off useful extensions and
--# breaks some systems' header files.
--# AIX                 -qlanglvl=ansi
--# Ultrix and OSF/1    -std1
--# HP-UX 10.20 and later       -Ae
--# HP-UX older versions        -Aa -D_HPUX_SOURCE
--# SVR4                        -Xc -D__EXTENSIONS__
--for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
-+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
-+      -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
- do
-   CC="$ac_save_CC $ac_arg"
--  rm -f conftest.$ac_objext
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>conftest.er1
--  ac_status=$?
--  grep -v '^ *+' conftest.er1 >conftest.err
--  rm -f conftest.er1
--  cat conftest.err >&5
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       { ac_try='test -z "$ac_c_werror_flag"
--                       || test ! -s conftest.err'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; } &&
--       { ac_try='test -s conftest.$ac_objext'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
--  ac_cv_prog_cc_stdc=$ac_arg
--break
--else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
-+  if ac_fn_c_try_compile "$LINENO"; then :
-+  ac_cv_prog_cc_c89=$ac_arg
- fi
--rm -f conftest.err conftest.$ac_objext
-+rm -f core conftest.err conftest.$ac_objext
-+  test "x$ac_cv_prog_cc_c89" != "xno" && break
- done
--rm -f conftest.$ac_ext conftest.$ac_objext
-+rm -f conftest.$ac_ext
- CC=$ac_save_CC
- fi
--
--case "x$ac_cv_prog_cc_stdc" in
--  x|xno)
--    echo "$as_me:$LINENO: result: none needed" >&5
--echo "${ECHO_T}none needed" >&6 ;;
-+# AC_CACHE_VAL
-+case "x$ac_cv_prog_cc_c89" in
-+  x)
-+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
-+$as_echo "none needed" >&6; } ;;
-+  xno)
-+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
-+$as_echo "unsupported" >&6; } ;;
-   *)
--    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
--echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
--    CC="$CC $ac_cv_prog_cc_stdc" ;;
-+    CC="$CC $ac_cv_prog_cc_c89"
-+    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
-+$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
- esac
-+if test "x$ac_cv_prog_cc_c89" != xno; then :
--# Some people use a C++ compiler to compile C.  Since we use `exit',
--# in C++ we need to declare it.  In case someone uses the same compiler
--# for both compiling C and C++ we need to have the C++ compiler decide
--# the declaration of exit, since it's the most demanding environment.
--cat >conftest.$ac_ext <<_ACEOF
--#ifndef __cplusplus
--  choke me
--#endif
--_ACEOF
--rm -f conftest.$ac_objext
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>conftest.er1
--  ac_status=$?
--  grep -v '^ *+' conftest.er1 >conftest.err
--  rm -f conftest.er1
--  cat conftest.err >&5
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       { ac_try='test -z "$ac_c_werror_flag"
--                       || test ! -s conftest.err'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; } &&
--       { ac_try='test -s conftest.$ac_objext'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
--  for ac_declaration in \
--   '' \
--   'extern "C" void std::exit (int) throw (); using std::exit;' \
--   'extern "C" void std::exit (int); using std::exit;' \
--   'extern "C" void exit (int) throw ();' \
--   'extern "C" void exit (int);' \
--   'void exit (int);'
--do
--  cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h.  */
--$ac_declaration
--#include <stdlib.h>
--int
--main ()
--{
--exit (42);
--  ;
--  return 0;
--}
--_ACEOF
--rm -f conftest.$ac_objext
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>conftest.er1
--  ac_status=$?
--  grep -v '^ *+' conftest.er1 >conftest.err
--  rm -f conftest.er1
--  cat conftest.err >&5
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       { ac_try='test -z "$ac_c_werror_flag"
--                       || test ! -s conftest.err'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; } &&
--       { ac_try='test -s conftest.$ac_objext'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
--  :
--else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--continue
--fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
--  cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h.  */
--$ac_declaration
--int
--main ()
--{
--exit (42);
--  ;
--  return 0;
--}
--_ACEOF
--rm -f conftest.$ac_objext
--if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
--  (eval $ac_compile) 2>conftest.er1
--  ac_status=$?
--  grep -v '^ *+' conftest.er1 >conftest.err
--  rm -f conftest.er1
--  cat conftest.err >&5
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       { ac_try='test -z "$ac_c_werror_flag"
--                       || test ! -s conftest.err'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; } &&
--       { ac_try='test -s conftest.$ac_objext'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
--  ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
--  break
--else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
--done
--rm -f conftest*
--if test -n "$ac_declaration"; then
--  echo '#ifdef __cplusplus' >>confdefs.h
--  echo $ac_declaration      >>confdefs.h
--  echo '#endif'             >>confdefs.h
- fi
--else
--  echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--fi
--rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
- ac_ext=c
- ac_cpp='$CPP $CPPFLAGS'
- ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-@@ -2742,60 +3256,58 @@ ac_link='$CC -o conftest$ac_exeext $CFLA
- ac_compiler_gnu=$ac_cv_c_compiler_gnu
- DEPDIR="${am__leading_dot}deps"
--          ac_config_commands="$ac_config_commands depfiles"
-+ac_config_commands="$ac_config_commands depfiles"
- am_make=${MAKE-make}
- cat > confinc << 'END'
- am__doit:
--      @echo done
-+      @echo this is the am__doit target
- .PHONY: am__doit
- END
- # If we don't find an include directive, just comment out the code.
--echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
--echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
-+$as_echo_n "checking for style of include used by $am_make... " >&6; }
- am__include="#"
- am__quote=
- _am_result=none
- # First try GNU make style include.
- echo "include confinc" > confmf
--# We grep out `Entering directory' and `Leaving directory'
--# messages which can occur if `w' ends up in MAKEFLAGS.
--# In particular we don't look at `^make:' because GNU make might
--# be invoked under some other name (usually "gmake"), in which
--# case it prints its new name instead of `make'.
--if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
--   am__include=include
--   am__quote=
--   _am_result=GNU
--fi
-+# Ignore all kinds of additional output from `make'.
-+case `$am_make -s -f confmf 2> /dev/null` in #(
-+*the\ am__doit\ target*)
-+  am__include=include
-+  am__quote=
-+  _am_result=GNU
-+  ;;
-+esac
- # Now try BSD make style include.
- if test "$am__include" = "#"; then
-    echo '.include "confinc"' > confmf
--   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
--      am__include=.include
--      am__quote="\""
--      _am_result=BSD
--   fi
-+   case `$am_make -s -f confmf 2> /dev/null` in #(
-+   *the\ am__doit\ target*)
-+     am__include=.include
-+     am__quote="\""
-+     _am_result=BSD
-+     ;;
-+   esac
- fi
--echo "$as_me:$LINENO: result: $_am_result" >&5
--echo "${ECHO_T}$_am_result" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
-+$as_echo "$_am_result" >&6; }
- rm -f confinc confmf
--# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
--if test "${enable_dependency_tracking+set}" = set; then
--  enableval="$enable_dependency_tracking"
-+# Check whether --enable-dependency-tracking was given.
-+if test "${enable_dependency_tracking+set}" = set; then :
-+  enableval=$enable_dependency_tracking;
-+fi
--fi;
- if test "x$enable_dependency_tracking" != xno; then
-   am_depcomp="$ac_aux_dir/depcomp"
-   AMDEPBACKSLASH='\'
- fi
--
--
--if test "x$enable_dependency_tracking" != xno; then
-+ if test "x$enable_dependency_tracking" != xno; then
-   AMDEP_TRUE=
-   AMDEP_FALSE='#'
- else
-@@ -2805,13 +3317,12 @@ fi
--
- depcc="$CC"   am_compiler_list=
--echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
--echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
--if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
-+$as_echo_n "checking dependency style of $depcc... " >&6; }
-+if ${am_cv_CC_dependencies_compiler_type+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
-   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
-   # We make a subdir and do the tests there.  Otherwise we can end up
-@@ -2836,6 +3347,11 @@ else
-   if test "$am_compiler_list" = ""; then
-      am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
-   fi
-+  am__universal=false
-+  case " $depcc " in #(
-+     *\ -arch\ *\ -arch\ *) am__universal=true ;;
-+     esac
-+
-   for depmode in $am_compiler_list; do
-     # Setup a source with many dependencies, because some compilers
-     # like to wrap large dependency lists on column 80 (with \), and
-@@ -2853,7 +3369,17 @@ else
-     done
-     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-+    # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+    # mode.  It turns out that the SunPro C++ compiler does not properly
-+    # handle `-M -o', and we need to detect this.  Also, some Intel
-+    # versions had trouble with output in subdirs
-+    am__obj=sub/conftest.${OBJEXT-o}
-+    am__minus_obj="-o $am__obj"
-     case $depmode in
-+    gcc)
-+      # This depmode causes a compiler race in universal mode.
-+      test "$am__universal" = false || continue
-+      ;;
-     nosideeffect)
-       # after this tag, mechanisms are not by side-effect, so they'll
-       # only be used when explicitly requested
-@@ -2863,18 +3389,23 @@ else
-       break
-       fi
-       ;;
-+    msvisualcpp | msvcmsys)
-+      # This compiler won't grok `-c -o', but also, the minuso test has
-+      # not run yet.  These depmodes are late enough in the game, and
-+      # so weak that their functioning should not be impacted.
-+      am__obj=conftest.${OBJEXT-o}
-+      am__minus_obj=
-+      ;;
-     none) break ;;
-     esac
--    # We check with `-c' and `-o' for the sake of the "dashmstdout"
--    # mode.  It turns out that the SunPro C++ compiler does not properly
--    # handle `-M -o', and we need to detect this.
-     if depmode=$depmode \
--       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
-+       source=sub/conftest.c object=$am__obj \
-        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
--       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
-+       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
-          >/dev/null 2>conftest.err &&
-+       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
-        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
--       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
-+       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
-        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
-       # icc doesn't choke on unknown options, it will just issue warnings
-       # or remarks (even with -Werror).  So we grep stderr for any message
-@@ -2898,13 +3429,11 @@ else
- fi
- fi
--echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
--echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
-+$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
- CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
--
--
--if
-+ if
-   test "x$enable_dependency_tracking" != xno \
-   && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
-   am__fastdepCC_TRUE=
-@@ -2916,22 +3445,18 @@ fi
- if test "x$CC" != xcc; then
--  echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5
--echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5
-+$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
- else
--  echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5
--echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5
-+$as_echo_n "checking whether cc understands -c and -o together... " >&6; }
- fi
--set dummy $CC; ac_cc=`echo $2 |
-+set dummy $CC; ac_cc=`$as_echo "$2" |
-                     sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
--if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\" = set"; then
--  echo $ECHO_N "(cached) $ECHO_C" >&6
-+if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
-+  $as_echo_n "(cached) " >&6
- else
--  cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h.  */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
-+  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
- /* end confdefs.h.  */
- int
-@@ -2945,38 +3470,65 @@ _ACEOF
- # Make sure it works both with $CC and with simple cc.
- # We do the test twice because some compilers refuse to overwrite an
- # existing .o file with -o, though they will create one.
--ac_try='$CC -c conftest.$ac_ext -o conftest.$ac_objext >&5'
--if { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
-+ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
-+rm -f conftest2.*
-+if { { case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_try") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--   test -f conftest.$ac_objext && { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; } &&
-+   test -f conftest2.$ac_objext && { { case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_try") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); };
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; };
- then
-   eval ac_cv_prog_cc_${ac_cc}_c_o=yes
-   if test "x$CC" != xcc; then
-     # Test first that cc exists at all.
-     if { ac_try='cc -c conftest.$ac_ext >&5'
--  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
-+  { { case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_try") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); }; }; then
--      ac_try='cc -c conftest.$ac_ext -o conftest.$ac_objext >&5'
--      if { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; }; }; then
-+      ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
-+      rm -f conftest2.*
-+      if { { case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_try") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); } &&
--       test -f conftest.$ac_objext && { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
--  (eval $ac_try) 2>&5
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; } &&
-+       test -f conftest2.$ac_objext && { { case "(($ac_try" in
-+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-+  *) ac_try_echo=$ac_try;;
-+esac
-+eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
-+$as_echo "$ac_try_echo"; } >&5
-+  (eval "$ac_try") 2>&5
-   ac_status=$?
--  echo "$as_me:$LINENO: \$? = $ac_status" >&5
--  (exit $ac_status); };
-+  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
-+  test $ac_status = 0; };
-       then
-       # cc works too.
-       :
-@@ -2989,27 +3541,26 @@ then
- else
-   eval ac_cv_prog_cc_${ac_cc}_c_o=no
- fi
--rm -f conftest*
-+rm -f core conftest*
- fi
--if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = yes"; then
--  echo "$as_me:$LINENO: result: yes" >&5
--echo "${ECHO_T}yes" >&6
-+if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-+$as_echo "yes" >&6; }
- else
--  echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define NO_MINUS_C_MINUS_O 1
--_ACEOF
-+$as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h
- fi
- # FIXME: we rely on the cache variable name because
- # there is no other way.
- set dummy $CC
--ac_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
--if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then
-+am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
-+eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
-+if test "$am_t" != yes; then
-    # Losing compiler, so override with the script.
-    # FIXME: It is wrong to rewrite CC.
-    # But if we don't then we get into trouble of one sort or another.
-@@ -3025,15 +3576,12 @@ fi
--
- cat >>confdefs.h <<_ACEOF
- #define VMMC_CONFIGURE_STR "$ac_configure_args"
- _ACEOF
--
--
--if false; then
-+ if false; then
-   KERNEL_2_6_TRUE=
-   KERNEL_2_6_FALSE='#'
- else
-@@ -3041,13 +3589,10 @@ else
-   KERNEL_2_6_FALSE=
- fi
--# Check whether --enable-linux-26 or --disable-linux-26 was given.
--if test "${enable_linux_26+set}" = set; then
--  enableval="$enable_linux_26"
--
--
--
--if true; then
-+# Check whether --enable-linux-26 was given.
-+if test "${enable_linux_26+set}" = set; then :
-+  enableval=$enable_linux_26;
-+                 if true; then
-   KERNEL_2_6_TRUE=
-   KERNEL_2_6_FALSE='#'
- else
-@@ -3068,51 +3613,43 @@ fi
-                         KERNEL_ARCH=$ARCH
-                 else
--                        { { echo "$as_me:$LINENO: error: Kernel architecture not set!" >&5
--echo "$as_me: error: Kernel architecture not set!" >&2;}
--   { (exit 1); exit 1; }; }
-+                        as_fn_error $? "Kernel architecture not set!" "$LINENO" 5
-                 fi
- #                if test "`echo $0|cut -c1`" = "/" ; then
- #                        AC_MSG_ERROR([Due to a kbuild problem, please call configure with a relative path.])
- #                fi
--            echo "$as_me:$LINENO: result: enable Linux 2.6 kernel build system" >&5
--echo "${ECHO_T}enable Linux 2.6 kernel build system" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Linux 2.6 kernel build system" >&5
-+$as_echo "enable Linux 2.6 kernel build system" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define LINUX_2_6 1
--_ACEOF
-+$as_echo "#define LINUX_2_6 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-kernelincl or --disable-kernelincl was given.
--if test "${enable_kernelincl+set}" = set; then
--  enableval="$enable_kernelincl"
-+# Check whether --enable-kernelincl was given.
-+if test "${enable_kernelincl+set}" = set; then :
-+  enableval=$enable_kernelincl;
-                 if test -r $enableval/linux/kernel.h; then
-                         KERNEL_INCL_PATH=$enableval
-                 else
--                        { { echo "$as_me:$LINENO: error: The kernel include directory is not valid!" >&5
--echo "$as_me: error: The kernel include directory is not valid!" >&2;}
--   { (exit 1); exit 1; }; }
-+                        as_fn_error $? "The kernel include directory is not valid!" "$LINENO" 5
-                 fi
--fi;
-+fi
--# Check whether --enable-kernelbuild or --disable-kernelbuild was given.
--if test "${enable_kernelbuild+set}" = set; then
--  enableval="$enable_kernelbuild"
--                if test -r $enableval/include/linux/autoconf.h; then
-+# Check whether --enable-kernelbuild was given.
-+if test "${enable_kernelbuild+set}" = set; then :
-+  enableval=$enable_kernelbuild;
-+                if test -e $enableval/include/linux/autoconf.h -o -e $enableval/include/generated/autoconf.h; then
-                         KERNEL_BUILD_PATH=$enableval
-                 else
--                        { { echo "$as_me:$LINENO: error: The kernel build directory is not valid or not configured!" >&5
--echo "$as_me: error: The kernel build directory is not valid or not configured!" >&2;}
--   { (exit 1); exit 1; }; }
-+                        as_fn_error $? "The kernel build directory is not valid or not configured!" "$LINENO" 5
-                 fi
- else
-@@ -3124,62 +3661,52 @@ else
-                 fi
--fi;
-+fi
--# Check whether --with-ifxos-incl or --without-ifxos-incl was given.
--if test "${with_ifxos_incl+set}" = set; then
--  withval="$with_ifxos_incl"
-+# Check whether --with-ifxos-incl was given.
-+if test "${with_ifxos_incl+set}" = set; then :
-+  withval=$with_ifxos_incl;
-       if test -r $withval/ifx_types.h; then
-          IFXOS_INCL_PATH=$withval
-       else
--         { { echo "$as_me:$LINENO: error: The lib_ifxos include directory is not valid!" >&5
--echo "$as_me: error: The lib_ifxos include directory is not valid!" >&2;}
--   { (exit 1); exit 1; }; }
-+         as_fn_error $? "The lib_ifxos include directory is not valid!" "$LINENO" 5
-       fi
- else
--      # Check whether --enable-ifxos-incl or --disable-ifxos-incl was given.
--if test "${enable_ifxos_incl+set}" = set; then
--  enableval="$enable_ifxos_incl"
--
-+      # Check whether --enable-ifxos-incl was given.
-+if test "${enable_ifxos_incl+set}" = set; then :
-+  enableval=$enable_ifxos_incl;
-             if test -r $enableval/ifx_types.h; then
-                IFXOS_INCL_PATH=$enableval
-             else
--               { { echo "$as_me:$LINENO: error: The lib_ifxos include directory is not valid!" >&5
--echo "$as_me: error: The lib_ifxos include directory is not valid!" >&2;}
--   { (exit 1); exit 1; }; }
-+               as_fn_error $? "The lib_ifxos include directory is not valid!" "$LINENO" 5
-             fi
- else
--            { { echo "$as_me:$LINENO: error: Please specify lib_ifxos include directory path. (--with-ifxos-incl=x)" >&5
--echo "$as_me: error: Please specify lib_ifxos include directory path. (--with-ifxos-incl=x)" >&2;}
--   { (exit 1); exit 1; }; }
-+            as_fn_error $? "Please specify lib_ifxos include directory path. (--with-ifxos-incl=x)" "$LINENO" 5
--fi;
--
-+fi
--fi;
--# Check whether --enable-obsolete-premapping or --disable-obsolete-premapping was given.
--if test "${enable_obsolete_premapping+set}" = set; then
--  enableval="$enable_obsolete_premapping"
--        if test $enableval = 'yes'; then
-+fi
--cat >>confdefs.h <<\_ACEOF
--#define ENABLE_OBSOLETE_PREMAPPING 1
--_ACEOF
-+# Check whether --enable-obsolete-premapping was given.
-+if test "${enable_obsolete_premapping+set}" = set; then :
-+  enableval=$enable_obsolete_premapping;
-+        if test $enableval = 'yes'; then
-+$as_echo "#define ENABLE_OBSOLETE_PREMAPPING 1" >>confdefs.h
--if true; then
-+             if true; then
-   ENABLE_OBSOLETE_PREMAPPING_TRUE=
-   ENABLE_OBSOLETE_PREMAPPING_FALSE='#'
- else
-@@ -3187,12 +3714,10 @@ else
-   ENABLE_OBSOLETE_PREMAPPING_FALSE=
- fi
--         echo "$as_me:$LINENO: result: enable obsolete data channel premapping" >&5
--echo "${ECHO_T}enable obsolete data channel premapping" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable obsolete data channel premapping" >&5
-+$as_echo "enable obsolete data channel premapping" >&6; }
-         else
--
--
--if false; then
-+             if false; then
-   ENABLE_OBSOLETE_PREMAPPING_TRUE=
-   ENABLE_OBSOLETE_PREMAPPING_FALSE='#'
- else
-@@ -3204,9 +3729,7 @@ fi
- else
--
--
--if false; then
-+         if false; then
-   ENABLE_OBSOLETE_PREMAPPING_TRUE=
-   ENABLE_OBSOLETE_PREMAPPING_FALSE='#'
- else
-@@ -3216,12 +3739,11 @@ fi
--fi;
--
-+fi
--if false; then
-+ if false; then
-   WARNINGS_TRUE=
-   WARNINGS_FALSE='#'
- else
-@@ -3229,13 +3751,10 @@ else
-   WARNINGS_FALSE=
- fi
--# Check whether --enable-warnings or --disable-warnings was given.
--if test "${enable_warnings+set}" = set; then
--  enableval="$enable_warnings"
--
--
--
--if true; then
-+# Check whether --enable-warnings was given.
-+if test "${enable_warnings+set}" = set; then :
-+  enableval=$enable_warnings;
-+         if true; then
-   WARNINGS_TRUE=
-   WARNINGS_FALSE='#'
- else
-@@ -3245,22 +3764,18 @@ fi
--fi;
-+fi
--# Check whether --enable-debug or --disable-debug was given.
--if test "${enable_debug+set}" = set; then
--  enableval="$enable_debug"
-+# Check whether --enable-debug was given.
-+if test "${enable_debug+set}" = set; then :
-+  enableval=$enable_debug;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define DEBUG 1
--_ACEOF
--
-+$as_echo "#define DEBUG 1" >>confdefs.h
--
--if true; then
-+             if true; then
-   DEBUG_TRUE=
-   DEBUG_FALSE='#'
- else
-@@ -3270,9 +3785,7 @@ fi
-             CFLAGS="-O1 -g3"
-         else
--
--
--if false; then
-+             if false; then
-   DEBUG_TRUE=
-   DEBUG_FALSE='#'
- else
-@@ -3284,9 +3797,7 @@ fi
- else
--
--
--if false; then
-+         if false; then
-   DEBUG_TRUE=
-   DEBUG_FALSE='#'
- else
-@@ -3296,53 +3807,46 @@ fi
--fi;
-+fi
--# Check whether --enable-proc or --disable-proc was given.
--if test "${enable_proc+set}" = set; then
--  enableval="$enable_proc"
-+# Check whether --enable-proc was given.
-+if test "${enable_proc+set}" = set; then :
-+  enableval=$enable_proc;
-         if test $enableval = 'yes'; then
--            echo "$as_me:$LINENO: result: enable use of proc filesystem entries (Linux only)" >&5
--echo "${ECHO_T}enable use of proc filesystem entries (Linux only)" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable use of proc filesystem entries (Linux only)" >&5
-+$as_echo "enable use of proc filesystem entries (Linux only)" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_USE_PROC 1
--_ACEOF
-+$as_echo "#define VMMC_USE_PROC 1" >>confdefs.h
-         fi
- else
--        echo "$as_me:$LINENO: result: enable use of proc filesystem entries (Linux only)" >&5
--echo "${ECHO_T}enable use of proc filesystem entries (Linux only)" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_USE_PROC 1
--_ACEOF
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable use of proc filesystem entries (Linux only)" >&5
-+$as_echo "enable use of proc filesystem entries (Linux only)" >&6; }
-+$as_echo "#define VMMC_USE_PROC 1" >>confdefs.h
--fi;
--# Check whether --enable-user-config or --disable-user-config was given.
--if test "${enable_user_config+set}" = set; then
--  enableval="$enable_user_config"
-+fi
--       echo "$as_me:$LINENO: result: enable user configuration" >&5
--echo "${ECHO_T}enable user configuration" >&6
--cat >>confdefs.h <<\_ACEOF
--#define ENABLE_USER_CONFIG 1
--_ACEOF
-+# Check whether --enable-user-config was given.
-+if test "${enable_user_config+set}" = set; then :
-+  enableval=$enable_user_config;
-+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable user configuration" >&5
-+$as_echo "enable user configuration" >&6; }
-+$as_echo "#define ENABLE_USER_CONFIG 1" >>confdefs.h
--fi;
-+fi
--if false; then
-+ if false; then
-   HL_TAPI_INCL_PATH_SET_TRUE=
-   HL_TAPI_INCL_PATH_SET_FALSE='#'
- else
-@@ -3350,22 +3854,19 @@ else
-   HL_TAPI_INCL_PATH_SET_FALSE=
- fi
--# Check whether --enable-tapiincl or --disable-tapiincl was given.
--if test "${enable_tapiincl+set}" = set; then
--  enableval="$enable_tapiincl"
--
-+# Check whether --enable-tapiincl was given.
-+if test "${enable_tapiincl+set}" = set; then :
-+  enableval=$enable_tapiincl;
-         if test -n $enableval; then
-            # create an absolute path to be valid also from within the build dir
-            if test "`echo $enableval|cut -c1`" != "/" ; then
-               enableval=`echo $PWD/$enableval`
-            fi
--           echo "$as_me:$LINENO: result: enable including of TAPI headers from $enableval" >&5
--echo "${ECHO_T}enable including of TAPI headers from $enableval" >&6
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable including of TAPI headers from $enableval" >&5
-+$as_echo "enable including of TAPI headers from $enableval" >&6; }
-            HL_TAPI_INCL_PATH=$enableval
--
--
--if true; then
-+            if true; then
-   HL_TAPI_INCL_PATH_SET_TRUE=
-   HL_TAPI_INCL_PATH_SET_FALSE='#'
- else
-@@ -3377,15 +3878,14 @@ fi
- else
--        echo "$as_me:$LINENO: result: assuming default TAPI include path. Change with --enable-tapiincl=path" >&5
--echo "${ECHO_T}assuming default TAPI include path. Change with --enable-tapiincl=path" >&6
--
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: assuming default TAPI include path. Change with --enable-tapiincl=path" >&5
-+$as_echo "assuming default TAPI include path. Change with --enable-tapiincl=path" >&6; }
--fi;
-+fi
--if false; then
-+ if false; then
-   MPS_INCL_PATH_SET_TRUE=
-   MPS_INCL_PATH_SET_FALSE='#'
- else
-@@ -3393,22 +3893,19 @@ else
-   MPS_INCL_PATH_SET_FALSE=
- fi
--# Check whether --enable-mpsincl or --disable-mpsincl was given.
--if test "${enable_mpsincl+set}" = set; then
--  enableval="$enable_mpsincl"
--
-+# Check whether --enable-mpsincl was given.
-+if test "${enable_mpsincl+set}" = set; then :
-+  enableval=$enable_mpsincl;
-         if test -n $enableval; then
-            # create an absolute path to be valid also from within the build dir
-            if test "`echo $enableval|cut -c1`" != "/" ; then
-               enableval=`echo $PWD/$enableval`
-            fi
--           echo "$as_me:$LINENO: result: enable including of MPS headers from $enableval" >&5
--echo "${ECHO_T}enable including of MPS headers from $enableval" >&6
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable including of MPS headers from $enableval" >&5
-+$as_echo "enable including of MPS headers from $enableval" >&6; }
-            MPS_INCL_PATH=$enableval
--
--
--if true; then
-+            if true; then
-   MPS_INCL_PATH_SET_TRUE=
-   MPS_INCL_PATH_SET_FALSE='#'
- else
-@@ -3420,43 +3917,40 @@ fi
- else
--        echo "$as_me:$LINENO: result: assuming default MPS include path. Change with --enable-mpsincl=path" >&5
--echo "${ECHO_T}assuming default MPS include path. Change with --enable-mpsincl=path" >&6
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: assuming default MPS include path. Change with --enable-mpsincl=path" >&5
-+$as_echo "assuming default MPS include path. Change with --enable-mpsincl=path" >&6; }
--fi;
-+fi
--MAX_DEVICES=1
--# Check whether --with-max-devices or --without-max-devices was given.
--if test "${with_max_devices+set}" = set; then
--  withval="$with_max_devices"
-+MAX_DEVICES=1
-+# Check whether --with-max-devices was given.
-+if test "${with_max_devices+set}" = set; then :
-+  withval=$with_max_devices;
-        if test "$withval" = yes; then
--          { { echo "$as_me:$LINENO: error: Please provide a value for the maximum devices" >&5
--echo "$as_me: error: Please provide a value for the maximum devices" >&2;}
--   { (exit 1); exit 1; }; };
-+          as_fn_error $? "Please provide a value for the maximum devices" "$LINENO" 5;
-        fi
--       echo "$as_me:$LINENO: result: enable support for $withval device(s)" >&5
--echo "${ECHO_T}enable support for $withval device(s)" >&6
-+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable support for $withval device(s)" >&5
-+$as_echo "enable support for $withval device(s)" >&6; }
-         MAX_DEVICES=$withval
- else
--        echo "$as_me:$LINENO: result: enable support for 1 device (default), set max devices with --with-max-devices=val" >&5
--echo "${ECHO_T}enable support for 1 device (default), set max devices with --with-max-devices=val" >&6
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable support for 1 device (default), set max devices with --with-max-devices=val" >&5
-+$as_echo "enable support for 1 device (default), set max devices with --with-max-devices=val" >&6; }
-+
-+fi
--fi;
- cat >>confdefs.h <<_ACEOF
- #define VMMC_MAX_DEVICES $MAX_DEVICES
- _ACEOF
--
--
--if false; then
-+ if false; then
-   EVALUATION_TRUE=
-   EVALUATION_FALSE='#'
- else
-@@ -3464,21 +3958,16 @@ else
-   EVALUATION_FALSE=
- fi
--# Check whether --enable-eval or --disable-eval was given.
--if test "${enable_eval+set}" = set; then
--  enableval="$enable_eval"
--
-+# Check whether --enable-eval was given.
-+if test "${enable_eval+set}" = set; then :
-+  enableval=$enable_eval;
-        if test $enableval = 'yes'; then
--          echo "$as_me:$LINENO: result: enable evaluation features." >&5
--echo "${ECHO_T}enable evaluation features." >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define EVALUATION 1
--_ACEOF
-+          { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable evaluation features." >&5
-+$as_echo "enable evaluation features." >&6; }
-+$as_echo "#define EVALUATION 1" >>confdefs.h
--
--if true; then
-+           if true; then
-   EVALUATION_TRUE=
-   EVALUATION_FALSE='#'
- else
-@@ -3487,58 +3976,48 @@ else
- fi
-        else
--          echo "$as_me:$LINENO: result: disable evaluation features" >&5
--echo "${ECHO_T}disable evaluation features" >&6
-+          { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable evaluation features" >&5
-+$as_echo "disable evaluation features" >&6; }
-        fi
--fi;
-+fi
--# Check whether --enable-trace or --disable-trace was given.
--if test "${enable_trace+set}" = set; then
--  enableval="$enable_trace"
-+# Check whether --enable-trace was given.
-+if test "${enable_trace+set}" = set; then :
-+  enableval=$enable_trace;
-       if test $enableval = 'yes'; then
--       echo "$as_me:$LINENO: result: enable runtime traces" >&5
--echo "${ECHO_T}enable runtime traces" >&6
-+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable runtime traces" >&5
-+$as_echo "enable runtime traces" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define ENABLE_TRACE 1
--_ACEOF
-+$as_echo "#define ENABLE_TRACE 1" >>confdefs.h
--cat >>confdefs.h <<\_ACEOF
--#define ENABLE_LOG 1
--_ACEOF
-+$as_echo "#define ENABLE_LOG 1" >>confdefs.h
--cat >>confdefs.h <<\_ACEOF
--#define RUNTIME_TRACE 1
--_ACEOF
-+$as_echo "#define RUNTIME_TRACE 1" >>confdefs.h
-       else
--         echo "$as_me:$LINENO: result: disable runtime traces" >&5
--echo "${ECHO_T}disable runtime traces" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable runtime traces" >&5
-+$as_echo "disable runtime traces" >&6; }
-       fi
--fi;
-+fi
--# Check whether --enable-module or --disable-module was given.
--if test "${enable_module+set}" = set; then
--  enableval="$enable_module"
-+# Check whether --enable-module was given.
-+if test "${enable_module+set}" = set; then :
-+  enableval=$enable_module;
-         if test $enableval = 'yes'; then
--            echo "$as_me:$LINENO: result: enable LINUX MODULE support" >&5
--echo "${ECHO_T}enable LINUX MODULE support" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define USE_MODULE 1
--_ACEOF
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable LINUX MODULE support" >&5
-+$as_echo "enable LINUX MODULE support" >&6; }
-+$as_echo "#define USE_MODULE 1" >>confdefs.h
--
--if true; then
-+             if true; then
-   USE_MODULE_TRUE=
-   USE_MODULE_FALSE='#'
- else
-@@ -3547,11 +4026,9 @@ else
- fi
-         else
--            echo "$as_me:$LINENO: result: disable LINUX MODULE support" >&5
--echo "${ECHO_T}disable LINUX MODULE support" >&6
--
--
--if false; then
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable LINUX MODULE support" >&5
-+$as_echo "disable LINUX MODULE support" >&6; }
-+             if false; then
-   USE_MODULE_TRUE=
-   USE_MODULE_FALSE='#'
- else
-@@ -3563,16 +4040,12 @@ fi
- else
--                echo "$as_me:$LINENO: result: enable LINUX MODULE support (default), disable with --disable-module" >&5
--echo "${ECHO_T}enable LINUX MODULE support (default), disable with --disable-module" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define USE_MODULE 1
--_ACEOF
--
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable LINUX MODULE support (default), disable with --disable-module" >&5
-+$as_echo "enable LINUX MODULE support (default), disable with --disable-module" >&6; }
-+$as_echo "#define USE_MODULE 1" >>confdefs.h
--if true; then
-+         if true; then
-   USE_MODULE_TRUE=
-   USE_MODULE_FALSE='#'
- else
-@@ -3582,23 +4055,19 @@ fi
--fi;
-+fi
--# Check whether --enable-bufferhandling or --disable-bufferhandling was given.
--if test "${enable_bufferhandling+set}" = set; then
--  enableval="$enable_bufferhandling"
-+# Check whether --enable-bufferhandling was given.
-+if test "${enable_bufferhandling+set}" = set; then :
-+  enableval=$enable_bufferhandling;
-         if test $enableval = 'yes'; then
--            echo "$as_me:$LINENO: result: enable Buffer Pool support" >&5
--echo "${ECHO_T}enable Buffer Pool support" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define USE_BUFFERPOOL 1
--_ACEOF
--
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Buffer Pool support" >&5
-+$as_echo "enable Buffer Pool support" >&6; }
-+$as_echo "#define USE_BUFFERPOOL 1" >>confdefs.h
--if true; then
-+             if true; then
-   USE_BUFFERPOOL_TRUE=
-   USE_BUFFERPOOL_FALSE='#'
- else
-@@ -3608,11 +4077,9 @@ fi
-             bufferhandling_enabled="yes"
-         else
--            echo "$as_me:$LINENO: result: disable Buffer Pool support" >&5
--echo "${ECHO_T}disable Buffer Pool support" >&6
--
--
--if false; then
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Buffer Pool support" >&5
-+$as_echo "disable Buffer Pool support" >&6; }
-+             if false; then
-   USE_BUFFERPOOL_TRUE=
-   USE_BUFFERPOOL_FALSE='#'
- else
-@@ -3625,16 +4092,12 @@ fi
- else
--                echo "$as_me:$LINENO: result: enable Buffer Pool support (default), disable with --disable-bufferhandling" >&5
--echo "${ECHO_T}enable Buffer Pool support (default), disable with --disable-bufferhandling" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define USE_BUFFERPOOL 1
--_ACEOF
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Buffer Pool support (default), disable with --disable-bufferhandling" >&5
-+$as_echo "enable Buffer Pool support (default), disable with --disable-bufferhandling" >&6; }
-+$as_echo "#define USE_BUFFERPOOL 1" >>confdefs.h
--
--if true; then
-+         if true; then
-   USE_BUFFERPOOL_TRUE=
-   USE_BUFFERPOOL_FALSE='#'
- else
-@@ -3645,41 +4108,36 @@ fi
-          bufferhandling_enabled="yes"
--fi;
-+fi
--# Check whether --enable-packet-owner-id or --disable-packet-owner-id was given.
--if test "${enable_packet_owner_id+set}" = set; then
--  enableval="$enable_packet_owner_id"
-+# Check whether --enable-packet-owner-id was given.
-+if test "${enable_packet_owner_id+set}" = set; then :
-+  enableval=$enable_packet_owner_id;
-       if test $enableval = 'yes' -a $bufferhandling_enabled = "yes"; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_PACKET 1
--_ACEOF
-+$as_echo "#define TAPI_PACKET 1" >>confdefs.h
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_PACKET_OWNID 1
--_ACEOF
-+$as_echo "#define TAPI_PACKET_OWNID 1" >>confdefs.h
--         echo "$as_me:$LINENO: result: enable owner ID for packet interface" >&5
--echo "${ECHO_T}enable owner ID for packet interface" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable owner ID for packet interface" >&5
-+$as_echo "enable owner ID for packet interface" >&6; }
-       else
--         echo "$as_me:$LINENO: result: disable owner ID for packet interface" >&5
--echo "${ECHO_T}disable owner ID for packet interface" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable owner ID for packet interface" >&5
-+$as_echo "disable owner ID for packet interface" >&6; }
-       fi
- else
--      echo "$as_me:$LINENO: result: disable owner ID for packet interface" >&5
--echo "${ECHO_T}disable owner ID for packet interface" >&6
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable owner ID for packet interface" >&5
-+$as_echo "disable owner ID for packet interface" >&6; }
--fi;
--
-+fi
--if false; then
-+ if false; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3688,19 +4146,14 @@ else
- fi
--# Check whether --enable-lt or --disable-lt was given.
--if test "${enable_lt+set}" = set; then
--  enableval="$enable_lt"
--
-+# Check whether --enable-lt was given.
-+if test "${enable_lt+set}" = set; then :
-+  enableval=$enable_lt;
-       if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+          if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3708,36 +4161,30 @@ else
-   TAPI_FALSE=
- fi
--         echo "$as_me:$LINENO: result: enable TAPI line testing services" >&5
--echo "${ECHO_T}enable TAPI line testing services" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI line testing services" >&5
-+$as_echo "enable TAPI line testing services" >&6; }
-          #AC_DEFINE([TAPI_LT],[1],[enable line testing])
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_GR909 1
--_ACEOF
-+$as_echo "#define TAPI_GR909 1" >>confdefs.h
-       else
--         echo "$as_me:$LINENO: result: disable line testing services" >&5
--echo "${ECHO_T}disable line testing services" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable line testing services" >&5
-+$as_echo "disable line testing services" >&6; }
-       fi
--fi;
-+fi
-+
- hdlc_enabled=false
--# Check whether --enable-hdlc or --disable-hdlc was given.
--if test "${enable_hdlc+set}" = set; then
--  enableval="$enable_hdlc"
--
-+# Check whether --enable-hdlc was given.
-+if test "${enable_hdlc+set}" = set; then :
-+  enableval=$enable_hdlc;
-       if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--
--if true; then
-+          if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3745,74 +4192,62 @@ else
-   TAPI_FALSE=
- fi
--         echo "$as_me:$LINENO: result: enable TAPI HDLC support" >&5
--echo "${ECHO_T}enable TAPI HDLC support" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI HDLC support" >&5
-+$as_echo "enable TAPI HDLC support" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define HDLC_SUPPORT 1
--_ACEOF
-+$as_echo "#define HDLC_SUPPORT 1" >>confdefs.h
-          hdlc_enabled=true
-       else
--         echo "$as_me:$LINENO: result: disable HDLC support" >&5
--echo "${ECHO_T}disable HDLC support" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable HDLC support" >&5
-+$as_echo "disable HDLC support" >&6; }
-       fi
--fi;
-+fi
--# Check whether --enable-hdlc-idle-patt or --disable-hdlc-idle-patt was given.
--if test "${enable_hdlc_idle_patt+set}" = set; then
--  enableval="$enable_hdlc_idle_patt"
-+# Check whether --enable-hdlc-idle-patt was given.
-+if test "${enable_hdlc_idle_patt+set}" = set; then :
-+  enableval=$enable_hdlc_idle_patt;
-       if test $hdlc_enabled = true; then
-          if test -n $enableval; then
-             if test $enableval = "0xFF" -o $enableval = "0xff"; then
--               echo "$as_me:$LINENO: result: enable HDLC inter frame idle pattern 0xFF (IDLE)" >&5
--echo "${ECHO_T}enable HDLC inter frame idle pattern 0xFF (IDLE)" >&6
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable HDLC inter frame idle pattern 0xFF (IDLE)" >&5
-+$as_echo "enable HDLC inter frame idle pattern 0xFF (IDLE)" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define HDLC_IDLE_PATTERN 1
--_ACEOF
-+$as_echo "#define HDLC_IDLE_PATTERN 1" >>confdefs.h
-             elif test $enableval = "0x7E" -o $enableval = "0x7e"; then
--               echo "$as_me:$LINENO: result: enable HDLC inter frame idle pattern 0x7E (FLAGS)" >&5
--echo "${ECHO_T}enable HDLC inter frame idle pattern 0x7E (FLAGS)" >&6
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable HDLC inter frame idle pattern 0x7E (FLAGS)" >&5
-+$as_echo "enable HDLC inter frame idle pattern 0x7E (FLAGS)" >&6; }
-             else
--               { { echo "$as_me:$LINENO: error: cannot enable HDLC idle pattern, valid values are 0xFF or 0x7E" >&5
--echo "$as_me: error: cannot enable HDLC idle pattern, valid values are 0xFF or 0x7E" >&2;}
--   { (exit 1); exit 1; }; }
-+               as_fn_error $? "cannot enable HDLC idle pattern, valid values are 0xFF or 0x7E" "$LINENO" 5
-             fi
-          fi
-       else
--         { { echo "$as_me:$LINENO: error: cannot enable HDLC idle pattern, please enable HDLC feature with --enable-hdlc" >&5
--echo "$as_me: error: cannot enable HDLC idle pattern, please enable HDLC feature with --enable-hdlc" >&2;}
--   { (exit 1); exit 1; }; }
-+         as_fn_error $? "cannot enable HDLC idle pattern, please enable HDLC feature with --enable-hdlc" "$LINENO" 5
-       fi
- else
-       if test $hdlc_enabled = true; then
--         echo "$as_me:$LINENO: result: enable default HDLC inter frame idle pattern 0x7E (FLAGS)" >&5
--echo "${ECHO_T}enable default HDLC inter frame idle pattern 0x7E (FLAGS)" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable default HDLC inter frame idle pattern 0x7E (FLAGS)" >&5
-+$as_echo "enable default HDLC inter frame idle pattern 0x7E (FLAGS)" >&6; }
-       fi
--fi;
-+fi
--# Check whether --enable-voice or --disable-voice was given.
--if test "${enable_voice+set}" = set; then
--  enableval="$enable_voice"
-+# Check whether --enable-voice was given.
-+if test "${enable_voice+set}" = set; then :
-+  enableval=$enable_voice;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3820,30 +4255,24 @@ else
-   TAPI_FALSE=
- fi
--            echo "$as_me:$LINENO: result: enable TAPI Voice support" >&5
--echo "${ECHO_T}enable TAPI Voice support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI Voice support" >&5
-+$as_echo "enable TAPI Voice support" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_VOICE 1
--_ACEOF
-+$as_echo "#define TAPI_VOICE 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable Voice support" >&5
--echo "${ECHO_T}disable Voice support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Voice support" >&5
-+$as_echo "disable Voice support" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable TAPI Voice support (default), disable with --disable-voice" >&5
--echo "${ECHO_T}enable TAPI Voice support (default), disable with --disable-voice" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI Voice support (default), disable with --disable-voice" >&5
-+$as_echo "enable TAPI Voice support (default), disable with --disable-voice" >&6; }
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+         if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3852,27 +4281,21 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_VOICE 1
--_ACEOF
-+$as_echo "#define TAPI_VOICE 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-dtmf or --disable-dtmf was given.
--if test "${enable_dtmf+set}" = set; then
--  enableval="$enable_dtmf"
-+# Check whether --enable-dtmf was given.
-+if test "${enable_dtmf+set}" = set; then :
-+  enableval=$enable_dtmf;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3880,30 +4303,24 @@ else
-   TAPI_FALSE=
- fi
--            echo "$as_me:$LINENO: result: enable TAPI DTMF support" >&5
--echo "${ECHO_T}enable TAPI DTMF support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI DTMF support" >&5
-+$as_echo "enable TAPI DTMF support" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_DTMF 1
--_ACEOF
-+$as_echo "#define TAPI_DTMF 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable TAPI DTMF support" >&5
--echo "${ECHO_T}disable TAPI DTMF support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI DTMF support" >&5
-+$as_echo "disable TAPI DTMF support" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable TAPI DTMF support (default), disable with --disable-dtmf" >&5
--echo "${ECHO_T}enable TAPI DTMF support (default), disable with --disable-dtmf" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI DTMF support (default), disable with --disable-dtmf" >&5
-+$as_echo "enable TAPI DTMF support (default), disable with --disable-dtmf" >&6; }
-+$as_echo "#define TAPI 1" >>confdefs.h
--
--if true; then
-+         if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3912,27 +4329,21 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_DTMF 1
--_ACEOF
-+$as_echo "#define TAPI_DTMF 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-cid or --disable-cid was given.
--if test "${enable_cid+set}" = set; then
--  enableval="$enable_cid"
-+# Check whether --enable-cid was given.
-+if test "${enable_cid+set}" = set; then :
-+  enableval=$enable_cid;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3940,30 +4351,24 @@ else
-   TAPI_FALSE=
- fi
--            echo "$as_me:$LINENO: result: enable TAPI CID support." >&5
--echo "${ECHO_T}enable TAPI CID support." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI CID support." >&5
-+$as_echo "enable TAPI CID support." >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_CID 1
--_ACEOF
-+$as_echo "#define TAPI_CID 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable TAPI CID support." >&5
--echo "${ECHO_T}disable TAPI CID support." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI CID support." >&5
-+$as_echo "disable TAPI CID support." >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable TAPI CID support (default), disable with --disable-cid" >&5
--echo "${ECHO_T}enable TAPI CID support (default), disable with --disable-cid" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI CID support (default), disable with --disable-cid" >&5
-+$as_echo "enable TAPI CID support (default), disable with --disable-cid" >&6; }
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+         if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -3972,27 +4377,21 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_CID 1
--_ACEOF
-+$as_echo "#define TAPI_CID 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-fax or --disable-fax was given.
--if test "${enable_fax+set}" = set; then
--  enableval="$enable_fax"
-+# Check whether --enable-fax was given.
-+if test "${enable_fax+set}" = set; then :
-+  enableval=$enable_fax;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4000,30 +4399,24 @@ else
-   TAPI_FALSE=
- fi
--            echo "$as_me:$LINENO: result: enable TAPI FAX support" >&5
--echo "${ECHO_T}enable TAPI FAX support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI FAX support" >&5
-+$as_echo "enable TAPI FAX support" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_FAX_T38 1
--_ACEOF
-+$as_echo "#define TAPI_FAX_T38 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable TAPI FAX support" >&5
--echo "${ECHO_T}disable TAPI FAX support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI FAX support" >&5
-+$as_echo "disable TAPI FAX support" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable TAPI FAX support (default), disable with --disable-fax" >&5
--echo "${ECHO_T}enable TAPI FAX support (default), disable with --disable-fax" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI FAX support (default), disable with --disable-fax" >&5
-+$as_echo "enable TAPI FAX support (default), disable with --disable-fax" >&6; }
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+         if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4032,27 +4425,21 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_FAX_T38 1
--_ACEOF
-+$as_echo "#define TAPI_FAX_T38 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-t38 or --disable-t38 was given.
--if test "${enable_t38+set}" = set; then
--  enableval="$enable_t38"
-+# Check whether --enable-t38 was given.
-+if test "${enable_t38+set}" = set; then :
-+  enableval=$enable_t38;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4060,49 +4447,39 @@ else
-   TAPI_FALSE=
- fi
--            echo "$as_me:$LINENO: result: enable TAPI T.38 support" >&5
--echo "${ECHO_T}enable TAPI T.38 support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI T.38 support" >&5
-+$as_echo "enable TAPI T.38 support" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_FAX_T38_FW 1
--_ACEOF
-+$as_echo "#define TAPI_FAX_T38_FW 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable TAPI T.38 support" >&5
--echo "${ECHO_T}disable TAPI T.38 support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI T.38 support" >&5
-+$as_echo "disable TAPI T.38 support" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable TAPI T.38 support (default), disable with --disable-t38" >&5
--echo "${ECHO_T}enable TAPI T.38 support (default), disable with --disable-t38" >&6
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI T.38 support (default), disable with --disable-t38" >&5
-+$as_echo "enable TAPI T.38 support (default), disable with --disable-t38" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
-+$as_echo "#define TAPI 1" >>confdefs.h
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_FAX_T38_FW 1
--_ACEOF
-+$as_echo "#define TAPI_FAX_T38_FW 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-cont-measurement or --disable-cont-measurement was given.
--if test "${enable_cont_measurement+set}" = set; then
--  enableval="$enable_cont_measurement"
-+# Check whether --enable-cont-measurement was given.
-+if test "${enable_cont_measurement+set}" = set; then :
-+  enableval=$enable_cont_measurement;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4111,38 +4488,32 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_CONT_MEASUREMENT 1
--_ACEOF
-+$as_echo "#define TAPI_CONT_MEASUREMENT 1" >>confdefs.h
--            echo "$as_me:$LINENO: result: enable TAPI Analog Line Continuous Measurement" >&5
--echo "${ECHO_T}enable TAPI Analog Line Continuous Measurement" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI Analog Line Continuous Measurement" >&5
-+$as_echo "enable TAPI Analog Line Continuous Measurement" >&6; }
-         else
--            echo "$as_me:$LINENO: result: disable TAPI Analog Line Continuous Measurement" >&5
--echo "${ECHO_T}disable TAPI Analog Line Continuous Measurement" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI Analog Line Continuous Measurement" >&5
-+$as_echo "disable TAPI Analog Line Continuous Measurement" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: disable TAPI Analog Line Continuous Measurement (default)" >&5
--echo "${ECHO_T}disable TAPI Analog Line Continuous Measurement (default)" >&6
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI Analog Line Continuous Measurement (default)" >&5
-+$as_echo "disable TAPI Analog Line Continuous Measurement (default)" >&6; }
--fi;
-+fi
--# Check whether --enable-phone-detection or --disable-phone-detection was given.
--if test "${enable_phone_detection+set}" = set; then
--  enableval="$enable_phone_detection"
-+# Check whether --enable-phone-detection was given.
-+if test "${enable_phone_detection+set}" = set; then :
-+  enableval=$enable_phone_detection;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4151,49 +4522,44 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_PHONE_DETECTION 1
--_ACEOF
-+$as_echo "#define TAPI_PHONE_DETECTION 1" >>confdefs.h
--            echo "$as_me:$LINENO: result: enable TAPI FXS Phone Detection support" >&5
--echo "${ECHO_T}enable TAPI FXS Phone Detection support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI FXS Phone Detection support" >&5
-+$as_echo "enable TAPI FXS Phone Detection support" >&6; }
-         else
--            echo "$as_me:$LINENO: result: disable TAPI FXS Phone Detection support" >&5
--echo "${ECHO_T}disable TAPI FXS Phone Detection support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI FXS Phone Detection support" >&5
-+$as_echo "disable TAPI FXS Phone Detection support" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: disable TAPI FXS Phone Detection support (default)" >&5
--echo "${ECHO_T}disable TAPI FXS Phone Detection support (default)" >&6
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI FXS Phone Detection support (default)" >&5
-+$as_echo "disable TAPI FXS Phone Detection support (default)" >&6; }
--fi;
-+fi
--# Check whether --enable-audio or --disable-audio was given.
--if test "${enable_audio+set}" = set; then
--  enableval="$enable_audio"
-+# Check whether --enable-audio was given.
-+if test "${enable_audio+set}" = set; then :
-+  enableval=$enable_audio;
-         if test $enableval = 'yes'; then
--            echo "$as_me:$LINENO: result: enable IP-Phone TAPI Audio support." >&5
--echo "${ECHO_T}enable IP-Phone TAPI Audio support." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable IP-Phone TAPI Audio support." >&5
-+$as_echo "enable IP-Phone TAPI Audio support." >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_AUDIO 1
--_ACEOF
-+$as_echo "#define TAPI_AUDIO 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable IP-Phone TAPI Audio support." >&5
--echo "${ECHO_T}disable IP-Phone TAPI Audio support." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable IP-Phone TAPI Audio support." >&5
-+$as_echo "disable IP-Phone TAPI Audio support." >&6; }
-         fi
--fi;
--
-+fi
--if false; then
-+ if false; then
-   IPP_EVAL_SYSTEM_PARAMETERS_TRUE=
-   IPP_EVAL_SYSTEM_PARAMETERS_FALSE='#'
- else
-@@ -4201,21 +4567,16 @@ else
-   IPP_EVAL_SYSTEM_PARAMETERS_FALSE=
- fi
--# Check whether --enable-ipp-eval-system or --disable-ipp-eval-system was given.
--if test "${enable_ipp_eval_system+set}" = set; then
--  enableval="$enable_ipp_eval_system"
--
-+# Check whether --enable-ipp-eval-system was given.
-+if test "${enable_ipp_eval_system+set}" = set; then :
-+  enableval=$enable_ipp_eval_system;
-         if test $enableval = 'yes'; then
--            echo "$as_me:$LINENO: result: selected Voice Parameters for Evaluation System." >&5
--echo "${ECHO_T}selected Voice Parameters for Evaluation System." >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define IPP_USE_EVALUATION_SYSTEM 1
--_ACEOF
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: selected Voice Parameters for Evaluation System." >&5
-+$as_echo "selected Voice Parameters for Evaluation System." >&6; }
-+$as_echo "#define IPP_USE_EVALUATION_SYSTEM 1" >>confdefs.h
--
--if true; then
-+             if true; then
-   IPP_EVAL_SYSTEM_PARAMETERS_TRUE=
-   IPP_EVAL_SYSTEM_PARAMETERS_FALSE='#'
- else
-@@ -4224,11 +4585,9 @@ else
- fi
-         else
--            echo "$as_me:$LINENO: result: selected Voice Parameters for Reference System." >&5
--echo "${ECHO_T}selected Voice Parameters for Reference System." >&6
--
--
--if false; then
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: selected Voice Parameters for Reference System." >&5
-+$as_echo "selected Voice Parameters for Reference System." >&6; }
-+             if false; then
-   IPP_EVAL_SYSTEM_PARAMETERS_TRUE=
-   IPP_EVAL_SYSTEM_PARAMETERS_FALSE='#'
- else
-@@ -4241,9 +4600,7 @@ fi
- else
-                 #AC_MSG_RESULT([selected Voice Parameters for Reference System(default), select Evaluation System with --enable-ipp-eval-system])
--
--
--if false; then
-+         if false; then
-   IPP_EVAL_SYSTEM_PARAMETERS_TRUE=
-   IPP_EVAL_SYSTEM_PARAMETERS_FALSE='#'
- else
-@@ -4253,11 +4610,10 @@ fi
--fi;
--
-+fi
--if false; then
-+ if false; then
-   EVENT_LOGGER_DEBUG_TRUE=
-   EVENT_LOGGER_DEBUG_FALSE='#'
- else
-@@ -4265,21 +4621,16 @@ else
-   EVENT_LOGGER_DEBUG_FALSE=
- fi
--# Check whether --enable-el_debug or --disable-el_debug was given.
--if test "${enable_el_debug+set}" = set; then
--  enableval="$enable_el_debug"
--
-+# Check whether --enable-el_debug was given.
-+if test "${enable_el_debug+set}" = set; then :
-+  enableval=$enable_el_debug;
-       if test $enableval = 'yes'; then
--         echo "$as_me:$LINENO: result: enable event logger debugging" >&5
--echo "${ECHO_T}enable event logger debugging" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define EVENT_LOGGER_DEBUG 1
--_ACEOF
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable event logger debugging" >&5
-+$as_echo "enable event logger debugging" >&6; }
-+$as_echo "#define EVENT_LOGGER_DEBUG 1" >>confdefs.h
--
--if true; then
-+          if true; then
-   EVENT_LOGGER_DEBUG_TRUE=
-   EVENT_LOGGER_DEBUG_FALSE='#'
- else
-@@ -4288,11 +4639,9 @@ else
- fi
-       else
--         echo "$as_me:$LINENO: result: disable event logger debugging" >&5
--echo "${ECHO_T}disable event logger debugging" >&6
--
--
--if false; then
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable event logger debugging" >&5
-+$as_echo "disable event logger debugging" >&6; }
-+          if false; then
-   EVENT_LOGGER_DEBUG_TRUE=
-   EVENT_LOGGER_DEBUG_FALSE='#'
- else
-@@ -4304,9 +4653,7 @@ fi
- else
--
--
--if false; then
-+       if false; then
-   EVENT_LOGGER_DEBUG_TRUE=
-   EVENT_LOGGER_DEBUG_FALSE='#'
- else
-@@ -4316,41 +4663,36 @@ fi
--fi;
-+fi
--# Check whether --enable-alm or --disable-alm was given.
--if test "${enable_alm+set}" = set; then
--  enableval="$enable_alm"
-+# Check whether --enable-alm was given.
-+if test "${enable_alm+set}" = set; then :
-+  enableval=$enable_alm;
-         if test $enableval = 'yes'; then
--            echo "$as_me:$LINENO: result: enable ALM support" >&5
--echo "${ECHO_T}enable ALM support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable ALM support" >&5
-+$as_echo "enable ALM support" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_ALM_EN 1
--_ACEOF
-+$as_echo "#define VMMC_ALM_EN 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable ALM support" >&5
--echo "${ECHO_T}disable ALM support" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable ALM support" >&5
-+$as_echo "disable ALM support" >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable ALM support (default), disable with --disable-alm" >&5
--echo "${ECHO_T}enable ALM support (default), disable with --disable-alm" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_ALM_EN 1
--_ACEOF
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable ALM support (default), disable with --disable-alm" >&5
-+$as_echo "enable ALM support (default), disable with --disable-alm" >&6; }
-+$as_echo "#define VMMC_ALM_EN 1" >>confdefs.h
--fi;
-+fi
--if false; then
-+ if false; then
-   KPI_SUPPORT_TRUE=
-   KPI_SUPPORT_FALSE='#'
- else
-@@ -4358,21 +4700,18 @@ else
-   KPI_SUPPORT_FALSE=
- fi
--# Check whether --enable-kpi or --disable-kpi was given.
--if test "${enable_kpi+set}" = set; then
--  enableval="$enable_kpi"
--
-+# Check whether --enable-kpi was given.
-+if test "${enable_kpi+set}" = set; then :
-+  enableval=$enable_kpi;
-       if test "$enableval" = 'yes'; then
--         echo "$as_me:$LINENO: result: enable Kernel Packet Interface" >&5
--echo "${ECHO_T}enable Kernel Packet Interface" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Kernel Packet Interface" >&5
-+$as_echo "enable Kernel Packet Interface" >&6; }
- cat >>confdefs.h <<_ACEOF
- #define KPI_SUPPORT 1
- _ACEOF
--
--
--if true; then
-+          if true; then
-   KPI_SUPPORT_TRUE=
-   KPI_SUPPORT_FALSE='#'
- else
-@@ -4381,11 +4720,9 @@ else
- fi
-       else
--         echo "$as_me:$LINENO: result: disable Kernel Packet Interface" >&5
--echo "${ECHO_T}disable Kernel Packet Interface" >&6
--
--
--if false; then
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Kernel Packet Interface" >&5
-+$as_echo "disable Kernel Packet Interface" >&6; }
-+          if false; then
-   KPI_SUPPORT_TRUE=
-   KPI_SUPPORT_FALSE='#'
- else
-@@ -4397,11 +4734,9 @@ fi
- else
--      echo "$as_me:$LINENO: result: disable Kernel Packet Interface (default), enable with --enable-kpi" >&5
--echo "${ECHO_T}disable Kernel Packet Interface (default), enable with --enable-kpi" >&6
--
--
--if false; then
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Kernel Packet Interface (default), enable with --enable-kpi" >&5
-+$as_echo "disable Kernel Packet Interface (default), enable with --enable-kpi" >&6; }
-+       if false; then
-   KPI_SUPPORT_TRUE=
-   KPI_SUPPORT_FALSE='#'
- else
-@@ -4411,11 +4746,10 @@ fi
--fi;
--
-+fi
--if false; then
-+ if false; then
-   DECT_SUPPORT_TRUE=
-   DECT_SUPPORT_FALSE='#'
- else
-@@ -4423,21 +4757,18 @@ else
-   DECT_SUPPORT_FALSE=
- fi
--# Check whether --enable-dect or --disable-dect was given.
--if test "${enable_dect+set}" = set; then
--  enableval="$enable_dect"
--
-+# Check whether --enable-dect was given.
-+if test "${enable_dect+set}" = set; then :
-+  enableval=$enable_dect;
-       if test $enableval = 'yes'; then
--         echo "$as_me:$LINENO: result: enable DECT channel support" >&5
--echo "${ECHO_T}enable DECT channel support" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable DECT channel support" >&5
-+$as_echo "enable DECT channel support" >&6; }
- cat >>confdefs.h <<_ACEOF
- #define DECT_SUPPORT 1
- _ACEOF
--
--
--if true; then
-+          if true; then
-   DECT_SUPPORT_TRUE=
-   DECT_SUPPORT_FALSE='#'
- else
-@@ -4446,11 +4777,9 @@ else
- fi
-       else
--         echo "$as_me:$LINENO: result: disable DECT channel support" >&5
--echo "${ECHO_T}disable DECT channel support" >&6
--
--
--if false; then
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable DECT channel support" >&5
-+$as_echo "disable DECT channel support" >&6; }
-+          if false; then
-   DECT_SUPPORT_TRUE=
-   DECT_SUPPORT_FALSE='#'
- else
-@@ -4462,11 +4791,9 @@ fi
- else
--      echo "$as_me:$LINENO: result: disable DECT channel support (default), enable with --enable-dect" >&5
--echo "${ECHO_T}disable DECT channel support (default), enable with --enable-dect" >&6
--
--
--if false; then
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable DECT channel support (default), enable with --enable-dect" >&5
-+$as_echo "disable DECT channel support (default), enable with --enable-dect" >&6; }
-+       if false; then
-   DECT_SUPPORT_TRUE=
-   DECT_SUPPORT_FALSE='#'
- else
-@@ -4476,46 +4803,39 @@ fi
--fi;
-+fi
--# Check whether --enable-dect-nibble-swap or --disable-dect-nibble-swap was given.
--if test "${enable_dect_nibble_swap+set}" = set; then
--  enableval="$enable_dect_nibble_swap"
-+# Check whether --enable-dect-nibble-swap was given.
-+if test "${enable_dect_nibble_swap+set}" = set; then :
-+  enableval=$enable_dect_nibble_swap;
-                 if test $enableval = 'yes'; then
--                        echo "$as_me:$LINENO: result: enable DECT nibble swap for COSIC modem" >&5
--echo "${ECHO_T}enable DECT nibble swap for COSIC modem" >&6
-+                        { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable DECT nibble swap for COSIC modem" >&5
-+$as_echo "enable DECT nibble swap for COSIC modem" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_DECT_NIBBLE_SWAP 1
--_ACEOF
-+$as_echo "#define VMMC_DECT_NIBBLE_SWAP 1" >>confdefs.h
-                 else
--                        echo "$as_me:$LINENO: result: disable DECT nibble swap for COSIC modem" >&5
--echo "${ECHO_T}disable DECT nibble swap for COSIC modem" >&6
-+                        { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable DECT nibble swap for COSIC modem" >&5
-+$as_echo "disable DECT nibble swap for COSIC modem" >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_DECT_NIBBLE_SWAP 0
--_ACEOF
-+$as_echo "#define VMMC_DECT_NIBBLE_SWAP 0" >>confdefs.h
-                 fi
- else
--                echo "$as_me:$LINENO: result: enable DECT nibble swap for COSIC modem" >&5
--echo "${ECHO_T}enable DECT nibble swap for COSIC modem" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_DECT_NIBBLE_SWAP 1
--_ACEOF
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable DECT nibble swap for COSIC modem" >&5
-+$as_echo "enable DECT nibble swap for COSIC modem" >&6; }
-+$as_echo "#define VMMC_DECT_NIBBLE_SWAP 1" >>confdefs.h
--fi;
-+fi
--if false; then
-+ if false; then
-   LIN_SUPPORT_TRUE=
-   LIN_SUPPORT_FALSE='#'
- else
-@@ -4523,21 +4843,16 @@ else
-   LIN_SUPPORT_FALSE=
- fi
--# Check whether --enable-lin or --disable-lin was given.
--if test "${enable_lin+set}" = set; then
--  enableval="$enable_lin"
--
-+# Check whether --enable-lin was given.
-+if test "${enable_lin+set}" = set; then :
-+  enableval=$enable_lin;
-        if test $enableval = 'yes'; then
--           echo "$as_me:$LINENO: result: enable LIN channel support" >&5
--echo "${ECHO_T}enable LIN channel support" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define LIN_SUPPORT 1
--_ACEOF
--
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable LIN channel support" >&5
-+$as_echo "enable LIN channel support" >&6; }
-+$as_echo "#define LIN_SUPPORT 1" >>confdefs.h
--if true; then
-+            if true; then
-   LIN_SUPPORT_TRUE=
-   LIN_SUPPORT_FALSE='#'
- else
-@@ -4546,11 +4861,9 @@ else
- fi
-        else
--          echo "$as_me:$LINENO: result: disable LIN support." >&5
--echo "${ECHO_T}disable LIN support." >&6
--
--
--if false; then
-+          { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable LIN support." >&5
-+$as_echo "disable LIN support." >&6; }
-+           if false; then
-   LIN_SUPPORT_TRUE=
-   LIN_SUPPORT_FALSE='#'
- else
-@@ -4561,11 +4874,10 @@ fi
-        fi
--fi;
--
-+fi
--if false; then
-+ if false; then
-   PMU_SUPPORT_TRUE=
-   PMU_SUPPORT_FALSE='#'
- else
-@@ -4573,21 +4885,16 @@ else
-   PMU_SUPPORT_FALSE=
- fi
--# Check whether --enable-pmu or --disable-pmu was given.
--if test "${enable_pmu+set}" = set; then
--  enableval="$enable_pmu"
--
-+# Check whether --enable-pmu was given.
-+if test "${enable_pmu+set}" = set; then :
-+  enableval=$enable_pmu;
-        if test $enableval = 'yes'; then
--           echo "$as_me:$LINENO: result: enable Power Management Unit support" >&5
--echo "${ECHO_T}enable Power Management Unit support" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define PMU_SUPPORTED 1
--_ACEOF
--
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Power Management Unit support" >&5
-+$as_echo "enable Power Management Unit support" >&6; }
-+$as_echo "#define PMU_SUPPORTED 1" >>confdefs.h
--if true; then
-+            if true; then
-   PMU_SUPPORT_TRUE=
-   PMU_SUPPORT_FALSE='#'
- else
-@@ -4596,11 +4903,9 @@ else
- fi
-        else
--          echo "$as_me:$LINENO: result: disable Power Management Unit support." >&5
--echo "${ECHO_T}disable Power Management Unit support." >&6
--
--
--if false; then
-+          { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Power Management Unit support." >&5
-+$as_echo "disable Power Management Unit support." >&6; }
-+           if false; then
-   PMU_SUPPORT_TRUE=
-   PMU_SUPPORT_FALSE='#'
- else
-@@ -4611,11 +4916,10 @@ fi
-        fi
--fi;
--
-+fi
--if false; then
-+ if false; then
-   PMC_SUPPORT_TRUE=
-   PMC_SUPPORT_FALSE='#'
- else
-@@ -4623,21 +4927,16 @@ else
-   PMC_SUPPORT_FALSE=
- fi
--# Check whether --enable-pmc or --disable-pmc was given.
--if test "${enable_pmc+set}" = set; then
--  enableval="$enable_pmc"
--
-+# Check whether --enable-pmc was given.
-+if test "${enable_pmc+set}" = set; then :
-+  enableval=$enable_pmc;
-        if test $enableval = 'yes'; then
--           echo "$as_me:$LINENO: result: enable Power Management Control support" >&5
--echo "${ECHO_T}enable Power Management Control support" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define PMC_SUPPORTED 1
--_ACEOF
--
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Power Management Control support" >&5
-+$as_echo "enable Power Management Control support" >&6; }
-+$as_echo "#define PMC_SUPPORTED 1" >>confdefs.h
--if true; then
-+            if true; then
-   PMC_SUPPORT_TRUE=
-   PMC_SUPPORT_FALSE='#'
- else
-@@ -4646,11 +4945,9 @@ else
- fi
-        else
--          echo "$as_me:$LINENO: result: disable Power Management Control support." >&5
--echo "${ECHO_T}disable Power Management Control support." >&6
--
--
--if false; then
-+          { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Power Management Control support." >&5
-+$as_echo "disable Power Management Control support." >&6; }
-+           if false; then
-   PMC_SUPPORT_TRUE=
-   PMC_SUPPORT_FALSE='#'
- else
-@@ -4661,70 +4958,64 @@ fi
-        fi
--fi;
-+fi
--# Check whether --enable-calibration or --disable-calibration was given.
--if test "${enable_calibration+set}" = set; then
--  enableval="$enable_calibration"
-+# Check whether --enable-calibration was given.
-+if test "${enable_calibration+set}" = set; then :
-+  enableval=$enable_calibration;
-        if test $enableval = 'yes'; then
--           echo "$as_me:$LINENO: result: enable Analog Line Calibration support" >&5
--echo "${ECHO_T}enable Analog Line Calibration support" >&6
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable Analog Line Calibration support" >&5
-+$as_echo "enable Analog Line Calibration support" >&6; }
- cat >>confdefs.h <<_ACEOF
- #define CALIBRATION_SUPPORT 1
- _ACEOF
-        else
--          echo "$as_me:$LINENO: result: disable Analog Line Calibration support." >&5
--echo "${ECHO_T}disable Analog Line Calibration support." >&6
-+          { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable Analog Line Calibration support." >&5
-+$as_echo "disable Analog Line Calibration support." >&6; }
-        fi
--fi;
-+fi
-+
- #dnl MPS history buffer (default=128 words, maximum=512 words, 0=disable)]
- MPS_HISTORY=128
--# Check whether --enable-history-buf or --disable-history-buf was given.
--if test "${enable_history_buf+set}" = set; then
--  enableval="$enable_history_buf"
--
-+# Check whether --enable-history-buf was given.
-+if test "${enable_history_buf+set}" = set; then :
-+  enableval=$enable_history_buf;
-          if test -z $enableval; then
-             MPS_HISTORY=128
--            echo "$as_me:$LINENO: result: ATTENTION! MPS_HISTORY without parameter, set to default (128 words)" >&5
--echo "${ECHO_T}ATTENTION! MPS_HISTORY without parameter, set to default (128 words)" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: ATTENTION! MPS_HISTORY without parameter, set to default (128 words)" >&5
-+$as_echo "ATTENTION! MPS_HISTORY without parameter, set to default (128 words)" >&6; }
-          elif test $enableval -lt 0 -o $enableval -gt 512; then
--            { { echo "$as_me:$LINENO: error: Valid values for MPS history buffer are 0(disable)..512 words ($enableval)" >&5
--echo "$as_me: error: Valid values for MPS history buffer are 0(disable)..512 words ($enableval)" >&2;}
--   { (exit 1); exit 1; }; }
-+            as_fn_error $? "Valid values for MPS history buffer are 0(disable)..512 words ($enableval)" "$LINENO" 5
-          else
-             MPS_HISTORY=$enableval
--            echo "$as_me:$LINENO: result: MPS history buffer of $enableval words" >&5
--echo "${ECHO_T}MPS history buffer of $enableval words" >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: MPS history buffer of $enableval words" >&5
-+$as_echo "MPS history buffer of $enableval words" >&6; }
-          fi
- else
--         echo "$as_me:$LINENO: result: MPS history buffer set to default value of $MPS_HISTORY words" >&5
--echo "${ECHO_T}MPS history buffer set to default value of $MPS_HISTORY words" >&6
-+         { $as_echo "$as_me:${as_lineno-$LINENO}: result: MPS history buffer set to default value of $MPS_HISTORY words" >&5
-+$as_echo "MPS history buffer set to default value of $MPS_HISTORY words" >&6; }
--fi;
-+fi
--# Check whether --enable-announcements or --disable-announcements was given.
--if test "${enable_announcements+set}" = set; then
--  enableval="$enable_announcements"
-+# Check whether --enable-announcements was given.
-+if test "${enable_announcements+set}" = set; then :
-+  enableval=$enable_announcements;
-         if test $enableval = 'yes'; then
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
--
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+             if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4732,30 +5023,24 @@ else
-   TAPI_FALSE=
- fi
--            echo "$as_me:$LINENO: result: enable TAPI Announcements support." >&5
--echo "${ECHO_T}enable TAPI Announcements support." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI Announcements support." >&5
-+$as_echo "enable TAPI Announcements support." >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_ANNOUNCEMENTS 1
--_ACEOF
-+$as_echo "#define TAPI_ANNOUNCEMENTS 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable TAPI Announcements support." >&5
--echo "${ECHO_T}disable TAPI Announcements support." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable TAPI Announcements support." >&5
-+$as_echo "disable TAPI Announcements support." >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable TAPI Announcements support (default), disable with --disable-announcements" >&5
--echo "${ECHO_T}enable TAPI Announcements support (default), disable with --disable-announcements" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define TAPI 1
--_ACEOF
--
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable TAPI Announcements support (default), disable with --disable-announcements" >&5
-+$as_echo "enable TAPI Announcements support (default), disable with --disable-announcements" >&6; }
-+$as_echo "#define TAPI 1" >>confdefs.h
--if true; then
-+         if true; then
-   TAPI_TRUE=
-   TAPI_FALSE='#'
- else
-@@ -4764,53 +5049,44 @@ else
- fi
--cat >>confdefs.h <<\_ACEOF
--#define TAPI_ANNOUNCEMENTS 1
--_ACEOF
-+$as_echo "#define TAPI_ANNOUNCEMENTS 1" >>confdefs.h
--fi;
-+fi
--# Check whether --enable-fxo-act or --disable-fxo-act was given.
--if test "${enable_fxo_act+set}" = set; then
--  enableval="$enable_fxo_act"
-+# Check whether --enable-fxo-act was given.
-+if test "${enable_fxo_act+set}" = set; then :
-+  enableval=$enable_fxo_act;
-         if test $enableval = 'yes' -o $enableval = ''; then
--            echo "$as_me:$LINENO: result: enable initial FXO active line mode." >&5
--echo "${ECHO_T}enable initial FXO active line mode." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable initial FXO active line mode." >&5
-+$as_echo "enable initial FXO active line mode." >&6; }
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_ACT_FXO 1
--_ACEOF
-+$as_echo "#define VMMC_ACT_FXO 1" >>confdefs.h
-         else
--            echo "$as_me:$LINENO: result: disable initial FXO active line mode." >&5
--echo "${ECHO_T}disable initial FXO active line mode." >&6
-+            { $as_echo "$as_me:${as_lineno-$LINENO}: result: disable initial FXO active line mode." >&5
-+$as_echo "disable initial FXO active line mode." >&6; }
-         fi
- else
--                echo "$as_me:$LINENO: result: enable FXO active line mode (default)" >&5
--echo "${ECHO_T}enable FXO active line mode (default)" >&6
--
--cat >>confdefs.h <<\_ACEOF
--#define VMMC_ACT_FXO 1
--_ACEOF
-+                { $as_echo "$as_me:${as_lineno-$LINENO}: result: enable FXO active line mode (default)" >&5
-+$as_echo "enable FXO active line mode (default)" >&6; }
-+$as_echo "#define VMMC_ACT_FXO 1" >>confdefs.h
--fi;
-+fi
--cat >>confdefs.h <<\_ACEOF
--#define VMMC 1
--_ACEOF
-+$as_echo "#define VMMC 1" >>confdefs.h
--if false; then
-+ if false; then
-   DANUBE_TRUE=
-   DANUBE_FALSE='#'
- else
-@@ -4818,9 +5094,7 @@ else
-   DANUBE_FALSE=
- fi
--
--
--if false; then
-+ if false; then
-   AR9_TRUE=
-   AR9_FALSE='#'
- else
-@@ -4828,9 +5102,7 @@ else
-   AR9_FALSE=
- fi
--
--
--if false; then
-+ if false; then
-   VR9_TRUE=
-   VR9_FALSE='#'
- else
-@@ -4839,27 +5111,20 @@ else
- fi
--# Check whether --with-device or --without-device was given.
--if test "${with_device+set}" = set; then
--  withval="$with_device"
--
-+# Check whether --with-device was given.
-+if test "${with_device+set}" = set; then :
-+  withval=$with_device;
-       if test "$withval" = yes; then
--         { { echo "$as_me:$LINENO: error: Set device type! Valid choices are DANUBE|TWINPASS|AR9|VR9" >&5
--echo "$as_me: error: Set device type! Valid choices are DANUBE|TWINPASS|AR9|VR9" >&2;}
--   { (exit 1); exit 1; }; };
-+         as_fn_error $? "Set device type! Valid choices are DANUBE|TWINPASS|AR9|VR9" "$LINENO" 5;
-       else
-          case $withval in
-            DANUBE)
--               echo "$as_me:$LINENO: result: DANUBE device is used" >&5
--echo "${ECHO_T}DANUBE device is used" >&6;
--
--cat >>confdefs.h <<\_ACEOF
--#define SYSTEM_DANUBE 1
--_ACEOF
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: DANUBE device is used" >&5
-+$as_echo "DANUBE device is used" >&6; };
-+$as_echo "#define SYSTEM_DANUBE 1" >>confdefs.h
--
--if true; then
-+                if true; then
-   DANUBE_TRUE=
-   DANUBE_FALSE='#'
- else
-@@ -4869,16 +5134,12 @@ fi
-            ;;
-            TWINPASS)
--               echo "$as_me:$LINENO: result: DANUBE device is used" >&5
--echo "${ECHO_T}DANUBE device is used" >&6;
--
--cat >>confdefs.h <<\_ACEOF
--#define SYSTEM_DANUBE 1
--_ACEOF
--
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: DANUBE device is used" >&5
-+$as_echo "DANUBE device is used" >&6; };
-+$as_echo "#define SYSTEM_DANUBE 1" >>confdefs.h
--if true; then
-+                if true; then
-   DANUBE_TRUE=
-   DANUBE_FALSE='#'
- else
-@@ -4888,16 +5149,12 @@ fi
-            ;;
-            AR9)
--               echo "$as_me:$LINENO: result: AR9 device is used" >&5
--echo "${ECHO_T}AR9 device is used" >&6;
--
--cat >>confdefs.h <<\_ACEOF
--#define SYSTEM_AR9 1
--_ACEOF
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: AR9 device is used" >&5
-+$as_echo "AR9 device is used" >&6; };
-+$as_echo "#define SYSTEM_AR9 1" >>confdefs.h
--
--if true; then
-+                if true; then
-   AR9_TRUE=
-   AR9_FALSE='#'
- else
-@@ -4907,16 +5164,12 @@ fi
-            ;;
-            VR9)
--               echo "$as_me:$LINENO: result: VR9 device is used" >&5
--echo "${ECHO_T}VR9 device is used" >&6;
--
--cat >>confdefs.h <<\_ACEOF
--#define SYSTEM_VR9 1
--_ACEOF
--
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: VR9 device is used" >&5
-+$as_echo "VR9 device is used" >&6; };
-+$as_echo "#define SYSTEM_VR9 1" >>confdefs.h
--if true; then
-+                if true; then
-   VR9_TRUE=
-   VR9_FALSE='#'
- else
-@@ -4925,26 +5178,35 @@ else
- fi
-            ;;
-+           FALCON)
-+               { $as_echo "$as_me:${as_lineno-$LINENO}: result: FALCON device is used" >&5
-+$as_echo "FALCON device is used" >&6; };
-+
-+$as_echo "#define SYSTEM_FALCON 1" >>confdefs.h
-+
-+                if true; then
-+  FALCON_TRUE=
-+  FALCON_FALSE='#'
-+else
-+  FALCON_TRUE='#'
-+  FALCON_FALSE=
-+fi
-+
-+           ;;
-            *)
--               { { echo "$as_me:$LINENO: error: Set device type! Valid choices are DANUBE|TWINPASS|AR9|VR9" >&5
--echo "$as_me: error: Set device type! Valid choices are DANUBE|TWINPASS|AR9|VR9" >&2;}
--   { (exit 1); exit 1; }; };
-+               as_fn_error $? "Set device type! Valid choices are DANUBE|TWINPASS|AR9|VR9" "$LINENO" 5;
-            ;;
-        esac
-       fi
- else
--      echo "$as_me:$LINENO: result: Using default device type DANUBE" >&5
--echo "${ECHO_T}Using default device type DANUBE" >&6;
--
--cat >>confdefs.h <<\_ACEOF
--#define SYSTEM_DANUBE 1
--_ACEOF
--
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: result: Using default device type DANUBE" >&5
-+$as_echo "Using default device type DANUBE" >&6; };
-+$as_echo "#define SYSTEM_DANUBE 1" >>confdefs.h
--if true; then
-+       if true; then
-   DANUBE_TRUE=
-   DANUBE_FALSE='#'
- else
-@@ -4954,24 +5216,23 @@ fi
--fi;
-+fi
--# Check whether --with-cflags or --without-cflags was given.
--if test "${with_cflags+set}" = set; then
--  withval="$with_cflags"
-+# Check whether --with-cflags was given.
-+if test "${with_cflags+set}" = set; then :
-+  withval=$with_cflags;
-         if test "$withval" = yes; then
--           { { echo "$as_me:$LINENO: error: Please provide a value for the maximum devices" >&5
--echo "$as_me: error: Please provide a value for the maximum devices" >&2;}
--   { (exit 1); exit 1; }; };
-+           as_fn_error $? "Please provide a value for the maximum devices" "$LINENO" 5;
-         fi
--        echo "$as_me:$LINENO: result: passing additional CFLAGS $withval" >&5
--echo "${ECHO_T}passing additional CFLAGS $withval" >&6
-+        { $as_echo "$as_me:${as_lineno-$LINENO}: result: passing additional CFLAGS $withval" >&5
-+$as_echo "passing additional CFLAGS $withval" >&6; }
-         CFLAGS="$CFLAGS $withval"
--fi;
-+fi
-+
- cat >>confdefs.h <<_ACEOF
-@@ -4983,9 +5244,7 @@ cat >>confdefs.h <<_ACEOF
- #define CONFIG_MPS_HISTORY_SIZE $MPS_HISTORY
- _ACEOF
--
--
--if true; then
-+ if true; then
-   VMMC_WITH_MPS_TRUE=
-   VMMC_WITH_MPS_FALSE='#'
- else
-@@ -4994,24 +5253,21 @@ else
- fi
--# Check whether --with-mps or --without-mps was given.
--if test "${with_mps+set}" = set; then
--  withval="$with_mps"
--
-+# Check whether --with-mps was given.
-+if test "${with_mps+set}" = set; then :
-+  withval=$with_mps;
-         if test $withval = 'yes' -o $withval = ''; then
--           echo "$as_me:$LINENO: result: Configured for common VMMC and MPS driver" >&5
--echo "${ECHO_T}Configured for common VMMC and MPS driver" >&6
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: Configured for common VMMC and MPS driver" >&5
-+$as_echo "Configured for common VMMC and MPS driver" >&6; }
- cat >>confdefs.h <<_ACEOF
- #define VMMC_WITH_MPS 1
- _ACEOF
-         else
--           echo "$as_me:$LINENO: result: Configured for standalone VMMC without MPS" >&5
--echo "${ECHO_T}Configured for standalone VMMC without MPS" >&6
--
--
--if false; then
-+           { $as_echo "$as_me:${as_lineno-$LINENO}: result: Configured for standalone VMMC without MPS" >&5
-+$as_echo "Configured for standalone VMMC without MPS" >&6; }
-+            if false; then
-   VMMC_WITH_MPS_TRUE=
-   VMMC_WITH_MPS_FALSE='#'
- else
-@@ -5023,8 +5279,8 @@ fi
- else
--       echo "$as_me:$LINENO: result: Configured for common VMMC and MPS driver (default)" >&5
--echo "${ECHO_T}Configured for common VMMC and MPS driver (default)" >&6
-+       { $as_echo "$as_me:${as_lineno-$LINENO}: result: Configured for common VMMC and MPS driver (default)" >&5
-+$as_echo "Configured for common VMMC and MPS driver (default)" >&6; }
- cat >>confdefs.h <<_ACEOF
- #define VMMC_WITH_MPS 1
-@@ -5032,7 +5288,8 @@ _ACEOF
--fi;
-+fi
-+
- cat >>confdefs.h <<_ACEOF
-@@ -5066,9 +5323,9 @@ _ACEOF
- #      ;;
- #esac
--          ac_config_files="$ac_config_files Makefile"
-+ac_config_files="$ac_config_files Makefile"
--          ac_config_files="$ac_config_files src/Makefile"
-+ac_config_files="$ac_config_files src/Makefile"
- cat >confcache <<\_ACEOF
-@@ -5089,39 +5346,70 @@ _ACEOF
- # The following way of writing the cache mishandles newlines in values,
- # but we know of no workaround that is simple, portable, and efficient.
--# So, don't put newlines in cache variables' values.
-+# So, we kill variables containing newlines.
- # Ultrix sh set writes to stderr and can't be redirected directly,
- # and sets the high bit in the cache file unless we assign to the vars.
--{
-+(
-+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
-+    eval ac_val=\$$ac_var
-+    case $ac_val in #(
-+    *${as_nl}*)
-+      case $ac_var in #(
-+      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
-+$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
-+      esac
-+      case $ac_var in #(
-+      _ | IFS | as_nl) ;; #(
-+      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
-+      *) { eval $ac_var=; unset $ac_var;} ;;
-+      esac ;;
-+    esac
-+  done
-+
-   (set) 2>&1 |
--    case `(ac_space=' '; set | grep ac_space) 2>&1` in
--    *ac_space=\ *)
--      # `set' does not quote correctly, so add quotes (double-quote
--      # substitution turns \\\\ into \\, and sed turns \\ into \).
-+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
-+    *${as_nl}ac_space=\ *)
-+      # `set' does not quote correctly, so add quotes: double-quote
-+      # substitution turns \\\\ into \\, and sed turns \\ into \.
-       sed -n \
-       "s/'/'\\\\''/g;
-         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
--      ;;
-+      ;; #(
-     *)
-       # `set' quotes correctly as required by POSIX, so do not add quotes.
--      sed -n \
--      "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
-+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
-       ;;
--    esac;
--} |
-+    esac |
-+    sort
-+) |
-   sed '
-+     /^ac_cv_env_/b end
-      t clear
--     : clear
-+     :clear
-      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
-      t end
--     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
--     : end' >>confcache
--if diff $cache_file confcache >/dev/null 2>&1; then :; else
--  if test -w $cache_file; then
--    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
--    cat confcache >$cache_file
-+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
-+     :end' >>confcache
-+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
-+  if test -w "$cache_file"; then
-+    if test "x$cache_file" != "x/dev/null"; then
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
-+$as_echo "$as_me: updating cache $cache_file" >&6;}
-+      if test ! -f "$cache_file" || test -h "$cache_file"; then
-+      cat confcache >"$cache_file"
-+      else
-+        case $cache_file in #(
-+        */* | ?:*)
-+        mv -f confcache "$cache_file"$$ &&
-+        mv -f "$cache_file"$$ "$cache_file" ;; #(
-+        *)
-+        mv -f confcache "$cache_file" ;;
-+      esac
-+      fi
-+    fi
-   else
--    echo "not updating unwritable cache $cache_file"
-+    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
-+$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
-   fi
- fi
- rm -f confcache
-@@ -5130,570 +5418,346 @@ test "x$prefix" = xNONE && prefix=$ac_de
- # Let make expand exec_prefix.
- test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
--# VPATH may cause trouble with some makes, so we remove $(srcdir),
--# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
--# trailing colons and then remove the whole line if VPATH becomes empty
--# (actually we leave an empty line to preserve line numbers).
--if test "x$srcdir" = x.; then
--  ac_vpsub='/^[        ]*VPATH[        ]*=/{
--s/:*\$(srcdir):*/:/;
--s/:*\${srcdir}:*/:/;
--s/:*@srcdir@:*/:/;
--s/^\([^=]*=[   ]*\):*/\1/;
--s/:*$//;
--s/^[^=]*=[     ]*$//;
--}'
--fi
--
- DEFS=-DHAVE_CONFIG_H
- ac_libobjs=
- ac_ltlibobjs=
-+U=
- for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
-   # 1. Remove the extension, and $U if already installed.
--  ac_i=`echo "$ac_i" |
--       sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
--  # 2. Add them.
--  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
--  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
-+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
-+  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
-+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
-+  #    will be set to the directory where LIBOBJS objects are built.
-+  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
-+  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
- done
- LIBOBJS=$ac_libobjs
- LTLIBOBJS=$ac_ltlibobjs
-+ if test -n "$EXEEXT"; then
-+  am__EXEEXT_TRUE=
-+  am__EXEEXT_FALSE='#'
-+else
-+  am__EXEEXT_TRUE='#'
-+  am__EXEEXT_FALSE=
-+fi
-+
- if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"AMDEP\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"AMDEP\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"am__fastdepCC\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${KERNEL_2_6_TRUE}" && test -z "${KERNEL_2_6_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"KERNEL_2_6\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"KERNEL_2_6\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"KERNEL_2_6\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${KERNEL_2_6_TRUE}" && test -z "${KERNEL_2_6_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"KERNEL_2_6\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"KERNEL_2_6\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"KERNEL_2_6\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${ENABLE_OBSOLETE_PREMAPPING_TRUE}" && test -z "${ENABLE_OBSOLETE_PREMAPPING_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${ENABLE_OBSOLETE_PREMAPPING_TRUE}" && test -z "${ENABLE_OBSOLETE_PREMAPPING_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${ENABLE_OBSOLETE_PREMAPPING_TRUE}" && test -z "${ENABLE_OBSOLETE_PREMAPPING_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"ENABLE_OBSOLETE_PREMAPPING\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${WARNINGS_TRUE}" && test -z "${WARNINGS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"WARNINGS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"WARNINGS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"WARNINGS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${WARNINGS_TRUE}" && test -z "${WARNINGS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"WARNINGS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"WARNINGS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"WARNINGS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DEBUG_TRUE}" && test -z "${DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DEBUG_TRUE}" && test -z "${DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DEBUG_TRUE}" && test -z "${DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${HL_TAPI_INCL_PATH_SET_TRUE}" && test -z "${HL_TAPI_INCL_PATH_SET_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"HL_TAPI_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"HL_TAPI_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"HL_TAPI_INCL_PATH_SET\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${HL_TAPI_INCL_PATH_SET_TRUE}" && test -z "${HL_TAPI_INCL_PATH_SET_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"HL_TAPI_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"HL_TAPI_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"HL_TAPI_INCL_PATH_SET\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${MPS_INCL_PATH_SET_TRUE}" && test -z "${MPS_INCL_PATH_SET_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"MPS_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"MPS_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"MPS_INCL_PATH_SET\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${MPS_INCL_PATH_SET_TRUE}" && test -z "${MPS_INCL_PATH_SET_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"MPS_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"MPS_INCL_PATH_SET\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"MPS_INCL_PATH_SET\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${EVALUATION_TRUE}" && test -z "${EVALUATION_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"EVALUATION\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"EVALUATION\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"EVALUATION\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${EVALUATION_TRUE}" && test -z "${EVALUATION_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"EVALUATION\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"EVALUATION\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"EVALUATION\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${USE_MODULE_TRUE}" && test -z "${USE_MODULE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"USE_MODULE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"USE_MODULE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"USE_MODULE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${USE_MODULE_TRUE}" && test -z "${USE_MODULE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"USE_MODULE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"USE_MODULE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"USE_MODULE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${USE_MODULE_TRUE}" && test -z "${USE_MODULE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"USE_MODULE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"USE_MODULE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"USE_MODULE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${USE_BUFFERPOOL_TRUE}" && test -z "${USE_BUFFERPOOL_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"USE_BUFFERPOOL\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"USE_BUFFERPOOL\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"USE_BUFFERPOOL\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${USE_BUFFERPOOL_TRUE}" && test -z "${USE_BUFFERPOOL_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"USE_BUFFERPOOL\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"USE_BUFFERPOOL\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"USE_BUFFERPOOL\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${USE_BUFFERPOOL_TRUE}" && test -z "${USE_BUFFERPOOL_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"USE_BUFFERPOOL\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"USE_BUFFERPOOL\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"USE_BUFFERPOOL\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${IPP_EVAL_SYSTEM_PARAMETERS_TRUE}" && test -z "${IPP_EVAL_SYSTEM_PARAMETERS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${IPP_EVAL_SYSTEM_PARAMETERS_TRUE}" && test -z "${IPP_EVAL_SYSTEM_PARAMETERS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${IPP_EVAL_SYSTEM_PARAMETERS_TRUE}" && test -z "${IPP_EVAL_SYSTEM_PARAMETERS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${IPP_EVAL_SYSTEM_PARAMETERS_TRUE}" && test -z "${IPP_EVAL_SYSTEM_PARAMETERS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"IPP_EVAL_SYSTEM_PARAMETERS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${EVENT_LOGGER_DEBUG_TRUE}" && test -z "${EVENT_LOGGER_DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"EVENT_LOGGER_DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${EVENT_LOGGER_DEBUG_TRUE}" && test -z "${EVENT_LOGGER_DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"EVENT_LOGGER_DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${EVENT_LOGGER_DEBUG_TRUE}" && test -z "${EVENT_LOGGER_DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"EVENT_LOGGER_DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${EVENT_LOGGER_DEBUG_TRUE}" && test -z "${EVENT_LOGGER_DEBUG_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"EVENT_LOGGER_DEBUG\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"EVENT_LOGGER_DEBUG\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${KPI_SUPPORT_TRUE}" && test -z "${KPI_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"KPI_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${KPI_SUPPORT_TRUE}" && test -z "${KPI_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"KPI_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${KPI_SUPPORT_TRUE}" && test -z "${KPI_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"KPI_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${KPI_SUPPORT_TRUE}" && test -z "${KPI_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"KPI_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"KPI_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DECT_SUPPORT_TRUE}" && test -z "${DECT_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DECT_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DECT_SUPPORT_TRUE}" && test -z "${DECT_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DECT_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DECT_SUPPORT_TRUE}" && test -z "${DECT_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DECT_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DECT_SUPPORT_TRUE}" && test -z "${DECT_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DECT_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DECT_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${LIN_SUPPORT_TRUE}" && test -z "${LIN_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"LIN_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"LIN_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"LIN_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${LIN_SUPPORT_TRUE}" && test -z "${LIN_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"LIN_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"LIN_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"LIN_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${LIN_SUPPORT_TRUE}" && test -z "${LIN_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"LIN_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"LIN_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"LIN_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${PMU_SUPPORT_TRUE}" && test -z "${PMU_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"PMU_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"PMU_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"PMU_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${PMU_SUPPORT_TRUE}" && test -z "${PMU_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"PMU_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"PMU_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"PMU_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${PMU_SUPPORT_TRUE}" && test -z "${PMU_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"PMU_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"PMU_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"PMU_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${PMC_SUPPORT_TRUE}" && test -z "${PMC_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"PMC_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"PMC_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"PMC_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${PMC_SUPPORT_TRUE}" && test -z "${PMC_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"PMC_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"PMC_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"PMC_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${PMC_SUPPORT_TRUE}" && test -z "${PMC_SUPPORT_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"PMC_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"PMC_SUPPORT\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"PMC_SUPPORT\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${TAPI_TRUE}" && test -z "${TAPI_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"TAPI\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"TAPI\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DANUBE_TRUE}" && test -z "${DANUBE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DANUBE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${AR9_TRUE}" && test -z "${AR9_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"AR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"AR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"AR9\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${VR9_TRUE}" && test -z "${VR9_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"VR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"VR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"VR9\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DANUBE_TRUE}" && test -z "${DANUBE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DANUBE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DANUBE_TRUE}" && test -z "${DANUBE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DANUBE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${AR9_TRUE}" && test -z "${AR9_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"AR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"AR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"AR9\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${VR9_TRUE}" && test -z "${VR9_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"VR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"VR9\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"VR9\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
-+fi
-+if test -z "${FALCON_TRUE}" && test -z "${FALCON_FALSE}"; then
-+  as_fn_error $? "conditional \"FALCON\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${DANUBE_TRUE}" && test -z "${DANUBE_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"DANUBE\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"DANUBE\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${VMMC_WITH_MPS_TRUE}" && test -z "${VMMC_WITH_MPS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"VMMC_WITH_MPS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"VMMC_WITH_MPS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"VMMC_WITH_MPS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
- if test -z "${VMMC_WITH_MPS_TRUE}" && test -z "${VMMC_WITH_MPS_FALSE}"; then
--  { { echo "$as_me:$LINENO: error: conditional \"VMMC_WITH_MPS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&5
--echo "$as_me: error: conditional \"VMMC_WITH_MPS\" was never defined.
--Usually this means the macro was only invoked conditionally." >&2;}
--   { (exit 1); exit 1; }; }
-+  as_fn_error $? "conditional \"VMMC_WITH_MPS\" was never defined.
-+Usually this means the macro was only invoked conditionally." "$LINENO" 5
- fi
--: ${CONFIG_STATUS=./config.status}
-+: "${CONFIG_STATUS=./config.status}"
-+ac_write_fail=0
- ac_clean_files_save=$ac_clean_files
- ac_clean_files="$ac_clean_files $CONFIG_STATUS"
--{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
--echo "$as_me: creating $CONFIG_STATUS" >&6;}
--cat >$CONFIG_STATUS <<_ACEOF
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
-+$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
-+as_write_fail=0
-+cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
- #! $SHELL
- # Generated by $as_me.
- # Run this file to recreate the current configuration.
-@@ -5703,230 +5767,377 @@ cat >$CONFIG_STATUS <<_ACEOF
- debug=false
- ac_cs_recheck=false
- ac_cs_silent=false
--SHELL=\${CONFIG_SHELL-$SHELL}
--_ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
--## --------------------- ##
--## M4sh Initialization.  ##
--## --------------------- ##
-+SHELL=\${CONFIG_SHELL-$SHELL}
-+export SHELL
-+_ASEOF
-+cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
-+## -------------------- ##
-+## M4sh Initialization. ##
-+## -------------------- ##
--# Be Bourne compatible
--if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
-+# Be more Bourne compatible
-+DUALCASE=1; export DUALCASE # for MKS sh
-+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
-   emulate sh
-   NULLCMD=:
--  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
-+  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
-   # is contrary to our usage.  Disable this feature.
-   alias -g '${1+"$@"}'='"$@"'
--elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
--  set -o posix
--fi
--DUALCASE=1; export DUALCASE # for MKS sh
--
--# Support unset when possible.
--if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
--  as_unset=unset
-+  setopt NO_GLOB_SUBST
- else
--  as_unset=false
-+  case `(set -o) 2>/dev/null` in #(
-+  *posix*) :
-+    set -o posix ;; #(
-+  *) :
-+     ;;
-+esac
- fi
--# Work around bugs in pre-3.0 UWIN ksh.
--$as_unset ENV MAIL MAILPATH
--PS1='$ '
--PS2='> '
--PS4='+ '
--
--# NLS nuisances.
--for as_var in \
--  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
--  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
--  LC_TELEPHONE LC_TIME
--do
--  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
--    eval $as_var=C; export $as_var
-+as_nl='
-+'
-+export as_nl
-+# Printing a long string crashes Solaris 7 /usr/bin/printf.
-+as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-+as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-+# Prefer a ksh shell builtin over an external printf program on Solaris,
-+# but without wasting forks for bash or zsh.
-+if test -z "$BASH_VERSION$ZSH_VERSION" \
-+    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
-+  as_echo='print -r --'
-+  as_echo_n='print -rn --'
-+elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
-+  as_echo='printf %s\n'
-+  as_echo_n='printf %s'
-+else
-+  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
-+    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
-+    as_echo_n='/usr/ucb/echo -n'
-   else
--    $as_unset $as_var
-+    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
-+    as_echo_n_body='eval
-+      arg=$1;
-+      case $arg in #(
-+      *"$as_nl"*)
-+      expr "X$arg" : "X\\(.*\\)$as_nl";
-+      arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
-+      esac;
-+      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
-+    '
-+    export as_echo_n_body
-+    as_echo_n='sh -c $as_echo_n_body as_echo'
-   fi
--done
--
--# Required to use basename.
--if expr a : '\(a\)' >/dev/null 2>&1; then
--  as_expr=expr
--else
--  as_expr=false
-+  export as_echo_body
-+  as_echo='sh -c $as_echo_body as_echo'
- fi
--if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
--  as_basename=basename
--else
--  as_basename=false
--fi
--
--
--# Name of the executable.
--as_me=`$as_basename "$0" ||
--$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
--       X"$0" : 'X\(//\)$' \| \
--       X"$0" : 'X\(/\)$' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X/"$0" |
--    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
--        /^X\/\(\/\/\)$/{ s//\1/; q; }
--        /^X\/\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--
--
--# PATH needs CR, and LINENO needs CR and PATH.
--# Avoid depending upon Character Ranges.
--as_cr_letters='abcdefghijklmnopqrstuvwxyz'
--as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
--as_cr_Letters=$as_cr_letters$as_cr_LETTERS
--as_cr_digits='0123456789'
--as_cr_alnum=$as_cr_Letters$as_cr_digits
--
- # The user is always right.
- if test "${PATH_SEPARATOR+set}" != set; then
--  echo "#! /bin/sh" >conf$$.sh
--  echo  "exit 0"   >>conf$$.sh
--  chmod +x conf$$.sh
--  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
--    PATH_SEPARATOR=';'
--  else
--    PATH_SEPARATOR=:
--  fi
--  rm -f conf$$.sh
-+  PATH_SEPARATOR=:
-+  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
-+    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
-+      PATH_SEPARATOR=';'
-+  }
- fi
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
--  # Find who we are.  Look in the path if we contain no path at all
--  # relative or not.
--  case $0 in
--    *[\\/]* ) as_myself=$0 ;;
--    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+# IFS
-+# We need space, tab and new line, in precisely that order.  Quoting is
-+# there to prevent editors from complaining about space-tab.
-+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-+# splitting by setting IFS to empty value.)
-+IFS=" ""      $as_nl"
-+
-+# Find who we are.  Look in the path if we contain no directory separator.
-+as_myself=
-+case $0 in #((
-+  *[\\/]* ) as_myself=$0 ;;
-+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
- for as_dir in $PATH
- do
-   IFS=$as_save_IFS
-   test -z "$as_dir" && as_dir=.
--  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
--done
-+    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
-+  done
-+IFS=$as_save_IFS
--       ;;
--  esac
--  # We did not find ourselves, most probably we were run as `sh COMMAND'
--  # in which case we are not to be found in the path.
--  if test "x$as_myself" = x; then
--    as_myself=$0
--  fi
--  if test ! -f "$as_myself"; then
--    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
--echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
--   { (exit 1); exit 1; }; }
--  fi
--  case $CONFIG_SHELL in
--  '')
--    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
--do
--  IFS=$as_save_IFS
--  test -z "$as_dir" && as_dir=.
--  for as_base in sh bash ksh sh5; do
--       case $as_dir in
--       /*)
--         if ("$as_dir/$as_base" -c '
--  as_lineno_1=$LINENO
--  as_lineno_2=$LINENO
--  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
--  test "x$as_lineno_1" != "x$as_lineno_2" &&
--  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
--           $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
--           $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
--           CONFIG_SHELL=$as_dir/$as_base
--           export CONFIG_SHELL
--           exec "$CONFIG_SHELL" "$0" ${1+"$@"}
--         fi;;
--       esac
--       done
-+     ;;
-+esac
-+# We did not find ourselves, most probably we were run as `sh COMMAND'
-+# in which case we are not to be found in the path.
-+if test "x$as_myself" = x; then
-+  as_myself=$0
-+fi
-+if test ! -f "$as_myself"; then
-+  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
-+  exit 1
-+fi
-+
-+# Unset variables that we do not need and which cause bugs (e.g. in
-+# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
-+# suppresses any "Segmentation fault" message there.  '((' could
-+# trigger a bug in pdksh 5.2.14.
-+for as_var in BASH_ENV ENV MAIL MAILPATH
-+do eval test x\${$as_var+set} = xset \
-+  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
- done
--;;
--  esac
-+PS1='$ '
-+PS2='> '
-+PS4='+ '
--  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
--  # uniformly replaced by the line number.  The first 'sed' inserts a
--  # line-number line before each line; the second 'sed' does the real
--  # work.  The second script uses 'N' to pair each line-number line
--  # with the numbered line, and appends trailing '-' during
--  # substitution so that $LINENO is not a special case at line end.
--  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
--  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
--  sed '=' <$as_myself |
--    sed '
--      N
--      s,$,-,
--      : loop
--      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
--      t loop
--      s,-$,,
--      s,^['$as_cr_digits']*\n,,
--    ' >$as_me.lineno &&
--  chmod +x $as_me.lineno ||
--    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
--echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
--   { (exit 1); exit 1; }; }
-+# NLS nuisances.
-+LC_ALL=C
-+export LC_ALL
-+LANGUAGE=C
-+export LANGUAGE
--  # Don't try to exec as it changes $[0], causing all sort of problems
--  # (the dirname of $[0] is not the place where we might find the
--  # original and so on.  Autoconf is especially sensible to this).
--  . ./$as_me.lineno
--  # Exit status is that of the last command.
--  exit
--}
-+# CDPATH.
-+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
--case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
--  *c*,-n*) ECHO_N= ECHO_C='
--' ECHO_T='    ' ;;
--  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
--  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
--esac
-+# as_fn_error STATUS ERROR [LINENO LOG_FD]
-+# ----------------------------------------
-+# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-+# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-+# script with STATUS, using 1 if that was 0.
-+as_fn_error ()
-+{
-+  as_status=$1; test $as_status -eq 0 && as_status=1
-+  if test "$4"; then
-+    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
-+    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
-+  fi
-+  $as_echo "$as_me: error: $2" >&2
-+  as_fn_exit $as_status
-+} # as_fn_error
-+
-+
-+# as_fn_set_status STATUS
-+# -----------------------
-+# Set $? to STATUS, without forking.
-+as_fn_set_status ()
-+{
-+  return $1
-+} # as_fn_set_status
-+
-+# as_fn_exit STATUS
-+# -----------------
-+# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-+as_fn_exit ()
-+{
-+  set +e
-+  as_fn_set_status $1
-+  exit $1
-+} # as_fn_exit
-+
-+# as_fn_unset VAR
-+# ---------------
-+# Portably unset VAR.
-+as_fn_unset ()
-+{
-+  { eval $1=; unset $1;}
-+}
-+as_unset=as_fn_unset
-+# as_fn_append VAR VALUE
-+# ----------------------
-+# Append the text in VALUE to the end of the definition contained in VAR. Take
-+# advantage of any shell optimizations that allow amortized linear growth over
-+# repeated appends, instead of the typical quadratic growth present in naive
-+# implementations.
-+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
-+  eval 'as_fn_append ()
-+  {
-+    eval $1+=\$2
-+  }'
-+else
-+  as_fn_append ()
-+  {
-+    eval $1=\$$1\$2
-+  }
-+fi # as_fn_append
-+
-+# as_fn_arith ARG...
-+# ------------------
-+# Perform arithmetic evaluation on the ARGs, and store the result in the
-+# global $as_val. Take advantage of shells that can avoid forks. The arguments
-+# must be portable across $(()) and expr.
-+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
-+  eval 'as_fn_arith ()
-+  {
-+    as_val=$(( $* ))
-+  }'
-+else
-+  as_fn_arith ()
-+  {
-+    as_val=`expr "$@" || test $? -eq 1`
-+  }
-+fi # as_fn_arith
--if expr a : '\(a\)' >/dev/null 2>&1; then
-+
-+if expr a : '\(a\)' >/dev/null 2>&1 &&
-+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
-   as_expr=expr
- else
-   as_expr=false
- fi
-+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
-+  as_basename=basename
-+else
-+  as_basename=false
-+fi
-+
-+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
-+  as_dirname=dirname
-+else
-+  as_dirname=false
-+fi
-+
-+as_me=`$as_basename -- "$0" ||
-+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
-+       X"$0" : 'X\(//\)$' \| \
-+       X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X/"$0" |
-+    sed '/^.*\/\([^/][^/]*\)\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\/\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\/\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-+
-+# Avoid depending upon Character Ranges.
-+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-+as_cr_digits='0123456789'
-+as_cr_alnum=$as_cr_Letters$as_cr_digits
-+
-+ECHO_C= ECHO_N= ECHO_T=
-+case `echo -n x` in #(((((
-+-n*)
-+  case `echo 'xy\c'` in
-+  *c*) ECHO_T='       ';;     # ECHO_T is single tab character.
-+  xy)  ECHO_C='\c';;
-+  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
-+       ECHO_T='       ';;
-+  esac;;
-+*)
-+  ECHO_N='-n';;
-+esac
-+
- rm -f conf$$ conf$$.exe conf$$.file
--echo >conf$$.file
--if ln -s conf$$.file conf$$ 2>/dev/null; then
--  # We could just check for DJGPP; but this test a) works b) is more generic
--  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
--  if test -f conf$$.exe; then
--    # Don't use ln at all; we don't have any links
--    as_ln_s='cp -p'
--  else
-+if test -d conf$$.dir; then
-+  rm -f conf$$.dir/conf$$.file
-+else
-+  rm -f conf$$.dir
-+  mkdir conf$$.dir 2>/dev/null
-+fi
-+if (echo >conf$$.file) 2>/dev/null; then
-+  if ln -s conf$$.file conf$$ 2>/dev/null; then
-     as_ln_s='ln -s'
-+    # ... but there are two gotchas:
-+    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
-+    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
-+    # In both cases, we have to default to `cp -p'.
-+    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
-+      as_ln_s='cp -p'
-+  elif ln conf$$.file conf$$ 2>/dev/null; then
-+    as_ln_s=ln
-+  else
-+    as_ln_s='cp -p'
-   fi
--elif ln conf$$.file conf$$ 2>/dev/null; then
--  as_ln_s=ln
- else
-   as_ln_s='cp -p'
- fi
--rm -f conf$$ conf$$.exe conf$$.file
-+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-+rmdir conf$$.dir 2>/dev/null
-+
-+# as_fn_mkdir_p
-+# -------------
-+# Create "$as_dir" as a directory, including parents if necessary.
-+as_fn_mkdir_p ()
-+{
-+
-+  case $as_dir in #(
-+  -*) as_dir=./$as_dir;;
-+  esac
-+  test -d "$as_dir" || eval $as_mkdir_p || {
-+    as_dirs=
-+    while :; do
-+      case $as_dir in #(
-+      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
-+      *) as_qdir=$as_dir;;
-+      esac
-+      as_dirs="'$as_qdir' $as_dirs"
-+      as_dir=`$as_dirname -- "$as_dir" ||
-+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+       X"$as_dir" : 'X\(//\)[^/]' \| \
-+       X"$as_dir" : 'X\(//\)$' \| \
-+       X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$as_dir" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-+      test -d "$as_dir" && break
-+    done
-+    test -z "$as_dirs" || eval "mkdir $as_dirs"
-+  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
-+
-+
-+} # as_fn_mkdir_p
- if mkdir -p . 2>/dev/null; then
--  as_mkdir_p=:
-+  as_mkdir_p='mkdir -p "$as_dir"'
- else
-   test -d ./-p && rmdir ./-p
-   as_mkdir_p=false
- fi
--as_executable_p="test -f"
-+if test -x / >/dev/null 2>&1; then
-+  as_test_x='test -x'
-+else
-+  if ls -dL / >/dev/null 2>&1; then
-+    as_ls_L_option=L
-+  else
-+    as_ls_L_option=
-+  fi
-+  as_test_x='
-+    eval sh -c '\''
-+      if test -d "$1"; then
-+      test -d "$1/.";
-+      else
-+      case $1 in #(
-+      -*)set "./$1";;
-+      esac;
-+      case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
-+      ???[sx]*):;;*)false;;esac;fi
-+    '\'' sh
-+  '
-+fi
-+as_executable_p=$as_test_x
- # Sed expression to map a string onto a valid CPP name.
- as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-@@ -5935,31 +6146,20 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P
- as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
--# IFS
--# We need space, tab and new line, in precisely that order.
--as_nl='
--'
--IFS="         $as_nl"
--
--# CDPATH.
--$as_unset CDPATH
--
- exec 6>&1
-+## ----------------------------------- ##
-+## Main body of $CONFIG_STATUS script. ##
-+## ----------------------------------- ##
-+_ASEOF
-+test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
--# Open the log real soon, to keep \$[0] and so on meaningful, and to
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+# Save the log message, to keep $0 and so on meaningful, and to
- # report actual input values of CONFIG_FILES etc. instead of their
--# values after options handling.  Logging --version etc. is OK.
--exec 5>>config.log
--{
--  echo
--  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
--## Running $as_me. ##
--_ASBOX
--} >&5
--cat >&5 <<_CSEOF
--
-+# values after options handling.
-+ac_log="
- This file was extended by VMMC Device Driver $as_me 1.9.0, which was
--generated by GNU Autoconf 2.59.  Invocation command line was
-+generated by GNU Autoconf 2.68.  Invocation command line was
-   CONFIG_FILES    = $CONFIG_FILES
-   CONFIG_HEADERS  = $CONFIG_HEADERS
-@@ -5967,45 +6167,47 @@ generated by GNU Autoconf 2.59.  Invocat
-   CONFIG_COMMANDS = $CONFIG_COMMANDS
-   $ $0 $@
--_CSEOF
--echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
--echo >&5
-+on `(hostname || uname -n) 2>/dev/null | sed 1q`
-+"
-+
- _ACEOF
--# Files that config.status was made for.
--if test -n "$ac_config_files"; then
--  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
--fi
-+case $ac_config_files in *"
-+"*) set x $ac_config_files; shift; ac_config_files=$*;;
-+esac
--if test -n "$ac_config_headers"; then
--  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
--fi
-+case $ac_config_headers in *"
-+"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
-+esac
--if test -n "$ac_config_links"; then
--  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
--fi
--if test -n "$ac_config_commands"; then
--  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
--fi
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+# Files that config.status was made for.
-+config_files="$ac_config_files"
-+config_headers="$ac_config_headers"
-+config_commands="$ac_config_commands"
--cat >>$CONFIG_STATUS <<\_ACEOF
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
- ac_cs_usage="\
--\`$as_me' instantiates files from templates according to the
--current configuration.
-+\`$as_me' instantiates files and other configuration actions
-+from templates according to the current configuration.  Unless the files
-+and actions are specified as TAGs, all are instantiated by default.
--Usage: $0 [OPTIONS] [FILE]...
-+Usage: $0 [OPTION]... [TAG]...
-   -h, --help       print this help, then exit
--  -V, --version    print version number, then exit
--  -q, --quiet      do not print progress messages
-+  -V, --version    print version number and configuration settings, then exit
-+      --config     print configuration, then exit
-+  -q, --quiet, --silent
-+                   do not print progress messages
-   -d, --debug      don't remove temporary files
-       --recheck    update $as_me by reconfiguring in the same conditions
--  --file=FILE[:TEMPLATE]
--                 instantiate the configuration file FILE
--  --header=FILE[:TEMPLATE]
--                 instantiate the configuration header FILE
-+      --file=FILE[:TEMPLATE]
-+                   instantiate the configuration file FILE
-+      --header=FILE[:TEMPLATE]
-+                   instantiate the configuration header FILE
- Configuration files:
- $config_files
-@@ -6016,84 +6218,92 @@ $config_headers
- Configuration commands:
- $config_commands
--Report bugs to <bug-autoconf@gnu.org>."
--_ACEOF
-+Report bugs to the package provider."
--cat >>$CONFIG_STATUS <<_ACEOF
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
- ac_cs_version="\\
- VMMC Device Driver config.status 1.9.0
--configured by $0, generated by GNU Autoconf 2.59,
--  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
-+configured by $0, generated by GNU Autoconf 2.68,
-+  with options \\"\$ac_cs_config\\"
--Copyright (C) 2003 Free Software Foundation, Inc.
-+Copyright (C) 2010 Free Software Foundation, Inc.
- This config.status script is free software; the Free Software Foundation
- gives unlimited permission to copy, distribute and modify it."
--srcdir=$srcdir
--INSTALL="$INSTALL"
-+
-+ac_pwd='$ac_pwd'
-+srcdir='$srcdir'
-+INSTALL='$INSTALL'
-+MKDIR_P='$MKDIR_P'
-+AWK='$AWK'
-+test -n "\$AWK" || AWK=awk
- _ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
--# If no file are specified by the user, then we need to provide default
--# value.  By we need to know if files were specified by the user.
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+# The default lists apply if the user does not specify any file.
- ac_need_defaults=:
- while test $# != 0
- do
-   case $1 in
--  --*=*)
--    ac_option=`expr "x$1" : 'x\([^=]*\)='`
--    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
-+  --*=?*)
-+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
-+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
-     ac_shift=:
-     ;;
--  -*)
-+  --*=)
-+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
-+    ac_optarg=
-+    ac_shift=:
-+    ;;
-+  *)
-     ac_option=$1
-     ac_optarg=$2
-     ac_shift=shift
-     ;;
--  *) # This is not an option, so the user has probably given explicit
--     # arguments.
--     ac_option=$1
--     ac_need_defaults=false;;
-   esac
-   case $ac_option in
-   # Handling of the options.
--_ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
-   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
-     ac_cs_recheck=: ;;
--  --version | --vers* | -V )
--    echo "$ac_cs_version"; exit 0 ;;
--  --he | --h)
--    # Conflict between --help and --header
--    { { echo "$as_me:$LINENO: error: ambiguous option: $1
--Try \`$0 --help' for more information." >&5
--echo "$as_me: error: ambiguous option: $1
--Try \`$0 --help' for more information." >&2;}
--   { (exit 1); exit 1; }; };;
--  --help | --hel | -h )
--    echo "$ac_cs_usage"; exit 0 ;;
--  --debug | --d* | -d )
-+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
-+    $as_echo "$ac_cs_version"; exit ;;
-+  --config | --confi | --conf | --con | --co | --c )
-+    $as_echo "$ac_cs_config"; exit ;;
-+  --debug | --debu | --deb | --de | --d | -d )
-     debug=: ;;
-   --file | --fil | --fi | --f )
-     $ac_shift
--    CONFIG_FILES="$CONFIG_FILES $ac_optarg"
-+    case $ac_optarg in
-+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    '') as_fn_error $? "missing file argument" ;;
-+    esac
-+    as_fn_append CONFIG_FILES " '$ac_optarg'"
-     ac_need_defaults=false;;
-   --header | --heade | --head | --hea )
-     $ac_shift
--    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
-+    case $ac_optarg in
-+    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
-+    esac
-+    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
-     ac_need_defaults=false;;
-+  --he | --h)
-+    # Conflict between --help and --header
-+    as_fn_error $? "ambiguous option: \`$1'
-+Try \`$0 --help' for more information.";;
-+  --help | --hel | -h )
-+    $as_echo "$ac_cs_usage"; exit ;;
-   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
-   | -silent | --silent | --silen | --sile | --sil | --si | --s)
-     ac_cs_silent=: ;;
-   # This is an error.
--  -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
--Try \`$0 --help' for more information." >&5
--echo "$as_me: error: unrecognized option: $1
--Try \`$0 --help' for more information." >&2;}
--   { (exit 1); exit 1; }; } ;;
-+  -*) as_fn_error $? "unrecognized option: \`$1'
-+Try \`$0 --help' for more information." ;;
--  *) ac_config_targets="$ac_config_targets $1" ;;
-+  *) as_fn_append ac_config_targets " $1"
-+     ac_need_defaults=false ;;
-   esac
-   shift
-@@ -6107,40 +6317,52 @@ if $ac_cs_silent; then
- fi
- _ACEOF
--cat >>$CONFIG_STATUS <<_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
- if \$ac_cs_recheck; then
--  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
--  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
-+  set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
-+  shift
-+  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
-+  CONFIG_SHELL='$SHELL'
-+  export CONFIG_SHELL
-+  exec "\$@"
- fi
- _ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+exec 5>>config.log
-+{
-+  echo
-+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-+## Running $as_me. ##
-+_ASBOX
-+  $as_echo "$ac_log"
-+} >&5
--cat >>$CONFIG_STATUS <<_ACEOF
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
- #
--# INIT-COMMANDS section.
-+# INIT-COMMANDS
- #
--
- AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
- _ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
--
--cat >>$CONFIG_STATUS <<\_ACEOF
-+# Handling of arguments.
- for ac_config_target in $ac_config_targets
- do
--  case "$ac_config_target" in
--  # Handling of arguments.
--  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
--  "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
--  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
--  "drv_config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS drv_config.h" ;;
--  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
--echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
--   { (exit 1); exit 1; }; };;
-+  case $ac_config_target in
-+    "drv_config.h") CONFIG_HEADERS="$CONFIG_HEADERS drv_config.h" ;;
-+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
-+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
-+    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
-+
-+  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
-   esac
- done
-+
- # If the user did not use the arguments to specify the items to instantiate,
- # then the envvar interface is used.  Set only those that are not.
- # We use the long form for the default assignment because of an extremely
-@@ -6152,856 +6374,691 @@ if $ac_need_defaults; then
- fi
- # Have a temporary directory for convenience.  Make it in the build tree
--# simply because there is no reason to put it here, and in addition,
-+# simply because there is no reason against having it here, and in addition,
- # creating and moving files from /tmp can sometimes cause problems.
--# Create a temporary directory, and hook for its removal unless debugging.
-+# Hook for its removal unless debugging.
-+# Note that there is a small window in which the directory will not be cleaned:
-+# after its creation but before its name has been assigned to `$tmp'.
- $debug ||
- {
--  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
--  trap '{ (exit 1); exit 1; }' 1 2 13 15
-+  tmp= ac_tmp=
-+  trap 'exit_status=$?
-+  : "${ac_tmp:=$tmp}"
-+  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
-+' 0
-+  trap 'as_fn_exit 1' 1 2 13 15
- }
--
- # Create a (secure) tmp directory for tmp files.
- {
--  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
--  test -n "$tmp" && test -d "$tmp"
-+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
-+  test -d "$tmp"
- }  ||
- {
--  tmp=./confstat$$-$RANDOM
--  (umask 077 && mkdir $tmp)
--} ||
-+  tmp=./conf$$-$RANDOM
-+  (umask 077 && mkdir "$tmp")
-+} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
-+ac_tmp=$tmp
-+
-+# Set up the scripts for CONFIG_FILES section.
-+# No need to generate them if there are no CONFIG_FILES.
-+# This happens for instance with `./config.status config.h'.
-+if test -n "$CONFIG_FILES"; then
-+
-+
-+ac_cr=`echo X | tr X '\015'`
-+# On cygwin, bash can eat \r inside `` if the user requested igncr.
-+# But we know of no other shell where ac_cr would be empty at this
-+# point, so we can use a bashism as a fallback.
-+if test "x$ac_cr" = x; then
-+  eval ac_cr=\$\'\\r\'
-+fi
-+ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-+if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
-+  ac_cs_awk_cr='\\r'
-+else
-+  ac_cs_awk_cr=$ac_cr
-+fi
-+
-+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
-+_ACEOF
-+
-+
- {
--   echo "$me: cannot create a temporary directory in ." >&2
--   { (exit 1); exit 1; }
-+  echo "cat >conf$$subs.awk <<_ACEOF" &&
-+  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
-+  echo "_ACEOF"
-+} >conf$$subs.sh ||
-+  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
-+ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
-+ac_delim='%!_!# '
-+for ac_last_try in false false false false false :; do
-+  . ./conf$$subs.sh ||
-+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
-+
-+  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
-+  if test $ac_delim_n = $ac_delim_num; then
-+    break
-+  elif $ac_last_try; then
-+    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-+  fi
-+done
-+rm -f conf$$subs.sh
-+
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
-+_ACEOF
-+sed -n '
-+h
-+s/^/S["/; s/!.*/"]=/
-+p
-+g
-+s/^[^!]*!//
-+:repl
-+t repl
-+s/'"$ac_delim"'$//
-+t delim
-+:nl
-+h
-+s/\(.\{148\}\)..*/\1/
-+t more1
-+s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
-+p
-+n
-+b repl
-+:more1
-+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
-+p
-+g
-+s/.\{148\}//
-+t nl
-+:delim
-+h
-+s/\(.\{148\}\)..*/\1/
-+t more2
-+s/["\\]/\\&/g; s/^/"/; s/$/"/
-+p
-+b
-+:more2
-+s/["\\]/\\&/g; s/^/"/; s/$/"\\/
-+p
-+g
-+s/.\{148\}//
-+t delim
-+' <conf$$subs.awk | sed '
-+/^[^""]/{
-+  N
-+  s/\n//
- }
-+' >>$CONFIG_STATUS || ac_write_fail=1
-+rm -f conf$$subs.awk
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+_ACAWK
-+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
-+  for (key in S) S_is_set[key] = 1
-+  FS = "\a"
-+}
-+{
-+  line = $ 0
-+  nfields = split(line, field, "@")
-+  substed = 0
-+  len = length(field[1])
-+  for (i = 2; i < nfields; i++) {
-+    key = field[i]
-+    keylen = length(key)
-+    if (S_is_set[key]) {
-+      value = S[key]
-+      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
-+      len += length(value) + length(field[++i])
-+      substed = 1
-+    } else
-+      len += 1 + keylen
-+  }
-+
-+  print line
-+}
-+
-+_ACAWK
-+_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
-+  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-+else
-+  cat
-+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
-+  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
- _ACEOF
--cat >>$CONFIG_STATUS <<_ACEOF
-+# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
-+# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
-+# trailing colons and then remove the whole line if VPATH becomes empty
-+# (actually we leave an empty line to preserve line numbers).
-+if test "x$srcdir" = x.; then
-+  ac_vpsub='/^[        ]*VPATH[        ]*=[    ]*/{
-+h
-+s///
-+s/^/:/
-+s/[    ]*$/:/
-+s/:\$(srcdir):/:/g
-+s/:\${srcdir}:/:/g
-+s/:@srcdir@:/:/g
-+s/^:*//
-+s/:*$//
-+x
-+s/\(=[         ]*\).*/\1/
-+G
-+s/\n//
-+s/^[^=]*=[     ]*$//
-+}'
-+fi
--#
--# CONFIG_FILES section.
--#
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+fi # test -n "$CONFIG_FILES"
--# No need to generate the scripts if there are no CONFIG_FILES.
--# This happens for instance when ./config.status config.h
--if test -n "\$CONFIG_FILES"; then
--  # Protect against being on the right side of a sed subst in config.status.
--  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
--   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
--s,@SHELL@,$SHELL,;t t
--s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
--s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
--s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
--s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
--s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
--s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
--s,@exec_prefix@,$exec_prefix,;t t
--s,@prefix@,$prefix,;t t
--s,@program_transform_name@,$program_transform_name,;t t
--s,@bindir@,$bindir,;t t
--s,@sbindir@,$sbindir,;t t
--s,@libexecdir@,$libexecdir,;t t
--s,@datadir@,$datadir,;t t
--s,@sysconfdir@,$sysconfdir,;t t
--s,@sharedstatedir@,$sharedstatedir,;t t
--s,@localstatedir@,$localstatedir,;t t
--s,@libdir@,$libdir,;t t
--s,@includedir@,$includedir,;t t
--s,@oldincludedir@,$oldincludedir,;t t
--s,@infodir@,$infodir,;t t
--s,@mandir@,$mandir,;t t
--s,@build_alias@,$build_alias,;t t
--s,@host_alias@,$host_alias,;t t
--s,@target_alias@,$target_alias,;t t
--s,@DEFS@,$DEFS,;t t
--s,@ECHO_C@,$ECHO_C,;t t
--s,@ECHO_N@,$ECHO_N,;t t
--s,@ECHO_T@,$ECHO_T,;t t
--s,@LIBS@,$LIBS,;t t
--s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
--s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
--s,@INSTALL_DATA@,$INSTALL_DATA,;t t
--s,@CYGPATH_W@,$CYGPATH_W,;t t
--s,@PACKAGE@,$PACKAGE,;t t
--s,@VERSION@,$VERSION,;t t
--s,@ACLOCAL@,$ACLOCAL,;t t
--s,@AUTOCONF@,$AUTOCONF,;t t
--s,@AUTOMAKE@,$AUTOMAKE,;t t
--s,@AUTOHEADER@,$AUTOHEADER,;t t
--s,@MAKEINFO@,$MAKEINFO,;t t
--s,@install_sh@,$install_sh,;t t
--s,@STRIP@,$STRIP,;t t
--s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
--s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
--s,@mkdir_p@,$mkdir_p,;t t
--s,@AWK@,$AWK,;t t
--s,@SET_MAKE@,$SET_MAKE,;t t
--s,@am__leading_dot@,$am__leading_dot,;t t
--s,@AMTAR@,$AMTAR,;t t
--s,@am__tar@,$am__tar,;t t
--s,@am__untar@,$am__untar,;t t
--s,@CONFIGURE_OPTIONS@,$CONFIGURE_OPTIONS,;t t
--s,@CC@,$CC,;t t
--s,@CFLAGS@,$CFLAGS,;t t
--s,@LDFLAGS@,$LDFLAGS,;t t
--s,@CPPFLAGS@,$CPPFLAGS,;t t
--s,@ac_ct_CC@,$ac_ct_CC,;t t
--s,@EXEEXT@,$EXEEXT,;t t
--s,@OBJEXT@,$OBJEXT,;t t
--s,@DEPDIR@,$DEPDIR,;t t
--s,@am__include@,$am__include,;t t
--s,@am__quote@,$am__quote,;t t
--s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
--s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
--s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
--s,@CCDEPMODE@,$CCDEPMODE,;t t
--s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
--s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
--s,@KERNEL_2_6_TRUE@,$KERNEL_2_6_TRUE,;t t
--s,@KERNEL_2_6_FALSE@,$KERNEL_2_6_FALSE,;t t
--s,@KERNEL_ARCH@,$KERNEL_ARCH,;t t
--s,@KERNEL_INCL_PATH@,$KERNEL_INCL_PATH,;t t
--s,@KERNEL_BUILD_PATH@,$KERNEL_BUILD_PATH,;t t
--s,@IFXOS_INCL_PATH@,$IFXOS_INCL_PATH,;t t
--s,@ENABLE_OBSOLETE_PREMAPPING_TRUE@,$ENABLE_OBSOLETE_PREMAPPING_TRUE,;t t
--s,@ENABLE_OBSOLETE_PREMAPPING_FALSE@,$ENABLE_OBSOLETE_PREMAPPING_FALSE,;t t
--s,@WARNINGS_TRUE@,$WARNINGS_TRUE,;t t
--s,@WARNINGS_FALSE@,$WARNINGS_FALSE,;t t
--s,@DEBUG_TRUE@,$DEBUG_TRUE,;t t
--s,@DEBUG_FALSE@,$DEBUG_FALSE,;t t
--s,@HL_TAPI_INCL_PATH_SET_TRUE@,$HL_TAPI_INCL_PATH_SET_TRUE,;t t
--s,@HL_TAPI_INCL_PATH_SET_FALSE@,$HL_TAPI_INCL_PATH_SET_FALSE,;t t
--s,@HL_TAPI_INCL_PATH@,$HL_TAPI_INCL_PATH,;t t
--s,@MPS_INCL_PATH_SET_TRUE@,$MPS_INCL_PATH_SET_TRUE,;t t
--s,@MPS_INCL_PATH_SET_FALSE@,$MPS_INCL_PATH_SET_FALSE,;t t
--s,@MPS_INCL_PATH@,$MPS_INCL_PATH,;t t
--s,@EVALUATION_TRUE@,$EVALUATION_TRUE,;t t
--s,@EVALUATION_FALSE@,$EVALUATION_FALSE,;t t
--s,@USE_MODULE_TRUE@,$USE_MODULE_TRUE,;t t
--s,@USE_MODULE_FALSE@,$USE_MODULE_FALSE,;t t
--s,@USE_BUFFERPOOL_TRUE@,$USE_BUFFERPOOL_TRUE,;t t
--s,@USE_BUFFERPOOL_FALSE@,$USE_BUFFERPOOL_FALSE,;t t
--s,@TAPI_TRUE@,$TAPI_TRUE,;t t
--s,@TAPI_FALSE@,$TAPI_FALSE,;t t
--s,@IPP_EVAL_SYSTEM_PARAMETERS_TRUE@,$IPP_EVAL_SYSTEM_PARAMETERS_TRUE,;t t
--s,@IPP_EVAL_SYSTEM_PARAMETERS_FALSE@,$IPP_EVAL_SYSTEM_PARAMETERS_FALSE,;t t
--s,@EVENT_LOGGER_DEBUG_TRUE@,$EVENT_LOGGER_DEBUG_TRUE,;t t
--s,@EVENT_LOGGER_DEBUG_FALSE@,$EVENT_LOGGER_DEBUG_FALSE,;t t
--s,@KPI_SUPPORT_TRUE@,$KPI_SUPPORT_TRUE,;t t
--s,@KPI_SUPPORT_FALSE@,$KPI_SUPPORT_FALSE,;t t
--s,@DECT_SUPPORT_TRUE@,$DECT_SUPPORT_TRUE,;t t
--s,@DECT_SUPPORT_FALSE@,$DECT_SUPPORT_FALSE,;t t
--s,@LIN_SUPPORT_TRUE@,$LIN_SUPPORT_TRUE,;t t
--s,@LIN_SUPPORT_FALSE@,$LIN_SUPPORT_FALSE,;t t
--s,@PMU_SUPPORT_TRUE@,$PMU_SUPPORT_TRUE,;t t
--s,@PMU_SUPPORT_FALSE@,$PMU_SUPPORT_FALSE,;t t
--s,@PMC_SUPPORT_TRUE@,$PMC_SUPPORT_TRUE,;t t
--s,@PMC_SUPPORT_FALSE@,$PMC_SUPPORT_FALSE,;t t
--s,@DANUBE_TRUE@,$DANUBE_TRUE,;t t
--s,@DANUBE_FALSE@,$DANUBE_FALSE,;t t
--s,@AR9_TRUE@,$AR9_TRUE,;t t
--s,@AR9_FALSE@,$AR9_FALSE,;t t
--s,@VR9_TRUE@,$VR9_TRUE,;t t
--s,@VR9_FALSE@,$VR9_FALSE,;t t
--s,@VMMC_WITH_MPS_TRUE@,$VMMC_WITH_MPS_TRUE,;t t
--s,@VMMC_WITH_MPS_FALSE@,$VMMC_WITH_MPS_FALSE,;t t
--s,@LIBOBJS@,$LIBOBJS,;t t
--s,@LTLIBOBJS@,$LTLIBOBJS,;t t
--CEOF
--
--_ACEOF
--
--  cat >>$CONFIG_STATUS <<\_ACEOF
--  # Split the substitutions into bite-sized pieces for seds with
--  # small command number limits, like on Digital OSF/1 and HP-UX.
--  ac_max_sed_lines=48
--  ac_sed_frag=1 # Number of current file.
--  ac_beg=1 # First line for current file.
--  ac_end=$ac_max_sed_lines # Line after last line for current file.
--  ac_more_lines=:
--  ac_sed_cmds=
--  while $ac_more_lines; do
--    if test $ac_beg -gt 1; then
--      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
--    else
--      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
--    fi
--    if test ! -s $tmp/subs.frag; then
--      ac_more_lines=false
--    else
--      # The purpose of the label and of the branching condition is to
--      # speed up the sed processing (if there are no `@' at all, there
--      # is no need to browse any of the substitutions).
--      # These are the two extra sed commands mentioned above.
--      (echo ':t
--  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
--      if test -z "$ac_sed_cmds"; then
--      ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
--      else
--      ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
--      fi
--      ac_sed_frag=`expr $ac_sed_frag + 1`
--      ac_beg=$ac_end
--      ac_end=`expr $ac_end + $ac_max_sed_lines`
--    fi
--  done
--  if test -z "$ac_sed_cmds"; then
--    ac_sed_cmds=cat
-+# Set up the scripts for CONFIG_HEADERS section.
-+# No need to generate them if there are no CONFIG_HEADERS.
-+# This happens for instance with `./config.status Makefile'.
-+if test -n "$CONFIG_HEADERS"; then
-+cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
-+BEGIN {
-+_ACEOF
-+
-+# Transform confdefs.h into an awk script `defines.awk', embedded as
-+# here-document in config.status, that substitutes the proper values into
-+# config.h.in to produce config.h.
-+
-+# Create a delimiter string that does not exist in confdefs.h, to ease
-+# handling of long lines.
-+ac_delim='%!_!# '
-+for ac_last_try in false false :; do
-+  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
-+  if test -z "$ac_tt"; then
-+    break
-+  elif $ac_last_try; then
-+    as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
-+  else
-+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
-   fi
--fi # test -n "$CONFIG_FILES"
-+done
-+# For the awk script, D is an array of macro values keyed by name,
-+# likewise P contains macro parameters if any.  Preserve backslash
-+# newline sequences.
-+
-+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
-+sed -n '
-+s/.\{148\}/&'"$ac_delim"'/g
-+t rset
-+:rset
-+s/^[   ]*#[    ]*define[       ][      ]*/ /
-+t def
-+d
-+:def
-+s/\\$//
-+t bsnl
-+s/["\\]/\\&/g
-+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[   ]*\(.*\)/P["\1"]="\2"\
-+D["\1"]=" \3"/p
-+s/^ \('"$ac_word_re"'\)[       ]*\(.*\)/D["\1"]=" \2"/p
-+d
-+:bsnl
-+s/["\\]/\\&/g
-+s/^ \('"$ac_word_re"'\)\(([^()]*)\)[   ]*\(.*\)/P["\1"]="\2"\
-+D["\1"]=" \3\\\\\\n"\\/p
-+t cont
-+s/^ \('"$ac_word_re"'\)[       ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
-+t cont
-+d
-+:cont
-+n
-+s/.\{148\}/&'"$ac_delim"'/g
-+t clear
-+:clear
-+s/\\$//
-+t bsnlc
-+s/["\\]/\\&/g; s/^/"/; s/$/"/p
-+d
-+:bsnlc
-+s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
-+b cont
-+' <confdefs.h | sed '
-+s/'"$ac_delim"'/"\\\
-+"/g' >>$CONFIG_STATUS || ac_write_fail=1
-+
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+  for (key in D) D_is_set[key] = 1
-+  FS = "\a"
-+}
-+/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
-+  line = \$ 0
-+  split(line, arg, " ")
-+  if (arg[1] == "#") {
-+    defundef = arg[2]
-+    mac1 = arg[3]
-+  } else {
-+    defundef = substr(arg[1], 2)
-+    mac1 = arg[2]
-+  }
-+  split(mac1, mac2, "(") #)
-+  macro = mac2[1]
-+  prefix = substr(line, 1, index(line, defundef) - 1)
-+  if (D_is_set[macro]) {
-+    # Preserve the white space surrounding the "#".
-+    print prefix "define", macro P[macro] D[macro]
-+    next
-+  } else {
-+    # Replace #undef with comments.  This is necessary, for example,
-+    # in the case of _POSIX_SOURCE, which is predefined and required
-+    # on some systems where configure will not decide to define it.
-+    if (defundef == "undef") {
-+      print "/*", prefix defundef, macro, "*/"
-+      next
-+    }
-+  }
-+}
-+{ print }
-+_ACAWK
- _ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
--for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
--  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
--  case $ac_file in
--  - | *:- | *:-:* ) # input from stdin
--      cat >$tmp/stdin
--      ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
--      ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
--  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
--      ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
--  * )   ac_file_in=$ac_file.in ;;
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
-+fi # test -n "$CONFIG_HEADERS"
-+
-+
-+eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
-+shift
-+for ac_tag
-+do
-+  case $ac_tag in
-+  :[FHLC]) ac_mode=$ac_tag; continue;;
-+  esac
-+  case $ac_mode$ac_tag in
-+  :[FHL]*:*);;
-+  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
-+  :[FH]-) ac_tag=-:-;;
-+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
-+  esac
-+  ac_save_IFS=$IFS
-+  IFS=:
-+  set x $ac_tag
-+  IFS=$ac_save_IFS
-+  shift
-+  ac_file=$1
-+  shift
-+
-+  case $ac_mode in
-+  :L) ac_source=$1;;
-+  :[FH])
-+    ac_file_inputs=
-+    for ac_f
-+    do
-+      case $ac_f in
-+      -) ac_f="$ac_tmp/stdin";;
-+      *) # Look for the file first in the build tree, then in the source tree
-+       # (if the path is not absolute).  The absolute path cannot be DOS-style,
-+       # because $ac_f cannot contain `:'.
-+       test -f "$ac_f" ||
-+         case $ac_f in
-+         [\\/$]*) false;;
-+         *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
-+         esac ||
-+         as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
-+      esac
-+      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
-+      as_fn_append ac_file_inputs " '$ac_f'"
-+    done
-+
-+    # Let's still pretend it is `configure' which instantiates (i.e., don't
-+    # use $as_me), people would be surprised to read:
-+    #    /* config.h.  Generated by config.status.  */
-+    configure_input='Generated from '`
-+        $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
-+      `' by configure.'
-+    if test x"$ac_file" != x-; then
-+      configure_input="$ac_file.  $configure_input"
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-+$as_echo "$as_me: creating $ac_file" >&6;}
-+    fi
-+    # Neutralize special characters interpreted by sed in replacement strings.
-+    case $configure_input in #(
-+    *\&* | *\|* | *\\* )
-+       ac_sed_conf_input=`$as_echo "$configure_input" |
-+       sed 's/[\\\\&|]/\\\\&/g'`;; #(
-+    *) ac_sed_conf_input=$configure_input;;
-+    esac
-+
-+    case $ac_tag in
-+    *:-:* | *:-) cat >"$ac_tmp/stdin" \
-+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
-+    esac
-+    ;;
-   esac
--  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
--  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
-+  ac_dir=`$as_dirname -- "$ac_file" ||
- $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-        X"$ac_file" : 'X\(//\)[^/]' \| \
-        X"$ac_file" : 'X\(//\)$' \| \
--       X"$ac_file" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$ac_file" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--  { if $as_mkdir_p; then
--    mkdir -p "$ac_dir"
--  else
--    as_dir="$ac_dir"
--    as_dirs=
--    while test ! -d "$as_dir"; do
--      as_dirs="$as_dir $as_dirs"
--      as_dir=`(dirname "$as_dir") 2>/dev/null ||
--$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$as_dir" : 'X\(//\)[^/]' \| \
--       X"$as_dir" : 'X\(//\)$' \| \
--       X"$as_dir" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$as_dir" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--    done
--    test ! -n "$as_dirs" || mkdir $as_dirs
--  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
--echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
--   { (exit 1); exit 1; }; }; }
--
-+       X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$ac_file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-+  as_dir="$ac_dir"; as_fn_mkdir_p
-   ac_builddir=.
--if test "$ac_dir" != .; then
--  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
--  # A "../" for each directory in $ac_dir_suffix.
--  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
--else
--  ac_dir_suffix= ac_top_builddir=
--fi
-+case "$ac_dir" in
-+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+*)
-+  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
-+  # A ".." for each directory in $ac_dir_suffix.
-+  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
-+  case $ac_top_builddir_sub in
-+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
-+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
-+  esac ;;
-+esac
-+ac_abs_top_builddir=$ac_pwd
-+ac_abs_builddir=$ac_pwd$ac_dir_suffix
-+# for backward compatibility:
-+ac_top_builddir=$ac_top_build_prefix
- case $srcdir in
--  .)  # No --srcdir option.  We are building in place.
-+  .)  # We are building in place.
-     ac_srcdir=.
--    if test -z "$ac_top_builddir"; then
--       ac_top_srcdir=.
--    else
--       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
--    fi ;;
--  [\\/]* | ?:[\\/]* )  # Absolute path.
-+    ac_top_srcdir=$ac_top_builddir_sub
-+    ac_abs_top_srcdir=$ac_pwd ;;
-+  [\\/]* | ?:[\\/]* )  # Absolute name.
-     ac_srcdir=$srcdir$ac_dir_suffix;
--    ac_top_srcdir=$srcdir ;;
--  *) # Relative path.
--    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
--    ac_top_srcdir=$ac_top_builddir$srcdir ;;
-+    ac_top_srcdir=$srcdir
-+    ac_abs_top_srcdir=$srcdir ;;
-+  *) # Relative name.
-+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
-+    ac_top_srcdir=$ac_top_build_prefix$srcdir
-+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
- esac
-+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
--# Do not use `cd foo && pwd` to compute absolute paths, because
--# the directories may not exist.
--case `pwd` in
--.) ac_abs_builddir="$ac_dir";;
--*)
--  case "$ac_dir" in
--  .) ac_abs_builddir=`pwd`;;
--  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
--  *) ac_abs_builddir=`pwd`/"$ac_dir";;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_top_builddir=${ac_top_builddir}.;;
--*)
--  case ${ac_top_builddir}. in
--  .) ac_abs_top_builddir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
--  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_srcdir=$ac_srcdir;;
--*)
--  case $ac_srcdir in
--  .) ac_abs_srcdir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
--  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_top_srcdir=$ac_top_srcdir;;
--*)
--  case $ac_top_srcdir in
--  .) ac_abs_top_srcdir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
--  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
--  esac;;
--esac
-+  case $ac_mode in
-+  :F)
-+  #
-+  # CONFIG_FILE
-+  #
-   case $INSTALL in
-   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
--  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
-+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
-   esac
-+  ac_MKDIR_P=$MKDIR_P
-+  case $MKDIR_P in
-+  [\\/$]* | ?:[\\/]* ) ;;
-+  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
-+  esac
-+_ACEOF
--  if test x"$ac_file" != x-; then
--    { echo "$as_me:$LINENO: creating $ac_file" >&5
--echo "$as_me: creating $ac_file" >&6;}
--    rm -f "$ac_file"
--  fi
--  # Let's still pretend it is `configure' which instantiates (i.e., don't
--  # use $as_me), people would be surprised to read:
--  #    /* config.h.  Generated by config.status.  */
--  if test x"$ac_file" = x-; then
--    configure_input=
--  else
--    configure_input="$ac_file.  "
--  fi
--  configure_input=$configure_input"Generated from `echo $ac_file_in |
--                                   sed 's,.*/,,'` by configure."
--
--  # First look for the input files in the build tree, otherwise in the
--  # src tree.
--  ac_file_inputs=`IFS=:
--    for f in $ac_file_in; do
--      case $f in
--      -) echo $tmp/stdin ;;
--      [\\/$]*)
--       # Absolute (can't be DOS-style, as IFS=:)
--       test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
--echo "$as_me: error: cannot find input file: $f" >&2;}
--   { (exit 1); exit 1; }; }
--       echo "$f";;
--      *) # Relative
--       if test -f "$f"; then
--         # Build tree
--         echo "$f"
--       elif test -f "$srcdir/$f"; then
--         # Source tree
--         echo "$srcdir/$f"
--       else
--         # /dev/null tree
--         { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
--echo "$as_me: error: cannot find input file: $f" >&2;}
--   { (exit 1); exit 1; }; }
--       fi;;
--      esac
--    done` || { (exit 1); exit 1; }
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-+# If the template does not know about datarootdir, expand it.
-+# FIXME: This hack should be removed a few years after 2.60.
-+ac_datarootdir_hack=; ac_datarootdir_seen=
-+ac_sed_dataroot='
-+/datarootdir/ {
-+  p
-+  q
-+}
-+/@datadir@/p
-+/@docdir@/p
-+/@infodir@/p
-+/@localedir@/p
-+/@mandir@/p'
-+case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-+*datarootdir*) ac_datarootdir_seen=yes;;
-+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-+$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
-+_ACEOF
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+  ac_datarootdir_hack='
-+  s&@datadir@&$datadir&g
-+  s&@docdir@&$docdir&g
-+  s&@infodir@&$infodir&g
-+  s&@localedir@&$localedir&g
-+  s&@mandir@&$mandir&g
-+  s&\\\${datarootdir}&$datarootdir&g' ;;
-+esac
- _ACEOF
--cat >>$CONFIG_STATUS <<_ACEOF
--  sed "$ac_vpsub
-+
-+# Neutralize VPATH when `$srcdir' = `.'.
-+# Shell code in configure.ac might set extrasub.
-+# FIXME: do we really want to maintain this feature?
-+cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
-+ac_sed_extra="$ac_vpsub
- $extrasub
- _ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
-+cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
- :t
- /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
--s,@configure_input@,$configure_input,;t t
--s,@srcdir@,$ac_srcdir,;t t
--s,@abs_srcdir@,$ac_abs_srcdir,;t t
--s,@top_srcdir@,$ac_top_srcdir,;t t
--s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
--s,@builddir@,$ac_builddir,;t t
--s,@abs_builddir@,$ac_abs_builddir,;t t
--s,@top_builddir@,$ac_top_builddir,;t t
--s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
--s,@INSTALL@,$ac_INSTALL,;t t
--" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
--  rm -f $tmp/stdin
--  if test x"$ac_file" != x-; then
--    mv $tmp/out $ac_file
--  else
--    cat $tmp/out
--    rm -f $tmp/out
--  fi
--
--done
--_ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
--
--#
--# CONFIG_HEADER section.
--#
-+s|@configure_input@|$ac_sed_conf_input|;t t
-+s&@top_builddir@&$ac_top_builddir_sub&;t t
-+s&@top_build_prefix@&$ac_top_build_prefix&;t t
-+s&@srcdir@&$ac_srcdir&;t t
-+s&@abs_srcdir@&$ac_abs_srcdir&;t t
-+s&@top_srcdir@&$ac_top_srcdir&;t t
-+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-+s&@builddir@&$ac_builddir&;t t
-+s&@abs_builddir@&$ac_abs_builddir&;t t
-+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-+s&@INSTALL@&$ac_INSTALL&;t t
-+s&@MKDIR_P@&$ac_MKDIR_P&;t t
-+$ac_datarootdir_hack
-+"
-+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
-+  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-+
-+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
-+  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
-+  { ac_out=`sed -n '/^[        ]*datarootdir[  ]*:*=/p' \
-+      "$ac_tmp/out"`; test -z "$ac_out"; } &&
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined" >&5
-+$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-+which seems to be undefined.  Please make sure it is defined" >&2;}
--# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
--# NAME is the cpp macro being defined and VALUE is the value it is being given.
--#
--# ac_d sets the value in "#define NAME VALUE" lines.
--ac_dA='s,^\([  ]*\)#\([        ]*define[       ][      ]*\)'
--ac_dB='[       ].*$,\1#\2'
--ac_dC=' '
--ac_dD=',;t'
--# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
--ac_uA='s,^\([  ]*\)#\([        ]*\)undef\([    ][      ]*\)'
--ac_uB='$,\1#\2define\3'
--ac_uC=' '
--ac_uD=',;t'
--
--for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
--  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
-+  rm -f "$ac_tmp/stdin"
-   case $ac_file in
--  - | *:- | *:-:* ) # input from stdin
--      cat >$tmp/stdin
--      ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
--      ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
--  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
--      ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
--  * )   ac_file_in=$ac_file.in ;;
--  esac
--
--  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
--echo "$as_me: creating $ac_file" >&6;}
--
--  # First look for the input files in the build tree, otherwise in the
--  # src tree.
--  ac_file_inputs=`IFS=:
--    for f in $ac_file_in; do
--      case $f in
--      -) echo $tmp/stdin ;;
--      [\\/$]*)
--       # Absolute (can't be DOS-style, as IFS=:)
--       test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
--echo "$as_me: error: cannot find input file: $f" >&2;}
--   { (exit 1); exit 1; }; }
--       # Do quote $f, to prevent DOS paths from being IFS'd.
--       echo "$f";;
--      *) # Relative
--       if test -f "$f"; then
--         # Build tree
--         echo "$f"
--       elif test -f "$srcdir/$f"; then
--         # Source tree
--         echo "$srcdir/$f"
--       else
--         # /dev/null tree
--         { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
--echo "$as_me: error: cannot find input file: $f" >&2;}
--   { (exit 1); exit 1; }; }
--       fi;;
--      esac
--    done` || { (exit 1); exit 1; }
--  # Remove the trailing spaces.
--  sed 's/[     ]*$//' $ac_file_inputs >$tmp/in
--
--_ACEOF
--
--# Transform confdefs.h into two sed scripts, `conftest.defines' and
--# `conftest.undefs', that substitutes the proper values into
--# config.h.in to produce config.h.  The first handles `#define'
--# templates, and the second `#undef' templates.
--# And first: Protect against being on the right side of a sed subst in
--# config.status.  Protect against being in an unquoted here document
--# in config.status.
--rm -f conftest.defines conftest.undefs
--# Using a here document instead of a string reduces the quoting nightmare.
--# Putting comments in sed scripts is not portable.
--#
--# `end' is used to avoid that the second main sed command (meant for
--# 0-ary CPP macros) applies to n-ary macro definitions.
--# See the Autoconf documentation for `clear'.
--cat >confdef2sed.sed <<\_ACEOF
--s/[\\&,]/\\&/g
--s,[\\$`],\\&,g
--t clear
--: clear
--s,^[   ]*#[    ]*define[       ][      ]*\([^  (][^    (]*\)\(([^)]*)\)[       ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
--t end
--s,^[   ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
--: end
--_ACEOF
--# If some macros were called several times there might be several times
--# the same #defines, which is useless.  Nevertheless, we may not want to
--# sort them, since we want the *last* AC-DEFINE to be honored.
--uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
--sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
--rm -f confdef2sed.sed
--
--# This sed command replaces #undef with comments.  This is necessary, for
--# example, in the case of _POSIX_SOURCE, which is predefined and required
--# on some systems where configure will not decide to define it.
--cat >>conftest.undefs <<\_ACEOF
--s,^[   ]*#[    ]*undef[        ][      ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
--_ACEOF
--
--# Break up conftest.defines because some shells have a limit on the size
--# of here documents, and old seds have small limits too (100 cmds).
--echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
--echo '  if grep "^[    ]*#[    ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
--echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
--echo '  :' >>$CONFIG_STATUS
--rm -f conftest.tail
--while grep . conftest.defines >/dev/null
--do
--  # Write a limited-size here document to $tmp/defines.sed.
--  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
--  # Speed up: don't consider the non `#define' lines.
--  echo '/^[    ]*#[    ]*define/!b' >>$CONFIG_STATUS
--  # Work around the forget-to-reset-the-flag bug.
--  echo 't clr' >>$CONFIG_STATUS
--  echo ': clr' >>$CONFIG_STATUS
--  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
--  echo 'CEOF
--  sed -f $tmp/defines.sed $tmp/in >$tmp/out
--  rm -f $tmp/in
--  mv $tmp/out $tmp/in
--' >>$CONFIG_STATUS
--  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
--  rm -f conftest.defines
--  mv conftest.tail conftest.defines
--done
--rm -f conftest.defines
--echo '  fi # grep' >>$CONFIG_STATUS
--echo >>$CONFIG_STATUS
--
--# Break up conftest.undefs because some shells have a limit on the size
--# of here documents, and old seds have small limits too (100 cmds).
--echo '  # Handle all the #undef templates' >>$CONFIG_STATUS
--rm -f conftest.tail
--while grep . conftest.undefs >/dev/null
--do
--  # Write a limited-size here document to $tmp/undefs.sed.
--  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
--  # Speed up: don't consider the non `#undef'
--  echo '/^[    ]*#[    ]*undef/!b' >>$CONFIG_STATUS
--  # Work around the forget-to-reset-the-flag bug.
--  echo 't clr' >>$CONFIG_STATUS
--  echo ': clr' >>$CONFIG_STATUS
--  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
--  echo 'CEOF
--  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
--  rm -f $tmp/in
--  mv $tmp/out $tmp/in
--' >>$CONFIG_STATUS
--  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
--  rm -f conftest.undefs
--  mv conftest.tail conftest.undefs
--done
--rm -f conftest.undefs
--
--cat >>$CONFIG_STATUS <<\_ACEOF
--  # Let's still pretend it is `configure' which instantiates (i.e., don't
--  # use $as_me), people would be surprised to read:
--  #    /* config.h.  Generated by config.status.  */
--  if test x"$ac_file" = x-; then
--    echo "/* Generated by configure.  */" >$tmp/config.h
--  else
--    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
--  fi
--  cat $tmp/in >>$tmp/config.h
--  rm -f $tmp/in
-+  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
-+  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
-+  esac \
-+  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-+ ;;
-+  :H)
-+  #
-+  # CONFIG_HEADER
-+  #
-   if test x"$ac_file" != x-; then
--    if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
--      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
--echo "$as_me: $ac_file is unchanged" >&6;}
-+    {
-+      $as_echo "/* $configure_input  */" \
-+      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
-+    } >"$ac_tmp/config.h" \
-+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-+    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
-+      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-+$as_echo "$as_me: $ac_file is unchanged" >&6;}
-     else
--      ac_dir=`(dirname "$ac_file") 2>/dev/null ||
--$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$ac_file" : 'X\(//\)[^/]' \| \
--       X"$ac_file" : 'X\(//\)$' \| \
--       X"$ac_file" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$ac_file" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--      { if $as_mkdir_p; then
--    mkdir -p "$ac_dir"
--  else
--    as_dir="$ac_dir"
--    as_dirs=
--    while test ! -d "$as_dir"; do
--      as_dirs="$as_dir $as_dirs"
--      as_dir=`(dirname "$as_dir") 2>/dev/null ||
--$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$as_dir" : 'X\(//\)[^/]' \| \
--       X"$as_dir" : 'X\(//\)$' \| \
--       X"$as_dir" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$as_dir" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--    done
--    test ! -n "$as_dirs" || mkdir $as_dirs
--  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
--echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
--   { (exit 1); exit 1; }; }; }
--
--      rm -f $ac_file
--      mv $tmp/config.h $ac_file
-+      rm -f "$ac_file"
-+      mv "$ac_tmp/config.h" "$ac_file" \
-+      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-     fi
-   else
--    cat $tmp/config.h
--    rm -f $tmp/config.h
-+    $as_echo "/* $configure_input  */" \
-+      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
-+      || as_fn_error $? "could not create -" "$LINENO" 5
-   fi
--# Compute $ac_file's index in $config_headers.
-+# Compute "$ac_file"'s index in $config_headers.
-+_am_arg="$ac_file"
- _am_stamp_count=1
- for _am_header in $config_headers :; do
-   case $_am_header in
--    $ac_file | $ac_file:* )
-+    $_am_arg | $_am_arg:* )
-       break ;;
-     * )
-       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
-   esac
- done
--echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
--$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X$ac_file : 'X\(//\)[^/]' \| \
--       X$ac_file : 'X\(//\)$' \| \
--       X$ac_file : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X$ac_file |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`/stamp-h$_am_stamp_count
--done
--_ACEOF
--cat >>$CONFIG_STATUS <<\_ACEOF
--
--#
--# CONFIG_COMMANDS section.
--#
--for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
--  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
--  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
--  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
--$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$ac_dest" : 'X\(//\)[^/]' \| \
--       X"$ac_dest" : 'X\(//\)$' \| \
--       X"$ac_dest" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$ac_dest" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--  { if $as_mkdir_p; then
--    mkdir -p "$ac_dir"
--  else
--    as_dir="$ac_dir"
--    as_dirs=
--    while test ! -d "$as_dir"; do
--      as_dirs="$as_dir $as_dirs"
--      as_dir=`(dirname "$as_dir") 2>/dev/null ||
--$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$as_dir" : 'X\(//\)[^/]' \| \
--       X"$as_dir" : 'X\(//\)$' \| \
--       X"$as_dir" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$as_dir" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--    done
--    test ! -n "$as_dirs" || mkdir $as_dirs
--  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
--echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
--   { (exit 1); exit 1; }; }; }
--
--  ac_builddir=.
--
--if test "$ac_dir" != .; then
--  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
--  # A "../" for each directory in $ac_dir_suffix.
--  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
--else
--  ac_dir_suffix= ac_top_builddir=
--fi
--
--case $srcdir in
--  .)  # No --srcdir option.  We are building in place.
--    ac_srcdir=.
--    if test -z "$ac_top_builddir"; then
--       ac_top_srcdir=.
--    else
--       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
--    fi ;;
--  [\\/]* | ?:[\\/]* )  # Absolute path.
--    ac_srcdir=$srcdir$ac_dir_suffix;
--    ac_top_srcdir=$srcdir ;;
--  *) # Relative path.
--    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
--    ac_top_srcdir=$ac_top_builddir$srcdir ;;
--esac
-+echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
-+$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+       X"$_am_arg" : 'X\(//\)[^/]' \| \
-+       X"$_am_arg" : 'X\(//\)$' \| \
-+       X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$_am_arg" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`/stamp-h$_am_stamp_count
-+ ;;
--# Do not use `cd foo && pwd` to compute absolute paths, because
--# the directories may not exist.
--case `pwd` in
--.) ac_abs_builddir="$ac_dir";;
--*)
--  case "$ac_dir" in
--  .) ac_abs_builddir=`pwd`;;
--  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
--  *) ac_abs_builddir=`pwd`/"$ac_dir";;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_top_builddir=${ac_top_builddir}.;;
--*)
--  case ${ac_top_builddir}. in
--  .) ac_abs_top_builddir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
--  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_srcdir=$ac_srcdir;;
--*)
--  case $ac_srcdir in
--  .) ac_abs_srcdir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
--  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
--  esac;;
--esac
--case $ac_abs_builddir in
--.) ac_abs_top_srcdir=$ac_top_srcdir;;
--*)
--  case $ac_top_srcdir in
--  .) ac_abs_top_srcdir=$ac_abs_builddir;;
--  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
--  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
--  esac;;
--esac
-+  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-+$as_echo "$as_me: executing $ac_file commands" >&6;}
-+ ;;
-+  esac
--  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
--echo "$as_me: executing $ac_dest commands" >&6;}
--  case $ac_dest in
--    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
--  # Strip MF so we end up with the name of the file.
--  mf=`echo "$mf" | sed -e 's/:.*$//'`
--  # Check whether this is an Automake generated Makefile or not.
--  # We used to match only the files named `Makefile.in', but
--  # some people rename them; so instead we look at the file content.
--  # Grep'ing the first line is not enough: some people post-process
--  # each Makefile.in and add a new line on top of each file to say so.
--  # So let's grep whole file.
--  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
--    dirpart=`(dirname "$mf") 2>/dev/null ||
-+  case $ac_file$ac_mode in
-+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
-+  # Autoconf 2.62 quotes --file arguments for eval, but not when files
-+  # are listed without --file.  Let's play safe and only enable the eval
-+  # if we detect the quoting.
-+  case $CONFIG_FILES in
-+  *\'*) eval set x "$CONFIG_FILES" ;;
-+  *)   set x $CONFIG_FILES ;;
-+  esac
-+  shift
-+  for mf
-+  do
-+    # Strip MF so we end up with the name of the file.
-+    mf=`echo "$mf" | sed -e 's/:.*$//'`
-+    # Check whether this is an Automake generated Makefile or not.
-+    # We used to match only the files named `Makefile.in', but
-+    # some people rename them; so instead we look at the file content.
-+    # Grep'ing the first line is not enough: some people post-process
-+    # each Makefile.in and add a new line on top of each file to say so.
-+    # Grep'ing the whole file is not good either: AIX grep has a line
-+    # limit of 2048, but all sed's we know have understand at least 4000.
-+    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
-+      dirpart=`$as_dirname -- "$mf" ||
- $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-        X"$mf" : 'X\(//\)[^/]' \| \
-        X"$mf" : 'X\(//\)$' \| \
--       X"$mf" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$mf" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--  else
--    continue
--  fi
--  # Extract the definition of DEPDIR, am__include, and am__quote
--  # from the Makefile without running `make'.
--  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
--  test -z "$DEPDIR" && continue
--  am__include=`sed -n 's/^am__include = //p' < "$mf"`
--  test -z "am__include" && continue
--  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
--  # When using ansi2knr, U may be empty or an underscore; expand it
--  U=`sed -n 's/^U = //p' < "$mf"`
--  # Find all dependency output files, they are included files with
--  # $(DEPDIR) in their names.  We invoke sed twice because it is the
--  # simplest approach to changing $(DEPDIR) to its actual value in the
--  # expansion.
--  for file in `sed -n "
--    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
--       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
--    # Make sure the directory exists.
--    test -f "$dirpart/$file" && continue
--    fdir=`(dirname "$file") 2>/dev/null ||
-+       X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$mf" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-+    else
-+      continue
-+    fi
-+    # Extract the definition of DEPDIR, am__include, and am__quote
-+    # from the Makefile without running `make'.
-+    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
-+    test -z "$DEPDIR" && continue
-+    am__include=`sed -n 's/^am__include = //p' < "$mf"`
-+    test -z "am__include" && continue
-+    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
-+    # When using ansi2knr, U may be empty or an underscore; expand it
-+    U=`sed -n 's/^U = //p' < "$mf"`
-+    # Find all dependency output files, they are included files with
-+    # $(DEPDIR) in their names.  We invoke sed twice because it is the
-+    # simplest approach to changing $(DEPDIR) to its actual value in the
-+    # expansion.
-+    for file in `sed -n "
-+      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-+       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-+      # Make sure the directory exists.
-+      test -f "$dirpart/$file" && continue
-+      fdir=`$as_dirname -- "$file" ||
- $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-        X"$file" : 'X\(//\)[^/]' \| \
-        X"$file" : 'X\(//\)$' \| \
--       X"$file" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$file" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
--    { if $as_mkdir_p; then
--    mkdir -p $dirpart/$fdir
--  else
--    as_dir=$dirpart/$fdir
--    as_dirs=
--    while test ! -d "$as_dir"; do
--      as_dirs="$as_dir $as_dirs"
--      as_dir=`(dirname "$as_dir") 2>/dev/null ||
--$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
--       X"$as_dir" : 'X\(//\)[^/]' \| \
--       X"$as_dir" : 'X\(//\)$' \| \
--       X"$as_dir" : 'X\(/\)' \| \
--       .     : '\(.\)' 2>/dev/null ||
--echo X"$as_dir" |
--    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
--        /^X\(\/\/\)[^/].*/{ s//\1/; q; }
--        /^X\(\/\/\)$/{ s//\1/; q; }
--        /^X\(\/\).*/{ s//\1/; q; }
--        s/.*/./; q'`
-+       X"$file" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$file" |
-+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)[^/].*/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\/\)$/{
-+          s//\1/
-+          q
-+        }
-+        /^X\(\/\).*/{
-+          s//\1/
-+          q
-+        }
-+        s/.*/./; q'`
-+      as_dir=$dirpart/$fdir; as_fn_mkdir_p
-+      # echo "creating $dirpart/$file"
-+      echo '# dummy' > "$dirpart/$file"
-     done
--    test ! -n "$as_dirs" || mkdir $as_dirs
--  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
--echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
--   { (exit 1); exit 1; }; }; }
--
--    # echo "creating $dirpart/$file"
--    echo '# dummy' > "$dirpart/$file"
-   done
--done
-+}
-  ;;
-+
-   esac
--done
--_ACEOF
-+done # for ac_tag
--cat >>$CONFIG_STATUS <<\_ACEOF
--{ (exit 0); exit 0; }
-+as_fn_exit 0
- _ACEOF
--chmod +x $CONFIG_STATUS
- ac_clean_files=$ac_clean_files_save
-+test $ac_write_fail = 0 ||
-+  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
-+
- # configure is writing to config.log, and then calls config.status.
- # config.status does its own redirection, appending to config.log.
-@@ -7021,7 +7078,11 @@ if test "$no_create" != yes; then
-   exec 5>>config.log
-   # Use ||, not &&, to avoid exiting from the if with $? = 1, which
-   # would make configure fail if this is the last instruction.
--  $ac_cs_success || { (exit 1); exit 1; }
-+  $ac_cs_success || as_fn_exit 1
-+fi
-+if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
-+  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
-+$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
- fi
---- a/drv_config.h.in
-+++ b/drv_config.h.in
-@@ -83,6 +83,9 @@
- /* Define to the one symbol short name of this package. */
- #undef PACKAGE_TARNAME
-+/* Define to the home page for this package. */
-+#undef PACKAGE_URL
-+
- /* Define to the version of this package. */
- #undef PACKAGE_VERSION
-@@ -101,6 +104,9 @@
- /* enable Danube specific code */
- #undef SYSTEM_DANUBE
-+/* enable FALCON specific code */
-+#undef SYSTEM_FALCON
-+
- /* enable VR9 specific code */
- #undef SYSTEM_VR9
 --- a/src/drv_api.h
 +++ b/src/drv_api.h
 @@ -183,7 +183,7 @@
  /* ============================= */
  /* Local Macros & Definitions    */
  /* ============================= */
-@@ -815,7 +806,7 @@ static IFX_int32_t VMMC_TAPI_LL_FW_Init(
+@@ -820,7 +811,7 @@ static IFX_int32_t VMMC_TAPI_LL_FW_Init(
                                             MIN_FW_HOTFIXSTEP};
     IFX_uint8_t          tmp1, tmp2;
     IFX_TAPI_RESOURCE    nResource;
     IFX_uint8_t          nChannels, nFXOChannels;
  #endif /*SYSTEM_AR9 || SYSTEM_VR9*/
     IFX_int32_t          ret = VMMC_statusOk;
-@@ -869,7 +860,7 @@ static IFX_int32_t VMMC_TAPI_LL_FW_Init(
+@@ -874,7 +865,7 @@ static IFX_int32_t VMMC_TAPI_LL_FW_Init(
     pDev->bSmartSlic = IFX_FALSE;
     pDev->bSlicSupportsIdleMode = IFX_FALSE;