Your message dated Sat, 13 Jul 2013 13:50:27 +0000
with message-id <[email protected]>
and subject line Bug#690092: fixed in scli 0.4.0-3
has caused the Debian Bug report #690092,
regarding scli: FTBFS due to glib changes
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 [email protected]
immediately.)


-- 
690092: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690092
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: scli
Version: 0.4.0-2
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu quantal ubuntu-patch

In ubuntu scli fails to build due to changes in glib and the linkerflag
--as-needed

Attached patch was applied to fix the issues.
While they are not required in debian right now, they make the build
more robust and might also be required in future in debian.
It would be appreciated if the patch could be applied in debian.
Description: Add GLIB_CFLAGS where they're needed. It is necessary because
 include path for glib may differ from paths for other headers.
 Also link with used gthread.
Author: Ilya Barygin <[email protected]>
Bug-Ubuntu: https://launchpad.net/bugs/756098
--- a/configure
+++ b/configure
@@ -3666,7 +3666,7 @@
 
 
   pkg_config_args=glib-2.0
-  for module in . gmodule
+  for module in . gmodule gthread
   do
       case "$module" in
          gmodule)
@@ -4161,8 +4161,8 @@
     if test "x$enable_gnettest" = "xyes" ; then
       ac_save_CFLAGS="$CFLAGS"
       ac_save_LIBS="$LIBS"
-      CFLAGS="$CFLAGS $GNET_CFLAGS"
-      LIBS="$GNET_LIBS $LIBS"
+      CFLAGS="$CFLAGS $GLIB_CFLAGS $GNET_CFLAGS"
+      LIBS="$GNET_LIBS $GLIB_LIBS $LIBS"
       rm -f conf.gnettest
       if test "$cross_compiling" = yes; then
   echo $ac_n "cross compiling; assumed OK... $ac_c"
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -284,8 +284,8 @@
     if test "x$enable_gnettest" = "xyes" ; then
       ac_save_CFLAGS="$CFLAGS"
       ac_save_LIBS="$LIBS"
-      CFLAGS="$CFLAGS $GNET_CFLAGS"
-      LIBS="$GNET_LIBS $LIBS"
+      CFLAGS="$CFLAGS $GLIB_CFLAGS $GNET_CFLAGS"
+      LIBS="$GNET_LIBS $GLIB_LIBS $LIBS"
 dnl
 dnl Now check if the installed GNET is sufficiently new. (Also sanity
 dnl checks the results of pkg-config to some extent)
--- a/stub/Makefile.am
+++ b/stub/Makefile.am
@@ -1,4 +1,4 @@
-AM_CPPFLAGS		= $(GSNMP_CFLAGS) $(GNET_CFLAGS)
+AM_CPPFLAGS		= $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GLIB_CFLAGS)
 
 MIBS			= IF-MIB \
 			  IANAifType-MIB \
--- a/stub/Makefile.in
+++ b/stub/Makefile.in
@@ -189,7 +189,7 @@
 sharedstatedir = @sharedstatedir@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
-AM_CPPFLAGS = $(GSNMP_CFLAGS) $(GNET_CFLAGS)
+AM_CPPFLAGS = $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GLIB_CFLAGS)
 MIBS = IF-MIB \
 			  IANAifType-MIB \
 			  IP-MIB \
--- a/proc/Makefile.am
+++ b/proc/Makefile.am
@@ -1,4 +1,4 @@
-AM_CPPFLAGS		= $(GSNMP_CFLAGS) $(GNET_CFLAGS) -I$(top_srcdir)/stub
+AM_CPPFLAGS		= $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GLIB_CFLAGS) -I$(top_srcdir)/stub
 
 PROCS			= if-mib-proc.h if-mib-proc.c \
 			  rapid-city-proc.h rapid-city-proc.c \
--- a/proc/Makefile.in
+++ b/proc/Makefile.in
@@ -172,7 +172,7 @@
 sharedstatedir = @sharedstatedir@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
-AM_CPPFLAGS = $(GSNMP_CFLAGS) $(GNET_CFLAGS) -I$(top_srcdir)/stub
+AM_CPPFLAGS = $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GLIB_CFLAGS) -I$(top_srcdir)/stub
 PROCS = if-mib-proc.h if-mib-proc.c \
 			  rapid-city-proc.h rapid-city-proc.c \
 			  productmib-proc.h productmib-proc.c \
--- a/scli/Makefile.am
+++ b/scli/Makefile.am
@@ -1,4 +1,4 @@
-AM_CPPFLAGS	= -I$(top_srcdir)/stub -I$(top_srcdir)/proc $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GTK_CFLAGS) $(XML_CFLAGS) $(XML_CPPFLAGS)
+AM_CPPFLAGS	= -I$(top_srcdir)/stub -I$(top_srcdir)/proc $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GLIB_CFLAGS) $(GTK_CFLAGS) $(XML_CFLAGS) $(XML_CPPFLAGS)
 
 EXTRA_DIST	= oui.c
 
--- a/scli/Makefile.in
+++ b/scli/Makefile.in
@@ -181,7 +181,7 @@
 sharedstatedir = @sharedstatedir@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
-AM_CPPFLAGS = -I$(top_srcdir)/stub -I$(top_srcdir)/proc $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GTK_CFLAGS) $(XML_CFLAGS) $(XML_CPPFLAGS)
+AM_CPPFLAGS = -I$(top_srcdir)/stub -I$(top_srcdir)/proc $(GSNMP_CFLAGS) $(GNET_CFLAGS) $(GLIB_CFLAGS) $(GTK_CFLAGS) $(XML_CFLAGS) $(XML_CPPFLAGS)
 EXTRA_DIST = oui.c
 scli_SOURCES = scli.c scli.h scli.1 vendors.c \
 		  basic.c monitor.c cmds.c thread.c \
--- a/configure.in
+++ b/configure.in
@@ -33,7 +33,7 @@
 
 dnl Checks for libraries.
 
-AM_PATH_GLIB_2_0(2.0.0, [], AC_MSG_ERROR(scli needs GLIB), gmodule)
+AM_PATH_GLIB_2_0(2.0.0, [], AC_MSG_ERROR(scli needs GLIB), gmodule gthread)
 AM_PATH_GNET_2_0(2.0.0, [], AC_MSG_ERROR(scli needs GNET))
 dnl AM_PATH_GLIB(1.2.0, [], AC_MSG_ERROR(scli needs GLIB), gmodule)
 dnl AM_PATH_GTK(1.2.0, [], AC_MSG_ERROR(scli needs GTK))

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: scli
Source-Version: 0.4.0-3

We believe that the bug you reported is fixed in the latest version of
scli, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Barry deFreese <[email protected]> (supplier of updated scli 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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Fri, 12 Jul 2013 17:49:00 -0400
Source: scli
Binary: scli
Architecture: source i386
Version: 0.4.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[email protected]>
Changed-By: Barry deFreese <[email protected]>
Description: 
 scli       - collection of SNMP command line management tools
Closes: 690092 713622
Changes: 
 scli (0.4.0-3) unstable; urgency=low
 .
   * QA upload.
   * Set maintainer to Debian QA Group <[email protected]>.
   * Remove DM-Upload-Allowed.
   * Patch to fix glib underlinkage. (Closes: #713622, #690092).
     + Thanks to Julien Taylor for passing on the fix.
   * Add patch to fix compilation errors and warnings.
   * Bump debhelper build-dep and compat to 9.
   * Bump Standards Version to 3.9.4.
Checksums-Sha1: 
 30d9fda2727c428c17c5dcd215a4eb595b730489 1134 scli_0.4.0-3.dsc
 1c4af30994a33f60dfb6a82ebeb29f2edb3f8e47 7854 scli_0.4.0-3.debian.tar.gz
 caa012ea898b0c00466eb19210a625bc269dabd1 462146 scli_0.4.0-3_i386.deb
Checksums-Sha256: 
 42bcda6787b22b8d7ccace790256cfd890673da6b9e6f7f378c8a727b930f49d 1134 
scli_0.4.0-3.dsc
 4a33622a103d26b40c4356affe0fd3d244072deca8432d1a9b8876d92e8ba4ca 7854 
scli_0.4.0-3.debian.tar.gz
 655d4ab3cd3e71ed869ed1aafcac1947b5b0b2bf2d31a86d06ea7b1ad3b4ca64 462146 
scli_0.4.0-3_i386.deb
Files: 
 366a2fb833b3df91c4337a6d259755d3 1134 net optional scli_0.4.0-3.dsc
 9c2239ce40cce02b1a3d7932c4fa810f 7854 net optional scli_0.4.0-3.debian.tar.gz
 30cba662993521159e99b84c83642086 462146 net optional scli_0.4.0-3_i386.deb

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

iEYEARECAAYFAlHhVV8ACgkQ5ItltUs5T36XaQCdG9AwqAIbPa4jCUgIjRLQJf8f
frkAoJ6i/n1S1EPeEllmBGBLPYtKzse1
=CkSJ
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to