Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Picked up an iMac G5 the other day, so have spent today importing CDs for my old second gen iPod, surfing forums via Aquafox whilst listening to music on iTunes, and playing the odd game of Return to Castlewolfenstein. Mostly been enjoying how clean Tiger is, compared to the bloat in modern OS X.
 
Today I got Rust working on macOS PowerPC (beyond hello-world):

as-tree.png
 
It actually can, though G4 are pretty slow, so speed constraint is there.
But a lot of modern software works.

Is it possible to get Discord to run on a Tiger through an IRC, or something similar? I tried it in Snow Leopard and it worked, and I think Leopard and it ran. This was a couple of years ago.
 
Is it possible to get Discord to run on a Tiger through an IRC, or something similar? I tried it in Snow Leopard and it worked, and I think Leopard and it ran. This was a couple of years ago.

There is `abaddon` (in my PPCPorts), which will probably not build on 10.4 due to something being broken on the way (possibly can be hacked by dropping non-essential features) and `discord-lite`, which will not build from source due to this, but presumably pre-built app will work.

There were a couple of other ones introduced here on MacRumors (this and another recent one, but no source code for it). I guess you rather try and see.
 
Is it possible to get Discord to run on a Tiger through an IRC, or something similar? I tried it in Snow Leopard and it worked, and I think Leopard and it ran. This was a couple of years ago.
I wasn't able to get abaddon to build on Tiger, but @Matias_ made a PR (not merged currently) to PowerPC ports that helped the build get further. If you want to jump in and help get it working on Tiger, that would be great. Dependencies are broken or not depending on the commit your macports source is set to (currently bash is broken, but if you go back half a year you can grab a working version.
Otherwise, discord lite might work, as @barracuda156 said. A download link is here: https://macintoshgarden.org/apps/discord-lite
Edit: This may be a more recent version, but idk if it is for 10.5+: https://dosdude1.com/apps/
Does this open up the possibility of porting Bun for an actually usable JavaScript runtime? edit: I guess you'd need to support JSC and a modern Zig toolchain too so probably not...
You may be interested in quickjs (or quickjs-ng) which works all the way back to Tiger. Currently the chawan browser, which should work on 10.6 (and perhaps 10.5), uses it as its Javascript runtime.
Quickjs is reasonably performant. On a 2005 Powerbook G4 it can solve the Youtube Javascript challenges needed for yt-dlp in a couple of minutes.
 
Last edited:
but @Matias_ made a PR (not merged currently) to PowerPC ports that helped the build get further.

Where? https://github.com/macos-powerpc/powerpc-ports/pulls
I do not see anything pending from him.

You may be interested in quickjs (or quickjs-ng) which works all the way back to Tiger. Currently the chawan browser, which should work on 10.6 (and perhaps 10.5), uses it as its Javascript runtime.

Just to clarify, chawan does not use quickjs port, it uses bundled and patched code of quickjs. elinks-devel now does use quickjs.

P. S. Did you get Nim working on Tiger?
 
Where? https://github.com/macos-powerpc/powerpc-ports/pulls
I do not see anything pending from him.



Just to clarify, chawan does not use quickjs port, it uses bundled and patched code of quickjs. elinks-devel now does use quickjs.

P. S. Did you get Nim working on Tiger?
I was referring to the PR he closed: https://github.com/macos-powerpc/powerpc-ports/pull/30
Today is the first day of a six day work week for me, so I haven't gotten Nim working and likely won't for a while. When I starting working on it, I would run into a function which has a slightly different name but the same function on Tiger, and have to #ifdef #define _ _ #endif the function. Then I would clean and restart the build, get a little further, and run into something else along the same lines. And since Nim takes a while (double digit minutes) to clean and extract, fixing it is a process I will need quite a bit of time for. Hopefully I will have a PR to fix that by March or so - there is just so much other stuff on Tiger that is higher priority or easier to fix for me.
Thanks for clarifying on chawan, and good to know about elinks-devel. Elinks-devel will probably build on Tiger should someone need a browser with modern Javascript support (I think I recall the non-devel version building), though for most purposes Aquafox is likely to remain the best overall browsing experience.
 
I was referring to the PR he closed: https://github.com/macos-powerpc/powerpc-ports/pull/30
Today is the first day of a six day work week for me, so I haven't gotten Nim working and likely won't for a while. When I starting working on it, I would run into a function which has a slightly different name but the same function on Tiger, and have to #ifdef #define _ _ #endif the function. Then I would clean and restart the build, get a little further, and run into something else along the same lines. And since Nim takes a while (double digit minutes) to clean and extract, fixing it is a process I will need quite a bit of time for.

Re Nim.
It could be problematic if there is a lot of stuff failing. Nim uses C sources to bootstrap itself initially and then rebuilds with Nim sources, so it is needed to fix both, if it is done manually. The right way though is to fix Nim source and regenerate C source. Portfile has links to related issue (unfortunately, official documentation is lacking/incorrect for this). You don’t need to regenerate sources on powerpc, it can be done on any arch. If you will work on this, let me know, I describe the procedure which worked for me.

It is probably counter-productive to waste your time (or cpu cycles at least) on iterative attempts to build it. Perhaps give me an idea what fails, so that I can add fixed and regenerate C code.

FWIW, on Leopard it built with no issues from my portfile (from PPCPorts), though I am not sure at the moment ppc64 is working correctly.

there is just so much other stuff on Tiger that is higher priority or easier to fix for me.

Well, I do agree that an exotic lang with [currently] a single dependent is not among top priorities.

My idea was that all langs must be fixed – to facilitate development. Not much development happening, LOL, but why knows. The realized benefit of fixing obscure langs is likely small to none.

Thanks for clarifying on chawan, and good to know about elinks-devel. Elinks-devel will probably build on Tiger should someone need a browser with modern Javascript support (I think I recall the non-devel version building), though for most purposes Aquafox is likely to remain the best overall browsing experience.

As of now, I did not see a real replacement for GUI browser (and this is true for modern macOS as well).
However, it is likely that some tasks may be easier in a TUI one, and possibly sites broken in Aquafox may be working in some TUI browser.

I am interested to know how elinks performs, if you get time to try, it is a small thing to build.
 
Re Nim.
It could be problematic if there is a lot of stuff failing. Nim uses C sources to bootstrap itself initially and then rebuilds with Nim sources, so it is needed to fix both, if it is done manually. The right way though is to fix Nim source and regenerate C source. Portfile has links to related issue (unfortunately, official documentation is lacking/incorrect for this). You don’t need to regenerate sources on powerpc, it can be done on any arch. If you will work on this, let me know, I describe the procedure which worked for me.

It is probably counter-productive to waste your time (or cpu cycles at least) on iterative attempts to build it. Perhaps give me an idea what fails, so that I can add fixed and regenerate C code.

FWIW, on Leopard it built with no issues from my portfile (from PPCPorts), though I am not sure at the moment ppc64 is working correctly.



Well, I do agree that an exotic lang with [currently] a single dependent is not among top priorities.

My idea was that all langs must be fixed – to facilitate development. Not much development happening, LOL, but why knows. The realized benefit of fixing obscure langs is likely small to none.



As of now, I did not see a real replacement for GUI browser (and this is true for modern macOS as well).
However, it is likely that some tasks may be easier in a TUI one, and possibly sites broken in Aquafox may be working in some TUI browser.

I am interested to know how elinks performs, if you get time to try, it is a small thing to build.
When I get back to the computer I was trying build Nim on next weekend, I can pass you the patch I working on. I believe the issue is Tiger is pickier about public/private function calls or variables, and considers some of the ones Nim uses to be private. I suppose I could do one of those patches that greps through the source code replacing all of the known instances of something Tiger considers private with the corresponding public function/variable.
Sadly, the Powerbook I have with me now has a 32 GB drive (really <30), so it can't realistically build big langs.
Yeah, there are quite a few langs which are broken on Tiger (like erlang) and while they probably aren't hard to fix, the benefit to fixing them is small enough I am unlikely to bother. Unless someone writes the next killer app in erland lol.
Chawan was just an interesting enough concept that I thought Nim was worth some effort. Though tbh, I should probably put that effort into porting a UXP based browser to 10.4 instead. Is the White Star branch of PowerPC Ports worth trying to build from?
On the topic of web browsers, elinks-devel brings in a bunch of dependencies that are broken on Tiger. Luckily, they are trivial to fix (just use gmake!). I submitted PRs to fix those that needed it. Elinks-devel calls execinfo.h if configured with backtrace, so I turned that option off and made the PR.
As for how it performs... it isn't a CPU hog, for what that's worth. It did print a bunch annoying error messages on my screen, but those go away. On macintoshgarden.org, it is useable. On something more complex like nintendolife, not so much. Thanks for your work on it, it has value, though I doubt there are too many sites it would work better on than Aquafox.
 
I believe the issue is Tiger is pickier about public/private function calls or variables, and considers some of the ones Nim uses to be private.

Apple had trouble trying to both be ANSI/POSIX/XOPEN_SOURCE compliant and also to enable all the functions that the system supported and people/software expected to find. Also, functions would slightly change their calling parameters and returned parameters based on new UNIX standards.

In the 10.4 headers they used a macro called __DARWIN_UNIX03 to enable the newer behaviour. Much/most software expects the newer behaviour, so you often need to define that.


To get the full list of available functions, you often have to turn off the POSIX standard set by some software in their headers, source, or build systems, is disable _ANSI_SOURCE and _POSIX_C_SOURCE by setting them to 0 or otherwise not setting them at all.


In the LegacySupport headers, we sometimes would define these functions ourselves because of this:



This was, all in all, a rather huge PITA to work around, so in 10.5 Apple said "Stuff this" and just set up their own macro called _DARWIN_C_SOURCE to disable all the ANSI, POSIX, XOPEN_SOURCE, etc stuff that was frustrating everyone. This macro is almost always defined when building on MacOS on 10.5+ , so that is why things work more easily there.

eg:



Now, things would be much simpler when building on Tiger if you could just build against the 10.5 SDK and target MacOSX 10.4. Apple designed the system to be able to do that, and it does work if you are building on a 10.5+ system, to target 10.4. However, I was never able to reliably get software to build on 10.4 against the 10.5 SDK. There was always some kind of issue with the libgcc underpinnings and it would never link correctly.

That problem could presumably be solved with more effort expended. I ran out of time for that, so it was easier to just add more workaround to the 10.4 SDK instead, frustrating as that could get.
 
  • Like
Reactions: barracuda156
I have been using my iMac G5 running Tiger for almost everything for almost a year now, but I haven't gotten email working. There have been many posts here about getting slow gmail or outlook working and using macports on Leopard. What are the working options to get any kind of new email with a low barrier to entry?

Or has anyone gotten proton mail working in aquafox?
 
I have been using my iMac G5 running Tiger for almost everything for almost a year now, but I haven't gotten email working. There have been many posts here about getting slow gmail or outlook working and using macports on Leopard. What are the working options to get any kind of new email with a low barrier to entry?

Or has anyone gotten proton mail working in aquafox?

ClawsMail and nmail should work fine.

Less sure about sylpheed and sup (the latter is installable as rb33-sup), but probably they are.
 
I have been using my iMac G5 running Tiger for almost everything for almost a year now, but I haven't gotten email working. There have been many posts here about getting slow gmail or outlook working and using macports on Leopard. What are the working options to get any kind of new email with a low barrier to entry?

Or has anyone gotten proton mail working in aquafox?
You can use Macports even on Tiger to get claws-mail or sylpheed (I can also fix nmail if that is desired. It's a header issue I need to write patches around, but if someone actually wants it, I am pretty confident I can fix it, though I prefer GUI). The official Macports 2.10.7 installer works fine, and I also posted a 2.11.6 installer which is not as polished here, though I have yet to run into anything that needs 2.11.6 over 2.10.7 (I keep one machine on each currently).
Binary archives for Tiger are here: https://powerbookg4e.pagekite.me/
This covers how to use binary archives, but feel free to message me or ask on a related thread if it is unclear: https://trac.macports.org/wiki/archives
If something is broken in the current version, you can usually change the version number in the portfile to match whatever version is listed in https://powerbookg4e.pagekite.me/
Then it can install the binary archive from there.
If this all sounds like too much work, I can probably make an installer for claws-mail so that people using Tiger can just download that and use it with Tiger's built in X11. That would probably take a few weeks though.
 
If this all sounds like too much work, I can probably make an installer for claws-mail so that people using Tiger can just download that and use it with Tiger's built in X11. That would probably take a few weeks though.

Before I forgot, if you or someone plans to do that via `port pkg`, please do not make in install that gonna write stuff into /opt/local, that will create a mess if a user has ports installed.
 
You can use Macports even on Tiger to get claws-mail or sylpheed (I can also fix nmail if that is desired. It's a header issue I need to write patches around, but if someone actually wants it, I am pretty confident I can fix it, though I prefer GUI). The official Macports 2.10.7 installer works fine, and I also posted a 2.11.6 installer which is not as polished here, though I have yet to run into anything that needs 2.11.6 over 2.10.7 (I keep one machine on each currently).
Binary archives for Tiger are here: https://powerbookg4e.pagekite.me/
This covers how to use binary archives, but feel free to message me or ask on a related thread if it is unclear: https://trac.macports.org/wiki/archives
If something is broken in the current version, you can usually change the version number in the portfile to match whatever version is listed in https://powerbookg4e.pagekite.me/
Then it can install the binary archive from there.
If this all sounds like too much work, I can probably make an installer for claws-mail so that people using Tiger can just download that and use it with Tiger's built in X11. That would probably take a few weeks though.
I think for your average retro Mac user working with Tiger/Shuriken or Leopard/Sorbet, an installer is ideal for something like claws-mail. I think Mac ports is intimidating for a lot of folks. You’d be a hero for sure 😀
 
  • Like
Reactions: philgxxd
I think for your average retro Mac user working with Tiger/Shuriken or Leopard/Sorbet, an installer is ideal for something like claws-mail. I think Mac ports is intimidating for a lot of folks. You’d be a hero for sure 😀
I would agree here. I've not had luck with macports, it's too complicated for me. I've been hoping claws-mail, sylpheed, or nmail would show up on tiger.sh.
 
I would agree here. I've not had luck with macports, it's too complicated for me. I've been hoping claws-mail, sylpheed, or nmail would show up on tiger.sh.

TBH I am puzzled a bit, since for the end-user the only thing needed normally is `sudo port install`. One does not need to know the inner workings unless doing development.
 
TBH I am puzzled a bit, since for the end-user the only thing needed normally is `sudo port install`. One does not need to know the inner workings unless doing development.
I teach introductory programming for physics students at a University, and most of my students today don't know how to save a file locally to a computer anymore. Using a command line for anything is advanced level computing in 2026.

I use Macports all the time, but on a PPC Mac, especially a G4, I often wish there was more prebuilt binaries so I didn't have to compile code for a few days just to update some software.
 
Before I forgot, if you or someone plans to do that via `port pkg`, please do not make in install that gonna write stuff into /opt/local, that will create a mess if a user has ports installed.
Don't worry, I did opt/bootstrap for the curl I made. Not my first rodeo. I think I will install with the prefix opt/claws so as not to conflict with existing Macports/PowerPC Ports installs. This is also why it will take probably 3 weeks, as I will have to bootstrap everything in the new prefix on a Powerbook.
I think for your average retro Mac user working with Tiger/Shuriken or Leopard/Sorbet, an installer is ideal for something like claws-mail. I think Mac ports is intimidating for a lot of folks. You’d be a hero for sure 😀

Okay, I will start on making an installer for claws-mail this weekend (I assume this is most desired, as it has a GUI and is from 2025). Check back end of January/start of February, building everything from source on a Powerbook takes a long time.
TBH I am puzzled a bit, since for the end-user the only thing needed normally is `sudo port install`. One does not need to know the inner workings unless doing development.
With the state of Tiger (needing fallbacks for stuff like bash), it is not completely trivial. The upside is you learn enough to be helpful and become a contributor quicker than if you used an OS where 'sudo port install' worked all the time. And some people don't want to have Xcode or gcc installed, understandably (lot of disc space).
I teach introductory programming for physics students at a University, and most of my students today don't know how to save a file locally to a computer anymore. Using a command line for anything is advanced level computing in 2026.

I use Macports all the time, but on a PPC Mac, especially a G4, I often wish there was more prebuilt binaries so I didn't have to compile code for a few days just to update some software.
There are prebuilt binary archives for Tiger here: powerbookg4e.pagekite.me
And @Matias_ has prebuilt binaries for Leopard.
@barracuda156 has a massive number of prebuilt binaries for Snow Leopard.
This covers how to use binary archives, but feel free to message me or ask on a related thread if it is unclear: https://trac.macports.org/wiki/archives
Honestly, I hadn't really touched a command line before starting to use Macports in May 2025. I got a Powerbook with Tiger because I wanted Hypercard and a decent web browser on the same OS. I had only used System 7 and Windows prior to Tiger (and I still am confused by Windows Powershell lol).
 
I was looking for something fun to do with PowerPC so I took my a1047, dropped in an ssd and upgraded a vanilla 10.4.11 Tiger install to Shuriken and (havent yet but will) Sorbet. Shuriken on this box is quite snappy and in tandem with quality of life apps like Aquafox, Legacy AI etc. is quite a nice experience. On this box I opted for the Sierra theme with Candy Bar for the icons. Aside from installing Shuriken being an exercise in entering your password like a bazillion times, it's a very nice piece of Tiger kit.
Shuriken Sierra desktop1.jpg

I'll keep working to get it the way I like it but this is turning out to be just the light hearted fun I was looking for entering this weekend (after my fiber quit on me this morning LOL) .
 
I was looking for something fun to do with PowerPC so I took my a1047, dropped in an ssd and upgraded a vanilla 10.4.11 Tiger install to Shuriken and (havent yet but will) Sorbet. Shuriken on this box is quite snappy and in tandem with quality of life apps like Aquafox, Legacy AI etc. is quite a nice experience. On this box I opted for the Sierra theme with Candy Bar for the icons. Aside from installing Shuriken being an exercise in entering your password like a bazillion times, it's a very nice piece of Tiger kit.
View attachment 2594522
I'll keep working to get it the way I like it but this is turning out to be just the light hearted fun I was looking for entering this weekend (after my fiber quit on me this morning LOL) .
Aaaaaaand I broke it 😀
DDDF1DA3-36E3-4749-8CF5-D5B620C91218.jpeg


I was trying to figure out why my assigned icons to instances of inthebox had a border vs being transparent like the other icons so was kicking around in sys pref>accessibility when schwiiiiing, this happened. So far I’ve:

Reboot
Reset pram
Uninstalled sierra theme

I’m tired so will pick this up tomorrow some time. 😛

Any ideas?
 
Last edited:
  • Haha
Reactions: barracuda156
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.