File liballeg4_4-modules.patch of Package allegro
Index: modules.lst
===================================================================
--- modules.lst.orig
+++ modules.lst
@@ -1,12 +1,6 @@
# List of modules to be loaded by the Unix version of Allegro.
-alleg-vga.so
-alleg-fbcon.so
-alleg-svgalib.so
alleg-dga2.so
-alleg-esddigi.so
-alleg-artsdigi.so
-alleg-sgialdigi.so
-alleg-alsadigi.so
-alleg-alsamidi.so
-alleg-jackdigi.so
+alleg-ossdigi.so
+alleg-ossmidi.so
+alleg-jack.so
Index: src/unix/umodules.c
===================================================================
--- src/unix/umodules.c.orig
+++ src/unix/umodules.c
@@ -100,8 +100,7 @@ void _unix_load_modules(int system_drive
}
for (pathptr = module_path; *pathptr; pathptr++) {
- snprintf(fullpath, sizeof fullpath, "%s/%d.%d.%d/modules.lst",
- *pathptr, ALLEGRO_VERSION, ALLEGRO_SUB_VERSION, ALLEGRO_WIP_VERSION);
+ snprintf(fullpath, sizeof fullpath, "%s/modules.lst", *pathptr);
fullpath[(sizeof fullpath) - 1] = 0;
f = pack_fopen(uconvert_ascii(fullpath, buf), F_READ);
if (f) goto found;