Mercurial > hg > xemacs-beta
changeset 1381:20547bbdcf1e
[xemacs-hg @ 2003-03-25 23:09:53 by james]
Add .dylib to the set of acceptable shared library extensions.
author | james |
---|---|
date | Tue, 25 Mar 2003 23:09:56 +0000 |
parents | f1eb3b6f975b |
children | 134a4093b1e7 |
files | src/ChangeLog src/emodules.c |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Tue Mar 25 22:52:09 2003 +0000 +++ b/src/ChangeLog Tue Mar 25 23:09:56 2003 +0000 @@ -1,3 +1,8 @@ +2003-03-25 Andrew Begel <abegel@cs.berkeley.edu> + + * emodules.c (vars_of_module): Add .dylib as an acceptable shared + library file extension to support MacOS X. + 2003-03-22 Stephen J. Turnbull <stephen@xemacs.org> * database.c (Fopen_database): DB_AUTO_COMMIT is invalid in
--- a/src/emodules.c Tue Mar 25 22:52:09 2003 +0000 +++ b/src/emodules.c Tue Mar 25 23:09:56 2003 +0000 @@ -634,9 +634,10 @@ */); /* #### Export this to Lisp */ - Vmodule_extensions = list3 (build_string (".ell"), + Vmodule_extensions = list4 (build_string (".ell"), build_string (".so"), - build_string (".dll")); + build_string (".dll"), + build_string (".dylib")); staticpro (&Vmodule_extensions); load_modules_quietly = 0;