PLEASE unsubscribe me!!!
Yours warmly Matthew Hunter ________________________________ From: Bug-mailutils <[email protected]> on behalf of [email protected] <[email protected]> Sent: Friday, 7 July 2017 4:00 a.m. To: [email protected] Subject: Bug-mailutils Digest, Vol 150, Issue 3 Send Bug-mailutils mailing list submissions to [email protected] To subscribe or unsubscribe via the World Wide Web, visit https://lists.gnu.org/mailman/listinfo/bug-mailutils Bug-mailutils -- Bug reports and feature requests ... - GNU<https://lists.gnu.org/mailman/listinfo/bug-mailutils> lists.gnu.org This list distributes, among the active developers of GNU mailutils, bug reports and feature requests for the package. This is also where the developers discuss their ... or, via email, send a message with subject or body 'help' to [email protected] You can reach the person managing the list at [email protected] When replying, please edit your Subject line so it is more specific than "Re: Contents of Bug-mailutils digest..." Today's Topics: 1. Re: how to download mailutils sources from git for next offline build (Franta Hanzl?k) 2. Re: how to download mailutils sources from git for next offline build (Franta Hanzl?k) 3. Re: how to download mailutils sources from git for next offline build (Sergey Poznyakoff) ---------------------------------------------------------------------- Message: 1 Date: Thu, 6 Jul 2017 16:54:53 +0200 From: Franta Hanzl?k <[email protected]> To: <[email protected]> Subject: Re: [bug-mailutils] how to download mailutils sources from git for next offline build Message-ID: <[email protected]> Content-Type: text/plain; charset=UTF-8 On Sat, 10 Jun 2017 14:44:07 +0200 "Pierre-Jean" <[email protected]> wrote: > Hello Franta, > > > How should I do that minimal tarbal, with ./configure for my system > > autoconf, with .po files, radius.m4 and all needed files for mailutils > > build - and withou other balast? > > I think that `make dist` should do what you want. That's a default option for > gnu automake. There's also a `make distcheck`, which constructs the tarball > and additionnaly ensure most use case works, by attempting to build the > resulted tarball in a temporary directory. You'll find the documentation on > the > automake/autotool website. > > Kind Regards, > Pierre-Jean. On Sat, 10 Jun 2017 19:08:54 +0300 Sergey Poznyakoff <[email protected]> wrote: > Franta Hanzl?k <[email protected]> ha escrit: > > > Please, what is best way for preparing mailutils package for subsequent > > build on destination machine, > > make distcheck Hello Pierre-Jean and Sergey, thanks for your advices. Again I found some time working on compiling mailutils, but results are not good: - "make dist" ends with the contents of the directory 30 MB larger than it was before. - "make distcheck" produces decent tarball (~ 2.6 MB .tar.xz) and continues with makeutils build. But after while it ends with error ... CC inc.o CC list.o CC mail.o CC mailline.o CC mailvar.o CC mbox.o CC msgset.o msgset.c:1176:5: error: two or more data types in declaration specifiers msgset.c:1176:1: warning: useless type name in empty declaration [enabled by default] msgset.c: In function ?parse?: msgset.c:1273:8: error: expected identifier or ?(? before ?=? token msgset.c:1273:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] msgset.c:1380:7: error: expected expression before ?char? msgset.c:1383:12: error: expected identifier or ?(? before ?=? token msgset.c:1383:7: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] msgset.c:1386:7: error: expected expression before ?char? msgset.c:1388:12: error: expected identifier or ?(? before ?=? token msgset.c:1393:40: error: expected expression before ?<=? token msgset.c:1420:8: error: expected identifier or ?(? before ?=? token msgset.c:1420:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] msgset.c:1750:13: error: expected expression before ?char? msgset.c:1799:11: error: expected expression before ?char? msgset.c:1802:8: error: expected expression before ?char? msgset.c:1809:9: error: expected identifier or ?(? before ?=? token msgset.c:1809:4: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] msgset.c:1907:7: error: expected expression before ?char? msgset.c:1911:40: error: expected expression before ?<=? token make[4]: *** [msgset.o] Error 1 make[4]: Leaving directory `/mnt/ARCHIV/misc_src/mailutils/mailutils-3.2.93/mailutils-3.2.93/_build/mail' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/mnt/ARCHIV/misc_src/mailutils/mailutils-3.2.93/mailutils-3.2.93/_build/mail' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/mnt/ARCHIV/misc_src/mailutils/mailutils-3.2.93/mailutils-3.2.93/_build' make[1]: *** [all] Error 2 make[1]: Leaving directory `/mnt/ARCHIV/misc_src/mailutils/mailutils-3.2.93/mailutils-3.2.93/_build' make: *** [distcheck] Error 1 I will get the same result when I take produced mailutils-3.2.93.tar.xz, unpack it and then do ./configure && make : ... CC list.o CC mail.o CC mailline.o CC mailvar.o CC mbox.o CC msgset.o msgset.c:1176:5: error: two or more data types in declaration specifiers int char; ^ msgset.c:1176:1: warning: useless type name in empty declaration [enabled by default] int char; ^ msgset.c: In function ?parse?: msgset.c:1273:8: error: expected identifier or ?(? before ?=? token char = YYEMPTY; /* Cause a token to be read. */ ^ msgset.c:1273:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] char = YYEMPTY; /* Cause a token to be read. */ ^ msgset.c:1380:7: error: expected expression before ?char? if (char == YYEMPTY) ^ msgset.c:1383:12: error: expected identifier or ?(? before ?=? token char = YYLEX; ^ msgset.c:1383:7: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] char = YYLEX; ^ msgset.c:1386:7: error: expected expression before ?char? if (char <= YYEOF) ^ msgset.c:1388:12: error: expected identifier or ?(? before ?=? token char = yytoken = YYEOF; ^ msgset.c:1393:40: error: expected expression before ?<=? token yytoken = YYTRANSLATE (char); ^ msgset.c:1420:8: error: expected identifier or ?(? before ?=? token char = YYEMPTY; ^ msgset.c:1420:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] char = YYEMPTY; ^ msgset.c:1750:13: error: expected expression before ?char? yytoken = char == YYEMPTY ? YYEMPTY : YYTRANSLATE (char); ^ msgset.c:1799:11: error: expected expression before ?char? if (char <= YYEOF) ^ msgset.c:1802:8: error: expected expression before ?char? if (char == YYEOF) ^ msgset.c:1809:9: error: expected identifier or ?(? before ?=? token char = YYEMPTY; ^ msgset.c:1809:4: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] char = YYEMPTY; ^ msgset.c:1907:7: error: expected expression before ?char? if (char != YYEMPTY) ^ msgset.c:1911:40: error: expected expression before ?<=? token yytoken = YYTRANSLATE (char); ^ make[3]: *** [msgset.o] Error 1 make[3]: Leaving directory `/mnt/ARCHIV/dist/RH/MyRPMs/tmp/mailutils-3.2.93/mail' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/mnt/ARCHIV/dist/RH/MyRPMs/tmp/mailutils-3.2.93/mail' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/mnt/ARCHIV/dist/RH/MyRPMs/tmp/mailutils-3.2.93' make: *** [all] Error 2 (I tried it with actual git version mailutils-3.2.93 ce4b84ab) Regards, Franta -- I hope the Fedora will have a better init and no binary logs ------------------------------ Message: 2 Date: Thu, 6 Jul 2017 17:39:31 +0200 From: Franta Hanzl?k <[email protected]> Cc: <[email protected]> Subject: Re: [bug-mailutils] how to download mailutils sources from git for next offline build Message-ID: <[email protected]> Content-Type: text/plain; charset=UTF-8 On Sat, 10 Jun 2017 19:08:54 +0300 Sergey Poznyakoff <[email protected]> wrote: > Franta Hanzl?k <[email protected]> ha escrit: > > > Please, what is best way for preparing mailutils package for subsequent > > build on destination machine, > > make distcheck All the necessary steps seem to me quite complicated (and this maybe also reason, why mailutils are not in my Fedora distro). It seems as: - to perform "make distcheck", I must have Makefile. - to have Makefile, I must run ./configure - to have ./configure, I must run ./bootstrap - for ./bootstrap I must have installed git, wget and maybe other toools, bootstrap downloads tons of other files, it seems it ignore '--no-git' option. I've already build some packages before, where there also was no configure, but it was very simple build it, usually it was enough to run autogen, autoconf, autoreconf or so. I'm not programmer and I do not know the details of this project, but build it seems be too hard for normal Linux user. (but maybe it applies only to build from git, I hope build from official releases (where is ./configure present) is easy also) What I want, is prepare (and build for verification of feasibility) package on my Fedora 19/i386 PC, and then compile it on my mailserver (which is Fedora 25/x86_64). Yet it seems to me to be a very distant goal ;) Regards, Franta -- I hope the Fedora will have a better init and no binary logs ------------------------------ Message: 3 Date: Thu, 06 Jul 2017 18:50:18 +0300 From: Sergey Poznyakoff <[email protected]> To: "=?us-ascii?Q?Franta_=3D=3FUTF-8=3FB=3FSGFuemzDrWs=3D=3F=3D?=" <[email protected]> Cc: <[email protected]> Subject: Re: [bug-mailutils] how to download mailutils sources from git for next offline build Message-ID: <[email protected]> Content-Type: text/plain; charset=iso-8859-1 Franta Hanzl?k <[email protected]> ha escrit: > msgset.c:1176:5: error: two or more data types in declaration specifiers > msgset.c:1176:1: warning: useless type name in empty declaration > [enabled by I will need the contents of that file to be able to tell the cause of the error. Regards, Sergey ------------------------------ Subject: Digest Footer _______________________________________________ Bug-mailutils mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-mailutils Bug-mailutils -- Bug reports and feature requests ... - GNU<https://lists.gnu.org/mailman/listinfo/bug-mailutils> lists.gnu.org This list distributes, among the active developers of GNU mailutils, bug reports and feature requests for the package. This is also where the developers discuss their ... ------------------------------ End of Bug-mailutils Digest, Vol 150, Issue 3 *********************************************
_______________________________________________ Bug-mailutils mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-mailutils
