summaryrefslogtreecommitdiffstats
path: root/libblkid
diff options
context:
space:
mode:
authorVojtech Bocek <vbocek@gmail.com>2013-02-24 01:40:19 +0100
committerDees_Troy <dees_troy@teamw.in>2013-02-27 22:59:21 +0100
commit7cc278bb99ad9c9ea540a3e096592d5586e4c986 (patch)
treee4d8665c0aa4703c1fddfa69bdd119efd7da3d83 /libblkid
parentfixes for fakeflash zips (diff)
downloadandroid_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar
android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.gz
android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.bz2
android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.lz
android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.xz
android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.zst
android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.zip
Diffstat (limited to 'libblkid')
-rw-r--r--libblkid/Android.mk4
-rw-r--r--libblkid/bitops.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/libblkid/Android.mk b/libblkid/Android.mk
index 18c49e7e5..d6c203f90 100644
--- a/libblkid/Android.mk
+++ b/libblkid/Android.mk
@@ -4,8 +4,8 @@ include $(CLEAR_VARS)
LOCAL_MODULE := libblkid
LOCAL_MODULE_TAGS := optional
-LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
-LOCAL_CFLAGS = -D_FILE_OFFSET_BITS=64
+#LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
+LOCAL_CFLAGS = -D_FILE_OFFSET_BITS=64 -DHAVE_LOFF_T
LOCAL_SRC_FILES = aix.c at.c befs.c bfs.c blkdev.c bsd.c btrfs.c cache.c canonicalize.c colors.c config.c cramfs.c crc32.c ddf_raid.c dev.c devname.c devno.c dm.c dos.c drbd.c drbdproxy_datalog.c encode.c env.c evaluate.c evms.c exec_shell.c exfat.c ext.c f2fs.c fileutils.c getsize.c gfs.c gpt.c hfs.c highpoint_raid.c hpfs.c ioctl.c ismounted.c iso9660.c isw_raid.c jfs.c jmicron_raid.c langinfo.c linux_raid.c linux_version.c llseek.c loopdev.c lsi_raid.c luks.c lvm1.c lvm2.c mac.c mangle.c match.c mbsalign.c md5.c md.c minix1.c minix2.c netware.c nilfs.c ntfs.c nvidia_raid.c ocfs.c pager.c partitions.c path.c probe.c procutils.c promise_raid.c randutils.c read.c reiserfs.c resolve.c romfs.c save.c setproctitle.c sgi.c silicon_raid.c solaris_x86.c squashfs.c sun.c superblocks.c swap.c sysfs1.c sysfs2.c sysv.c tag.c topology.c ubifs.c udf.c ufs.c ultrix.c unixware.c verify.c version.c vfat.c via_raid.c vmfs.c vxfs.c wholedisk.c xfs.c zfs.c adaptec_raid.c
LOCAL_C_INCLUDES += $(LOCAL_PATH) \
LOCAL_SHARED_LIBRARIES += libc
diff --git a/libblkid/bitops.h b/libblkid/bitops.h
index 288fe715c..7439ece91 100644
--- a/libblkid/bitops.h
+++ b/libblkid/bitops.h
@@ -56,15 +56,15 @@
//#ifndef htobe16
//# if !defined(WORDS_BIGENDIAN)
-# define htobe16(x) bswap_16 (x)
+//# define htobe16(x) bswap_16 (x)
# define htole16(x) (x)
# define be16toh(x) bswap_16 (x)
# define le16toh(x) (x)
-# define htobe32(x) bswap_32 (x)
+//# define htobe32(x) bswap_32 (x)
# define htole32(x) (x)
# define be32toh(x) bswap_32 (x)
# define le32toh(x) (x)
-# define htobe64(x) bswap_64 (x)
+//# define htobe64(x) bswap_64 (x)
# define htole64(x) (x)
# define be64toh(x) bswap_64 (x)
# define le64toh(x) (x)