Your message dated Tue, 27 Aug 2019 17:49:59 +0000
with message-id <e1i2fbt-000eli...@fasolo.debian.org>
and subject line Bug#925767: fixed in linux-ftpd 0.17-36.2
has caused the Debian Bug report #925767,
regarding linux-ftpd: ftbfs with GCC-9
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.)


-- 
925767: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925767
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:linux-ftpd
Version: 0.17-36.1
Severity: normal
Tags: sid bullseye
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-9

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-9/g++-9, but succeeds to build with gcc-8/g++-8. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc9-20190321/linux-ftpd_0.17-36.1_unstable_gcc9.log
The last lines of the build log are at the end of this report.

To build with GCC 9, either set CC=gcc-9 CXX=g++-9 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-9/porting_to.html

GCC 9 also passes the linker option --as-needed by default; typical
build issues are passing libraries before object files to the linker,
or underlinking of convenience libraries built from the same source.

[...]
      |   ^~~~~~~~~~
/<<PKGBUILDDIR>>/ftpd/ftpd.c: In function 'pass':
/<<PKGBUILDDIR>>/ftpd/ftpd.c:1243:14: warning: passing argument 1 of 'time' 
from incompatible pointer type [-Wincompatible-pointer-types]
 1243 |   (void)time(&utmp.ut_time);
      |              ^
      |              |
      |              int32_t * {aka int *}
In file included from /<<PKGBUILDDIR>>/ftpd/ftpd.c:88:
/usr/include/time.h:75:29: note: expected 'time_t *' {aka 'long int *'} but 
argument is of type 'int32_t *' {aka 'int *'}
   75 | extern time_t time (time_t *__timer) __THROW;
      |                     ~~~~~~~~^~~~~~~
[ 83%] Creating y.tab.c
cd /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/ftpd && yacc 
/<<PKGBUILDDIR>>/ftpd/ftpcmd.y
/<<PKGBUILDDIR>>/ftpd/ftpd.c: In function 'main':
/<<PKGBUILDDIR>>/ftpd/ftpd.c:503:9: warning: ignoring return value of 
'freopen', declared with attribute warn_unused_result [-Wunused-result]
  503 |  (void) freopen(_PATH_DEVNULL, "w", stderr);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/ftpd/ftpd.c: In function 'end_login':
/<<PKGBUILDDIR>>/ftpd/ftpd.c:929:9: warning: ignoring return value of 
'seteuid', declared with attribute warn_unused_result [-Wunused-result]
  929 |  (void) seteuid((uid_t)0);
      |         ^~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/ftpd/ftpd.c: In function 'getdatasock':
/<<PKGBUILDDIR>>/ftpd/ftpd.c:1539:9: warning: ignoring return value of 
'seteuid', declared with attribute warn_unused_result [-Wunused-result]
 1539 |  (void) seteuid((uid_t)0);
      |         ^~~~~~~~~~~~~~~~~
/<<PKGBUILDDIR>>/ftpd/ftpd.c: In function 'logxfer':
/<<PKGBUILDDIR>>/ftpd/ftpd.c:2774:3: warning: ignoring return value of 'write', 
declared with attribute warn_unused_result [-Wunused-result]
 2774 |   write(statfd, buf, strlen(buf));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[ 83%] Creating ftpcmd.c
cd /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/ftpd && /usr/bin/cmake -E rename 
y.tab.c ftpcmd.c
[ 91%] Building C object ftpd/CMakeFiles/in.ftpd.dir/ftpcmd.c.o
cd /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/ftpd && /usr/bin/cc  
-I/<<PKGBUILDDIR>>/ftpd -I/<<PKGBUILDDIR>>/ftpd/../support  -g -O2 
-fdebug-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DUSE_PAM=1 
-D_FILE_OFFSET_BITS=64 -DHASSETPROCTITLE   -o CMakeFiles/in.ftpd.dir/ftpcmd.c.o 
  -c /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/ftpd/ftpcmd.c
/<<PKGBUILDDIR>>/ftpd/ftpd.c:2755:37: warning: '__builtin___snprintf_chk' 
output may be truncated before the last format character [-Wformat-truncation=]
 2755 |   snprintf(path, sizeof path, "%s/%s", dir, name);
      |                                     ^
In file included from /usr/include/stdio.h:873,
                 from /<<PKGBUILDDIR>>/ftpd/ftpd.c:84:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:67:10: note: 
'__builtin___snprintf_chk' output 2 or more bytes (assuming 4097) into a 
destination of size 4096
   67 |   return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   68 |        __bos (__s), __fmt, __va_arg_pack ());
      |        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[100%] Linking C executable in.ftpd
cd /<<PKGBUILDDIR>>/obj-x86_64-linux-gnu/ftpd && /usr/bin/cmake -E 
cmake_link_script CMakeFiles/in.ftpd.dir/link.txt --verbose=1
/usr/bin/cc -g -O2 -fdebug-prefix-map=/<<PKGBUILDDIR>>=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time 
-D_FORTIFY_SOURCE=2 -DUSE_PAM=1 -D_FILE_OFFSET_BITS=64 -DHASSETPROCTITLE  
-Wl,-z,relro -lpam CMakeFiles/in.ftpd.dir/ftpd.c.o 
CMakeFiles/in.ftpd.dir/logutmp.c.o CMakeFiles/in.ftpd.dir/logwtmp.c.o 
CMakeFiles/in.ftpd.dir/popen.c.o CMakeFiles/in.ftpd.dir/ftpcmd.c.o  -o in.ftpd 
-lcrypt ../support/libsupport.a 
/usr/bin/ld: CMakeFiles/in.ftpd.dir/ftpd.c.o: in function `end_login':
./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:933: undefined reference to 
`pam_close_session'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:934: undefined reference 
to `pam_end'
/usr/bin/ld: CMakeFiles/in.ftpd.dir/ftpd.c.o: in function `pam_doit':
./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1036: undefined reference to 
`pam_authenticate'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1056: undefined 
reference to `pam_acct_mgmt'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1058: undefined 
reference to `pam_open_session'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1060: undefined 
reference to `pam_setcred'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1062: undefined 
reference to `pam_get_item'
/usr/bin/ld: CMakeFiles/in.ftpd.dir/ftpd.c.o: in function 
`authentication_setup':
./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1084: undefined reference to `pam_end'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1095: undefined 
reference to `pam_start'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1100: undefined 
reference to `pam_end'
/usr/bin/ld: ./obj-x86_64-linux-gnu/ftpd/./ftpd/ftpd.c:1097: undefined 
reference to `pam_set_item'
collect2: error: ld returned 1 exit status
make[3]: *** [ftpd/CMakeFiles/in.ftpd.dir/build.make:156: ftpd/in.ftpd] Error 1
make[3]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:94: ftpd/CMakeFiles/in.ftpd.dir/all] Error 2
make[2]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu'
make[1]: *** [Makefile:133: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>/obj-x86_64-linux-gnu'
dh_auto_build: cd obj-x86_64-linux-gnu && make -j4 returned exit code 2
make: *** [debian/rules:4: build-arch] Error 2
dpkg-buildpackage: error: debian/rules build-arch subprocess returned exit 
status 2

--- End Message ---
--- Begin Message ---
Source: linux-ftpd
Source-Version: 0.17-36.2

We believe that the bug you reported is fixed in the latest version of
linux-ftpd, 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 925...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gianfranco Costamagna <locutusofb...@debian.org> (supplier of updated 
linux-ftpd 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: Wed, 17 Apr 2019 17:46:44 +0200
Source: linux-ftpd
Binary: ftpd
Architecture: source
Version: 0.17-36.2
Distribution: unstable
Urgency: medium
Maintainer: Mats Erik Andersson <mats.anders...@gisladisker.se>
Changed-By: Gianfranco Costamagna <locutusofb...@debian.org>
Description:
 ftpd       - File Transfer Protocol (FTP) server
Closes: 925767
Changes:
 linux-ftpd (0.17-36.2) unstable; urgency=medium
 .
   * Non-maintainer upload
   * Tweak cmake patches to link correctly. Closes: #925767
Checksums-Sha1:
 560a1b50410d860bcd1f2813f5a348838c0f273f 1846 linux-ftpd_0.17-36.2.dsc
 3ed9e0f634647ddbe530d05f2691b06d3a9d034a 31080 
linux-ftpd_0.17-36.2.debian.tar.xz
 332bef9c0e16376d12a3417bc8d000b700115a97 8625 
linux-ftpd_0.17-36.2_source.buildinfo
Checksums-Sha256:
 7607dccbc872d6d34a45a6d074b1ee5587998f3ce9c9ca0a513a27f9af8948ff 1846 
linux-ftpd_0.17-36.2.dsc
 5429c8637aff45371173c4b6ff0b6e9314f2e28825aef6767dc8d01e3818bc9d 31080 
linux-ftpd_0.17-36.2.debian.tar.xz
 c2d42e1324addba90925017c87dd7db9132c70d190389b0091ecabaf278b06f5 8625 
linux-ftpd_0.17-36.2_source.buildinfo
Files:
 e33120ca6941d161a290064a733c6652 1846 net extra linux-ftpd_0.17-36.2.dsc
 626bf276a651a025af9b51ddb6d1c2fa 31080 net extra 
linux-ftpd_0.17-36.2.debian.tar.xz
 3ce193c303eaa6c836d5fc851a87c117 8625 net extra 
linux-ftpd_0.17-36.2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEkpeKbhleSSGCX3/w808JdE6fXdkFAl1RlcEACgkQ808JdE6f
XdkrRBAAldl3cwn1cvLOsPd1UDGQEs96I4faDlvaasmwb+zv6mcrVXDnpC+bQlQj
wQpD1qpyHQkiToSbuU8f3ui2Tot3k4CS3bkoG/rtR+2zHzP1FRJ1l7fLig2lcvyY
UcvoC+ol1YSz1VOZv1BHvXyRLaTdk8px2PRXwzjDpa1INGYDetqEUgNSQOx5xp7q
ocEBS77ZPDbtbNDcbPnAOaen5nMjtzt+0XpDZb8jmyU5DraidmOXP3vDHwFnlMvB
m3qBgtvbue5qpTemcDKm40AbsuUAxHtdwPaouM3gPFarxUB5y/YvWeMRcJ65aVgT
tegL9SYB1VfB8ZGEua11QKzaZV/QFDp8wNn+uvXeiPu/xiuQu9qL3QYEnzFj7Evu
pk17iUTG5Ui3Ml7XGhl9PKY3FK1TNuNi3Lx8HPrKvVVW/l6cDxTsBwek6QQlLs9/
7PEugoWKkM2Z38ornqnK725Hc+s6OSOKfsucxoDKEPybpq3TREupkyFeYsu7z3Ph
EgkzaSXzIsQ6JAebI6z9LYqRVhheagUHCGBByghYhxZ4LX0YDNwvHfdC60e/YwyT
u81of4IQz3qrQ7H5X8hO+JJyERfa9OIA6gnjM5sl9/YDB3Cfdbr72tnqtqzX+jZ4
tNo7XdmKQqPYtQawLzcl3U1MMeetWt/nAtPAGOddbg8iZORCEQQ=
=rbZa
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to