Installing FreeCiv on Apple Silicon
Re: Installing FreeCiv on Apple Silicon
I see, I really appreciate your help, especially given that you are not a Mac user. I wish I had a Windows where things would be much easier, I presume... At the same time I enjoy learning all this stuff about compiling gnu packages manually.
Re: Installing FreeCiv on Apple Silicon
No problem
. You could also try That should build freeciv and it's dependencies, according to the jhbuild readme, but I don't know if freeciv is compatible with the automation tools.

Code: Select all
jhbuild build freeciv
Civ 3 tileset: viewtopic.php?t=92953
3d Irrlicht desktop client development: viewtopic.php?t=92289&start=20
3d Irrlicht desktop client development: viewtopic.php?t=92289&start=20
Re: Installing FreeCiv on Apple Silicon
There must be (recursively) a dependency for zlib defined in the gtk+-3.0.pc you are using, causing it to look for zlib.pc. The freeciv configure itself checks for zlib by other means (doesn't require .pc file for zlib)
Re: Installing FreeCiv on Apple Silicon
If following that specific method is not important to you, but you want to get freeciv working by any means, I would recommend trying using homebrew. That's what our CI (continuous integration) tests to be working after every change that gets in.
See https://github.com/freeciv/freeciv/blob ... ows/ci.yml and https://github.com/freeciv/freeciv/blob ... i-build.sh for reference for how CI does it.
Maybe also https://github.com/freeciv/freeciv/blob ... pbundle.sh is worth checking out.
See https://github.com/freeciv/freeciv/blob ... ows/ci.yml and https://github.com/freeciv/freeciv/blob ... i-build.sh for reference for how CI does it.
Maybe also https://github.com/freeciv/freeciv/blob ... pbundle.sh is worth checking out.
Re: Installing FreeCiv on Apple Silicon
Actually, running ~/.new_local/bin/jhbuild shell and then ./configure in that shell worked! It's all compiled and installed now and running fine!Elefant wrote: ↑Wed Jun 19, 2024 4:48 pm No problem. You could also try
That should build freeciv and it's dependencies, according to the jhbuild readme, but I don't know if freeciv is compatible with the automation tools.Code: Select all
jhbuild build freeciv

Re: Installing FreeCiv on Apple Silicon
I understand and I get that it is usually much easier with package managers but I have an aversion to macports and homebrew...