Fix the MS-DOS build
* src/lread.c (syms_of_lread): Make the MS-DOS build work again.
This commit is contained in:
parent
660e941235
commit
897f33bf31
1 changed files with 10 additions and 5 deletions
15
src/lread.c
15
src/lread.c
|
@ -5479,11 +5479,16 @@ to the specified file name if a suffix is allowed or required. */);
|
||||||
|
|
||||||
DEFVAR_LISP ("dynamic-library-suffixes", Vdynamic_library_suffixes,
|
DEFVAR_LISP ("dynamic-library-suffixes", Vdynamic_library_suffixes,
|
||||||
doc: /* A list of suffixes for loadable dynamic libraries. */);
|
doc: /* A list of suffixes for loadable dynamic libraries. */);
|
||||||
Vdynamic_library_suffixes =
|
|
||||||
Fcons (build_pure_c_string (DYNAMIC_LIB_SECONDARY_SUFFIX), Qnil);
|
#ifndef MSDOS
|
||||||
Vdynamic_library_suffixes =
|
Vdynamic_library_suffixes
|
||||||
Fcons (build_pure_c_string (DYNAMIC_LIB_SUFFIX),
|
= Fcons (build_pure_c_string (DYNAMIC_LIB_SECONDARY_SUFFIX), Qnil);
|
||||||
Vdynamic_library_suffixes);
|
Vdynamic_library_suffixes
|
||||||
|
= Fcons (build_pure_c_string (DYNAMIC_LIB_SUFFIX),
|
||||||
|
Vdynamic_library_suffixes);
|
||||||
|
#else
|
||||||
|
Vdynamic_library_suffixes = Qnil;
|
||||||
|
#endif
|
||||||
|
|
||||||
DEFVAR_LISP ("load-file-rep-suffixes", Vload_file_rep_suffixes,
|
DEFVAR_LISP ("load-file-rep-suffixes", Vload_file_rep_suffixes,
|
||||||
doc: /* List of suffixes that indicate representations of \
|
doc: /* List of suffixes that indicate representations of \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue