Csound Csound-dev Csound-tekno Search About

[CSOUND-DEV:4267] RE: Csoudn5 yet again

Date2004-03-10 14:58
From"gogins@pipeline.com"
Subject[CSOUND-DEV:4267] RE: Csoudn5 yet again
I am having the same problem, and I'm trying to fix it. And I'm sure I can
fix it. 

But I am getting fed up with autotools, and I'm looking at alternative
cross-platform build systems. I'm looking at boost jam, CMake, and SCons. I
am going to experiment with SCons first, because it promises to work on Mac
OS X, Linux, and Windows, and on Windows to use MSVC++ 7.1 which can be
downloaded for free. However it uses Python. Are you willing to contemplate
a build system that depends on Python? Python most definitely runs and
installs on all Linuxes, most Unixes, Windows, and Macs.

Original Message:
-----------------
From: John jpff@codemist.co.uk
Date: Wed, 10 Mar 2004 12:24:40 +0000
To: csound-dev@eartha.mills.edu
Subject: [CSOUND-DEV:4266] Csoudn5 yet again


cage:~/Sourceforge/csound5> autoreconf -i -f
Makefile.am:84: `_CsoundVST.la' is not a standard libtool library name
automake: _CsoundVST_la_DEPENDENCIES was already defined in condition
CONDITIONAL_ENABLE_CSOUNDVST and !CONDITIONAL_IS_WIN32 and
CONDITIONAL_USE_FLTK and CONDITIONAL_USE_PYTHON and CONDITIONAL_USE_SWIG,
which is included in condition TRUE ...
Makefile.am:1180: ... `_CsoundVST_la_DEPENDENCIES' previously defined here
Makefile.am: object `libcsound_la-ugens6.lo' created by `Opcodes/ugens6.c'
and `OOps/ugens6.c'
Makefile.am: object `libcsound_la-ugens7.lo' created by `Opcodes/ugens7.c'
and `OOps/ugens7.c'
Makefile.am: object `libcsound_la-ugens9.lo' created by `Opcodes/ugens9.c'
and `OOps/ugens9.c'
Makefile.am: object `libcsound_la-sdif.lo' created by `SDIF/sdif.c' and
`OOps/sdif.c'
Makefile.am: object `libcsound_la-sdif-mem.lo' created by `SDIF/sdif-mem.c'
and `OOps/sdif-mem.c'
Makefile.am: object `libcsound_la-csound_main.lo' created by
`Top/csound_main.c' and `frontends/csound/csound_main.c'
Makefile.am: object `libcsound_la-cscore.lo' created by
`util1/cscore/cscore.c' and `Top/cscore.c'
Makefile.am: object `libcsound_la-extract.lo' created by
`util2/mixer/extract.c' and `Engine/extract.c'
Makefile.am: object `libcsound_la-pvl_main.lo' created by
`util2/pvlook.dir/pvl_main.c' and `Top/pvl_main.c'
Makefile.am: object `libcsound_la-pvlook.lo' created by
`util2/pvlook.dir/pvlook.c' and `Top/pvlook.c'
Makefile.am:1196: linker flags such as `-mwindows' belong in
`CsoundVST_LDFLAGS
automake: CsoundVST_DEPENDENCIES was already defined in condition
CONDITIONAL_ENABLE_CSOUNDVST and !CONDITIONAL_IS_WIN32 and
CONDITIONAL_USE_FLTK and CONDITIONAL_USE_PYTHON and CONDITIONAL_USE_SWIG,
which is included in condition TRUE ...
Makefile.am:1191: ... `CsoundVST_DEPENDENCIES' previously defined here
autoreconf: automake failed with exit status: 1


So something is still wrong

==John

this is RH7.3, main system


--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .

Date2004-03-10 23:07
FromAnthony Kozar
Subject[CSOUND-DEV:4269] RE: Csoudn5 yet again
I have downloaded and taken a brief look at SCons before.  I am actually
planning to adapt it to work on Mac OS 9 and use it as a core component in a
new MacOS front-end for Csound.  SCons would be used to automate dependency
analysis and "build" complicated Csound projects that involve multiple steps
(utility analyses, score generation, score processing, and/or multiple calls
to Csound).

So, I am fine with SCons.  I can probably even use it to build Csound on
MacOS 9.

Anthony Kozar
anthony.kozar@utoledo.edu


On 3/10/04 9:58 AM, gogins@pipeline.com etched in
stone:

> But I am getting fed up with autotools, and I'm looking at alternative
> cross-platform build systems. I'm looking at boost jam, CMake, and SCons. I
> am going to experiment with SCons first, because it promises to work on Mac
> OS X, Linux, and Windows, and on Windows to use MSVC++ 7.1 which can be
> downloaded for free. However it uses Python. Are you willing to contemplate
> a build system that depends on Python? Python most definitely runs and
> installs on all Linuxes, most Unixes, Windows, and Macs.

Date2004-03-10 23:16
Fromramsdell@mitre.org (John D. Ramsdell)
Subject[CSOUND-DEV:4271] RE: Csoudn5 yet again
"gogins@pipeline.com"  writes:

> I am having the same problem, and I'm trying to fix it. And I'm sure I can
> fix it. 
> Original Message:
> -----------------
> From: John jpff@codemist.co.uk
....
> cage:~/Sourceforge/csound5> autoreconf -i -f
> Makefile.am:84: `_CsoundVST.la' is not a standard libtool library
> name

Library names have to begin with the three characters "lib".  Both 
libtool and automake get very confused if this rule is violated.

John