OSDN Git Service

exfat: Provide pre-generated config.h for android
authorMatt Mower <mowerm@gmail.com>
Tue, 10 Nov 2015 18:46:31 +0000 (12:46 -0600)
committerMatt Mower <mowerm@gmail.com>
Tue, 10 Nov 2015 18:51:00 +0000 (10:51 -0800)
We wont be running autoconfig during build, so generate this header for
ready-use in Android.

Change-Id: I603da096851307763c9117aa4dac11b01980ef8a

libexfat/android_config.h [new file with mode: 0644]
libexfat/exfat.h

diff --git a/libexfat/android_config.h b/libexfat/android_config.h
new file mode 100644 (file)
index 0000000..09c3346
--- /dev/null
@@ -0,0 +1,37 @@
+/* libexfat/config.h.  Generated from config.h.in by configure.  */
+/* libexfat/config.h.in.  Generated from configure.ac by autoheader.  */
+
+/* Name of package */
+#define PACKAGE "exfat"
+
+/* Define to the address where bug reports for this package should be sent. */
+#define PACKAGE_BUGREPORT "relan@users.noreply.github.com"
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "Free exFAT implementation"
+
+/* Define to the full name and version of this package. */
+#define PACKAGE_STRING "Free exFAT implementation 1.2.2"
+
+/* Define to the one symbol short name of this package. */
+#define PACKAGE_TARNAME "exfat"
+
+/* Define to the home page for this package. */
+#define PACKAGE_URL "https://github.com/relan/exfat"
+
+/* Define to the version of this package. */
+#define PACKAGE_VERSION "1.2.2"
+
+/* Version number of package */
+#define VERSION "1.2.2"
+
+/* Enable large inode numbers on Mac OS X 10.5.  */
+#ifndef _DARWIN_USE_64_BIT_INODE
+# define _DARWIN_USE_64_BIT_INODE 1
+#endif
+
+/* Number of bits in a file offset, on hosts where this is settable. */
+/* #undef _FILE_OFFSET_BITS */
+
+/* Define for large files, on AIX-style hosts. */
+/* #undef _LARGE_FILES */
index 97d3692..7883d9d 100644 (file)
@@ -24,7 +24,7 @@
 #ifndef EXFAT_H_INCLUDED
 #define EXFAT_H_INCLUDED
 
-#include "config.h"
+#include "android_config.h"
 #include "compiler.h"
 #include "exfatfs.h"
 #include <stdio.h>