diff options
author | Brian Behlendorf <[email protected]> | 2009-03-17 14:55:59 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-03-17 14:55:59 -0700 |
commit | 0cbaeb117ae0e77d05c7709a4f5dbfad9daa799f (patch) | |
tree | 81a09cc96cc7ad76168081200834ac03614fae82 /lib | |
parent | e11d6c5f50ff1cb9a75f5c6a6895846f73564422 (diff) |
Allow spl_config.h to be included by dependant packages
We need dependent packages to be able to include spl_config.h so they
can leverage the configure checks the SPL has done. This is important
because several of the spl headers need the results of these checks to
work properly. Unfortunately, the autoheader build product is always
private to a particular build and defined certain common things.
(PACKAGE, VERSION, etc). This prevents other packages which also use
autoheader from being include because the definitions conflict. To
avoid this problem the SPL build system leverage AH_BOTTOM to include
a spl_unconfig.h at the botton of the autoheader build product. This
custom include undefs all known shared symbols to prevent the confict.
This does however mean that those definition are also not availble
to the SPL package either. The SPL package therefore uses the
equivilant SPL_META_* definitions.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/list.c b/lib/list.c index ee6b33a83..08b1f631f 100644 --- a/lib/list.c +++ b/lib/list.c @@ -26,7 +26,7 @@ #ifdef HAVE_CONFIG_H -# include "spl_config.h" +# include <spl_config.h> #endif /* HAVE_CONFIG_H */ #ifdef WITH_PTHREADS |