Debian Bug report logs -
#147085
um-pppd: Build failure on the Hurd.
Reported by: Luis Bustamante <luferbu@debian.org>
Date: Wed, 15 May 2002 16:33:04 UTC
Severity: important
Tags: patch, sid
Merged with 164193
Found in version 0.20010804-1
Done: Martin Michlmayr <tbm@cyrius.com>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded to debian-bugs-dist@lists.debian.org, Neal H Walfield <neal@cs.uml.edu>, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to Luis Bustamante <luferbu@debian.org>:
New Bug report received and forwarded. Copy sent to Neal H Walfield <neal@cs.uml.edu>, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Package: um-pppd
Version: 0.20010804-1
Severity: normal
Package fails to build.
Trivial patch follows.
--- um-pppd-0.20010804.orig/ppp/Makefile
+++ um-pppd-0.20010804/ppp/Makefile
@@ -24,7 +24,7 @@
.endif
BINGRP= network
-CFLAGS+=-Wall
+CFLAGS+=-Werror
.if ${OS} == FreeBSD
.if exists(/usr/lib/libz.a) || exists(/usr/lib/aout/libz.a)
--- um-pppd-0.20010804.orig/ppp/cbcp.c
+++ um-pppd-0.20010804/ppp/cbcp.c
@@ -561,7 +561,7 @@
}
return CBCP_ACTION_DOWN;
}
- log_Printf(LogPHASE, "Internal CBCP error - agreed on %d ??!?\n",
+ log_Printf(LogPHASE, "Internal CBCP error - agreed on %d ?\?!?\n",
(int)cbcp->fsm.type);
return CBCP_ACTION_DOWN;
} else if (data->type == CBCP_NONUM && cbcp->fsm.type == CBCP_CLIENTNUM) {
--- um-pppd-0.20010804.orig/ppp/id.c
+++ um-pppd-0.20010804/ppp/id.c
@@ -141,15 +141,16 @@
#ifdef __GNU__
pfinet = file_name_lookup(pfinet_server, 0, 0);
if (pfinet == MACH_PORT_NULL) {
- log_Printf(LogERROR, __FUNCTION__ ": unable to connect to the pfinet "
- "server (%s): %s.\n", pfinet_server, strerror(errno));
+ log_Printf(LogERROR,
+ "%s: unable to connect to the pfinet server (%s): %s.\n",
+ __FUNCTION__, pfinet_server, strerror(errno));
goto out;
}
err = socket_create(pfinet, type, protocol, &socket);
if (err) {
- log_Printf(LogERROR, __FUNCTION__": socket_create (): %s.\n",
- strerror(err));
+ log_Printf(LogERROR, "%s: socket_create (): %s.\n", __FUNCTION__,
+ strerror(err));
goto lose_pfinet;
}
--- um-pppd-0.20010804.orig/ppp/slcompress.c
+++ um-pppd-0.20010804/ppp/slcompress.c
@@ -154,14 +154,14 @@
* the caller has already made sure the packet is IP proto TCP).
*/
if ((ip->ip_off & htons(0x3fff)) || m->m_len < 40) {
- log_Printf(LogDEBUG, "??? 1 ip_off = %x, m_len = %lu\n",
+ log_Printf(LogDEBUG, "?\?\? 1 ip_off = %x, m_len = %lu\n",
ip->ip_off, (unsigned long)m->m_len);
log_DumpBp(LogDEBUG, "", m);
return (TYPE_IP);
}
th = (struct tcphdr *) & ((int *) ip)[hlen];
if ((th->th_flags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) {
- log_Printf(LogDEBUG, "??? 2 th_flags = %x\n", th->th_flags);
+ log_Printf(LogDEBUG, "?\?\? 2 th_flags = %x\n", th->th_flags);
log_DumpBp(LogDEBUG, "", m);
return (TYPE_IP);
}
--- um-pppd-0.20010804.orig/libhack/alias_nbt.c
+++ um-pppd-0.20010804/libhack/alias_nbt.c
@@ -111,7 +111,7 @@
case CFT_ERR:
printf("\nName in conflict error.\n");
default:
- printf("\n???=%0x\n", rcode );
+ printf("\n?\?\?=%0x\n", rcode );
}
}
--
Luis Bustamante [luferbu@fluidsignal.com]
http://www.fluidsignal.com/~luferbu Fluid Signal S.A.
[Message part 2 (application/pgp-signature, inline)]
Tags added: patch
Request was from Luis Bustamante <luferbu@debian.org>
to control@bugs.debian.org.
(full text, mbox, link).
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to neal@cs.uml.edu (Neal H. Walfield):
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #12 received at submit@bugs.debian.org (full text, mbox, reply):
> Package: um-pppd
> Version: 0.20010804-1
> Severity: normal
>
> Package fails to build.
I have had no trouble building it on my setup. Could you provide more
details about yours. Mostly specifically, what version of gcc are you
using, what version of the Hurd and the errors.
As far as I can see, this patch does three things:
1) Change -Wall to -Werror.
2) Removes the use of string concatenation.
3) Avoids the inadvertent use of ANSI trigraphs.
As for (1), I have no clue why you did this. Can you please justify
this change? With respect to (2), this is completely unnecessary; I
do not understand how this breaks the build. Finally, trigraphs are
not turned on in gcc unless you explicitly enable them render (3)
useless. Since we have not done this, this will not cause problems
with a build.
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to neal@cs.uml.edu (Neal H. Walfield):
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to Luis Bustamante <luferbu@debian.org>:
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #22 received at 147085@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Hi Neal!
I'm using the debian libio images provided in /debian-staging, gcc
version 3.0.4, using debs from ftp.debian.org and alpha.debian.org. All
I have is a default install. The 'fixes' as my previous mail said, were
just trivial changes to get the package builded.
Here are the explanation for each change:
(1) As -Wall is in makefile, all warning are treated as errors, in
slcompress.c, use of pointer 'cp' in defines ENCODE, ENCODEZ, DECODEL
and others may be undefined (cp is declarated below in
sl_compress_tcp()), so build exists with error.
(2) gcc claims:
"Concatenation of string literals with __FUNCTION__ is deprecated.
This feature will be removed in feature." in id.c. Build stops here.
(3) Debian source uses -Wall by default, and build fails with error on
trigraphs (it could be switched to -Werror in debian source also to
get rid of it)
I hope it helps, I'm not a native english speaker.
Cheers,
--
Luis Bustamante
[Message part 2 (application/pgp-signature, inline)]
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to neal@cs.uml.edu (Neal H. Walfield):
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #27 received at 147085@bugs.debian.org (full text, mbox, reply):
> I'm using the debian libio images provided in /debian-staging, gcc
> version 3.0.4, using debs from ftp.debian.org and alpha.debian.org. All
> I have is a default install. The 'fixes' as my previous mail said, were
> just trivial changes to get the package builded.
But I do not see why it should fail and you have not yet shown me the
error messages that your patch allegedly fixes. Please use `script'
and then, after some pruning, send me the error messages.
> (1) As -Wall is in makefile, all warning are treated as errors,
Since when? -Werror does this.
> (2) gcc claims:
> "Concatenation of string literals with __FUNCTION__ is deprecated.
> This feature will be removed in feature." in id.c. Build stops here.
Again, this is only a warning and non-fatal on 3.0.4.
> (3) Debian source uses -Wall by default, and build fails with error on
> trigraphs (it could be switched to -Werror in debian source also to
> get rid of it)
I do not understand what you are trying to say here. What is -Werror
suppose to do?
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to Luis Bustamante <luferbu@debian.org>:
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #32 received at 147085@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Neal,
Here's a full log of the build on my system, I hope this help to clarify
things a bit:
luferbu@mobile:~/src/tmp$ uname -a
GNU mobile.fluidsignal.net 0.2 GNUmach-1.2/Hurd-0.2 i386-AT386 unknown
luferbu@mobile:~/src/tmp$ apt-get source um-pppd
Reading Package Lists... Done
Building Dependency Tree... Done
Need to get 420kB of source archives.
Get:1 ftp://ftp.debian.org unstable/main um-pppd 0.20010804-1 (dsc) [597B]
Get:2 ftp://ftp.debian.org unstable/main um-pppd 0.20010804-1 (tar) [415kB]
Get:3 ftp://ftp.debian.org unstable/main um-pppd 0.20010804-1 (diff) [3584B]
Fetched 420kB in 31s (13.3kB/s)
dpkg-source: extracting um-pppd in um-pppd-0.20010804
luferbu@mobile:~/src/tmp$ cd um-pppd-0.20010804
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ debian/rules build
test -d debian/patched || install -d debian/patched
cat: debian/patches/00list: No such file or directory
mv -f patch-stampT patch-stamp
test -e debian/control || ( echo "debian/control not found"; exit 1 )
pmake
all ===> libhack
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias.c
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias_cuseeme.c
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias_db.c
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias_ftp.c
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias_irc.c
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias_nbt.c
alias_nbt.c:114:36: trigraph ??= ignored
*** Error code 1
Stop.
*** Error code 1
Stop.
make: *** [build-stamp] Error 1
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ vi libhack/alias_nbt.c
> edited line 114 and here we go again:
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ debian/rules build
all ===> libhack
cc -O -Wall -D_BSD_SOURCE -Drandom=rand -D_PATH_UUCPLOCK=\"/var/lock/\" -Werror -DNO_FW_PUNCH -c alias_nbt.c
cc -O -Wall -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c bundle.c
> [snip]
cc -O -Wall -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c cbcp.c
cbcp.c:564:62: trigraph ??! ignored
*** Error code 1
Stop.
*** Error code 1
Stop.
make: *** [build-stamp] Error 1
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ vi ppp/cbcp.c
> removed trigraphs
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ debian/rules build
test -e debian/control || ( echo "debian/control not found"; exit 1 )
pmake
all ===> libhack
all ===> ppp
cc -O -Wall -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c cbcp.c
cc -O -Wall -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c ccp.c
> [snip]
cc -O -Wall -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c slcompress.c
cc1: warnings being treated as errors
slcompress.c: In function `sl_uncompress_tcp':
slcompress.c:507: warning: operation on `cp' may be undefined
slcompress.c:511: warning: operation on `cp' may be undefined
slcompress.c:513: warning: operation on `cp' may be undefined
slcompress.c:513: warning: operation on `cp' may be undefined
slcompress.c:513: warning: operation on `cp' may be undefined
slcompress.c:517: warning: operation on `cp' may be undefined
slcompress.c:517: warning: operation on `cp' may be undefined
slcompress.c:517: warning: operation on `cp' may be undefined
slcompress.c:522: warning: operation on `cp' may be undefined
*** Error code 1
Stop.
*** Error code 1
Stop.
make: *** [build-stamp] Error 1
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ vi ppp/Makefile
> replaced -Wall for -Werror in CFLAGS
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ debian/rules build
test -e debian/control || ( echo "debian/control not found"; exit 1 )
pmake
all ===> libhack
all ===> ppp
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c slcompress.c
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c sync.c
> [snip]
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c id.c
cc1: warnings being treated as errors
id.c: In function `ID0socket':
id.c:145: warning: concatenation of string literals with __FUNCTION__ is deprecated. This feature will be removed in future
id.c:151: warning: concatenation of string literals with __FUNCTION__ is deprecated. This feature will be removed in future
*** Error code 1
Stop.
*** Error code 1
Stop.
make: *** [build-stamp] Error 1
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ vi ppp/id.c
> removed string concatenations.
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$ debian/rules build
test -e debian/control || ( echo "debian/control not found"; exit 1 )
pmake
all ===> libhack
all ===> ppp
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c id.c
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c radius.c
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c /home/users/luferbu/src/tmp/um-pppd-0.20010804/ppp/../libhack/uucplock.c
cc -O -Werror -D_BSD_SOURCE -D_BSD_VA_LIST_=va_list -Drandom=rand -Dsrandom=srand -DHAVE_MHASH -DNOAFLINK -D_PATH_UUCPLOCK=\"/var/lock/\" -DNOMULTIADDR -DNOIF_DL -DNOARP -DNOROUTING -DNOSYSCTL -DNOKLDLOAD -DNOINET6 -DNOATM -DNOI4B -DNONETGRAPH -I. -I../libhack -Werror -c /home/users/luferbu/src/tmp/um-pppd-0.20010804/ppp/../libhack/radlib.c
cc -o ppp acf.o arp.o async.o auth.o bundle.o cbcp.o ccp.o chap.o chat.o command.o datalink.o deflate.o defs.o exec.o filter.o fsm.o hdlc.o iface.o ip.o ipcp.o iplist.o lcp.o link.o log.o lqr.o main.o mbuf.o mp.o pap.o physical.o pred.o probe.o prompt.o proto.o route.o server.o sig.o slcompress.o sync.o systems.o tcp.o tcpmss.o throughput.o timer.o tty.o tun.o udp.o vjcomp.o xgethostname.o nat_cmd.o id.o radius.o uucplock.o radlib.o -lcrypt -lutil -lbsd-compat -lmhash ../libhack/libalias.a
touch build-stamp
luferbu@mobile:~/src/tmp/um-pppd-0.20010804$
On Wed, May 15, 2002 at 04:27:31PM -0400, Neal H. Walfield wrote:
> > I'm using the debian libio images provided in /debian-staging, gcc
> > version 3.0.4, using debs from ftp.debian.org and alpha.debian.org. All
> > I have is a default install. The 'fixes' as my previous mail said, were
> > just trivial changes to get the package builded.
>
> But I do not see why it should fail and you have not yet shown me the
> error messages that your patch allegedly fixes. Please use `script'
> and then, after some pruning, send me the error messages.
>
> > (1) As -Wall is in makefile, all warning are treated as errors,
>
> Since when? -Werror does this.
>
> > (2) gcc claims:
> > "Concatenation of string literals with __FUNCTION__ is deprecated.
> > This feature will be removed in feature." in id.c. Build stops here.
>
> Again, this is only a warning and non-fatal on 3.0.4.
>
> > (3) Debian source uses -Wall by default, and build fails with error on
> > trigraphs (it could be switched to -Werror in debian source also to
> > get rid of it)
>
> I do not understand what you are trying to say here. What is -Werror
> suppose to do?
--
Luis Bustamante [luferbu@fluidsignal.com]
http://www.fluidsignal.com/~luferbu Fluid Signal S.A.
Key fingerprint = 4779 E348 A7BD BEC1 62FB 729A 6A9F 2CE5 EC70 56CC
"Something infinitely interesting"
[Message part 2 (application/pgp-signature, inline)]
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to neal@cs.uml.edu (Neal H. Walfield):
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #37 received at 147085@bugs.debian.org (full text, mbox, reply):
Luis Bustamante <luferbu@debian.org> writes:
> Neal,
> Here's a full log of the build on my system, I hope this help to clarify
> things a bit:
Yes, thank you.
> > > (1) As -Wall is in makefile, all warning are treated as errors,
> >
> > Since when? -Werror does this.
-Werror is added because the version of pmake that we uses always adds
it to the CFLAGS variable unless NOGCCERROR is defined. We do not
define NOGCCERROR in the makefiles, thus it is automatically added to
the CFLAGS variable. In other words, this part of your patch is
invalid.
> > > (2) gcc claims:
> > > "Concatenation of string literals with __FUNCTION__ is deprecated.
> > > This feature will be removed in feature." in id.c. Build stops here.
> >
> > Again, this is only a warning and non-fatal on 3.0.4.
> >
> > > (3) Debian source uses -Wall by default, and build fails with error on
> > > trigraphs (it could be switched to -Werror in debian source also to
> > > get rid of it)
> >
> > I do not understand what you are trying to say here. What is -Werror
> > suppose to do?
Your reason for (3) is wrong, however, the patch is correct. I will
apply patches (2) and (3). I will be able to do a formal release
sometime next week.
Thank you for your report.
Information forwarded to debian-bugs-dist@lists.debian.org, Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org:
Bug#147085; Package um-pppd.
(full text, mbox, link).
Acknowledgement sent to "Neal H. Walfield" <neal@walfield.org>:
Extra info received and forwarded to list. Copy sent to Gergely Nagy <algernon@debian.org>, um-pppd@packages.qa.debian.org.
(full text, mbox, link).
Message #42 received at 147085@bugs.debian.org (full text, mbox, reply):
Clearly, it has been more than a week and I have not generated a new
package. At the moment, I am involved with other projects that take a
higher priority. Until um-pppd can actually be used (and I am not
convined that anyone can consider a connection at 600 bps useful), I
will not be creating a new package. Sorry. Changes from upstream
need to be merged in and the Hurd itself is undergoing a variety of
changes that make a complete job more than ten minutes of work.
Severity set to `important'.
Request was from Robert Millan <zeratul2@wanadoo.es>
to control@bugs.debian.org.
(full text, mbox, link).
Tags added: sid
Request was from Robert Millan <zeratul2@wanadoo.es>
to control@bugs.debian.org.
(full text, mbox, link).
Reply sent to Martin Michlmayr <tbm@cyrius.com>:
You have taken responsibility.
(full text, mbox, link).
Notification sent to Luis Bustamante <luferbu@debian.org>:
Bug acknowledged by developer.
(full text, mbox, link).
Message #53 received at 147085-done@bugs.debian.org (full text, mbox, reply):
This package has been removed from Debian so these FTBFS bugs don't
apply anymore.
--
Martin Michlmayr
tbm@cyrius.com
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Wed Dec 6 06:09:42 2023;
Machine Name:
bembo
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.