bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3.

e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only.
other: remove confuse bb_mkdep.
This commit is contained in:
"Vladimir N. Oleynik"
2005-10-10 11:35:17 +00:00
parent ff9f2f6fba
commit 083d3f49c2
19 changed files with 443 additions and 448 deletions

View File

@@ -18,8 +18,8 @@
#include <sys/time.h>
#endif
#include "ext2fs/ext2_fs.h"
#include "ext2fs/ext2fsP.h"
#include "ext2_fs.h"
#include "ext2fsP.h"
struct process_block_struct {
ext2_ino_t ino;

View File

@@ -16,7 +16,7 @@
#ifndef _LINUX_EXT2_FS_H
#define _LINUX_EXT2_FS_H
#include <ext2fs/ext2_types.h> /* Changed from linux/types.h */
#include "ext2_types.h" /* Changed from linux/types.h */
/*
* The second extended filesystem constants/structures

View File

@@ -61,13 +61,8 @@ extern "C" {
#include <stdio.h>
#include <stdlib.h>
#if EXT2_FLAT_INCLUDES
#include "e2_types.h"
#include "ext2_types.h"
#include "ext2_fs.h"
#else
#include <ext2fs/ext2_types.h>
#include <ext2fs/ext2_fs.h>
#endif /* EXT2_FLAT_INCLUDES */
typedef __u32 ext2_ino_t;
typedef __u32 blk_t;
@@ -76,13 +71,8 @@ typedef __u32 ext2_off_t;
typedef __s64 e2_blkcnt_t;
typedef __u32 ext2_dirhash_t;
#if EXT2_FLAT_INCLUDES
#include "ext2_io.h"
#include "ext2_err.h"
#else
#include <ext2fs/ext2_io.h>
#include <ext2fs/ext2_err.h>
#endif
/*
* Portability help for Microsoft Visual C++
@@ -243,11 +233,7 @@ struct struct_ext2_filsys {
io_channel image_io;
};
#if EXT2_FLAT_INCLUDES
#include "e2_bitops.h"
#else
#include <ext2fs/bitops.h>
#endif
#include "bitops.h"
/*
* Return flags for the block iterator functions

View File

@@ -9,8 +9,8 @@
* %End-Header%
*/
#include "ext2fs/ext2fs.h"
#include "ext2fs/bitops.h"
#include "ext2fs.h"
#include "bitops.h"
/*
* Allocate memory

View File

@@ -33,7 +33,7 @@
#endif
#include "ext2_fs.h"
#include "e2p/e2p.h"
#include "../e2p/e2p.h"
#include "ext2fs.h"
#include "jfs_user.h"

View File

@@ -18,7 +18,7 @@
#include "ext2_fs.h"
#include "ext2fs.h"
#include <ext2fs/ext2_ext_attr.h>
#include "ext2_ext_attr.h"
#ifdef EXT2FS_ENABLE_SWAPFS
void ext2fs_swap_super(struct ext2_super_block * sb)