From: salsaman <sal...@xs...> - 2004-09-03 18:11:38
|
OK, after running automake --add-missing: bash-2.05b$ automake --add-missing configure.ac: 8: `automake requires `AM_CONFIG_HEADER', not `AC_CONFIG_HEADER' automake: configure.ac: installing `./install-sh' automake: configure.ac: installing `./mkinstalldirs' automake: configure.ac: installing `./missing' automake: Makefile.am: installing `./INSTALL' configure.ac: 8: required file `./[config.h].in' not found So I did: cp config.h.in [config.h].in this seemed to fix that problem, now: bash-2.05b$ make cd . \ && CONFIG_FILES= CONFIG_HEADERS=[config.h] \ /bin/sh ./config.status config.status: creating [config.h] make all-recursive make[1]: Entering directory `/usr/local/pubsoft/libvisual-plugins' Making all in plugins make[2]: Entering directory `/usr/local/pubsoft/libvisual-plugins/plugins' Making all in actor make[3]: Entering directory `/usr/local/pubsoft/libvisual-plugins/plugins/actor' Making all in dna make[4]: Entering directory `/usr/local/pubsoft/libvisual-plugins/plugins/actor/dna' /bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -Wall -rdynamic -I/usr/local/include -O3 -c actor_lv_dna.c gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -Wall -rdynamic -I/usr/local/include -O3 -Wp,-MD,.deps/actor_lv_dna.pp -c actor_lv_dna.c -fPIC -DPIC -o actor_lv_dna.lo /bin/sh ../../../libtool --mode=link gcc -Wall -rdynamic -I/usr/local/include -O3 -o actor_lv_dna.la -rpath /usr/lib/libvisual/actor -module -avoid-version actor_lv_dna.lo -L. -L/usr/lib -lGL -lGLU -L/usr/local/lib -lvisual -lm -ldl mkdir .libs grep: /usr/X11R6/lib/libGL.la: No such file or directory /bin/sed: can't read /usr/X11R6/lib/libGL.la: No such file or directory libtool: link: `/usr/X11R6/lib/libGL.la' is not a valid libtool archive make[4]: *** [actor_lv_dna.la] Error 1 make[4]: Leaving directory `/usr/local/pubsoft/libvisual-plugins/plugins/actor/dna' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/usr/local/pubsoft/libvisual-plugins/plugins/actor' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/usr/local/pubsoft/libvisual-plugins/plugins' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/local/pubsoft/libvisual-plugins' make: *** [all-recursive-am] Error 2 These are the GL related libs I have: /usr/lib/libGL.so.1 /usr/lib/libGL.so.1.0.4496 /usr/lib/libGL.so /usr/lib/libGLcore.so.1 /usr/lib/libGLcore.so.1.0.4496 /usr/X11R6/lib/libGLU.so.1.3.501 /usr/X11R6/lib/libGL.so.1 /usr/X11R6/lib/libGL.so.1.2 /usr/X11R6/lib/modules/extensions/libGLcore.a /usr/X11R6/lib/libGLU.la /usr/X11R6/lib/libGLU.so /usr/X11R6/lib/libGLU.so.1 /usr/X11R6/lib/libGL.so /usr/X11R6/lib/libGLw.a Salsaman. |
From: Duilio J. P. <dp...@fc...> - 2004-09-03 22:40:00
|
Which versions of automake, autoconf and libtool are you using? You must use at least libtool 1.5.x, automake 1.7.x and autoconf 2.57. Is really strange you doesn't have libGL.la. Your distribution splits Mesa library on core and development packages? Bye, Duilio. > OK, after running automake --add-missing: > > bash-2.05b$ automake --add-missing > configure.ac: 8: `automake requires `AM_CONFIG_HEADER', not > `AC_CONFIG_HEADER' > automake: configure.ac: installing `./install-sh' > automake: configure.ac: installing `./mkinstalldirs' > automake: configure.ac: installing `./missing' > automake: Makefile.am: installing `./INSTALL' > configure.ac: 8: required file `./[config.h].in' not found > > So I did: > > cp config.h.in [config.h].in > > this seemed to fix that problem, > > now: > > bash-2.05b$ make > cd . \ > && CONFIG_FILES= CONFIG_HEADERS=[config.h] \ > /bin/sh ./config.status > config.status: creating [config.h] > make all-recursive > make[1]: Entering directory `/usr/local/pubsoft/libvisual-plugins' > Making all in plugins > make[2]: Entering directory `/usr/local/pubsoft/libvisual-plugins/plugins' > Making all in actor > make[3]: Entering directory > `/usr/local/pubsoft/libvisual-plugins/plugins/actor' > Making all in dna > make[4]: Entering directory > `/usr/local/pubsoft/libvisual-plugins/plugins/actor/dna' > /bin/sh ../../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. > -I../../.. -I../../.. -Wall -rdynamic -I/usr/local/include -O3 > -c actor_lv_dna.c > gcc -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../.. -Wall -rdynamic > -I/usr/local/include -O3 -Wp,-MD,.deps/actor_lv_dna.pp -c > actor_lv_dna.c -fPIC -DPIC -o actor_lv_dna.lo > /bin/sh ../../../libtool --mode=link gcc -Wall -rdynamic > -I/usr/local/include -O3 -o actor_lv_dna.la -rpath > /usr/lib/libvisual/actor -module -avoid-version actor_lv_dna.lo -L. > -L/usr/lib -lGL -lGLU -L/usr/local/lib -lvisual -lm -ldl > mkdir .libs > grep: /usr/X11R6/lib/libGL.la: No such file or directory > /bin/sed: can't read /usr/X11R6/lib/libGL.la: No such file or directory > libtool: link: `/usr/X11R6/lib/libGL.la' is not a valid libtool archive > make[4]: *** [actor_lv_dna.la] Error 1 > make[4]: Leaving directory > `/usr/local/pubsoft/libvisual-plugins/plugins/actor/dna' > make[3]: *** [all-recursive] Error 1 > make[3]: Leaving directory > `/usr/local/pubsoft/libvisual-plugins/plugins/actor' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory `/usr/local/pubsoft/libvisual-plugins/plugins' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/usr/local/pubsoft/libvisual-plugins' > make: *** [all-recursive-am] Error 2 > > > These are the GL related libs I have: > > /usr/lib/libGL.so.1 > /usr/lib/libGL.so.1.0.4496 > /usr/lib/libGL.so > /usr/lib/libGLcore.so.1 > /usr/lib/libGLcore.so.1.0.4496 > /usr/X11R6/lib/libGLU.so.1.3.501 > /usr/X11R6/lib/libGL.so.1 > /usr/X11R6/lib/libGL.so.1.2 > /usr/X11R6/lib/modules/extensions/libGLcore.a > /usr/X11R6/lib/libGLU.la > /usr/X11R6/lib/libGLU.so > /usr/X11R6/lib/libGLU.so.1 > /usr/X11R6/lib/libGL.so > /usr/X11R6/lib/libGLw.a > > > Salsaman. > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click > _______________________________________________ > Libvisual-devel mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libvisual-devel |
From: salsaman <sal...@xs...> - 2004-09-04 13:32:36
|
Duilio Javier Protti wrote: >Which versions of automake, autoconf and libtool are you >using? >You must use at least libtool 1.5.x, automake 1.7.x and >autoconf 2.57. > >Is really strange you doesn't have libGL.la. Your distribution >splits Mesa library on core and development packages? > > >Bye, >Duilio. > > > I have Mesa installed. I also have nvidia drivers for the graphics card. [root@ruby libvisual-plugins]# libtool --version ltmain.sh (GNU libtool) 1.4.3 (1.922.2.110 2002/10/23 01:39:54) [root@ruby libvisual-plugins]# automake --version automake (GNU automake) 1.4-p6 Copyright (C) 1999, 2001 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Tom Tromey <tr...@re...> [root@ruby libvisual-plugins]# autoconf --version autoconf (GNU Autoconf) 2.57 Written by David J. MacKenzie and Akim Demaille. Copyright 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. These are the latest versions from Mandrake 9.2 which is what I'm currently using on the LiVES development box. Salsaman. |
From: Duilio J. P. <dp...@fc...> - 2004-09-04 16:25:53
|
> [root@ruby libvisual-plugins]# automake --version > automake (GNU automake) 1.4-p6 > > Copyright (C) 1999, 2001 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. > > Written by Tom Tromey <tr...@re...> > > ... > > These are the latest versions from Mandrake 9.2 which is what I'm > currently using on the LiVES development box. > > Salsaman. Oh, your automake is too old. With the things we use, automake below 1.6 is unnaceptable, and automake 1.7 at least is heavily recommended (with Dennis we are using automake 1.8). Please update your automake or wait until the next release package, or if you want to keep going develop right now, tell me and I will send you a tarball. Regards, Duilio. |
From: salsaman <sal...@xs...> - 2004-09-04 23:48:45
|
Duilio Javier Protti wrote: >>[root@ruby libvisual-plugins]# automake --version >>automake (GNU automake) 1.4-p6 >> >>Copyright (C) 1999, 2001 Free Software Foundation, Inc. >>This is free software; see the source for copying conditions. There is NO >>warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. >> >>Written by Tom Tromey <tr...@re...> >> >>... >> >>These are the latest versions from Mandrake 9.2 which is what I'm >>currently using on the LiVES development box. >> >>Salsaman. >> >> > >Oh, your automake is too old. With the things we use, >automake below 1.6 is unnaceptable, and automake 1.7 >at least is heavily recommended (with Dennis we are >using automake 1.8). > >Please update your automake or wait until the next release >package, or if you want to keep going develop right now, >tell me and I will send you a tarball. > >Regards, >Duilio. > > > > >------------------------------------------------------- >This SF.Net email is sponsored by BEA Weblogic Workshop >FREE Java Enterprise J2EE developer tools! >Get your free copy of BEA WebLogic Workshop 8.1 today. >http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >_______________________________________________ >Libvisual-devel mailing list >Lib...@li... >https://lists.sourceforge.net/lists/listinfo/libvisual-devel > > > > Please send a tarball. Thanks, Salsaman. |
From: Duilio J. P. <dp...@fc...> - 2004-09-05 21:03:25
|
> Please send a tarball. > Thanks, > Salsaman. Dennis, please can you make a package for Salsaman? If you can, checkout the CVS first, I have commited a minor fix. I can't make the package because I have an old ALSA lib, so configure skips that input plugin and for that reason is not included on the dist target and compilation will fail. Bye, Duilio. |
From: Dennis S. <sy...@yo...> - 2004-09-06 14:54:18
|
Ai that way! I will contact salsaman regarding this on IRC. Is G-Force working cleanly (package wise) by now ? On Sun, 2004-09-05 at 18:10 -0300, Duilio Javier Protti wrote: > > Please send a tarball. > > Thanks, > > Salsaman. > > Dennis, please can you make a package for Salsaman? > If you can, checkout the CVS first, I have commited > a minor fix. > > I can't make the package because I have an old ALSA lib, > so configure skips that input plugin and for that reason > is not included on the dist target and compilation > will fail. > > > Bye, > Duilio. > |