Xrender 0.9.10 (libXrender)
This is kinda a major prerequisite and it appears the 0.9.x series is giving me some trouble because it is asking either a pkgconf .pc for X11 and Render (I've supplied override flags for them) but it can't find the Render include files. How was this handled in the old days? I can probably just build off Diegel's old builds for 0.8.x, but as libXrender hasn't had a lot of updates for a long time it may be worth trying to bring this up to date.
I'm the system admin of this site. Private security technician, licensed locksmith, hack of a c developer and vintage computer enthusiast.
https://contrib.irixnet.org/raion/ -- contributions and pieces that I'm working on currently.
https://codeberg.org/SolusRaion -- Code repos I control
Technical problems should be sent my way.
|
|
Raion
Chief IRIX Officer
Trade Count:
(9)
Posts: 4,240
Threads: 533
Joined: Nov 2017
Location: Eastern Virginia
|
|
05-09-2021, 09:38 PM |
RE: Xrender 0.9.10 (libXrender)
Presumably you cloned it from Alan Coopersmith's GitHub repository? Looks like the last update was 5 years ago. I'm on the xorg mailing list so I get updates whenever any changes are made to X. Apparently they're happy with libXrender. I'll clone it and give it a try on my Octane2...
Project: Temporarily lost at sea
Plan: World domination! Or something...
|
|
vishnu
Tezro, Octane2, 2 x Onyx4
Trade Count:
(0)
Posts: 1,245
Threads: 41
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
|
|
05-10-2021, 02:56 AM |
RE: Xrender 0.9.10 (libXrender)
Yes, and tried the xorg repository ones. It seems they wanna make it so you have to chew glass to use these.
I'm the system admin of this site. Private security technician, licensed locksmith, hack of a c developer and vintage computer enthusiast.
https://contrib.irixnet.org/raion/ -- contributions and pieces that I'm working on currently.
https://codeberg.org/SolusRaion -- Code repos I control
Technical problems should be sent my way.
|
|
Raion
Chief IRIX Officer
Trade Count:
(9)
Posts: 4,240
Threads: 533
Joined: Nov 2017
Location: Eastern Virginia
|
|
05-10-2021, 03:27 AM |
RE: Xrender 0.9.10 (libXrender)
I looked at those branches, none of them have been touched in 17 years!
Project: Temporarily lost at sea
Plan: World domination! Or something...
|
|
vishnu
Tezro, Octane2, 2 x Onyx4
Trade Count:
(0)
Posts: 1,245
Threads: 41
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
|
|
05-10-2021, 03:33 AM |
RE: Xrender 0.9.10 (libXrender)
Couple of idiocies I noticed right away, I generally don't like autoreconf, so I did aclocal, autoheader, automake, autoconf. Their automake file extensions are the modern "am," but the configure script is looking for the ancient "in." So, copy the Makefile.am's to Makefile.in's, rerun configure, everything looks good but nothing builds. So I break down and do autoreconf, now at least it tries to compile a few things but immediately craps out with libtool errors. Who even uses libtool anymore? It's always been crap software. So I'll probably redo the Makefile.am's to get rid of anything related to libtool and go from there. Or maybe I'll just go read the "X Windows Disaster" chapter from the Unix Hater's Manual again...
Project: Temporarily lost at sea
Plan: World domination! Or something...
(This post was last modified: 05-10-2021, 08:12 AM by vishnu.)
|
|
vishnu
Tezro, Octane2, 2 x Onyx4
Trade Count:
(0)
Posts: 1,245
Threads: 41
Joined: Dec 2017
Location: Minneapolis, Minnesota USA
|
|
05-10-2021, 08:07 AM |