Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a2bbacb0
Commit
a2bbacb0
authored
Nov 23, 2004
by
Kevin Koltzau
Committed by
Alexandre Julliard
Nov 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Look for lcms.h in lcms/lcms.h.
parent
b98c2e38
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
0 deletions
+14
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
mscms_priv.h
dlls/mscms/mscms_priv.h
+8
-0
config.h.in
include/config.h.in
+3
-0
No files found.
configure
View file @
a2bbacb0
...
...
@@ -7272,6 +7272,7 @@ done
for
ac_header
in
\
arpa/inet.h
\
arpa/nameser.h
\
...
...
@@ -7286,6 +7287,7 @@ for ac_header in \
io.h
\
jack/jack.h
\
jpeglib.h
\
lcms/lcms.h
\
lcms.h
\
libio.h
\
libutil.h
\
...
...
configure.ac
View file @
a2bbacb0
...
...
@@ -177,6 +177,7 @@ AC_CHECK_HEADERS(\
io.h \
jack/jack.h \
jpeglib.h \
lcms/lcms.h \
lcms.h \
libio.h \
libutil.h \
...
...
dlls/mscms/mscms_priv.h
View file @
a2bbacb0
...
...
@@ -18,6 +18,10 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef HAVE_LCMS_LCMS_H
#define HAVE_LCMS_H 1
#endif
#ifdef HAVE_LCMS_H
/* These basic Windows types are defined in lcms.h when compiling on
...
...
@@ -46,7 +50,11 @@
#undef LOWORD
#undef MAX_PATH
#ifdef HAVE_LCMS_LCMS_H
#include <lcms/lcms.h>
#else
#include <lcms.h>
#endif
/* Funny thing is lcms.h defines DWORD as an 'unsigned int' whereas Wine
* defines it as an 'unsigned long'. To avoid compiler warnings we use a
...
...
include/config.h.in
View file @
a2bbacb0
...
...
@@ -254,6 +254,9 @@
/* Define to 1 if you have the <lcms.h> header file. */
#undef HAVE_LCMS_H
/* Define to 1 if you have the <lcms/lcms.h> header file. */
#undef HAVE_LCMS_LCMS_H
/* Define if you have libaudioIO */
#undef HAVE_LIBAUDIOIO
...
...
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