Csound Csound-dev Csound-tekno Search About

[Cs-dev] how to i compile without jack?

Date2010-11-04 02:03
Frommatt ingalls
Subject[Cs-dev] how to i compile without jack?
matt$ sudo scons dynamicCsoundLibrary=1



scons: Building targets ...
/Developer/Tools/Rez -i APPL -o csound cs5.r
gcc -o libjackTransport.dylib -framework CoreMidi -framework CoreFoundation -framework CoreAudio -dynamiclib Opcodes/jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/lib -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
ld: library not found for -ljack
collect2: ld returned 1 exit status
scons: *** [libjackTransport.dylib] Error 1
scons: building terminated because of errors.


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2010-11-04 02:57
FromSteven Yi
SubjectRe: [Cs-dev] how to i compile without jack?
Hi Matt,

Try using "useJack=0", that should disable it.

steven

On Wed, Nov 3, 2010 at 10:03 PM, matt ingalls  wrote:
> matt$ sudo scons dynamicCsoundLibrary=1
>
> 
>
> scons: Building targets ...
> /Developer/Tools/Rez -i APPL -o csound cs5.r
> gcc -o libjackTransport.dylib -framework CoreMidi -framework CoreFoundation -framework CoreAudio -dynamiclib Opcodes/jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/lib -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
> ld: library not found for -ljack
> collect2: ld returned 1 exit status
> scons: *** [libjackTransport.dylib] Error 1
> scons: building terminated because of errors.
>
>
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a
> Billion" shares his insights and actions to help propel your
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2010-11-04 07:10
Frommatt ingalls
SubjectRe: [Cs-dev] how to i compile without jack?
(3rd attempt responding - assume list with think this is spam)


thanks steven, but using that makes no difference


On Nov 3, 2010, at 7:57 PM, Steven Yi wrote:

> Hi Matt,
> 
> Try using "useJack=0", that should disable it.
> 
> steven
> 
> On Wed, Nov 3, 2010 at 10:03 PM, matt ingalls  wrote:
>> matt$ sudo scons dynamicCsoundLibrary=1
>> 
>> 
>> 
>> scons: Building targets ...
>> /Developer/Tools/Rez -i APPL -o csound cs5.r
>> gcc -o libjackTransport.dylib -framework CoreMidi -framework CoreFoundation -framework CoreAudio -dynamiclib Opcodes/jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/lib -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
>> ld: library not found for -ljack
>> collect2: ld returned 1 exit status
>> scons: *** [libjackTransport.dylib] Error 1
>> scons: building terminated because of errors.
>> 
>> 
>> ------------------------------------------------------------------------------
>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>> David G. Thomson, author of the best-selling book "Blueprint to a
>> Billion" shares his insights and actions to help propel your
>> business during the next growth cycle. Listen Now!
>> http://p.sf.net/sfu/SAP-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a 
> Billion" shares his insights and actions to help propel your 
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2010-11-04 07:25
FromVictor Lazzarini
SubjectRe: [Cs-dev] how to i compile without jack?
Strange because SConstruct says (1739):

if jackFound and commonEnvironment['useJack'] == '1':
     jpluginEnvironment = pluginEnvironment.Clone()
     if getPlatform() == 'linux':
         jpluginEnvironment.Append(LIBS = ['jack', 'asound', 'pthread'])
     elif getPlatform() == 'win32':
         jpluginEnvironment.Append(LIBS = ['jackdmp'])
     elif getPlatform() == 'darwin':
         jpluginEnvironment.Append(LIBS = ['pthread'])
	jpluginEnvironment.Append(LINKFLAGS = ['-framework', 'Jackmp'])
     makePlugin(jpluginEnvironment, 'jackTransport', 'Opcodes/ 
jackTransport.c')
     makePlugin(jpluginEnvironment, 'jacko', 'Opcodes/jacko.cpp')

so if you don't have jack or did not set the option, it should not try  
to compile this.


Victor


On 4 Nov 2010, at 07:10, matt ingalls wrote:

> (3rd attempt responding - assume list with think this is spam)
>
>
> thanks steven, but using that makes no difference
>
>
> On Nov 3, 2010, at 7:57 PM, Steven Yi wrote:
>
>> Hi Matt,
>>
>> Try using "useJack=0", that should disable it.
>>
>> steven
>>
>> On Wed, Nov 3, 2010 at 10:03 PM, matt ingalls   
>> wrote:
>>> matt$ sudo scons dynamicCsoundLibrary=1
>>>
>>> 
>>>
>>> scons: Building targets ...
>>> /Developer/Tools/Rez -i APPL -o csound cs5.r
>>> gcc -o libjackTransport.dylib -framework CoreMidi -framework  
>>> CoreFoundation -framework CoreAudio -dynamiclib Opcodes/ 
>>> jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/lib  
>>> -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
>>> ld: library not found for -ljack
>>> collect2: ld returned 1 exit status
>>> scons: *** [libjackTransport.dylib] Error 1
>>> scons: building terminated because of errors.
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> The Next 800 Companies to Lead America's Growth: New Video  
>>> Whitepaper
>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>> Billion" shares his insights and actions to help propel your
>>> business during the next growth cycle. Listen Now!
>>> http://p.sf.net/sfu/SAP-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>> ------------------------------------------------------------------------------
>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>> David G. Thomson, author of the best-selling book "Blueprint to a
>> Billion" shares his insights and actions to help propel your
>> business during the next growth cycle. Listen Now!
>> http://p.sf.net/sfu/SAP-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a
> Billion" shares his insights and actions to help propel your
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2010-11-04 14:03
FromFelipe Sateler
SubjectRe: [Cs-dev] how to i compile without jack?
Clean your scons cache and db (.scon*), then try again with useJack=0

On Thu, Nov 4, 2010 at 04:25, Victor Lazzarini  wrote:
> Strange because SConstruct says (1739):
>
> if jackFound and commonEnvironment['useJack'] == '1':
>     jpluginEnvironment = pluginEnvironment.Clone()
>     if getPlatform() == 'linux':
>         jpluginEnvironment.Append(LIBS = ['jack', 'asound', 'pthread'])
>     elif getPlatform() == 'win32':
>         jpluginEnvironment.Append(LIBS = ['jackdmp'])
>     elif getPlatform() == 'darwin':
>         jpluginEnvironment.Append(LIBS = ['pthread'])
>        jpluginEnvironment.Append(LINKFLAGS = ['-framework', 'Jackmp'])
>     makePlugin(jpluginEnvironment, 'jackTransport', 'Opcodes/
> jackTransport.c')
>     makePlugin(jpluginEnvironment, 'jacko', 'Opcodes/jacko.cpp')
>
> so if you don't have jack or did not set the option, it should not try
> to compile this.
>
>
> Victor
>
>
> On 4 Nov 2010, at 07:10, matt ingalls wrote:
>
>> (3rd attempt responding - assume list with think this is spam)
>>
>>
>> thanks steven, but using that makes no difference
>>
>>
>> On Nov 3, 2010, at 7:57 PM, Steven Yi wrote:
>>
>>> Hi Matt,
>>>
>>> Try using "useJack=0", that should disable it.
>>>
>>> steven
>>>
>>> On Wed, Nov 3, 2010 at 10:03 PM, matt ingalls 
>>> wrote:
>>>> matt$ sudo scons dynamicCsoundLibrary=1
>>>>
>>>> 
>>>>
>>>> scons: Building targets ...
>>>> /Developer/Tools/Rez -i APPL -o csound cs5.r
>>>> gcc -o libjackTransport.dylib -framework CoreMidi -framework
>>>> CoreFoundation -framework CoreAudio -dynamiclib Opcodes/
>>>> jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/lib
>>>> -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
>>>> ld: library not found for -ljack
>>>> collect2: ld returned 1 exit status
>>>> scons: *** [libjackTransport.dylib] Error 1
>>>> scons: building terminated because of errors.
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> The Next 800 Companies to Lead America's Growth: New Video
>>>> Whitepaper
>>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>>> Billion" shares his insights and actions to help propel your
>>>> business during the next growth cycle. Listen Now!
>>>> http://p.sf.net/sfu/SAP-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>
>>> ------------------------------------------------------------------------------
>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>> Billion" shares his insights and actions to help propel your
>>> business during the next growth cycle. Listen Now!
>>> http://p.sf.net/sfu/SAP-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>
>>
>> ------------------------------------------------------------------------------
>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>> David G. Thomson, author of the best-selling book "Blueprint to a
>> Billion" shares his insights and actions to help propel your
>> business during the next growth cycle. Listen Now!
>> http://p.sf.net/sfu/SAP-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a
> Billion" shares his insights and actions to help propel your
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel
>



-- 

Saludos,
Felipe Sateler

------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/csound-dev

Date2010-11-04 16:52
Frommatt ingalls
SubjectRe: [Cs-dev] how to i compile without jack?
ok thanks
 -- do you mean remove all files called .scon*?

in the directory i am compiling from i see:
.sconsign.dblite
.sconf_temp (directory)

i blew both away and tried again:
sudo scons dynamicCsoundLibrary=1 useJack=0

SAME RESULTS


On Nov 4, 2010, at 7:03 AM, Felipe Sateler wrote:

> Clean your scons cache and db (.scon*), then try again with useJack=0
> 
> On Thu, Nov 4, 2010 at 04:25, Victor Lazzarini  wrote:
>> Strange because SConstruct says (1739):
>> 
>> if jackFound and commonEnvironment['useJack'] == '1':
>>     jpluginEnvironment = pluginEnvironment.Clone()
>>     if getPlatform() == 'linux':
>>         jpluginEnvironment.Append(LIBS = ['jack', 'asound', 'pthread'])
>>     elif getPlatform() == 'win32':
>>         jpluginEnvironment.Append(LIBS = ['jackdmp'])
>>     elif getPlatform() == 'darwin':
>>         jpluginEnvironment.Append(LIBS = ['pthread'])
>>        jpluginEnvironment.Append(LINKFLAGS = ['-framework', 'Jackmp'])
>>     makePlugin(jpluginEnvironment, 'jackTransport', 'Opcodes/
>> jackTransport.c')
>>     makePlugin(jpluginEnvironment, 'jacko', 'Opcodes/jacko.cpp')
>> 
>> so if you don't have jack or did not set the option, it should not try
>> to compile this.
>> 
>> 
>> Victor
>> 
>> 
>> On 4 Nov 2010, at 07:10, matt ingalls wrote:
>> 
>>> (3rd attempt responding - assume list with think this is spam)
>>> 
>>> 
>>> thanks steven, but using that makes no difference
>>> 
>>> 
>>> On Nov 3, 2010, at 7:57 PM, Steven Yi wrote:
>>> 
>>>> Hi Matt,
>>>> 
>>>> Try using "useJack=0", that should disable it.
>>>> 
>>>> steven
>>>> 
>>>> On Wed, Nov 3, 2010 at 10:03 PM, matt ingalls 
>>>> wrote:
>>>>> matt$ sudo scons dynamicCsoundLibrary=1
>>>>> 
>>>>> 
>>>>> 
>>>>> scons: Building targets ...
>>>>> /Developer/Tools/Rez -i APPL -o csound cs5.r
>>>>> gcc -o libjackTransport.dylib -framework CoreMidi -framework
>>>>> CoreFoundation -framework CoreAudio -dynamiclib Opcodes/
>>>>> jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/lib
>>>>> -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
>>>>> ld: library not found for -ljack
>>>>> collect2: ld returned 1 exit status
>>>>> scons: *** [libjackTransport.dylib] Error 1
>>>>> scons: building terminated because of errors.
>>>>> 
>>>>> 
>>>>> ------------------------------------------------------------------------------
>>>>> The Next 800 Companies to Lead America's Growth: New Video
>>>>> Whitepaper
>>>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>>>> Billion" shares his insights and actions to help propel your
>>>>> business during the next growth cycle. Listen Now!
>>>>> http://p.sf.net/sfu/SAP-dev2dev
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>> 
>>>> 
>>>> ------------------------------------------------------------------------------
>>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>>> Billion" shares his insights and actions to help propel your
>>>> business during the next growth cycle. Listen Now!
>>>> http://p.sf.net/sfu/SAP-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>> Billion" shares his insights and actions to help propel your
>>> business during the next growth cycle. Listen Now!
>>> http://p.sf.net/sfu/SAP-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
>> 
>> ------------------------------------------------------------------------------
>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>> David G. Thomson, author of the best-selling book "Blueprint to a
>> Billion" shares his insights and actions to help propel your
>> business during the next growth cycle. Listen Now!
>> http://p.sf.net/sfu/SAP-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>> 
> 
> 
> 
> -- 
> 
> Saludos,
> Felipe Sateler
> 
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a 
> Billion" shares his insights and actions to help propel your 
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net

Date2010-11-04 17:03
FromVictor Lazzarini
SubjectRe: [Cs-dev] how to i compile without jack?
Ok, you can try brute force, commenting out the lines I listed in  
SConstruct. Just to get you past this (please don't commit this to CVS).
I'm a bit tied up now so I can't have a closer look, but it does sound  
strange.

Victor
On 4 Nov 2010, at 16:52, matt ingalls wrote:

> ok thanks
> -- do you mean remove all files called .scon*?
>
> in the directory i am compiling from i see:
> .sconsign.dblite
> .sconf_temp (directory)
>
> i blew both away and tried again:
> sudo scons dynamicCsoundLibrary=1 useJack=0
>
> SAME RESULTS
>
>
> On Nov 4, 2010, at 7:03 AM, Felipe Sateler wrote:
>
>> Clean your scons cache and db (.scon*), then try again with useJack=0
>>
>> On Thu, Nov 4, 2010 at 04:25, Victor Lazzarini > > wrote:
>>> Strange because SConstruct says (1739):
>>>
>>> if jackFound and commonEnvironment['useJack'] == '1':
>>>    jpluginEnvironment = pluginEnvironment.Clone()
>>>    if getPlatform() == 'linux':
>>>        jpluginEnvironment.Append(LIBS = ['jack', 'asound',  
>>> 'pthread'])
>>>    elif getPlatform() == 'win32':
>>>        jpluginEnvironment.Append(LIBS = ['jackdmp'])
>>>    elif getPlatform() == 'darwin':
>>>        jpluginEnvironment.Append(LIBS = ['pthread'])
>>>       jpluginEnvironment.Append(LINKFLAGS = ['-framework',  
>>> 'Jackmp'])
>>>    makePlugin(jpluginEnvironment, 'jackTransport', 'Opcodes/
>>> jackTransport.c')
>>>    makePlugin(jpluginEnvironment, 'jacko', 'Opcodes/jacko.cpp')
>>>
>>> so if you don't have jack or did not set the option, it should not  
>>> try
>>> to compile this.
>>>
>>>
>>> Victor
>>>
>>>
>>> On 4 Nov 2010, at 07:10, matt ingalls wrote:
>>>
>>>> (3rd attempt responding - assume list with think this is spam)
>>>>
>>>>
>>>> thanks steven, but using that makes no difference
>>>>
>>>>
>>>> On Nov 3, 2010, at 7:57 PM, Steven Yi wrote:
>>>>
>>>>> Hi Matt,
>>>>>
>>>>> Try using "useJack=0", that should disable it.
>>>>>
>>>>> steven
>>>>>
>>>>> On Wed, Nov 3, 2010 at 10:03 PM, matt ingalls  
>>>>> 
>>>>> wrote:
>>>>>> matt$ sudo scons dynamicCsoundLibrary=1
>>>>>>
>>>>>> 
>>>>>>
>>>>>> scons: Building targets ...
>>>>>> /Developer/Tools/Rez -i APPL -o csound cs5.r
>>>>>> gcc -o libjackTransport.dylib -framework CoreMidi -framework
>>>>>> CoreFoundation -framework CoreAudio -dynamiclib Opcodes/
>>>>>> jackTransport.os -L. -L. -L/usr/local/lib -L. -L. -L/usr/local/ 
>>>>>> lib
>>>>>> -lsndfile -lpthread -lm -lsndfile -lpthread -ljack
>>>>>> ld: library not found for -ljack
>>>>>> collect2: ld returned 1 exit status
>>>>>> scons: *** [libjackTransport.dylib] Error 1
>>>>>> scons: building terminated because of errors.
>>>>>>
>>>>>>
>>>>>> ------------------------------------------------------------------------------
>>>>>> The Next 800 Companies to Lead America's Growth: New Video
>>>>>> Whitepaper
>>>>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>>>>> Billion" shares his insights and actions to help propel your
>>>>>> business during the next growth cycle. Listen Now!
>>>>>> http://p.sf.net/sfu/SAP-dev2dev
>>>>>> _______________________________________________
>>>>>> Csound-devel mailing list
>>>>>> Csound-devel@lists.sourceforge.net
>>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>>>
>>>>>
>>>>> ------------------------------------------------------------------------------
>>>>> The Next 800 Companies to Lead America's Growth: New Video  
>>>>> Whitepaper
>>>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>>>> Billion" shares his insights and actions to help propel your
>>>>> business during the next growth cycle. Listen Now!
>>>>> http://p.sf.net/sfu/SAP-dev2dev
>>>>> _______________________________________________
>>>>> Csound-devel mailing list
>>>>> Csound-devel@lists.sourceforge.net
>>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>>
>>>>
>>>> ------------------------------------------------------------------------------
>>>> The Next 800 Companies to Lead America's Growth: New Video  
>>>> Whitepaper
>>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>>> Billion" shares his insights and actions to help propel your
>>>> business during the next growth cycle. Listen Now!
>>>> http://p.sf.net/sfu/SAP-dev2dev
>>>> _______________________________________________
>>>> Csound-devel mailing list
>>>> Csound-devel@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>>
>>> ------------------------------------------------------------------------------
>>> The Next 800 Companies to Lead America's Growth: New Video  
>>> Whitepaper
>>> David G. Thomson, author of the best-selling book "Blueprint to a
>>> Billion" shares his insights and actions to help propel your
>>> business during the next growth cycle. Listen Now!
>>> http://p.sf.net/sfu/SAP-dev2dev
>>> _______________________________________________
>>> Csound-devel mailing list
>>> Csound-devel@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>>>
>>
>>
>>
>> -- 
>>
>> Saludos,
>> Felipe Sateler
>>
>> ------------------------------------------------------------------------------
>> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
>> David G. Thomson, author of the best-selling book "Blueprint to a
>> Billion" shares his insights and actions to help propel your
>> business during the next growth cycle. Listen Now!
>> http://p.sf.net/sfu/SAP-dev2dev
>> _______________________________________________
>> Csound-devel mailing list
>> Csound-devel@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/csound-devel
>
>
> ------------------------------------------------------------------------------
> The Next 800 Companies to Lead America's Growth: New Video Whitepaper
> David G. Thomson, author of the best-selling book "Blueprint to a
> Billion" shares his insights and actions to help propel your
> business during the next growth cycle. Listen Now!
> http://p.sf.net/sfu/SAP-dev2dev
> _______________________________________________
> Csound-devel mailing list
> Csound-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/csound-devel


------------------------------------------------------------------------------
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book "Blueprint to a 
Billion" shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
_______________________________________________
Csound-devel mailing list
Csound-devel@lists.sourceforge.net