Your message dated Sun, 29 Dec 2013 00:19:07 +0000
with message-id <e1vx45z-0004ap...@franck.debian.org>
and subject line Bug#730330: fixed in xxxterm 1:1.11.3-1.2
has caused the Debian Bug report #730330,
regarding xxxterm: FTBFS: storage size of 'hints' isn't known
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
730330: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=730330
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: xxxterm
Version: 1:1.11.3-1.1
Severity: serious

>From my pbuilder build log:

...
Generating ../xxxterm.o.depend
cc  -O2 -Wall -ggdb3 -D_GNU_SOURCE -I. -I.. -pthread -I/usr/include/gtk-2.0 
-I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 
-I/usr/include/gio-unix-2.0/ -I/usr/include/freetype2 -I/usr/include/glib-2.0 
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 
-I/usr/include/libpng12 -I/usr/include/libdrm -I/usr/include/harfbuzz 
-I/usr/include/libsoup-2.4 -I/usr/include/libxml2 -I/usr/include/p11-kit-1 
-I/usr/include/webkitgtk-1.0   -o ../xxxterm.o -c ../xxxterm.c
../xxxterm.c: In function 'connect_socket_from_uri':
../xxxterm.c:1474:19: error: storage size of 'hints' isn't known
  struct addrinfo  hints, *res = NULL, *ai;
                   ^
../xxxterm.c:1497:23: error: invalid application of 'sizeof' to incomplete type 
'struct addrinfo'
  bzero(&hints, sizeof(struct addrinfo));
                       ^
../xxxterm.c:1498:19: error: 'AI_CANONNAME' undeclared (first use in this 
function)
  hints.ai_flags = AI_CANONNAME;
                   ^
../xxxterm.c:1498:19: note: each undeclared identifier is reported only once 
for each function it appears in
../xxxterm.c:1502:2: warning: implicit declaration of function 'getaddrinfo' 
[-Wimplicit-function-declaration]
  if ((error = getaddrinfo(su->host, port, &hints, &res))) {
  ^
../xxxterm.c:1504:7: warning: implicit declaration of function 'gai_strerror' 
[-Wimplicit-function-declaration]
       gai_strerror(errno));
       ^
../xxxterm.c:1504:7: warning: format '%s' expects argument of type 'char *', 
but argument 4 has type 'int' [-Wformat=]
../xxxterm.c:1504:7: warning: format '%s' expects argument of type 'char *', 
but argument 4 has type 'int' [-Wformat=]
../xxxterm.c:1508:28: error: dereferencing pointer to incomplete type
  for (ai = res; ai; ai = ai->ai_next) {
                            ^
../xxxterm.c:1514:9: error: dereferencing pointer to incomplete type
   if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
         ^
../xxxterm.c:1514:37: error: dereferencing pointer to incomplete type
   if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
                                     ^
../xxxterm.c:1516:16: error: dereferencing pointer to incomplete type
   s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
                ^
../xxxterm.c:1516:31: error: dereferencing pointer to incomplete type
   s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
                               ^
../xxxterm.c:1516:48: error: dereferencing pointer to incomplete type
   s = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol);
                                                ^
../xxxterm.c:1522:20: error: dereferencing pointer to incomplete type
   if (connect(s, ai->ai_addr, ai->ai_addrlen) == 0)
                    ^
../xxxterm.c:1522:33: error: dereferencing pointer to incomplete type
   if (connect(s, ai->ai_addr, ai->ai_addrlen) == 0)
                                 ^
../xxxterm.c:1539:3: warning: implicit declaration of function 'freeaddrinfo' 
[-Wimplicit-function-declaration]
   freeaddrinfo(res);
   ^
../xxxterm.c:1475:29: warning: variable 'error' set but not used 
[-Wunused-but-set-variable]
  int   rv = -1, s = -1, on, error;
                             ^
../xxxterm.c:1474:19: warning: unused variable 'hints' [-Wunused-variable]
  struct addrinfo  hints, *res = NULL, *ai;
                   ^
../xxxterm.c: In function 'show_ca_status':
../xxxterm.c:3501:2: warning: 'g_thread_create' is deprecated (declared at 
/usr/include/glib-2.0/glib/deprecated/gthread.h:100): Use 'g_thread_new' 
instead [-Wdeprecated-declarations]
  t->thread = g_thread_create((GThreadFunc)color_address_bar, t, TRUE, NULL);
  ^
../xxxterm.c: In function 'mtx_lock':
../xxxterm.c:7512:2: warning: 'g_static_rec_mutex_lock' is deprecated (declared 
at /usr/include/glib-2.0/glib/deprecated/gthread.h:174): Use 'g_rec_mutex_lock' 
instead [-Wdeprecated-declarations]
  g_static_rec_mutex_lock(&my_gdk_mtx);
  ^
../xxxterm.c:7521:3: warning: 'g_static_rec_mutex_unlock_full' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:187) 
[-Wdeprecated-declarations]
   g_static_rec_mutex_unlock_full(&my_gdk_mtx);
   ^
../xxxterm.c:7522:3: warning: 'g_static_rec_mutex_lock' is deprecated (declared 
at /usr/include/glib-2.0/glib/deprecated/gthread.h:174): Use 'g_rec_mutex_lock' 
instead [-Wdeprecated-declarations]
   g_static_rec_mutex_lock(&my_gdk_mtx);
   ^
../xxxterm.c:7530:4: warning: 'g_static_rec_mutex_unlock' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:180): Use 
'g_rec_mutex_unlock' instead [-Wdeprecated-declarations]
    g_static_rec_mutex_unlock(&my_gdk_mtx);
    ^
../xxxterm.c: In function 'mtx_unlock':
../xxxterm.c:7543:3: warning: 'g_static_rec_mutex_unlock_full' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:187) 
[-Wdeprecated-declarations]
   x = g_static_rec_mutex_unlock_full(&my_gdk_mtx);
   ^
../xxxterm.c:7563:2: warning: 'g_static_rec_mutex_unlock' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:180): Use 
'g_rec_mutex_unlock' instead [-Wdeprecated-declarations]
  g_static_rec_mutex_unlock(&my_gdk_mtx);
  ^
../xxxterm.c: In function 'main':
../xxxterm.c:7599:2: warning: 'g_thread_init' is deprecated (declared at 
/usr/include/glib-2.0/glib/deprecated/gthread.h:260) [-Wdeprecated-declarations]
  g_thread_init(NULL);
  ^
../xxxterm.c:7985:2: warning: 'g_static_rec_mutex_unlock_full' is deprecated 
(declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:187) 
[-Wdeprecated-declarations]
  g_static_rec_mutex_unlock_full(&my_gdk_mtx); /* just in case */
  ^
make[2]: *** [../xxxterm.o] Error 1
make[2]: Leaving directory `/tmp/buildd/xxxterm-1.11.3/linux'
make[1]: *** [override_dh_auto_build] Error 2
make[1]: Leaving directory `/tmp/buildd/xxxterm-1.11.3'
make: *** [build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
-- 
Daniel Schepler

--- End Message ---
--- Begin Message ---
Source: xxxterm
Source-Version: 1:1.11.3-1.2

We believe that the bug you reported is fixed in the latest version of
xxxterm, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 730...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Prévot <taf...@debian.org> (supplier of updated xxxterm package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 23 Dec 2013 19:02:49 -0400
Source: xxxterm
Binary: xxxterm
Architecture: source amd64
Version: 1:1.11.3-1.2
Distribution: unstable
Urgency: medium
Maintainer: Luis Henriques <hen...@camandro.org>
Changed-By: David Prévot <taf...@debian.org>
Description: 
 xxxterm    - Minimalist's web browser
Closes: 729439 730330
Changes: 
 xxxterm (1:1.11.3-1.2) unstable; urgency=medium
 .
   * Non-maintainer upload
 .
   [ Daniel T Chen ]
   * Added patch resolving FTBFS due to missing header
    (Closes: #729439, #730330)
Checksums-Sha1: 
 b386621c70ac2f0cb14458417f014d86d7362dbe 1473 xxxterm_1.11.3-1.2.dsc
 55e14ec44c953fd08afedadbcc432d8db057a1d1 16090 xxxterm_1.11.3-1.2.debian.tar.gz
 1ef533443d6b68f23b7a2bce87bd2cc92c777737 155548 xxxterm_1.11.3-1.2_amd64.deb
Checksums-Sha256: 
 c680c2c6645ca93962fda357a547fd45c4e72aa7cd5f80f5d4237d6ddf98bdb4 1473 
xxxterm_1.11.3-1.2.dsc
 f15326c03f81ff7534137f7d7e0a1eb4af4db9e7904d7e5fb13924e861eac402 16090 
xxxterm_1.11.3-1.2.debian.tar.gz
 305b7b30d1b7dca9f2a92a2dc042e8c8b9b51aeaa55e45e21b4570a5f538be15 155548 
xxxterm_1.11.3-1.2_amd64.deb
Files: 
 a2826de02ab898b1a1b5615a22bce116 1473 web optional xxxterm_1.11.3-1.2.dsc
 9e98d083c47c9b74f16428c63e7d2389 16090 web optional 
xxxterm_1.11.3-1.2.debian.tar.gz
 37eda4d74beb60c189a6f9d5e1d798d7 155548 web optional 
xxxterm_1.11.3-1.2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.15 (GNU/Linux)

iQEcBAEBCAAGBQJSuMkSAAoJEAWMHPlE9r08hJ8H/j3YNrRY+zS9RIfrhVmqXEMV
uKtzByf8Efw4RbjB4/wOzikcFQ6Zw3yZPN6CbsMHpvijrydUqn1g8NxlPkr15YlR
2pOxiIgxdYGiZyFVkVGCiCLcKceWKIdpwNnlVkUAdvP2/BTaTrI4l8AaffZ5Zvj0
DN7lbhOrBwl83YjvVvt9Cfiqnz7B7BLmMU3cEegdCcU96xe4ZsR+UOUWtsUGE8uo
iaHghbMQtqmL23JipcBTWipDG3LfpJ2z4uwzL6Hcc95DIpVgbodGYK5NEz6Im/RW
Loops4FvMofto3TXFFO6a6IypaoS6EAIzyjoxLlUzE7Kwo49+poepDN3GIBuP+c=
=cxsB
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to