Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
980e9225
Commit
980e9225
authored
Apr 25, 2014
by
Austin English
Committed by
Alexandre Julliard
Apr 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Complain louder if libxslt was missing at compile time.
parent
0c0fe4ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
node.c
dlls/msxml3/node.c
+4
-1
No files found.
dlls/msxml3/node.c
View file @
980e9225
...
...
@@ -71,6 +71,8 @@ MAKE_FUNCPTR(xsltParseStylesheetDoc);
MAKE_FUNCPTR
(
xsltQuoteUserParams
);
MAKE_FUNCPTR
(
xsltSaveResultTo
);
# undef MAKE_FUNCPTR
#else
WINE_DECLARE_DEBUG_CHANNEL
(
winediag
);
#endif
static
const
IID
IID_xmlnode
=
{
0x4f2f4ba2
,
0xb822
,
0x11df
,{
0x8b
,
0x8a
,
0x68
,
0x50
,
0xdf
,
0xd7
,
0x20
,
0x85
}};
...
...
@@ -1308,7 +1310,8 @@ HRESULT node_transform_node_params(const xmlnode *This, IXMLDOMNode *stylesheet,
return
hr
;
#else
FIXME
(
"libxslt headers were not found at compile time
\n
"
);
ERR_
(
winediag
)(
"libxslt headers were not found at compile time. Expect problems.
\n
"
);
return
E_NOTIMPL
;
#endif
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment