compiling aeolus 0.10.1 - help needed

All your LV2 and LADSPA goodness and more.

Moderators: MattKingUSA, khz

Post Reply
Tiefkultur
Posts: 2
Joined: Wed May 04, 2022 5:06 pm
Has thanked: 2 times

compiling aeolus 0.10.1 - help needed

Post by Tiefkultur »

i need help with the compilation of the new aeolus version.

i got the source of the new version from Fons Adriaensen site, together with the required libraries. I am not sure if i got the required libraries right:

it tried with:
· zita-alsa-pcmi-0.4.0 – but required would be alsa-pcmi 0.3.* (is that ok?)
· clthreads-2.4.2 – (2.4.* required)
· clxclient-3.9.2 – (3.9.* required)

I succeeded with the compilation and installation of zita-alsa-pcmi-0.4.0 and clthreads-2.4.2 (via make, make install). I had to add

Code: Select all

CPPFLAGS += -I/usr/include/freetype2
in the Makefile of clxclient-3.9.2 to remove an error at compilation (thank you jeroen at viewtopic.php?f=48&t=20739).

I still get a fatal error, that <clxclient.h> can not be found. But of course the clxclient.h file is there…

How to compile clxclient-3.9.2?

Thank you!
luciorgomes
Established Member
Posts: 120
Joined: Wed Feb 04, 2015 11:29 pm
Has thanked: 38 times
Been thanked: 7 times

Re: compiling aeolus 0.10.1 - help needed

Post by luciorgomes »

What distro are you using?

Arch have binaries for aeolus:
https://archlinux.org/packages/community/x86_64/aeolus/

There are packages of clxclient for several distros:
https://repology.org/project/clxclient/versions
User avatar
scott.thomason
Established Member
Posts: 120
Joined: Fri Apr 01, 2022 2:54 am
Has thanked: 16 times
Been thanked: 27 times
Contact:

Re: compiling aeolus 0.10.1 - help needed

Post by scott.thomason »

Tiefkultur wrote: Sat May 07, 2022 8:25 pm I had to add

Code: Select all

CPPFLAGS += -I/usr/include/freetype2
in the Makefile of clxclient-3.9.2 to remove an error at compilation (thank you jeroen at viewtopic.php?f=48&t=20739).
I'm not sure if adding /usr/include/freetype2 is going to work right the way you've done it, there has to be a space between the various -I flags. Maybe try this instead:

Code: Select all

CPPFLAGS="$CPPFLAGS -I/usr/include/freetype2"
You'll know you got it right when the compiler error about the missing file goes away.
---scott

LinkedIn
Tiefkultur
Posts: 2
Joined: Wed May 04, 2022 5:06 pm
Has thanked: 2 times

Re: compiling aeolus 0.10.1 - help needed

Post by Tiefkultur »

The most important first: your help did help, success!
luciorgomes wrote: Tue May 10, 2022 1:53 am What distro are you using?
I use AVL-MXE (AV Linux MX Edition, basend on Debian 10)
scott.thomason wrote: Tue May 10, 2022 6:29 am I'm not sure if adding /usr/include/freetype2 is going to work right the way you've done it, there has to be a space between the various -I flags. Maybe try this instead:

Code: Select all

CPPFLAGS="$CPPFLAGS -I/usr/include/freetype2"

You'll know you got it right when the compiler error about the missing file goes away.
Thanks, but i got an different compiler error:

Code: Select all

g++: error: PPFLAGS -I/usr/include/freetype2: Datei oder Verzeichnis nicht gefunden
(translation: file not found...)
luciorgomes wrote: Tue May 10, 2022 1:53 am There are packages of clxclient for several distros:
https://repology.org/project/clxclient/versions
Thanks! I was able to install libclxclient-dev:amd64 (3.9.0-5)! Great site! With that aeolus did compile and install without errors!

Thank you very much! Aeolus sounds great!
Post Reply