Re: [pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-25 Thread Tanu Kaskinen
On Wed, 2017-10-25 at 10:40 +0530, namit...@codeaurora.org wrote: > On 2017-10-24 18:38, Tanu Kaskinen wrote: > > On Tue, 2017-10-24 at 16:05 +0300, Tanu Kaskinen wrote: > > > On Mon, 2017-10-23 at 13:58 +0530, namit...@codeaurora.org wrote: > > > > How will i Compile my module? #include will still

Re: [pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-24 Thread namittal
On 2017-10-24 18:38, Tanu Kaskinen wrote: On Tue, 2017-10-24 at 16:05 +0300, Tanu Kaskinen wrote: On Mon, 2017-10-23 at 13:58 +0530, namit...@codeaurora.org wrote: > On 2017-10-20 18:37, Alexander E. Patrakov wrote: > > 2017-10-17 16:03 GMT+05:00 : > > > I using ubuntu 14.04 and pulseaudio 4.0.

Re: [pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-24 Thread Tanu Kaskinen
On Tue, 2017-10-24 at 16:05 +0300, Tanu Kaskinen wrote: > On Mon, 2017-10-23 at 13:58 +0530, namit...@codeaurora.org wrote: > > On 2017-10-20 18:37, Alexander E. Patrakov wrote: > > > 2017-10-17 16:03 GMT+05:00 : > > > > I using ubuntu 14.04 and pulseaudio 4.0. I am compiling very simple > > > >

Re: [pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-24 Thread Tanu Kaskinen
On Mon, 2017-10-23 at 13:58 +0530, namit...@codeaurora.org wrote: > On 2017-10-20 18:37, Alexander E. Patrakov wrote: > > 2017-10-17 16:03 GMT+05:00 : > > > I using ubuntu 14.04 and pulseaudio 4.0. I am compiling very simple > > > test > > > module, module-test.c > > > > > > #include > > > > >

Re: [pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-23 Thread namittal
On 2017-10-20 18:37, Alexander E. Patrakov wrote: 2017-10-17 16:03 GMT+05:00 : I using ubuntu 14.04 and pulseaudio 4.0. I am compiling very simple test module, module-test.c #include int pa__init(pa_module* m){ return 0; } when i try to compile it using gcc -g -shared -o module-test.so

Re: [pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-20 Thread Alexander E. Patrakov
2017-10-17 16:03 GMT+05:00 : > I using ubuntu 14.04 and pulseaudio 4.0. I am compiling very simple test > module, module-test.c > > #include > > int pa__init(pa_module* m){ > return 0; > } > > when i try to compile it using > > gcc -g -shared -o module-test.so module-test.c > > i get this error

[pulseaudio-discuss] How to setup developer environment to develop pulseaudio modules?

2017-10-17 Thread namittal
I using ubuntu 14.04 and pulseaudio 4.0. I am compiling very simple test module, module-test.c #include int pa__init(pa_module* m){ return 0; } when i try to compile it using gcc -g -shared -o module-test.so module-test.c i get this error module-test.c:1:30: fatal error: pulsecore/module