| Hi Michael,
I spent the past hour or so trying to figure out what's going wrong with
the Makefile.am. I've checked in two changes which should fix the
warning:
`_CsoundVST.la' is not a standard libtool library name
and:
linker flags such as `-mwindows' belong in
`CsoundVST_LDFLAGS
The other errors I'm not sure what to do. It took me a while to read
and reread to figure out that the messages:
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'
Simply boils down to there being duplicates of these source files, i.e.
pvlook.c is in util2/pvlook.dir and Top. I'm guessing that these are
what are causing automake to fail. I'm not sure what file is supposed
to be in what directory, so will defer this task to someone more
knowledgeable about these files.
steven
On Wed, 2004-03-10 at 16:24, Michael Gogins wrote:
> These things are a modules to dlopen at run time, not libraries to link at
> compile time. According to documentation, I should be able to turn off this
> warning with -module but it doesn't seen to work. This Makefile.am was
> working before with these warnings.
>
> ============================================
> Michael Gogins
> gogins at pipeline period com
> Irreducible Productions
> CsoundVST, an extended version of Csound for programming music and sound
> Available at http://sourceforge.net/projects/csound/
> ============================================
>
>
> ----- Original Message -----
> From: "John D. Ramsdell"
> To: "Csound Developers Discussion List"
> Sent: Wednesday, March 10, 2004 6:16 PM
> 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
> >
>
> |