a91258913f
This commit removes everything from the repository except the core SPL implementation for Linux. Those files which remain have been moved to non-conflicting locations to facilitate the merge. The README.md and associated files have been updated accordingly. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
16 lines
334 B
Awk
16 lines
334 B
Awk
# Remove default preprocessor define's from config.h
|
|
# PACKAGE
|
|
# PACKAGE_BUGREPORT
|
|
# PACKAGE_NAME
|
|
# PACKAGE_STRING
|
|
# PACKAGE_TARNAME
|
|
# PACKAGE_VERSION
|
|
# STDC_HEADERS
|
|
# VERSION
|
|
|
|
BEGIN { RS = "" ; FS = "\n" } \
|
|
!/.#define PACKAGE./ && \
|
|
!/.#define VERSION./ && \
|
|
!/.#define STDC_HEADERS./ \
|
|
{ print $0"\n" }
|