Thread: [Zapping-misc] Re: Bugs and thanks!
Status: Alpha
Brought to you by:
mschimek
|
From: Nate D. <na...@ks...> - 2001-10-29 13:29:54
|
On 28 Oct 2001, [ISO-8859-1] I=F1aki Garc=EDa Etxebarria wrote: > > Nearly the same problem with Enlightenment WM. But I found that this > > behaviour depends on the number of open windows and their position on > > the screen. Even if they reside on another desktop than Zapping it seem= s > > that they can cause these X exposure events or something like that if > > they are in the region of the capture window :-( > I think i've just fixed (or at least alleviated) this problem in cvs. > Could someone please give it a try? Fetched the CVS just a minute ago and tried to run autogen.sh. Got a numbe= r of errors: Please add the files codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 from the /usr/share/aclocal directory to your autoconf macro directory or directly to your aclocal.m4 file. You will also need config.guess and config.sub, which you can get from ftp://ftp.gnu.org/pub/gnu/config/. Making ./aclocal.m4 writable ... Running libtoolize... You should add the contents of `/usr/share/aclocal/libtool.m4' to `aclocal.m4'. Running aclocal -I macros ... aclocal: configure.in: 302: macro `AM_PATH_LIBGLADE' not found in library aclocal: configure.in: 308: macro `AM_GNU_GETTEXT' not found in library Running autoheader... Running automake --gnu ... automake: configure.in: installing `./install-sh' automake: configure.in: installing `./mkinstalldirs' automake: configure.in: installing `./missing' configure.in: 13: required file `./ltconfig' not found automake: Makefile.am: installing `./INSTALL' automake: Makefile.am: installing `./COPYING' macros/Makefile.am:32: INSIDE_GNOME_COMMON does not appear in AM_CONDITIONA= L src/Makefile.am:62: variable `GNOME_LIBDIR' not defined src/Makefile.am:62: variable `GNOMEUI_LIBS' not defined src/Makefile.am:62: variable `INTLLIBS' not defined src/Makefile.am:62: variable `LIBGLADE_LIBS' not defined src/Makefile.am:62: variable `PTHREAD_LIB' not defined src/Makefile.am:62: variable `GNOME_LIBDIR' not defined src/Makefile.am:62: variable `GNOMEUI_LIBS' not defined src/Makefile.am:62: variable `INTLLIBS' not defined src/Makefile.am:62: variable `LIBGLADE_LIBS' not defined src/Makefile.am:62: variable `PTHREAD_LIB' not defined Running autoconf ... Running ./configure --enable-maintainer-mode --enable-compile-warnings ... creating cache ./config.cache =2E/configure: line 534: syntax error near unexpected token `AM_INIT_AUTOMAKE(zapping,' =2E/configure: line 534: `AM_INIT_AUTOMAKE(zapping, 0.6.2cvs)' natedac@daconcepts ~/zapping$ Have Zapping's needs changed since the 0.6.1 release? Just to double check= , I fetched the 0.6.1 release, which is what I've been running, and it compiled without problems as before. --=20 _________________________ ___ ___ | na...@ks... //ZZ]__ | | C64/C128/SCPU |'/ |Z/ | | What's *YOUR* Hobby!? | \__|_\ | |_________________________\___]___| |
|
From: Michael H. S. <msc...@us...> - 2001-10-29 21:32:32
|
Nate Dannenberg wrote: > > Please add the files > codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 > progtest.m4 > from the /usr/share/aclocal directory to your autoconf macro directory > or directly to your aclocal.m4 file. > You will also need config.guess and config.sub, which you can get from > ftp://ftp.gnu.org/pub/gnu/config/. > > Making ./aclocal.m4 writable ... > Running libtoolize... > You should add the contents of `/usr/share/aclocal/libtool.m4' to > `aclocal.m4'. I think these warnings are bogus. > Running aclocal -I macros ... > aclocal: configure.in: 302: macro `AM_PATH_LIBGLADE' not found in library > aclocal: configure.in: 308: macro `AM_GNU_GETTEXT' not found in library Humble observation: The errors reported by Dirk Vornheder in thread "[Zapping-misc] autogen.sh doesn't work", Oct 15, show a similar pattern but I don't agree the autoconf suggestion, aclocal is part of the automake package. The aclocal I use, from automake 1.4, on a heavily patched SuSE 6.2, is configured w/prefix /usr. aclocal --verbose lists: Found macro AM_GNU_GETTEXT in /usr/share/aclocal/gettext.m4: 295 Found macro AM_PROG_LIBTOOL in /usr/share/aclocal/libtool.m4: 421 Found macro AM_PATH_LIBGLADE in /usr/share/aclocal/libglade.m4: 7 Found macro AM_INIT_AUTOMAKE in /usr/share/aclocal/init.m4: 10 I compared the aclocal script from automake 1.5, GNU .tgz, which seems to differ mainly in scanning -I macros first. The prefix defaults to /usr/local, so it scans /usr/share/aclocal for the files above, to no avail on my system. Except for > automake: src/Makefile.am: Assembler source seen but `AS' not defined > in `configure.in' > automake: src/Makefile.am: Assembler source seen but `ASFLAGS' not > defined in `configure.in' which are probably checks introduced in automake 1.5 and can be ignored, no more errors were reported after creating symlinks as a temporary fix. I have no explanation how autogen.sh should work for 0.6.1 in the same environment, but it's possible the Zapping packages being are already automake/conf'ed compile just fine despite disagreement over the correct aclocal path. Michael |
|
From: Michael H. S. <msc...@us...> - 2001-10-30 11:51:43
|
I wrote: > which are probably checks introduced in automake 1.5 and can be ignored, Correction: automake 1.5 requires --- zapping/configure.in Tue Oct 30 12:03:21 2001 +++ zapping/configure.in Tue Oct 30 12:04:07 2001 @@ -51,6 +51,7 @@ AC_ISC_POSIX AC_PROG_CC AM_PROG_CC_STDC +AM_PROG_AS AC_HEADER_STDC AC_CHECK_FUNCS(stpcpy) to compile (likewise in zapping/rte/configure.in and zapping/rte/mp1e/configure.in), but this macro isn't shipped with 1.4, will see if there's a work-around before I add to CVS. Michael |
|
From: E. <ga...@eu...> - 2001-10-30 20:29:05
|
> > Running aclocal -I macros ... > > aclocal: configure.in: 302: macro `AM_PATH_LIBGLADE' not found in libra= ry > > aclocal: configure.in: 308: macro `AM_GNU_GETTEXT' not found in library Does copying libglade.m4 to the macros subdir fix anything? (mail me privately if it isn't in your system, should come with libglade-devel). >=20 > Humble observation: The errors reported by Dirk Vornheder in thread > "[Zapping-misc] autogen.sh doesn't work", Oct 15, show a similar pattern > but I don't agree the autoconf suggestion, aclocal is part of the > automake package. Yep, you are right, sorry for the misleading tip. Actually, what I said in that mail should read: "I've no clue, but looks like auto* is involved, so I'm scared" ;-) I know how to *use* auto[conf|make], but when it comes to understanding their subtleties, i'm lost. I=F1aki |
|
From: Nate D. <na...@ks...> - 2001-11-01 05:10:04
|
On Mon, 29 Oct 2001, Michael H. Schimek wrote: > Nate Dannenberg wrote: > > [Snip compiling errors] In the process of having a major brain fart (which entailed re-installing Slackware-8), I also managed to get Zapping CVS to compile, with the default automake/autoconf/etc/etc files, so all of the previous errors are history. Thanks guys! -- _________________________ ___ ___ | na...@ks... //ZZ]__ | | C64/C128/SCPU |'/ |Z/ | | What's *YOUR* Hobby!? | \__|_\ | |_________________________\___]___| |