]> mj.ucw.cz Git - libucw.git/blob - ucw/filter-autoconf.sed
Configure: Added a mechanism for registering post-config hooks.
[libucw.git] / ucw / filter-autoconf.sed
1 # A sed script to weed out private symbols from <ucw/autoconf.h>
2
3 /^\//n
4
5 # Excluded symbols (danger of collision)
6 /^#define CONFIG_DEBUG$/d
7
8 # Included symbols
9 /^#define CONFIG_/n
10 /^#define CPU_/n
11
12 d