Problems in color-profile.cpp

Heya Jon,
Ran into a compile issue with color-profile.cpp:
In file included from color-profile.cpp:4: color-profile.h:11:18: lcms.h: No such file or directory In file included from color-profile.cpp:4: color-profile.h:33: error: 'cmsHPROFILE' is used as a type, but is not defined as a type. In file included from color-profile.cpp:5: color-profile-fns.h:11:18: lcms.h: No such file or directory In file included from color-profile.cpp:5: color-profile-fns.h:28: error: syntax error before `*' token color-profile.cpp: In function `void Inkscape::colorprofile_init(Inkscape::ColorProfile*)': color-profile.cpp:112: error: 'struct Inkscape::ColorProfile' has no member named 'profHandle' color-profile.cpp: In function `void Inkscape::colorprofile_release(SPObject*) ': color-profile.cpp:143: error: 'struct Inkscape::ColorProfile' has no member named 'profHandle' color-profile.cpp:144: error: 'struct Inkscape::ColorProfile' has no member named 'profHandle' color-profile.cpp:144: error: `cmsCloseProfile' undeclared (first use this function) color-profile.cpp:144: error: (Each undeclared identifier is reported only once for each function it appears in.) color-profile.cpp:145: error: 'struct Inkscape::ColorProfile' has no member named 'profHandle' color-profile.cpp: In function `void Inkscape::colorprofile_set(SPObject*, unsigned int, const gchar*)': color-profile.cpp:187: error: `LCMS_ERROR_SHOW' undeclared (first use this function) color-profile.cpp:187: error: `cmsErrorAction' undeclared (first use this function) color-profile.cpp:214: error: 'struct Inkscape::ColorProfile' has no member named 'profHandle' color-profile.cpp:214: error: `cmsOpenProfileFromFile' undeclared (first use this function) color-profile.cpp: At global scope: color-profile.cpp:349: error: syntax error before `::' token color-profile.cpp:353: error: `document' was not declared in this scope color-profile.cpp:354: error: `name' was not declared in this scope color-profile.cpp:355: error: syntax error before `if' make: *** [color-profile.o] Error 1
Perhaps there's a configure check needed? Or is something else needed?
Also, I notice color-profile.cpp is missing its copyright header.
Bryce

On May 28, 2006, at 8:43 PM, Bryce Harrington wrote:
make: *** [color-profile.o] Error 1
Perhaps there's a configure check needed? Or is something else needed?
Yeah, probably something like that.
All those errors cascade from not being able to find that one .h file. It's probably not being included for some autoconf-y reason.
Which platform, etc?

On Sun, May 28, 2006 at 08:50:57PM -0700, Jon A. Cruz wrote:
On May 28, 2006, at 8:43 PM, Bryce Harrington wrote:
make: *** [color-profile.o] Error 1
Perhaps there's a configure check needed? Or is something else needed?
Yeah, probably something like that.
All those errors cascade from not being able to find that one .h file. It's probably not being included for some autoconf-y reason.
Which platform, etc?
Fwiw, looks like upgrading from lcms 1.13 to lcms-1.14-r1 got compilation back to working. Still, configure should have detected this.
Portage 2203-svn (default-linux/x86/2005.0, gcc-3.3.6, glibc-2.3.5-r2, 2.6.14-gentoo-r5 i686) ================================================================= System uname: 2.6.14-gentoo-r5 i686 Intel(R) Pentium(R) 4 CPU 3.00GHz Gentoo Base System version 1.6.14 ccache version 2.3 [enabled] dev-lang/python: 2.3.5-r2, 2.4.2 dev-util/ccache: 2.3 dev-util/confcache: [Not Present] sys-apps/sandbox: 1.2.12 sys-devel/autoconf: 2.13, 2.59-r6 sys-devel/automake: 1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r1 sys-devel/binutils: 2.16.1 sys-devel/libtool: 1.5.20 virtual/os-headers: 2.6.11-r2 ACCEPT_KEYWORDS="x86" AUTOCLEAN="yes" CBUILD="i686-pc-linux-gnu" CFLAGS="-O2 -march=pentium4 -fomit-frame-pointer" CHOST="i686-pc-linux-gnu" CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.4/env /usr/kde/3.4/share/config /usr/kde/3.4/shutdown /usr/kde/3/share/config /usr/lib/X11/xkb /usr/share/config /usr/share/texmf/dvipdfm/config/ /usr/share/texmf/dvips/config/ /usr/share/texmf/tex/generic/config/ /usr/share/texmf/tex/platex/config/ /usr/share/texmf/xdvi/ /var/qmail/control" CONFIG_PROTECT_MASK="/etc/eselect/compiler /etc/gconf /etc/terminfo /etc/env.d" CXXFLAGS="-O2 -march=pentium4 -fomit-frame-pointer" DISTDIR="/usr/portage/distfiles" FEATURES="autoconfig ccache distlocks sandbox sfperms strict" GENTOO_MIRRORS="ftp://mirrors.tds.net/gentoo http://mirror.gentoo.gr.jp http://mirror.datapipe.net/gentoo http://mirror.tucdemonic.org" MAKEOPTS="-j2" PKGDIR="/usr/portage/packages" PORTAGE_TMPDIR="/var/tmp" PORTDIR="/usr/portage" SYNC="rsync://rsync.namerica.gentoo.org/gentoo-portage" USE="x86 X alsa apache2 apm arts audiofile avi berkdb bitmap-fonts bzip2 cdr cli crypt cups curl dri eds emacs emboss encode esd exif expat fam ffmpeg foomaticdb fortran gd gdbm gif glut gmp gphoto2 gpm gstreamer gtk2 guile idn imagemagick imlib ipv6 isdnlog jabber java jpeg jpg junit kde lcms libg++ libwww lua mad mbox mhash mikmod mng motif mp3 mpeg mysql ncurses nls ogg oggvorbis openal opengl pam pcre pdflib perl plotutils png ppds pppd python qt quicktime readline reflection ruby scanner sdl session speex spell spl sse ssl svg tcltk tcpd tetex tiff truetype truetype-fonts type1-fonts udev unicode usb vorbis xine xinerama xml xml2 xmms xorg xv zlib userland_GNU kernel_linux elibc_glibc" Unset: ASFLAGS, CTARGET, INSTALL_MASK, LANG, LC_ALL, LDFLAGS, LINGUAS, PORTDIR_OVERLAY

On May 28, 2006, at 8:54 PM, Bryce Harrington wrote:
Fwiw, looks like upgrading from lcms 1.13 to lcms-1.14-r1 got compilation back to working. Still, configure should have detected this.
Could be one of the reasons I had things set to 1.14, and not 1.1.3
:-)
I can try a few things blind that *might* help it, but without a system to run tests against, it will be a little hard to so.
participants (2)
-
Bryce Harrington
-
Jon A. Cruz