diff options
author | lloyd <[email protected]> | 2009-07-15 15:31:08 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-15 15:31:08 +0000 |
commit | 1172c616fa849af893c1935b8b1dee085f8aaac8 (patch) | |
tree | 48a5308fb8d40fbea9216f7007678543d7a59a4e /src/alloc | |
parent | 6fd01228840942ad122d1adabb3f7971a4e3b244 (diff) |
Add a script that reads the output of print_deps.py and rewrites
the info.txt files with the right module dependencies.
Apply it across the codebase.
Diffstat (limited to 'src/alloc')
-rw-r--r-- | src/alloc/alloc_mmap/info.txt | 4 | ||||
-rw-r--r-- | src/alloc/mem_pool/info.txt | 8 | ||||
-rw-r--r-- | src/alloc/system_alloc/info.txt | 9 |
3 files changed, 13 insertions, 8 deletions
diff --git a/src/alloc/alloc_mmap/info.txt b/src/alloc/alloc_mmap/info.txt index 8cc2b206e..d8c766d55 100644 --- a/src/alloc/alloc_mmap/info.txt +++ b/src/alloc/alloc_mmap/info.txt @@ -23,3 +23,7 @@ tru64 # Only without -ansi, otherwise can't get mkstemp #cygwin </os> + +<requires> +mem_pool +</requires> diff --git a/src/alloc/mem_pool/info.txt b/src/alloc/mem_pool/info.txt index ec987a0e0..0a762ccc4 100644 --- a/src/alloc/mem_pool/info.txt +++ b/src/alloc/mem_pool/info.txt @@ -2,11 +2,11 @@ realname "Memory Pool Allocator" load_on auto -<requires> -utils -</requires> - <add> mem_pool.cpp mem_pool.h </add> + +<requires> +mutex +</requires> diff --git a/src/alloc/system_alloc/info.txt b/src/alloc/system_alloc/info.txt index 0e8de9ff7..5fade38cf 100644 --- a/src/alloc/system_alloc/info.txt +++ b/src/alloc/system_alloc/info.txt @@ -2,11 +2,12 @@ realname "Default (Malloc) Allocators" load_on auto -<requires> -utils -</requires> - <add> defalloc.cpp defalloc.h </add> + +<requires> +libstate +mem_pool +</requires> |