From 188f832ae65f8451b269b778cad6c11ea39c70cf Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 10 Sep 1991 14:55:08 +0000 Subject: Added module 'al' (SGI audio library). --- Modules/config.c.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Modules/config.c.in b/Modules/config.c.in index bfe0ed9..69eb4e6 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -88,6 +88,9 @@ extern void initmarshal(); #ifdef USE_AUDIO extern void initaudio(); #endif +#ifdef USE_AL +extern void inital(); +#endif #ifdef USE_AMOEBA extern void initamoeba(); #endif @@ -132,6 +135,10 @@ struct { {"audio", initaudio}, #endif +#ifdef USE_AL + {"al", inital}, +#endif + #ifdef USE_AMOEBA {"amoeba", initamoeba}, #endif -- cgit v0.12