Your message dated Wed, 08 Jun 2005 12:18:01 -0400 with message-id <[EMAIL PROTECTED]> and subject line Bug#279243: fixed in samba 3.0.14a-5 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 1 Nov 2004 17:34:23 +0000 >From [EMAIL PROTECTED] Mon Nov 01 09:34:23 2004 Return-path: <[EMAIL PROTECTED]> Received: from du-43-26.ppp.telenordia.se (mulder.hem.za.org) [62.127.43.26] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1COg4S-0003ah-00; Mon, 01 Nov 2004 09:34:22 -0800 Received: from skinner.hem.za.org ([192.168.0.2] ident=Debian-exim) by mulder.hem.za.org with esmtp (TLS-1.0:RSA_ARCFOUR_SHA:16) (Exim 4.34) id 1COcUf-0004Pp-Cn; Mon, 01 Nov 2004 14:45:09 +0100 Received: from mikael by skinner.hem.za.org with local (Exim 4.34) id 1COcUe-00078Y-93; Mon, 01 Nov 2004 14:45:08 +0100 Date: Mon, 1 Nov 2004 14:45:08 +0100 From: Mikael Magnusson <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: samba: libsmbclient.a must not be compiled with -fPIC. Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="NzB8fVQJ5HfG6fxh" Content-Disposition: inline X-Reportbug-Version: 2.63 User-Agent: Mutt/1.5.6+20040722i Sender: Mikael Magnusson <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Package: samba Version: 3.0.7-1 Severity: serious Tags: patch Justification: Policy 10.2 The subject says it all, libsmbclient.a must not be compiled with -fPIC. (Note that I have created my patch with dpatch, but dpatch is not required to use it.) Mikael Magnusson -- System Information: Debian Release: 3.1 APT prefers testing APT policy: (900, 'testing'), (100, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.7-skas-1 Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 Versions of packages samba depends on: ii debconf [debconf-2.0] 1.4.30.5 Debian configuration management sy ii libacl1 2.2.23-1 Access control list shared library ii libc6 2.3.2.ds1-16 GNU C Library: Shared libraries an ii libcomerr2 1.35-6 The Common Error Description libra ii libcupsys2-gnutls10 1.1.20final+rc1-7 Common UNIX Printing System(tm) - ii libkrb53 1.3.3-2 MIT Kerberos runtime libraries ii libldap2 2.1.30-3 OpenLDAP libraries ii libpam-modules 0.76-22 Pluggable Authentication Modules f ii libpam-runtime 0.76-22 Runtime support for the PAM librar ii libpam0g 0.76-22 Pluggable Authentication Modules l ii libpopt0 1.7-4 lib for parsing cmdline parameters ii libsmbclient 3.0.7-1 shared library that allows applica ii logrotate 3.7-2 Log rotation utility ii netbase 4.18 Basic TCP/IP networking system ii samba-common 3.0.7-1 Samba common files used by both th -- debconf information: samba/nmbd_from_inetd: * samba/log_files_moved: * samba/tdbsam: false * samba/generate_smbpasswd: true * samba/run_mode: daemons --NzB8fVQJ5HfG6fxh Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="45_nopic.dpatch" #! /bin/sh -e ## 05a_nopic.dpatch by <[EMAIL PROTECTED]> ## ## All lines beginning with `## DP:' are a description of the patch. ## DP: The static version of a library must not be compiled with -fPIC. ## DP: Debian Policy Manual Section 10.2 if [ $# -lt 1 ]; then echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 exit 1 fi [ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}" case "$1" in -patch) patch -p1 ${patch_opts} < $0;; -unpatch) patch -R -p1 ${patch_opts} < $0;; *) echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 exit 1;; esac exit 0 @DPATCH@ diff -urNad /var/local/tmp/samba/samba-3.0.7-1.2/source/Makefile.in samba-3.0.7-1.2/source/Makefile.in --- /var/local/tmp/samba/samba-3.0.7-1.2/source/Makefile.in 2004-10-31 15:29:13.000000000 +0100 +++ samba-3.0.7-1.2/source/Makefile.in 2004-10-31 15:30:17.000000000 +0100 @@ -1000,9 +1000,9 @@ $(KRB5LIBS) $(LDAP_LIBS) \ @[EMAIL PROTECTED] [EMAIL PROTECTED](LIBSMBCLIENT_MAJOR) -bin/libsmbclient.a: $(LIBSMBCLIENT_PICOBJS) +bin/libsmbclient.a: $(LIBSMBCLIENT_OBJ) @echo Linking libsmbclient non-shared library $@ - @-$(AR) -rc $@ $(LIBSMBCLIENT_PICOBJS) + @-$(AR) -rc $@ $(LIBSMBCLIENT_OBJ) # This is probably wrong for anything other than the GNU linker. bin/[EMAIL PROTECTED]@: $(LIBBIGBALLOFMUD_PICOBJS) @@ -1010,7 +1010,7 @@ @$(SHLD) $(LDSHFLAGS) -o $@ $(LIBBIGBALLOFMUD_PICOBJS) $(LIBS) \ $(PASSDB_LIBS) $(IDMAP_LIBS) $(KRB5LIBS) $(LDAP_LIBS) \ @[EMAIL PROTECTED] [EMAIL PROTECTED](LIBBIGBALLOFMUD_MAJOR) - ln -snf libbigballofmud.so bin/libbigballofmud.so.0 + ln -snf [EMAIL PROTECTED]@ bin/[EMAIL PROTECTED]@.0 # It would be nice to build a static bigballofmud too, but when I try # I get linker errors about dl_open and similar things. I'm not sure if @@ -1225,9 +1225,9 @@ @$(SHLD) $(LDSHFLAGS) -o $@ $(VFS_EXPAND_MSDFS_OBJ:[EMAIL PROTECTED]@) \ @[EMAIL PROTECTED] [EMAIL PROTECTED] -bin/[EMAIL PROTECTED]@: $(VFS_AFSACL_OBJ:.o=.po) +bin/[EMAIL PROTECTED]@: $(VFS_AFSACL_OBJ:[EMAIL PROTECTED]@) @echo "Building plugin $@" - @$(SHLD) $(LDSHFLAGS) -o $@ $(VFS_AFSACL_OBJ:.o=.po) \ + @$(SHLD) $(LDSHFLAGS) -o $@ $(VFS_AFSACL_OBJ:[EMAIL PROTECTED]@) \ @[EMAIL PROTECTED] [EMAIL PROTECTED] bin/[EMAIL PROTECTED]@: $(WBINFO_OBJ) @BUILD_POPT@ bin/.dummy @@ -1244,8 +1244,8 @@ @echo "Linking shared library $@" @$(SHLD) $(LDSHFLAGS) -o $@ $(PAM_SMBPASS_PICOOBJ) -lpam $(DYNEXP) $(LIBS) -lc $(LDAP_LIBS) $(KRB5LIBS) -bin/libmsrpc.a: $(LIBMSRPC_PICOBJ) - @-$(AR) -rc $@ $(LIBMSRPC_PICOBJ) +bin/libmsrpc.a: $(LIBMSRPC_OBJ) + @-$(AR) -rc $@ $(LIBMSRPC_OBJ) bin/[EMAIL PROTECTED]@: $(TDBBACKUP_OBJ) bin/.dummy @echo Linking $@ --NzB8fVQJ5HfG6fxh-- --------------------------------------- Received: (at 279243-close) by bugs.debian.org; 8 Jun 2005 16:23:13 +0000 >From [EMAIL PROTECTED] Wed Jun 08 09:23:13 2005 Return-path: <[EMAIL PROTECTED]> Received: from newraff.debian.org [208.185.25.31] (mail) by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Dg3Kj-0003Xc-00; Wed, 08 Jun 2005 09:23:13 -0700 Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian)) id 1Dg3Fh-0001KD-00; Wed, 08 Jun 2005 12:18:01 -0400 From: Steve Langasek <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#279243: fixed in samba 3.0.14a-5 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 08 Jun 2005 12:18:01 -0400 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: Source: samba Source-Version: 3.0.14a-5 We believe that the bug you reported is fixed in the latest version of samba, which is due to be installed in the Debian FTP archive: libpam-smbpass_3.0.14a-5_i386.deb to pool/main/s/samba/libpam-smbpass_3.0.14a-5_i386.deb libsmbclient-dev_3.0.14a-5_i386.deb to pool/main/s/samba/libsmbclient-dev_3.0.14a-5_i386.deb libsmbclient_3.0.14a-5_i386.deb to pool/main/s/samba/libsmbclient_3.0.14a-5_i386.deb python2.3-samba_3.0.14a-5_i386.deb to pool/main/s/samba/python2.3-samba_3.0.14a-5_i386.deb samba-common_3.0.14a-5_i386.deb to pool/main/s/samba/samba-common_3.0.14a-5_i386.deb samba-dbg_3.0.14a-5_i386.deb to pool/main/s/samba/samba-dbg_3.0.14a-5_i386.deb samba-doc_3.0.14a-5_all.deb to pool/main/s/samba/samba-doc_3.0.14a-5_all.deb samba_3.0.14a-5.diff.gz to pool/main/s/samba/samba_3.0.14a-5.diff.gz samba_3.0.14a-5.dsc to pool/main/s/samba/samba_3.0.14a-5.dsc samba_3.0.14a-5_i386.deb to pool/main/s/samba/samba_3.0.14a-5_i386.deb smbclient_3.0.14a-5_i386.deb to pool/main/s/samba/smbclient_3.0.14a-5_i386.deb smbfs_3.0.14a-5_i386.deb to pool/main/s/samba/smbfs_3.0.14a-5_i386.deb swat_3.0.14a-5_i386.deb to pool/main/s/samba/swat_3.0.14a-5_i386.deb winbind_3.0.14a-5_i386.deb to pool/main/s/samba/winbind_3.0.14a-5_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. Steve Langasek <[EMAIL PROTECTED]> (supplier of updated samba 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.7 Date: Wed, 8 Jun 2005 05:46:52 -0700 Source: samba Binary: samba-doc libsmbclient libpam-smbpass swat winbind smbclient samba samba-common libsmbclient-dev samba-dbg python2.3-samba smbfs Architecture: source i386 all Version: 3.0.14a-5 Distribution: unstable Urgency: low Maintainer: Eloy A. Paris <[EMAIL PROTECTED]> Changed-By: Steve Langasek <[EMAIL PROTECTED]> Description: libpam-smbpass - pluggable authentication module for SMB password database libsmbclient - shared library that allows applications to talk to SMB servers libsmbclient-dev - libsmbclient static libraries and headers python2.3-samba - Python bindings that allow access to various aspects of Samba samba - a LanManager-like file and printer server for Unix samba-common - Samba common files used by both the server and the client samba-dbg - Samba debugging symbols samba-doc - Samba documentation smbclient - a LanManager-like simple client for Unix smbfs - mount and umount commands for the smbfs (for kernels >= than 2.2. swat - Samba Web Administration Tool winbind - service to resolve user and group information from Windows NT ser Closes: 279243 Changes: samba (3.0.14a-5) unstable; urgency=low . * Fix libsmbclient.a to be built as non-PIC instead of PIC. Closes: #279243. Files: 60d88e0287ccaf677d86e95038b5cbdd 1122 net optional samba_3.0.14a-5.dsc 9eb8f9612d8dce97626c907e3f9c854e 114989 net optional samba_3.0.14a-5.diff.gz dbc4d86cb57fc506194db7b8f8602860 12116746 doc optional samba-doc_3.0.14a-5_all.deb a7b94824d78f42cb738e250766d0c696 2522994 net optional samba_3.0.14a-5_i386.deb f4b358e4b2fb48ab4b11851198949163 1988638 net optional samba-common_3.0.14a-5_i386.deb fab77303009b576f398c3dad2f830396 2536658 net optional smbclient_3.0.14a-5_i386.deb 580feed681938cabebf9f0c945ba572a 4053498 net optional swat_3.0.14a-5_i386.deb dd616edc8f328ec764ebaf92a69a17d3 371386 otherosfs optional smbfs_3.0.14a-5_i386.deb f9a60f1b43929149dc22cb0651869986 347712 admin extra libpam-smbpass_3.0.14a-5_i386.deb 1dcfe825c7dc0dea4d2cd79abe93166b 550468 libs extra libsmbclient_3.0.14a-5_i386.deb 1758b1087560bcf0432b056a836875a8 60908 libdevel extra libsmbclient-dev_3.0.14a-5_i386.deb 922ab3495dfd2752ca7bc795d05764ef 1464312 net optional winbind_3.0.14a-5_i386.deb a7b131e115cf523c0ddb4b4eac93c863 4754540 python optional python2.3-samba_3.0.14a-5_i386.deb e8638434c7ef76a3f2a168538ee77919 6641590 devel optional samba-dbg_3.0.14a-5_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFCpxQaKN6ufymYLloRAgCkAKCUAn1uTOCvh/+YPr8VipEwVeLsMACfWlep xX5LwxBrne9spnu9kv/a+fQ= =m0mU -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]