allegro/allegro-4.2.0-64bit.patch
Hans de Goede 6f1526a70a - fix sound not working on PPC (bz 183112)
- fix allegro not finding and loading plugins/modules on x86_64 (bz 183113)
2006-02-27 09:58:51 +00:00

16 lines
401 B
Diff

--- allegro-4.2.0/src/unix/umodules.c.64bit 2006-02-26 14:43:37.000000000 +0100
+++ allegro-4.2.0/src/unix/umodules.c 2006-02-26 14:44:26.000000000 +0100
@@ -44,7 +44,12 @@
/* where to look for modules.lst */
static char *module_path[] =
{
- "/usr/local/lib/allegro/", "/usr/lib/allegro/", NULL
+#ifdef __LP64__
+ "/usr/lib64/allegro/",
+#else
+ "/usr/lib/allegro/",
+#endif
+ NULL
};