Re: Errors compiling

2020-06-24 Thread Frank McCormick



On 6/24/20 6:25 AM, Michael Schwendt wrote:

On Tue, 23 Jun 2020 21:56:40 -0400, Frank wrote:


I am trying to compile/install IceWm for my Fedora 32 installation. Ran
into some problems I have resolved, but
I am stumped by these:

checking for strlcat... no
checking for C++11 by default... yes
checking for CORE... no
configure: error: Package requirements (fontconfig xrender xcomposite
xdamage xfixes xext x11) were not met:

Package 'xdamage', required by 'virtual:world', not found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

DNF tells me all these programs are installed along with their
development files.

What am I missing ?


What does the "config.log" file tell about this?

Also, if a configure script check uses pkgconfig, it doesn't matter much
what DNF says. You would need to verify that the pkgconfig "*.pc" files
are included in a package and satisfy the requirements of what the
configure script is looking for.




Missing dev files for xdamage triggered a bunch of warnings. In the end 
I reinstalled the xdamage dev package

and that made everything happy.

Thanks
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-24 Thread Frank McCormick



On 6/23/20 10:30 PM, Jerry James wrote:

On Tue, Jun 23, 2020 at 8:10 PM Qiyu Yan  wrote:

You need to install devel packages (e.g. openssl v.s. openssl-devel)

And when dealing with pkg-config, there is a more convenient way:
sudo dnf install 'pkgconfig(package-name)'
pkgconfig(foo) is the devel-files for package foo.

This case you need things like
sudo dnf install 'pkgconfig(fontconfig)' and so on.


In particular, since Frank's message included this:

Package 'xdamage', required by 'virtual:world', not found

then "dnf install pkgconfig(xdamage)" should help.



Thank you. Finally got it sorted out. For some reason the missing dev 
files for one or two packages triggered the bunch of warnings.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-24 Thread Frank McCormick



On 6/23/20 10:10 PM, Qiyu Yan wrote:

You need to install devel packages (e.g. openssl v.s. openssl-devel)

And when dealing with pkg-config, there is a more convenient way:
sudo dnf install 'pkgconfig(package-name)'
pkgconfig(foo) is the devel-files for package foo.

This case you need things like
sudo dnf install 'pkgconfig(fontconfig)' and so on.



Great tip. Thanks
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-24 Thread Frank McCormick



On 6/23/20 10:01 PM, Ed Greshko wrote:

On 2020-06-24 09:56, Frank wrote:

I am trying to compile/install IceWm for my Fedora 32 installation. Ran into 
some problems I have resolved, but
I am stumped by these:


Snipped

What am I missing ?


Is there any reason you don't wish to use

Name : icewm
Version  : 1.6.6
Release  : 1.fc32
Architecture : x86_64
Size : 1.2 M
Source   : icewm-1.6.6-1.fc32.src.rpm
Repository   : updates
Summary  : Window manager designed for speed, usability, and consistency

from the Fedora repos?




More as an exercise than anything else. I have been running the Fedora 
version for a while but I don't like the bells and whistles someone has 
added. For other users YMMV.


Frank
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-24 Thread Michael Schwendt
On Tue, 23 Jun 2020 21:56:40 -0400, Frank wrote:

> I am trying to compile/install IceWm for my Fedora 32 installation. Ran 
> into some problems I have resolved, but
> I am stumped by these:
> 
> checking for strlcat... no
> checking for C++11 by default... yes
> checking for CORE... no
> configure: error: Package requirements (fontconfig xrender xcomposite 
> xdamage xfixes xext x11) were not met:
> 
> Package 'xdamage', required by 'virtual:world', not found
> 
> Consider adjusting the PKG_CONFIG_PATH environment variable if you
> installed software in a non-standard prefix.
> 
> DNF tells me all these programs are installed along with their 
> development files.
> 
> What am I missing ?

What does the "config.log" file tell about this?

Also, if a configure script check uses pkgconfig, it doesn't matter much
what DNF says. You would need to verify that the pkgconfig "*.pc" files
are included in a package and satisfy the requirements of what the
configure script is looking for.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-23 Thread Jerry James
On Tue, Jun 23, 2020 at 8:10 PM Qiyu Yan  wrote:
> You need to install devel packages (e.g. openssl v.s. openssl-devel)
>
> And when dealing with pkg-config, there is a more convenient way:
> sudo dnf install 'pkgconfig(package-name)'
> pkgconfig(foo) is the devel-files for package foo.
>
> This case you need things like
> sudo dnf install 'pkgconfig(fontconfig)' and so on.

In particular, since Frank's message included this:

Package 'xdamage', required by 'virtual:world', not found

then "dnf install pkgconfig(xdamage)" should help.
-- 
Jerry James
http://www.jamezone.org/
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-23 Thread Qiyu Yan
You need to install devel packages (e.g. openssl v.s. openssl-devel)

And when dealing with pkg-config, there is a more convenient way:
sudo dnf install 'pkgconfig(package-name)'
pkgconfig(foo) is the devel-files for package foo.

This case you need things like
sudo dnf install 'pkgconfig(fontconfig)' and so on.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Errors compiling

2020-06-23 Thread Ed Greshko
On 2020-06-24 09:56, Frank wrote:
> I am trying to compile/install IceWm for my Fedora 32 installation. Ran into 
> some problems I have resolved, but
> I am stumped by these:
>
> checking for strlcat... no
> checking for C++11 by default... yes
> checking for CORE... no
> configure: error: Package requirements (fontconfig xrender xcomposite xdamage 
> xfixes xext x11) were not met:
>
> Package 'xdamage', required by 'virtual:world', not found
>
> Consider adjusting the PKG_CONFIG_PATH environment variable if you
> installed software in a non-standard prefix.
>
> DNF tells me all these programs are installed along with their development 
> files.
>
> What am I missing ?

Is there any reason you don't wish to use

Name : icewm
Version  : 1.6.6
Release  : 1.fc32
Architecture : x86_64
Size : 1.2 M
Source   : icewm-1.6.6-1.fc32.src.rpm
Repository   : updates
Summary  : Window manager designed for speed, usability, and consistency

from the Fedora repos?


-- 
The key to getting good answers is to ask good questions.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Errors compiling

2020-06-23 Thread Frank
I am trying to compile/install IceWm for my Fedora 32 installation. Ran 
into some problems I have resolved, but

I am stumped by these:

checking for strlcat... no
checking for C++11 by default... yes
checking for CORE... no
configure: error: Package requirements (fontconfig xrender xcomposite 
xdamage xfixes xext x11) were not met:


Package 'xdamage', required by 'virtual:world', not found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

DNF tells me all these programs are installed along with their 
development files.


What am I missing ?



___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org