X2Go Bug report logs -
#579
nx-libs, Jpeg.cpp compilation error with jpeg-9a, with suggested patch
Reported by: Gabriel Marcano <gabemarcano@yahoo.com>
Date: Wed, 20 Aug 2014 03:30:02 UTC
Severity: normal
Tags: patch
Found in version HEAD
Done: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#579
; Package nx-libs
.
(Wed, 20 Aug 2014 03:30:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Gabriel Marcano <gabemarcano@yahoo.com>
:
New Bug report received and forwarded. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Wed, 20 Aug 2014 03:30:02 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Package: nx-libs
Version: HEAD
Tags: Patch
Found this problem while browsing:
https://bugs.gentoo.org/show_bug.cgi?id=481360
Compiling nx-libs against jpeg-9a leads to a compilation error. Specifically:
g++ -c -O3 -fno-rtti -fno-exceptions -I../nx-X11/exports/include
-Wmissing-declarations -fPIC -DIN_ADDR_T=in_addr_t -DVERSION=\"3.5.0\"
-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\"
-DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -Wall
-Wpointer-arith Jpeg.cpp
Jpeg.cpp: In function ‘int DecompressJpeg16(unsigned char*, int,
unsigned int, unsigned int, unsigned char*, int)’:
Jpeg.cpp:443:29: error: invalid conversion from ‘int’ to ‘boolean’
[-fpermissive]
jpeg_read_header(&cinfo, 1);
^
In file included from Jpeg.cpp:29:0:
/usr/include/jpeglib.h:1039:13: note: initializing argument 2 of ‘int
jpeg_read_header(j_decompress_ptr, boolean)’
EXTERN(int) jpeg_read_header JPP((j_decompress_ptr cinfo,
^
Jpeg.cpp: In function ‘int DecompressJpeg24(unsigned char*, int,
unsigned int, unsigned int, unsigned char*, int)’:
Jpeg.cpp:584:29: error: invalid conversion from ‘int’ to ‘boolean’
[-fpermissive]
jpeg_read_header(&cinfo, 1);
^
In file included from Jpeg.cpp:29:0:
/usr/include/jpeglib.h:1039:13: note: initializing argument 2 of ‘int
jpeg_read_header(j_decompress_ptr, boolean)’
EXTERN(int) jpeg_read_header JPP((j_decompress_ptr cinfo,
^
Jpeg.cpp: In function ‘int DecompressJpeg32(unsigned char*, int, unsigned
int, unsigned int, unsigned char*, int)’:
Jpeg.cpp:721:29: error: invalid conversion from ‘int’ to ‘boolean’
[-fpermissive]
jpeg_read_header(&cinfo, 1);
^
In file included from Jpeg.cpp:29:0:
/usr/include/jpeglib.h:1039:13: note: initializing argument 2 of ‘int
jpeg_read_header(j_decompress_ptr, boolean)’
EXTERN(int) jpeg_read_header JPP((j_decompress_ptr cinfo,
^
Jpeg.cpp: In function ‘boolean JpegFillInputBuffer(j_decompress_ptr)’:
Jpeg.cpp:836:10: error: invalid conversion from ‘int’ to ‘boolean’
[-fpermissive]
return 1;
^
Makefile:82: recipe for target 'Jpeg.o' failed
make: *** [Jpeg.o] Error 1
I am attaching a patch to address the problem. Specifically, it appears that
jpeg-9a changed the definition for its "boolean" type from an int to some other
type (bool in C++, it seems). Using TRUE and FALSE, as provided by the jpeg
library, is what was done to address the problem. After applying the patch
to HEAD (commit 0e3b414ea6ecb6cc359d3b95f5cfeb6096066139), Jpeg.cpp compiles
fine.
Configuration:
Compiling against jpeg-9a.
$ gcc -v
Using built-in specs.
COLLECT_GCC=/usr/x86_64-pc-linux-gnu/gcc-bin/4.9.0/gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu/4.9.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /var/tmp/portage/sys-devel/gcc-4.9.0/work/gcc-4.9.0/configure
--host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --prefix=/usr
--bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/4.9.0
--includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.0/include
--datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.9.0
--mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.9.0/man
--infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.9.0/info
--with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.0/include/g++-v4
--with-python-dir=/share/gcc-data/x86_64-pc-linux-gnu/4.9.0/python
--enable-languages=c,c++,fortran --enable-obsolete --enable-secureplt
--disable-werror --with-system-zlib --enable-nls --without-included-gettext
--enable-checking=release --with-bugurl=https://bugs.gentoo.org/
--with-pkgversion='Gentoo 4.9.0 p1.0, pie-0.6.0' --enable-libstdcxx-time
--enable-shared --enable-threads=posix --enable-__cxa_atexit
--enable-clocale=gnu --enable-multilib --with-multilib-list=m32,m64
--disable-altivec --disable-fixed-point --enable-targets=all
--disable-libgcj --enable-libgomp --disable-libmudflap --disable-libssp
--enable-lto --without-cloog
Thread model: posix
gcc version 4.9.0 (Gentoo 4.9.0 p1.0, pie-0.6.0)
$ autoreconf --version
autoreconf (GNU Autoconf) 2.69
Steps to reproduce:
1. "git clone git://code.x2go.org/nx-libs.git" repository.
2. Change to the "nxcomp" directory.
3. Run "autoreconf" and then do "make Jpeg.o".
Expected outcome:
Successful compilation.
Actual outcome:
Compilation failure, see earlier in the report for the error messages.
[nxlibs-jpeg9a.patch (text/x-patch, attachment)]
Information forwarded
to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>
:
Bug#579
; Package nx-libs
.
(Fri, 15 May 2015 12:15:01 GMT) (full text, mbox, link).
Acknowledgement sent
to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>
.
(Fri, 15 May 2015 12:15:01 GMT) (full text, mbox, link).
Message #10 received at 579@bugs.x2go.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Control: close -1
Control: forcemerge #578 -1
Issue #579 is a duplicate of already close issue #578.
Mike
--
DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148
GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de
freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
[Message part 2 (application/pgp-signature, inline)]
Marked Bug as done
Request was from Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
to 579-submit@bugs.x2go.org
.
(Fri, 15 May 2015 12:15:02 GMT) (full text, mbox, link).
Notification sent
to Gabriel Marcano <gabemarcano@yahoo.com>
:
Bug acknowledged by developer.
(Fri, 15 May 2015 12:15:02 GMT) (full text, mbox, link).
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.x2go.org>
to internal_control@bugs.x2go.org
.
(Sat, 13 Jun 2015 05:24:01 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
X2Go Developers <owner@bugs.x2go.org>.
Last modified:
Thu Nov 21 11:38:53 2024;
Machine Name:
ymir.das-netzwerkteam.de
X2Go Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.