* SoX won't compile
@ 2021-01-31 0:14 Simone Filippini
2021-01-31 11:50 ` Måns Rullgård
0 siblings, 1 reply; 5+ messages in thread
From: Simone Filippini @ 2021-01-31 0:14 UTC (permalink / raw)
To: sox-devel
[-- Attachment #1.1: Type: text/plain, Size: 363 bytes --]
OS: FreeBSD 12.2
Commit: dd8b63
After "autoreconf -i" I get:
"Makefile.am:18: error: 'pkgconfig_DATA' Is used but 'pkgconfigdir' Is undefined."
I tried several previous commits but the error persists OR there are errors after "./configure"
I can only compile the 2017 version of SoX on mansr GitHub.
Can anyone help me?
Regards,
Simone
[-- Attachment #1.2: Type: text/html, Size: 632 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- 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] 5+ messages in thread
* Re: SoX won't compile
2021-01-31 0:14 SoX won't compile Simone Filippini
@ 2021-01-31 11:50 ` Måns Rullgård
[not found] ` <8263421f6cf6bf7445c7fb0f1a44d8f7@audiodigitale.eu>
0 siblings, 1 reply; 5+ messages in thread
From: Måns Rullgård @ 2021-01-31 11:50 UTC (permalink / raw)
To: Simone Filippini; +Cc: sox-devel
Simone Filippini <info@audiodigitale.eu> writes:
> OS: FreeBSD 12.2
> Commit: dd8b63
>
> After "autoreconf -i" I get:
> "Makefile.am:18: error: 'pkgconfig_DATA' Is used but 'pkgconfigdir' Is undefined."
>
> I tried several previous commits but the error persists OR there are errors after "./configure"
>
> I can only compile the 2017 version of SoX on mansr GitHub.
>
> Can anyone help me?
Make sure you have all the required packages installed. It works fine
on FreeBSD here.
$ freebsd-version
12.2-RELEASE-p3
$ pkg info autoconf automake autoconf-archive libtool pkgconf
autoconf-2.69_3
automake-1.16.3
autoconf-archive-0.2019.01.06
libtool-2.4.6_1
pkgconf-1.7.3,1
--
Måns Rullgård
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: SoX won't compile
[not found] ` <8263421f6cf6bf7445c7fb0f1a44d8f7@audiodigitale.eu>
@ 2021-02-01 14:57 ` info
2021-02-01 17:55 ` Måns Rullgård
0 siblings, 1 reply; 5+ messages in thread
From: info @ 2021-02-01 14:57 UTC (permalink / raw)
To: mans; +Cc: sox-devel
> Simone Filippini <info@audiodigitale.eu> writes:
>
>> OS: FreeBSD 12.2
>> Commit: dd8b63
>>
>> After "autoreconf -i" I get:
>> "Makefile.am:18: error: 'pkgconfig_DATA' Is used but 'pkgconfigdir' Is
>> undefined."
>>
>> I tried several previous commits but the error persists OR there are
>> errors after "./configure"
>>
>> I can only compile the 2017 version of SoX on mansr GitHub.
>>
>> Can anyone help me?
>
> Make sure you have all the required packages installed. It works fine
> on FreeBSD here.
>
> $ freebsd-version
> 12.2-RELEASE-p3
> $ pkg info autoconf automake autoconf-archive libtool pkgconf
> autoconf-2.69_3
> automake-1.16.3
> autoconf-archive-0.2019.01.06
> libtool-2.4.6_1
> pkgconf-1.7.3,1
pkgconf was missing. Thanks a lot.
Is there any reason why your patches to support dsd are not merged in
this version on sourceforge?
I tried to parse all your commits on github when you implemented dsd and
tried to merge them all with the code here on SF.
When trying to compile I get:
--- libsox_la-sdm.lo ---
In file included from sdm.c:670:
./sdm_x86.h:52:41: error: unknown type name 'sdm_filter_t'
const sdm_filter_t *f,
[...]
Any input would be really appreciated.
Thanks for your work,
Regards,
Simone
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: SoX won't compile
2021-02-01 14:57 ` info
@ 2021-02-01 17:55 ` Måns Rullgård
2021-02-01 18:00 ` Cary Lewis
0 siblings, 1 reply; 5+ messages in thread
From: Måns Rullgård @ 2021-02-01 17:55 UTC (permalink / raw)
To: info; +Cc: sox-devel
info@audiodigitale.eu writes:
>> Simone Filippini <info@audiodigitale.eu> writes:
>>
>>> OS: FreeBSD 12.2
>>> Commit: dd8b63
>>> After "autoreconf -i" I get:
>>> "Makefile.am:18: error: 'pkgconfig_DATA' Is used but 'pkgconfigdir' Is
>>> undefined."
>>> I tried several previous commits but the error persists OR there are
>>> errors after "./configure"
>>> I can only compile the 2017 version of SoX on mansr GitHub.
>>> Can anyone help me?
>> Make sure you have all the required packages installed. It works fine
>> on FreeBSD here.
>> $ freebsd-version
>> 12.2-RELEASE-p3
>> $ pkg info autoconf automake autoconf-archive libtool pkgconf
>> autoconf-2.69_3
>> automake-1.16.3
>> autoconf-archive-0.2019.01.06
>> libtool-2.4.6_1
>> pkgconf-1.7.3,1
>
> pkgconf was missing. Thanks a lot.
> Is there any reason why your patches to support dsd are not merged in this
> version on sourceforge?
Yes, I'm lazy.
--
Måns Rullgård
_______________________________________________
SoX-devel mailing list
SoX-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sox-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: SoX won't compile
2021-02-01 17:55 ` Måns Rullgård
@ 2021-02-01 18:00 ` Cary Lewis
0 siblings, 0 replies; 5+ messages in thread
From: Cary Lewis @ 2021-02-01 18:00 UTC (permalink / raw)
To: sox-devel
[-- Attachment #1.1: Type: text/plain, Size: 1314 bytes --]
Ha ha. At least you're honest...
On Mon, Feb 1, 2021 at 12:56 PM Måns Rullgård <mans@mansr.com> wrote:
> info@audiodigitale.eu writes:
>
> >> Simone Filippini <info@audiodigitale.eu> writes:
> >>
> >>> OS: FreeBSD 12.2
> >>> Commit: dd8b63
> >>> After "autoreconf -i" I get:
> >>> "Makefile.am:18: error: 'pkgconfig_DATA' Is used but 'pkgconfigdir' Is
> >>> undefined."
> >>> I tried several previous commits but the error persists OR there are
> >>> errors after "./configure"
> >>> I can only compile the 2017 version of SoX on mansr GitHub.
> >>> Can anyone help me?
> >> Make sure you have all the required packages installed. It works fine
> >> on FreeBSD here.
> >> $ freebsd-version
> >> 12.2-RELEASE-p3
> >> $ pkg info autoconf automake autoconf-archive libtool pkgconf
> >> autoconf-2.69_3
> >> automake-1.16.3
> >> autoconf-archive-0.2019.01.06
> >> libtool-2.4.6_1
> >> pkgconf-1.7.3,1
> >
> > pkgconf was missing. Thanks a lot.
> > Is there any reason why your patches to support dsd are not merged in
> this
> > version on sourceforge?
>
> Yes, I'm lazy.
>
> --
> Måns Rullgård
>
>
> _______________________________________________
> SoX-devel mailing list
> SoX-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/sox-devel
>
[-- Attachment #1.2: Type: text/html, Size: 2177 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- 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] 5+ messages in thread
end of thread, other threads:[~2021-02-01 18:00 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-31 0:14 SoX won't compile Simone Filippini
2021-01-31 11:50 ` Måns Rullgård
[not found] ` <8263421f6cf6bf7445c7fb0f1a44d8f7@audiodigitale.eu>
2021-02-01 14:57 ` info
2021-02-01 17:55 ` Måns Rullgård
2021-02-01 18:00 ` Cary Lewis
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).