sox-devel@lists.sourceforge.net unofficial mirror
 help / color / mirror / code / Atom feed
* SoX's master branch currently FTBFS
@ 2015-02-27  4:34 Pascal Giard
  2015-02-27  5:11 ` Chris Bagwell
  0 siblings, 1 reply; 9+ messages in thread
From: Pascal Giard @ 2015-02-27  4:34 UTC (permalink / raw)
  To: sox developers list

Wanting to test the timestamp removal pushing committing the changes,
I first tried to build the master branch.

However, it fails with the following:
$ /bin/sh ../libtool --silent  --tag=CC  --silent --mode=link gcc
-Wtraditional-conversion  -g -O2 -fstack-protector -Wall -W
-Wmissing-prototypes -Wstrict-prototypes -pedantic -fopenmp
-avoid-version -module -Wl,-z,defs -o libsox_fmt_flac.la -rpath
/usr/local/lib/sox flac.lo libsox.la -lFLAC  -lvorbisenc -lvorbisfile
-lvorbis  -logg -lm
.libs/flac.o: In function `decoder_read_callback':
/some/path/sox/src/flac.c:63: undefined reference to `lsx_error'

Same occurs for libsox_fmt_mp3.la.

A quick glance at the changes introduced in configure.ac recently-ish
does not being anything obvious to me. Before I try to further
investigate what's happening, do you guys have an idea? How come it's
only showing up now and in master. The debian branch compiles fine.

-Pascal
-- 
Homepage (http://organact.mine.nu)
Debian GNU/Linux (http://www.debian.org)
COMunité/LACIME: École de technologie supérieure (http://www.comunite.ca)
ISIP Laboratory: McGill (http://www.isip.ece.mcgill.ca)

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2015-02-27  4:34 SoX's master branch currently FTBFS Pascal Giard
@ 2015-02-27  5:11 ` Chris Bagwell
  2015-02-27 15:02   ` Pascal Giard
  0 siblings, 1 reply; 9+ messages in thread
From: Chris Bagwell @ 2015-02-27  5:11 UTC (permalink / raw)
  To: sox-devel


[-- Attachment #1.1: Type: text/plain, Size: 2419 bytes --]

Nothing jumps out at me other to to verify you reran autoreconf since I
notice you've shown verbose output and now you have to go out of your way
with 'make V=1' to see that libtool line.

lsx_error is referenced by that flac.lo and symbol should be in libsox.la
(from format_i.o) that is listed right after it... so sounds like a badly
generated libsox.

The only new compiler option I recall is that -fstack-protector but that
should affect symbols references.

Chris

On Thu, Feb 26, 2015 at 10:34 PM, Pascal Giard <evilynux@gmail.com> wrote:

> Wanting to test the timestamp removal pushing committing the changes,
> I first tried to build the master branch.
>
> However, it fails with the following:
> $ /bin/sh ../libtool --silent  --tag=CC  --silent --mode=link gcc
> -Wtraditional-conversion  -g -O2 -fstack-protector -Wall -W
> -Wmissing-prototypes -Wstrict-prototypes -pedantic -fopenmp
> -avoid-version -module -Wl,-z,defs -o libsox_fmt_flac.la -rpath
> /usr/local/lib/sox flac.lo libsox.la -lFLAC  -lvorbisenc -lvorbisfile
> -lvorbis  -logg -lm
> .libs/flac.o: In function `decoder_read_callback':
> /some/path/sox/src/flac.c:63: undefined reference to `lsx_error'
>
> Same occurs for libsox_fmt_mp3.la.
>
> A quick glance at the changes introduced in configure.ac recently-ish
> does not being anything obvious to me. Before I try to further
> investigate what's happening, do you guys have an idea? How come it's
> only showing up now and in master. The debian branch compiles fine.
>
> -Pascal
> --
> Homepage (http://organact.mine.nu)
> Debian GNU/Linux (http://www.debian.org)
> COMunité/LACIME: École de technologie supérieure (http://www.comunite.ca)
> ISIP Laboratory: McGill (http://www.isip.ece.mcgill.ca)
>
>
> ------------------------------------------------------------------------------
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for
> all
> things parallel software development, from weekly thought leadership blogs
> to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> _______________________________________________
> SoX-devel mailing list
> SoX-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sox-devel
>

[-- Attachment #1.2: Type: text/html, Size: 3554 bytes --]

[-- Attachment #2: Type: text/plain, Size: 441 bytes --]

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/

[-- Attachment #3: Type: text/plain, Size: 158 bytes --]

_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2015-02-27  5:11 ` Chris Bagwell
@ 2015-02-27 15:02   ` Pascal Giard
  2015-02-28 19:04     ` Chris Bagwell
  0 siblings, 1 reply; 9+ messages in thread
From: Pascal Giard @ 2015-02-27 15:02 UTC (permalink / raw)
  To: sox developers list

Hi Chris!

On Fri, Feb 27, 2015 at 12:11 AM, Chris Bagwell <chris@cnpbagwell.com> wrote:
> Nothing jumps out at me other to to verify you reran autoreconf since I
> notice you've shown verbose output and now you have to go out of your way
> with 'make V=1' to see that libtool line.

I did go out of my way as I was trying to figure out what's going on.
And yes, I have ran "autoreconf -i" before calling "make -j4 V=1 clean all".

> lsx_error is referenced by that flac.lo and symbol should be in libsox.la
> (from format_i.o) that is listed right after it... so sounds like a badly
> generated libsox.

Hmm.. I'll have to carefully check again.
Trying from a clean git clone on one of my works machine, compilation
also fails at the very same place.

Are you able to reproduce the error on your end as well?

> The only new compiler option I recall is that -fstack-protector but that
> should affect symbols references.

Nope, that shouldn't be related.

-Pascal
-- 
Homepage (http://organact.mine.nu)
Debian GNU/Linux (http://www.debian.org)
COMunité/LACIME: École de technologie supérieure (http://www.comunite.ca)
ISIP Laboratory: McGill (http://www.isip.ece.mcgill.ca)

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2015-02-27 15:02   ` Pascal Giard
@ 2015-02-28 19:04     ` Chris Bagwell
  2015-03-02 15:43       ` Pascal Giard
  0 siblings, 1 reply; 9+ messages in thread
From: Chris Bagwell @ 2015-02-28 19:04 UTC (permalink / raw)
  To: sox-devel


[-- Attachment #1.1: Type: text/plain, Size: 686 bytes --]

On Fri, Feb 27, 2015 at 9:02 AM, Pascal Giard <evilynux@gmail.com> wrote:

>
> > lsx_error is referenced by that flac.lo and symbol should be in
> libsox.la
> > (from format_i.o) that is listed right after it... so sounds like a badly
> > generated libsox.
>
> Hmm.. I'll have to carefully check again.
> Trying from a clean git clone on one of my works machine, compilation
> also fails at the very same place.
>
> Are you able to reproduce the error on your end as well?
>

No, I couldn't reproduce.  I tried on latest Fedora and OSX with no issues
seen.

My Fedora has version 2.4.2 of libtool btw.   Thats only other thing I
could think of that could cause fake link issues.

Chris

[-- Attachment #1.2: Type: text/html, Size: 1140 bytes --]

[-- Attachment #2: Type: text/plain, Size: 441 bytes --]

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/

[-- Attachment #3: Type: text/plain, Size: 158 bytes --]

_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2015-02-28 19:04     ` Chris Bagwell
@ 2015-03-02 15:43       ` Pascal Giard
  2016-01-10  1:53         ` Eric Wong
  0 siblings, 1 reply; 9+ messages in thread
From: Pascal Giard @ 2015-03-02 15:43 UTC (permalink / raw)
  To: sox developers list

Hi Chris,

On Sat, Feb 28, 2015 at 2:04 PM, Chris Bagwell <chris@cnpbagwell.com> wrote:
>
>
> On Fri, Feb 27, 2015 at 9:02 AM, Pascal Giard <evilynux@gmail.com> wrote:
>>
>>
>> > lsx_error is referenced by that flac.lo and symbol should be in
>> > libsox.la
>> > (from format_i.o) that is listed right after it... so sounds like a
>> > badly
>> > generated libsox.
>>
>> Hmm.. I'll have to carefully check again.
>> Trying from a clean git clone on one of my works machine, compilation
>> also fails at the very same place.
>>
>> Are you able to reproduce the error on your end as well?
>
>
> No, I couldn't reproduce.  I tried on latest Fedora and OSX with no issues
> seen.
>
> My Fedora has version 2.4.2 of libtool btw.   Thats only other thing I could
> think of that could cause fake link issues.


First, I want to apologize. I was trying to build "à la" Debian by
using "--with-dyn-default" and I didn't tell you. How could have you
guessed?!

Compilation with default options works. Compilation with
"--with-dyn-default" doesn't. It's been broken for quite a while
actually!

Using git bisect, I was able to quickly identify the culprit.
FWIW, I ran the following:
git bisect start HEAD sox-14.4.1
git bisect run sh -c 'autoreconf -i && ./configure --with-dyn-default
&& make V=1 -j8'

And got:
5c58413544fd600bf12fdc54fa9648f0bc1ea860 is the first bad commit
commit 5c58413544fd600bf12fdc54fa9648f0bc1ea860
Author: Ulrich Klauer <ulrich@chirlu.de>
Date:   Sat Mar 9 02:23:55 2013 +0100

    Don't export (most) internal libsox symbols

    Ideally, libsox should only export those symbols that are part of the
    official API, i.e. those with the sox_ prefix. This isn't easily
    possible, though, because certain internal (lsx_) symbols are used by
    SoX-the-application and by the plugin modules in case of a modularized
    build. As a step in the right direction, this change exposes only the
    symbols actually needed, hiding about 300 (90 %) of the lsx_ symbols.

    (Relevant tracker item: FR 2214694.)

:100644 100644 2d6e5cd51a6666f9b44f053d105a8a662fb47b5c
2d35eec8ca917f84202eee6a7e4669f5fd796e53 M ChangeLog
:040000 040000 7418f7851edebdc139af00b451d475ac871b3b72
9193c7eb2183479d4107ff85cd75c738eb61d15b M src

-Pascal
-- 
Homepage (http://organact.mine.nu)
Debian GNU/Linux (http://www.debian.org)
COMunité/LACIME: École de technologie supérieure (http://www.comunite.ca)
ISIP Laboratory: McGill (http://www.isip.ece.mcgill.ca)

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2015-03-02 15:43       ` Pascal Giard
@ 2016-01-10  1:53         ` Eric Wong
  2016-01-10  1:56           ` Måns Rullgård
  0 siblings, 1 reply; 9+ messages in thread
From: Eric Wong @ 2016-01-10  1:53 UTC (permalink / raw)
  To: sox-devel; +Cc: Ulrich Klauer

Hi Pascal,

I found a fix to this problem by adding lsx_error and lsx_flush
to the regular expression (and I needed to "make clean" before
rebuilding, so there's likely still a smaller build problem there).

Pushed to the "ew/dyn-default-fix" branch on git://80x24.org/sox
(as well as my "pu" (proposed updates) branch there)

The size of regexp is difficult to maintain and perhaps we should
use -export-symbols SYMFILE instead...

-------------------------8<-------------------------
Subject: [PATCH] fix build with --with-dyn-default

This was broken in commit 5c58413544fd600bf12fdc54fa9648f0bc1ea860
("Don't export (most) internal libsox symbols")

and noticed by both Pascal Giard and myself:
http://mid.gmane.org/CAJNNDmk0oU=haP3DmVMAG6mtNCg=cO=7ROqx-eaFo2LxkQt7+A@mail.gmail.com
http://mid.gmane.org/20130512113815.GA29472@dcvr.yhbt.net
---
 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 7cceaaf..6d6acf5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -95,7 +95,7 @@ libsox_la_LIBADD += @GOMP_LIBS@
 
 libsox_la_CFLAGS = @WARN_CFLAGS@
 libsox_la_LDFLAGS = @APP_LDFLAGS@ -version-info @SHLIB_VERSION@ \
-  -export-symbols-regex '^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
+  -export-symbols-regex '^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|error|fail_errno|filelength|find_(enum_(text|value)|file_extension)|flush|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
 
 if HAVE_WIN32_LTDL
   libsox_la_SOURCES += win32-ltdl.c win32-ltdl.h
-- 
EW

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2016-01-10  1:53         ` Eric Wong
@ 2016-01-10  1:56           ` Måns Rullgård
  2016-01-10 16:00             ` Pascal Giard
  0 siblings, 1 reply; 9+ messages in thread
From: Måns Rullgård @ 2016-01-10  1:56 UTC (permalink / raw)
  To: Eric Wong; +Cc: Ulrich Klauer, sox-devel

Eric Wong <normalperson@yhbt.net> writes:

> Hi Pascal,
>
> I found a fix to this problem by adding lsx_error and lsx_flush
> to the regular expression (and I needed to "make clean" before
> rebuilding, so there's likely still a smaller build problem there).
>
> Pushed to the "ew/dyn-default-fix" branch on git://80x24.org/sox
> (as well as my "pu" (proposed updates) branch there)
>
> The size of regexp is difficult to maintain and perhaps we should
> use -export-symbols SYMFILE instead...

It's horrible as is, especially with all the nested alternatives.  A
file with a symbol per line would be much cleaner.

> -------------------------8<-------------------------
> Subject: [PATCH] fix build with --with-dyn-default
>
> This was broken in commit 5c58413544fd600bf12fdc54fa9648f0bc1ea860
> ("Don't export (most) internal libsox symbols")
>
> and noticed by both Pascal Giard and myself:
> http://mid.gmane.org/CAJNNDmk0oU=haP3DmVMAG6mtNCg=cO=7ROqx-eaFo2LxkQt7+A@mail.gmail.com
> http://mid.gmane.org/20130512113815.GA29472@dcvr.yhbt.net
> ---
>  src/Makefile.am | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 7cceaaf..6d6acf5 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -95,7 +95,7 @@ libsox_la_LIBADD += @GOMP_LIBS@
>
>  libsox_la_CFLAGS = @WARN_CFLAGS@
>  libsox_la_LDFLAGS = @APP_LDFLAGS@ -version-info @SHLIB_VERSION@ \
> -  -export-symbols-regex '^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
> +  -export-symbols-regex '^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|error|fail_errno|filelength|find_(enum_(text|value)|file_extension)|flush|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
>
>  if HAVE_WIN32_LTDL
>    libsox_la_SOURCES += win32-ltdl.c win32-ltdl.h
> -- 
> EW

-- 
Måns Rullgård

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2016-01-10  1:56           ` Måns Rullgård
@ 2016-01-10 16:00             ` Pascal Giard
  2016-01-12 10:59               ` Måns Rullgård
  0 siblings, 1 reply; 9+ messages in thread
From: Pascal Giard @ 2016-01-10 16:00 UTC (permalink / raw)
  To: sox developers list; +Cc: Ulrich Klauer

Hi guys,
  allow me to be brief.

As you might have guessed from my lack of activity on SoX's mailing
lists, I'm terribly busy.

I don't have time to dedicate to SoX right now and I don't see that
improving in the next 4 to 5 months either.

I'm sorry... :-/
I wish someone could step up to give a hand...

-Pascal


On Sat, Jan 9, 2016 at 8:56 PM, Måns Rullgård <mans@mansr.com> wrote:
> Eric Wong <normalperson@yhbt.net> writes:
>
>> Hi Pascal,
>>
>> I found a fix to this problem by adding lsx_error and lsx_flush
>> to the regular expression (and I needed to "make clean" before
>> rebuilding, so there's likely still a smaller build problem there).
>>
>> Pushed to the "ew/dyn-default-fix" branch on git://80x24.org/sox
>> (as well as my "pu" (proposed updates) branch there)
>>
>> The size of regexp is difficult to maintain and perhaps we should
>> use -export-symbols SYMFILE instead...
>
> It's horrible as is, especially with all the nested alternatives.  A
> file with a symbol per line would be much cleaner.
>
>> -------------------------8<-------------------------
>> Subject: [PATCH] fix build with --with-dyn-default
>>
>> This was broken in commit 5c58413544fd600bf12fdc54fa9648f0bc1ea860
>> ("Don't export (most) internal libsox symbols")
>>
>> and noticed by both Pascal Giard and myself:
>> http://mid.gmane.org/CAJNNDmk0oU=haP3DmVMAG6mtNCg=cO=7ROqx-eaFo2LxkQt7+A@mail.gmail.com
>> http://mid.gmane.org/20130512113815.GA29472@dcvr.yhbt.net
>> ---
>>  src/Makefile.am | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/src/Makefile.am b/src/Makefile.am
>> index 7cceaaf..6d6acf5 100644
>> --- a/src/Makefile.am
>> +++ b/src/Makefile.am
>> @@ -95,7 +95,7 @@ libsox_la_LIBADD += @GOMP_LIBS@
>>
>>  libsox_la_CFLAGS = @WARN_CFLAGS@
>>  libsox_la_LDFLAGS = @APP_LDFLAGS@ -version-info @SHLIB_VERSION@ \
>> -  -export-symbols-regex '^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|fail_errno|filelength|find_(enum_(text|value)|file_extension)|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
>> +  -export-symbols-regex '^(sox_.*|lsx_(check_read_params|(close|open)_dllibrary|(debug(_more|_most)?|fail|report|warn)_impl|eof|error|fail_errno|filelength|find_(enum_(text|value)|file_extension)|flush|getopt(_init)?|lpc10_(create_(de|en)coder_state|(de|en)code)|raw(read|write)|read(_b_buf|buf|chars)|realloc|rewind|seeki|sigfigs3p?|strcasecmp|tell|unreadb|write(b|_b_buf|buf|s)))$$'
>>
>>  if HAVE_WIN32_LTDL
>>    libsox_la_SOURCES += win32-ltdl.c win32-ltdl.h
>> --
>> EW
>
> --
> Måns Rullgård
>
> ------------------------------------------------------------------------------
> Site24x7 APM Insight: Get Deep Visibility into Application Performance
> APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
> Monitor end-to-end web transactions and take corrective actions now
> Troubleshoot faster and improve end-user experience. Signup Now!
> http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
> _______________________________________________
> SoX-devel mailing list
> SoX-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sox-devel



-- 
Homepage (http://www.ece.mcgill.ca/~pgiard1)
Debian GNU/Linux (http://www.debian.org)
COMunité/LACIME: École de technologie supérieure (http://www.comunite.ca)
ISIP Laboratory: McGill (http://www.isip.ece.mcgill.ca)

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: SoX's master branch currently FTBFS
  2016-01-10 16:00             ` Pascal Giard
@ 2016-01-12 10:59               ` Måns Rullgård
  0 siblings, 0 replies; 9+ messages in thread
From: Måns Rullgård @ 2016-01-12 10:59 UTC (permalink / raw)
  To: Pascal Giard; +Cc: Ulrich Klauer, sox developers list

Pascal Giard <evilynux@gmail.com> writes:

> Hi guys,
>   allow me to be brief.
>
> As you might have guessed from my lack of activity on SoX's mailing
> lists, I'm terribly busy.
>
> I don't have time to dedicate to SoX right now and I don't see that
> improving in the next 4 to 5 months either.
>
> I'm sorry... :-/
> I wish someone could step up to give a hand...

I'd be happy to.  IIRC Eric Wong also said he'd be willing to step in
for a while.  How can we help?

-- 
Måns Rullgård

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311&iu=/4140

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-01-12 10:59 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-27  4:34 SoX's master branch currently FTBFS Pascal Giard
2015-02-27  5:11 ` Chris Bagwell
2015-02-27 15:02   ` Pascal Giard
2015-02-28 19:04     ` Chris Bagwell
2015-03-02 15:43       ` Pascal Giard
2016-01-10  1:53         ` Eric Wong
2016-01-10  1:56           ` Måns Rullgård
2016-01-10 16:00             ` Pascal Giard
2016-01-12 10:59               ` Måns Rullgård

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/sox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).