Last change
on this file since 33944 was 7299, checked in by vboxsync, 17 years ago |
Added vboxconfig.h for linux builds.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Date Revision Author Id
|
File size:
878 bytes
|
Line | |
---|
1 | #define IN_LIBEXSLT
|
---|
2 | #include "libexslt/libexslt.h"
|
---|
3 |
|
---|
4 | #include <libxml/xmlversion.h>
|
---|
5 |
|
---|
6 | #if defined(VBOX)
|
---|
7 | #include "vboxconfig.h"
|
---|
8 | #else
|
---|
9 | #include "config.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | #include <libxslt/xsltconfig.h>
|
---|
13 | #include <libxslt/extensions.h>
|
---|
14 |
|
---|
15 | #include "exsltconfig.h"
|
---|
16 | #include "exslt.h"
|
---|
17 |
|
---|
18 | const char *exsltLibraryVersion = LIBEXSLT_VERSION_STRING
|
---|
19 | LIBEXSLT_VERSION_EXTRA;
|
---|
20 | const int exsltLibexsltVersion = LIBEXSLT_VERSION;
|
---|
21 | const int exsltLibxsltVersion = LIBXSLT_VERSION;
|
---|
22 | const int exsltLibxmlVersion = LIBXML_VERSION;
|
---|
23 |
|
---|
24 | /**
|
---|
25 | * exsltRegisterAll:
|
---|
26 | *
|
---|
27 | * Registers all available EXSLT extensions
|
---|
28 | */
|
---|
29 | void
|
---|
30 | exsltRegisterAll (void) {
|
---|
31 | exsltCommonRegister();
|
---|
32 | #ifdef EXSLT_CRYPTO_ENABLED
|
---|
33 | exsltCryptoRegister();
|
---|
34 | #endif
|
---|
35 | exsltMathRegister();
|
---|
36 | exsltSetsRegister();
|
---|
37 | exsltFuncRegister();
|
---|
38 | exsltStrRegister();
|
---|
39 | exsltDateRegister();
|
---|
40 | exsltSaxonRegister();
|
---|
41 | exsltDynRegister();
|
---|
42 | }
|
---|
43 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.