Blob Blame History Raw
--- 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
 };