Csound Csound-dev Csound-tekno Search About

[Cs-dev] Build error...

Date2006-10-26 02:54
FromKen
Subject[Cs-dev] Build error...
I'm getting a weird build error on the latest cvs.  Any hints?

CONFIGURATION DECISION: Building FLTK GUI frontend.
CONFIGURATION DECISION: Building CsoundVST plugin and standalone.
PATH = 
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games:/home/nunativs/code/bin
NameError: name 'csoundInterfaces' is not defined:
  File "SConstruct", line 1662:
    Depends(csoundvst, csoundInterfaces)
nunativs@taosun:~/sound/csound/source/csound5$   


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2006-10-26 05:03
FromDavid Akbari
SubjectRe: [Cs-dev] Build error...
It seems that the SConstruct was changed from using a simple integer to  
'def_intfc' variable. Since I don't use MSVC I've been having sporadic  
problems now and then related to this same problem. As a general  
workaround

- Change -

if not withMSVC:
    def_intfc = '1'
else:
    def_intfc = '0'
opts.Add('buildInterfaces',
     "Build interface library for Python, JAVA, Lua, C++, and other  
languages.", def_intfc)


- to -

opts.Add('buildInterfaces',
     "Build interface library for Python, JAVA, Lua, C++, and other  
languages.", '1')



-David

On Oct 25, 2006, at 8:54 PM, Ken wrote:

> I'm getting a weird build error on the latest cvs.  Any hints?
>
> CONFIGURATION DECISION: Building FLTK GUI frontend.
> CONFIGURATION DECISION: Building CsoundVST plugin and standalone.
> PATH =
> /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/ 
> X11:/usr/games:/home/nunativs/code/bin
> NameError: name 'csoundInterfaces' is not defined:
>   File "SConstruct", line 1662:
>     Depends(csoundvst, csoundInterfaces)
> nunativs@taosun:~/sound/csound/source/csound5$


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2006-10-26 05:16
FromKen
SubjectRe: [Cs-dev] Build error...
Thanks for the help David, unfortunately the same error.  This si the 
first time this has happened to me.
k

David Akbari wrote:
> It seems that the SConstruct was changed from using a simple integer to  
> 'def_intfc' variable. Since I don't use MSVC I've been having sporadic  
> problems now and then related to this same problem. As a general  
> workaround
>
> - Change -
>
> if not withMSVC:
>     def_intfc = '1'
> else:
>     def_intfc = '0'
> opts.Add('buildInterfaces',
>      "Build interface library for Python, JAVA, Lua, C++, and other  
> languages.", def_intfc)
>
>
> - to -
>
> opts.Add('buildInterfaces',
>      "Build interface library for Python, JAVA, Lua, C++, and other  
> languages.", '1')
>
>
>
> -David
>
> On Oct 25, 2006, at 8:54 PM, Ken wrote:
>
>   
>> I'm getting a weird build error on the latest cvs.  Any hints?
>>
>> CONFIGURATION DECISION: Building FLTK GUI frontend.
>> CONFIGURATION DECISION: Building CsoundVST plugin and standalone.
>> PATH =
>> /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/ 
>> X11:/usr/games:/home/nunativs/code/bin
>> NameError: name 'csoundInterfaces' is not defined:
>>   File "SConstruct", line 1662:
>>     Depends(csoundvst, csoundInterfaces)
>> nunativs@taosun:~/sound/csound/source/csound5$
>>     
>
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>   


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2006-10-26 07:28
From"Steven Yi"
SubjectRe: [Cs-dev] Build error...
AttachmentsNone  

Date2006-10-26 09:41
FromVictor Lazzarini
SubjectRe: [Cs-dev] Build error...
AFAIK, I am the only developers using MSVC and I did not change
anything, so this change has nothing to do with MSVC. It can
be reverted, better if by the person who made the change.

BTW, in the last three days I built Csound on all platforms, without
any problems. So I am not sure what the problem is.

Victor

At 05:03 26/10/2006, you wrote:
>It seems that the SConstruct was changed from using a simple integer to
>'def_intfc' variable. Since I don't use MSVC I've been having sporadic
>problems now and then related to this same problem. As a general
>workaround
>
>- Change -
>
>if not withMSVC:
>     def_intfc = '1'
>else:
>     def_intfc = '0'
>opts.Add('buildInterfaces',
>      "Build interface library for Python, JAVA, Lua, C++, and other
>languages.", def_intfc)
>
>
>- to -
>
>opts.Add('buildInterfaces',
>      "Build interface library for Python, JAVA, Lua, C++, and other
>languages.", '1')
>
>
>
>-David
>
>On Oct 25, 2006, at 8:54 PM, Ken wrote:
>
> > I'm getting a weird build error on the latest cvs.  Any hints?
> >
> > CONFIGURATION DECISION: Building FLTK GUI frontend.
> > CONFIGURATION DECISION: Building CsoundVST plugin and standalone.
> > PATH =
> > /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/
> > X11:/usr/games:/home/nunativs/code/bin
> > NameError: name 'csoundInterfaces' is not defined:
> >   File "SConstruct", line 1662:
> >     Depends(csoundvst, csoundInterfaces)
> > nunativs@taosun:~/sound/csound/source/csound5$
>
>
>-------------------------------------------------------------------------
>Using Tomcat but need to do more? Need to support web services, security?
>Get stuff done quickly with pre-integrated technology to make your job easier
>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>_______________________________________________
>Csound-devel mailing list
>Csound-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/csound-devel

Victor Lazzarini
Music Technology Laboratory
Music Department
National University of Ireland, Maynooth 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2006-10-26 15:14
FromKen
SubjectRe: [Cs-dev] Build error...
Thats what it was Steven.  I guess thats my error, yes?  I didn't know 
you would have conflicts choosing those options like that.
K

Steven Yi wrote:
> Hi Ken,
>
> I'm not on my normal computer and am looking at the CVS web version of
> SConstruct.  I'm guessing that you set buildInterfaces=0 but set
> buildCsoundVST=1?   From just perusing and not being able to try it
> here, that seems to be the problem.  If that is the problem, we need
> to change the build file to handle what to do in this case.
>
> steven
>
>
> On 10/26/06, Ken  wrote:
>   
>> Thanks for the help David, unfortunately the same error.  This si the
>> first time this has happened to me.
>> k
>>
>> David Akbari wrote:
>>     
>>> It seems that the SConstruct was changed from using a simple integer to
>>> 'def_intfc' variable. Since I don't use MSVC I've been having sporadic
>>> problems now and then related to this same problem. As a general
>>> workaround
>>>
>>> - Change -
>>>
>>> if not withMSVC:
>>>     def_intfc = '1'
>>> else:
>>>     def_intfc = '0'
>>> opts.Add('buildInterfaces',
>>>      "Build interface library for Python, JAVA, Lua, C++, and other
>>> languages.", def_intfc)
>>>
>>>
>>> - to -
>>>
>>> opts.Add('buildInterfaces',
>>>      "Build interface library for Python, JAVA, Lua, C++, and other
>>> languages.", '1')
>>>
>>>
>>>
>>> -David
>>>
>>> On Oct 25, 2006, at 8:54 PM, Ken wrote:
>>>
>>>
>>>       
>>>> I'm getting a weird build error on the latest cvs.  Any hints?
>>>>
>>>> CONFIGURATION DECISION: Building FLTK GUI frontend.
>>>> CONFIGURATION DECISION: Building CsoundVST plugin and standalone.
>>>> PATH =
>>>> /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/
>>>> X11:/usr/games:/home/nunativs/code/bin
>>>> NameError: name 'csoundInterfaces' is not defined:
>>>>   File "SConstruct", line 1662:
>>>>     Depends(csoundvst, csoundInterfaces)
>>>> nunativs@taosun:~/sound/csound/source/csound5$
>>>>
>>>>         
>>> -------------------------------------------------------------------------
>>> Using Tomcat but need to do more? Need to support web services, security?
>>> Get stuff done quickly with pre-integrated technology to make your job easier
>>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>>       
>> -------------------------------------------------------------------------
>> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>     
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>   


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2006-10-26 15:24
FromVictor Lazzarini
SubjectRe: [Cs-dev] Build error...
I also didn't know that; better if someone fixed it. Would Mike Gogins
be able to do that, since CsoundVST is his code?

At 15:14 26/10/2006, you wrote:
>Thats what it was Steven.  I guess thats my error, yes?  I didn't know
>you would have conflicts choosing those options like that.
>K
>
>Steven Yi wrote:
> > Hi Ken,
> >
> > I'm not on my normal computer and am looking at the CVS web version of
> > SConstruct.  I'm guessing that you set buildInterfaces=0 but set
> > buildCsoundVST=1?   From just perusing and not being able to try it
> > here, that seems to be the problem.  If that is the problem, we need
> > to change the build file to handle what to do in this case.
> >
> > steven
> >
> >
> > On 10/26/06, Ken  wrote:
> >
> >> Thanks for the help David, unfortunately the same error.  This si the
> >> first time this has happened to me.
> >> k
> >>
> >> David Akbari wrote:
> >>
> >>> It seems that the SConstruct was changed from using a simple integer to
> >>> 'def_intfc' variable. Since I don't use MSVC I've been having sporadic
> >>> problems now and then related to this same problem. As a general
> >>> workaround
> >>>
> >>> - Change -
> >>>
> >>> if not withMSVC:
> >>>     def_intfc = '1'
> >>> else:
> >>>     def_intfc = '0'
> >>> opts.Add('buildInterfaces',
> >>>      "Build interface library for Python, JAVA, Lua, C++, and other
> >>> languages.", def_intfc)
> >>>
> >>>
> >>> - to -
> >>>
> >>> opts.Add('buildInterfaces',
> >>>      "Build interface library for Python, JAVA, Lua, C++, and other
> >>> languages.", '1')
> >>>
> >>>
> >>>
> >>> -David
> >>>
> >>> On Oct 25, 2006, at 8:54 PM, Ken wrote:
> >>>
> >>>
> >>>
> >>>> I'm getting a weird build error on the latest cvs.  Any hints?
> >>>>
> >>>> CONFIGURATION DECISION: Building FLTK GUI frontend.
> >>>> CONFIGURATION DECISION: Building CsoundVST plugin and standalone.
> >>>> PATH =
> >>>> /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/
> >>>> X11:/usr/games:/home/nunativs/code/bin
> >>>> NameError: name 'csoundInterfaces' is not defined:
> >>>>   File "SConstruct", line 1662:
> >>>>     Depends(csoundvst, csoundInterfaces)
> >>>> nunativs@taosun:~/sound/csound/source/csound5$
> >>>>
> >>>>
> >>> -------------------------------------------------------------------------
> >>> Using Tomcat but need to do more? Need to support web services, security?
> >>> Get stuff done quickly with pre-integrated technology to make your 
> job easier
> >>> Download IBM WebSphere Application Server v.1.0.1 based on Apache 
> Geronimo
> >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >>> _______________________________________________
> >>> Csound-devel mailing list
> >>> Csound-devel@lists.sourceforge.net
> >>> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>>
> >>>
> >>>
> >> -------------------------------------------------------------------------
> >> Using Tomcat but need to do more? Need to support web services, security?
> >> Get stuff done quickly with pre-integrated technology to make your job 
> easier
> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >> _______________________________________________
> >> Csound-devel mailing list
> >> Csound-devel@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/csound-devel
> >>
> >>
> >
> > -------------------------------------------------------------------------
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job 
> easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > _______________________________________________
> > Csound-devel mailing list
> > Csound-devel@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/csound-devel
> >
> >
>
>
>-------------------------------------------------------------------------
>Using Tomcat but need to do more? Need to support web services, security?
>Get stuff done quickly with pre-integrated technology to make your job easier
>Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>_______________________________________________
>Csound-devel mailing list
>Csound-devel@lists.sourceforge.net
>https://lists.sourceforge.net/lists/listinfo/csound-devel

Victor Lazzarini
Music Technology Laboratory
Music Department
National University of Ireland, Maynooth 


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net