Your message dated Thu, 17 Feb 2011 00:48:03 +0000
with message-id <[email protected]>
and subject line Bug#613153: fixed in squid3 3.1.11-1
has caused the Debian Bug report #613153,
regarding FTBFS binutils-gold
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.)
--
613153: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613153
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: squid3
Severity: minor
Version: 3.1.6-1.2
User: [email protected]
Usertags: origin-ubuntu ubuntu-patch natty as-needed
Tags: patch
thanks
I try to build your package in Natty with binutils-gold and gcc 4.5, and
your package failed to build.
Log can be found at here:
- i386:
http://people.ubuntuwire.org/~lucas/ubuntu-nbs/32/squid3_3.1.6-1.1ubuntu1_lubuntu32.buildlog
- amd64:
http://people.ubuntuwire.org/~lucas/ubuntu-nbs/64/squid3_3.1.6-1.1ubuntu1_lubuntu64.buildlog
Latest Error:
/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c:478:
undefined reference to `gss_display_name'
/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c:447:
undefined reference to `gss_release_buffer'
/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/squid_kerb_auth.c:448:
undefined reference to `gss_display_name'
collect2: ld returned 1 exit status
make[6]: *** [squid_kerb_auth] Error 1
make[6]: Leaving directory
`/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory
`/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth'
make[4]: *** [all] Error 2
make[4]: Leaving directory
`/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
`/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers/negotiate_auth'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory
`/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6/helpers'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/build/user-squid3_3.1.6-1.1ubuntu1-i386-O8dm9E/squid3-3.1.6'
make: *** [debian/stamp-makefile-build] Error 2
dpkg-buildpackage: error: debian/rules build gave error exit status 2
And i try to add more library linker in makefile, and successfully
build, here is attached patched i use
--
Mahyuddin Susanto (udienz)
https://launchpad.net/~udienz http://tripledin.wordpress.com/
#! /bin/sh /usr/share/dpatch/dpatch-run
## Description: Add sasl2 and kerberos library in LDADD to fix FTBFS
binutils-gold with --as-needed
## Author: Mahyuddin Susanto <[email protected]>
## Bug-Ubuntu: https://launchpad.net/bugs/717653
@DPATCH@
diff -urNad squid3-3.1.6~/helpers/negotiate_auth/squid_kerb_auth/Makefile.am
squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/Makefile.am
--- squid3-3.1.6~/helpers/negotiate_auth/squid_kerb_auth/Makefile.am
2010-08-01 21:01:37.000000000 +0700
+++ squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/Makefile.am
2011-02-13 00:15:37.495120372 +0700
@@ -8,9 +8,13 @@
squid_kerb_auth_SOURCES = squid_kerb_auth.c base64.c base64.h squid_compat.h
squid_kerb_auth_test_SOURCES = squid_kerb_auth_test.c base64.c base64.h
squid_compat.h
squid_kerb_auth_LDFLAGS =
-squid_kerb_auth_LDADD =
+squid_kerb_auth_LDADD = -L$(top_builddir)/lib -lmiscutil \
+ -lsasl2 -lgssapi_krb5 -lkrb5 -lk5crypto \
+ $(XTRA_LIBS)
squid_kerb_auth_test_LDFLAGS =
-squid_kerb_auth_test_LDADD =
+squid_kerb_auth_test_LDADD = -L$(top_builddir)/lib -lmiscutil \
+ -lsasl2 -lgssapi_krb5 -lkrb5 -lk5crypto \
+ $(XTRA_LIBS)
negotiate_kerb_auth_SOURCES =
negotiate_kerb_auth_test_SOURCES =
diff -urNad squid3-3.1.6~/helpers/negotiate_auth/squid_kerb_auth/Makefile.in
squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/Makefile.in
--- squid3-3.1.6~/helpers/negotiate_auth/squid_kerb_auth/Makefile.in
2010-08-01 21:03:11.000000000 +0700
+++ squid3-3.1.6/helpers/negotiate_auth/squid_kerb_auth/Makefile.in
2011-02-13 00:16:18.001044521 +0700
@@ -51,12 +51,12 @@
libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
PROGRAMS = $(libexec_PROGRAMS)
am_negotiate_kerb_auth_OBJECTS =
-negotiate_kerb_auth_OBJECTS = $(am_negotiate_kerb_auth_OBJECTS)
-negotiate_kerb_auth_LDADD = $(LDADD)
+napi_krb5 -lkrb5 -lk5cryptogotiate_kerb_auth_OBJECTS =
$(am_negotiate_kerb_auth_OBJECTS)
+negotiate_kerb_auth_LDADD = -L$(top_builddir)/lib -lmiscutil $(LDADD) -lsasl2
-lgssapi_krb5 -lkrb5 -lk5crypto $(XTRA_LIBS)
am_negotiate_kerb_auth_test_OBJECTS =
negotiate_kerb_auth_test_OBJECTS = \
$(am_negotiate_kerb_auth_test_OBJECTS)
-negotiate_kerb_auth_test_LDADD = $(LDADD)
+negotiate_kerb_auth_test_LDADD = -L$(top_builddir)/lib -lmiscutil $(LDADD)
-lsasl2 -lgssapi_krb5 -lkrb5 -lk5crypto $(XTRA_LIBS)
am_squid_kerb_auth_OBJECTS = squid_kerb_auth.$(OBJEXT) \
base64.$(OBJEXT)
squid_kerb_auth_OBJECTS = $(am_squid_kerb_auth_OBJECTS)
@@ -197,9 +197,13 @@
squid_kerb_auth_SOURCES = squid_kerb_auth.c base64.c base64.h squid_compat.h
squid_kerb_auth_test_SOURCES = squid_kerb_auth_test.c base64.c base64.h
squid_compat.h
squid_kerb_auth_LDFLAGS =
-squid_kerb_auth_LDADD =
+squid_kerb_auth_LDADD = -L$(top_builddir)/lib -lmiscutil \
+ -lsasl2 -lgssapi_krb5 -lkrb5 -lk5crypto \
+ $(XTRA_LIBS)
squid_kerb_auth_test_LDFLAGS =
-squid_kerb_auth_test_LDADD =
+squid_kerb_auth_test_LDADD = -L$(top_builddir)/lib -lmiscutil \
+ -lsasl2 -lgssapi_krb5 -lkrb5 -lk5crypto \
+ $(XTRA_LIBS)
negotiate_kerb_auth_SOURCES =
negotiate_kerb_auth_test_SOURCES =
all: ska_config.h
@@ -282,10 +286,10 @@
-test -z "$(libexec_PROGRAMS)" || rm -f $(libexec_PROGRAMS)
squid_kerb_auth$(EXEEXT): $(squid_kerb_auth_OBJECTS)
$(squid_kerb_auth_DEPENDENCIES)
@rm -f squid_kerb_auth$(EXEEXT)
- $(squid_kerb_auth_LINK) $(squid_kerb_auth_OBJECTS)
$(squid_kerb_auth_LDADD) $(LIBS)
+ $(LINK) $(squid_kerb_auth_OBJECTS) $(squid_kerb_auth_test_LDADD) $(LIBS)
squid_kerb_auth_test$(EXEEXT): $(squid_kerb_auth_test_OBJECTS)
$(squid_kerb_auth_test_DEPENDENCIES)
@rm -f squid_kerb_auth_test$(EXEEXT)
- $(squid_kerb_auth_test_LINK) $(squid_kerb_auth_test_OBJECTS)
$(squid_kerb_auth_test_LDADD) $(LIBS)
+ $(LINK) $(squid_kerb_auth_test_OBJECTS) $(squid_kerb_auth_test_LDADD)
$(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: squid3
Source-Version: 3.1.11-1
We believe that the bug you reported is fixed in the latest version of
squid3, which is due to be installed in the Debian FTP archive:
squid-cgi_3.1.11-1_i386.deb
to main/s/squid3/squid-cgi_3.1.11-1_i386.deb
squid3-common_3.1.11-1_all.deb
to main/s/squid3/squid3-common_3.1.11-1_all.deb
squid3-dbg_3.1.11-1_i386.deb
to main/s/squid3/squid3-dbg_3.1.11-1_i386.deb
squid3_3.1.11-1.diff.gz
to main/s/squid3/squid3_3.1.11-1.diff.gz
squid3_3.1.11-1.dsc
to main/s/squid3/squid3_3.1.11-1.dsc
squid3_3.1.11-1_i386.deb
to main/s/squid3/squid3_3.1.11-1_i386.deb
squid3_3.1.11.orig.tar.gz
to main/s/squid3/squid3_3.1.11.orig.tar.gz
squidclient_3.1.11-1_i386.deb
to main/s/squid3/squidclient_3.1.11-1_i386.deb
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.
Luigi Gangitano <[email protected]> (supplier of updated squid3 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: Tue, 15 Feb 2011 01:46:19 +0100
Source: squid3
Binary: squid3 squid3-dbg squid3-common squidclient squid-cgi
Architecture: source all i386
Version: 3.1.11-1
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano <[email protected]>
Changed-By: Luigi Gangitano <[email protected]>
Description:
squid-cgi - A full featured Web Proxy cache (HTTP proxy) - control CGI
squid3 - A full featured Web Proxy cache (HTTP proxy)
squid3-common - A full featured Web Proxy cache (HTTP proxy) - common files
squid3-dbg - A full featured Web Proxy cache (HTTP proxy) - Debug symbols
squidclient - A full featured Web Proxy cache (HTTP proxy) - control utility
Closes: 613153
Changes:
squid3 (3.1.11-1) unstable; urgency=low
.
* New upstream release
.
* debian/patches/18-gcc-4.5-fix
- Added upstream fix for gcc 4.5 building (Closes: #613153)
Checksums-Sha1:
c8114e6280985918f532ebacf5cbe135dc454e55 1265 squid3_3.1.11-1.dsc
4a7853f6b2545b4548eb853f542984c408d3da89 3355581 squid3_3.1.11.orig.tar.gz
9066026784c2d1c71d2ef5c53463edbb27ad0a86 18979 squid3_3.1.11-1.diff.gz
93027b7a270c64bb41a889a90489d79c8ece1265 195780 squid3-common_3.1.11-1_all.deb
671303c55474254ab091fd8908fbfc1d67bcd6a2 1480098 squid3_3.1.11-1_i386.deb
04f49f0e1a7ce92564749f700c381918b05a1c0e 5601194 squid3-dbg_3.1.11-1_i386.deb
a3980750cf5af3adad865f285f6b4ea9a61a81cd 107866 squidclient_3.1.11-1_i386.deb
69660d82fea223338f9163f35b8caf4f2844918d 109842 squid-cgi_3.1.11-1_i386.deb
Checksums-Sha256:
0e321423b11ac9cac65fcdc4c94f0d92709725a9c49c319b85f5afbcc68fc634 1265
squid3_3.1.11-1.dsc
d79077cc1e55df5a142863c18789af911debeda8b6adacb3512767a97b9a5b79 3355581
squid3_3.1.11.orig.tar.gz
6efad72dcbf7f80686692e806b6b90b10b317263eb00be232dffea80ab8424de 18979
squid3_3.1.11-1.diff.gz
8b207486e057ec85eb86a4a8970fc7051b0184a6111116cec38822b0159c11e2 195780
squid3-common_3.1.11-1_all.deb
7965bbb33d5957dc77cece81e1a7f5f57e9cf21d3f66f372f66508dacda46636 1480098
squid3_3.1.11-1_i386.deb
fb9484c1c4a2cc55da020b1781fff4c49da55ae07a04ab89e779d18c4aa01067 5601194
squid3-dbg_3.1.11-1_i386.deb
f54c9cf10fef1d6681cc14ae8daa9abdc62e42e5cc8ebc4eea35212ebbc0f2b0 107866
squidclient_3.1.11-1_i386.deb
fb8ad29e3095273108adaafc67c393d4a1afd2765be19e1ef8aa6951d48ada14 109842
squid-cgi_3.1.11-1_i386.deb
Files:
bc03d2c4878e8b5cc42d85fa67088089 1265 web optional squid3_3.1.11-1.dsc
08de963a4d0ba86c59d33af89fa46384 3355581 web optional squid3_3.1.11.orig.tar.gz
34d17e633ef321848cc17e6e7c34ef3b 18979 web optional squid3_3.1.11-1.diff.gz
5484caa7854b977440e278d811d7386f 195780 web optional
squid3-common_3.1.11-1_all.deb
f205eae29bd83d6b14965c0a4ba23663 1480098 web optional squid3_3.1.11-1_i386.deb
b9b599daf3207ac628483433137f732f 5601194 debug extra
squid3-dbg_3.1.11-1_i386.deb
40451d1d3ce44c3c54febcab1a5373c1 107866 web optional
squidclient_3.1.11-1_i386.deb
3d85b67e42ad32b04f0ff60798173344 109842 web optional
squid-cgi_3.1.11-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
iEYEARECAAYFAk1ca/QACgkQ8ZumGJJMDCaiawCbBHCUga+ND1FMw2rRka1E6sa9
8OAAn02RQXuQKcBTMkXF1LOSRhuglc0u
=IfWM
-----END PGP SIGNATURE-----
--- End Message ---