Just to make sure that there is not a misunderstanding. The 2.13.1-rc1 (stable/v2.13 branch) is **maintenance** release. It means real bug fixes only. All development is happen in 2.14 (master branch). For more details read README.devel and README... On Fri, Nov 16, 2007 at 11:45:14AM +0100, Peter Breitenlohner wrote: > Attached is a small patch to avoid various gcc warnings This problem was fixed (by AC_GNU_SOURCE) in master branch 2 months ago. I'll backport the patch to 2.13.1. > static void > -my_setupterm(const char *term, int fildes, int *errret) { > +my_setupterm(char *term, int fildes, int *errret) { > setupterm(term, fildes, errret); > } > > @@ -201,7 +201,7 @@ > } > > static char * > -my_tgoto(const char *cap, int col, int row) { > +my_tgoto(char *cap, int col, int row) { > return tparm(cap, col, row); > } Already fixed in the master branch by: commit 0fa7180bcd256667ff5b45c681c2694400999111 Author: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Date: Mon Oct 15 17:38:22 2007 -0700 I don't think that we need to fix this kind of problems in the stable branch. Karel -- Karel Zak <kzak@xxxxxxxxxx> - To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html