1995-05-26 05:06:02 +00:00
|
|
|
/* GNU Emacs site configuration template file. -*- C -*-
|
2010-05-13 03:18:04 +00:00
|
|
|
|
|
|
|
Copyright (C) 1988, 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006,
|
|
|
|
2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
2008-05-09 05:14:16 +00:00
|
|
|
GNU Emacs is free software: you can redistribute it and/or modify
|
1996-01-15 08:32:56 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2008-05-09 05:14:16 +00:00
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1996-01-15 08:32:56 +00:00
|
|
|
|
1995-05-26 05:06:02 +00:00
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
1996-01-15 08:32:56 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2008-05-09 05:14:16 +00:00
|
|
|
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* No code in Emacs #includes config.h twice, but some of the code
|
2003-02-04 14:56:31 +00:00
|
|
|
intended to work with other packages as well (like gmalloc.c)
|
1995-05-26 05:06:02 +00:00
|
|
|
think they can include it as many times as they like. */
|
|
|
|
#ifndef EMACS_CONFIG_H
|
|
|
|
#define EMACS_CONFIG_H
|
|
|
|
|
|
|
|
/* These are all defined in the top-level Makefile by configure.
|
|
|
|
They're here only for reference. */
|
|
|
|
|
|
|
|
/* Define LISP_FLOAT_TYPE if you want emacs to support floating-point
|
|
|
|
numbers. */
|
|
|
|
#undef LISP_FLOAT_TYPE
|
|
|
|
|
1997-07-01 05:09:25 +00:00
|
|
|
/* Define GNU_MALLOC if you want to use the GNU memory allocator. */
|
1998-04-17 05:04:46 +00:00
|
|
|
#define GNU_MALLOC
|
1995-05-26 05:06:02 +00:00
|
|
|
|
1997-07-01 05:09:25 +00:00
|
|
|
/* Define if you are using the GNU C Library. */
|
|
|
|
#undef DOUG_LEA_MALLOC
|
|
|
|
|
1995-05-26 05:06:02 +00:00
|
|
|
/* Define REL_ALLOC if you want to use the relocating allocator for
|
|
|
|
buffer space. */
|
1998-04-17 05:04:46 +00:00
|
|
|
#define REL_ALLOC
|
2000-11-25 19:18:49 +00:00
|
|
|
|
|
|
|
/* Enable conservative stack marking for GC. */
|
|
|
|
#define GC_MARK_STACK 1
|
|
|
|
|
|
|
|
/* MSVC ignores the "register" keyword, so test fails even though
|
|
|
|
setjmp does work. */
|
|
|
|
#define GC_SETJMP_WORKS 1
|
|
|
|
|
1995-05-26 05:06:02 +00:00
|
|
|
/* Define HAVE_X_WINDOWS if you want to use the X window system. */
|
|
|
|
#undef HAVE_X_WINDOWS
|
|
|
|
|
|
|
|
/* Define HAVE_X11 if you want to use version 11 of X windows.
|
|
|
|
Otherwise, Emacs expects to use version 10. */
|
|
|
|
#undef HAVE_X11
|
|
|
|
|
|
|
|
/* Define if using an X toolkit. */
|
|
|
|
#undef USE_X_TOOLKIT
|
|
|
|
|
|
|
|
/* Define this if you're using XFree386. */
|
|
|
|
#undef HAVE_XFREE386
|
|
|
|
|
1998-04-29 04:31:34 +00:00
|
|
|
/* Define this if you have Motif 2.1 or newer. */
|
|
|
|
#undef HAVE_MOTIF_2_1
|
|
|
|
|
1997-07-01 05:09:25 +00:00
|
|
|
/* Define HAVE_MENUS if you have mouse menus.
|
|
|
|
(This is automatic if you use X, but the option to specify it remains.)
|
|
|
|
It is also defined with other window systems that support xmenu.c. */
|
|
|
|
#undef HAVE_MENUS
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
/* Define if we have the X11R6 or newer version of Xt. */
|
|
|
|
#undef HAVE_X11XTR6
|
|
|
|
|
1997-07-01 05:09:25 +00:00
|
|
|
/* Define if we have the X11R6 or newer version of Xlib. */
|
|
|
|
#undef HAVE_X11R6
|
|
|
|
|
1995-05-26 05:06:02 +00:00
|
|
|
/* Define if netdb.h declares h_errno. */
|
|
|
|
#undef HAVE_H_ERRNO
|
|
|
|
|
|
|
|
/* If we're using any sort of window system, define some consequences. */
|
|
|
|
#ifdef HAVE_X_WINDOWS
|
1995-11-07 07:57:46 +00:00
|
|
|
#define HAVE_WINDOW_SYSTEM
|
1995-05-26 05:06:02 +00:00
|
|
|
#define HAVE_MOUSE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define USE_TEXT_PROPERTIES to support visual and other properties
|
|
|
|
on text. */
|
|
|
|
#define USE_TEXT_PROPERTIES
|
|
|
|
|
|
|
|
/* Define USER_FULL_NAME to return a string
|
|
|
|
that is the user's full name.
|
|
|
|
It can assume that the variable `pw'
|
|
|
|
points to the password file entry for this user.
|
|
|
|
|
|
|
|
At some sites, the pw_gecos field contains
|
|
|
|
the user's full name. If neither this nor any other
|
|
|
|
field contains the right thing, use pw_name,
|
|
|
|
giving the user's login name, since that is better than nothing. */
|
|
|
|
#define USER_FULL_NAME pw->pw_gecos
|
|
|
|
|
|
|
|
/* Define AMPERSAND_FULL_NAME if you use the convention
|
|
|
|
that & in the full name stands for the login id. */
|
|
|
|
#undef AMPERSAND_FULL_NAME
|
|
|
|
|
|
|
|
/* Things set by --with options in the configure script. */
|
|
|
|
|
|
|
|
/* Define to support POP mail retrieval. */
|
|
|
|
#undef MAIL_USE_POP
|
|
|
|
|
|
|
|
/* Define to support Kerberos-authenticated POP mail retrieval. */
|
|
|
|
#undef KERBEROS
|
1998-04-17 05:04:46 +00:00
|
|
|
/* Define to use Kerberos 5 instead of Kerberos 4 */
|
|
|
|
#undef KERBEROS5
|
|
|
|
/* Define to support GSS-API in addition to (or instead of) Kerberos */
|
|
|
|
#undef GSSAPI
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
/* Define to support using a Hesiod database to find the POP server. */
|
|
|
|
#undef HESIOD
|
|
|
|
|
|
|
|
/* Some things figured out by the configure script, grouped as they are in
|
|
|
|
configure.in. */
|
|
|
|
#ifndef _ALL_SOURCE /* suppress warning if this is pre-defined */
|
|
|
|
#undef _ALL_SOURCE
|
|
|
|
#endif
|
|
|
|
#undef HAVE_SYS_SELECT_H
|
|
|
|
#undef HAVE_SYS_TIMEB_H
|
|
|
|
#undef HAVE_SYS_TIME_H
|
|
|
|
#undef HAVE_UNISTD_H
|
|
|
|
#undef HAVE_UTIME_H
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_LINUX_VERSION_H
|
|
|
|
#undef HAVE_SYS_SYSTEMINFO_H
|
|
|
|
#undef HAVE_TERMIOS_H
|
|
|
|
#undef HAVE_LIMITS_H
|
1998-04-17 05:04:46 +00:00
|
|
|
#undef HAVE_STRING_H
|
2007-10-22 22:39:06 +00:00
|
|
|
#undef HAVE_STRINGS_H
|
|
|
|
#undef HAVE_STDLIB_H
|
2005-04-22 22:27:14 +00:00
|
|
|
#undef HAVE_PWD_H
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef STDC_HEADERS
|
|
|
|
|
|
|
|
#undef HAVE_LIBDNET
|
1995-11-07 07:57:46 +00:00
|
|
|
#undef HAVE_LIBPTHREADS
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_LIBRESOLV
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_LIBXMU
|
|
|
|
#undef HAVE_LIBNCURSES
|
1998-04-17 05:04:46 +00:00
|
|
|
#undef HAVE_LIBINTL
|
|
|
|
|
|
|
|
/* movemail Kerberos support */
|
|
|
|
/* libraries */
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_LIBKRB
|
1998-04-17 05:04:46 +00:00
|
|
|
#undef HAVE_LIBKRB4
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_LIBDES
|
1998-04-17 05:04:46 +00:00
|
|
|
#undef HAVE_LIBDES425
|
|
|
|
#undef HAVE_LIBKRB5
|
|
|
|
#undef HAVE_LIBCRYPTO
|
|
|
|
#undef HAVE_LIBCOM_ERR
|
|
|
|
/* header files */
|
|
|
|
#undef HAVE_KRB5_H
|
|
|
|
#undef HAVE_DES_H
|
|
|
|
#undef HAVE_KRB_H
|
|
|
|
#undef HAVE_KERBEROSIV_DES_H
|
|
|
|
#undef HAVE_KERBEROSIV_KRB_H
|
|
|
|
#undef HAVE_KERBEROS_DES_H
|
|
|
|
#undef HAVE_KERBEROS_KRB_H
|
|
|
|
#undef HAVE_COM_ERR_H
|
|
|
|
|
|
|
|
/* GSS-API libraries and headers */
|
|
|
|
#undef HAVE_LIBGSSAPI_KRB5
|
|
|
|
#undef HAVE_LIBGSSAPI
|
|
|
|
#undef HAVE_GSSAPI_H
|
1997-07-01 05:09:25 +00:00
|
|
|
|
|
|
|
/* Mail-file locking */
|
|
|
|
#undef HAVE_LIBMAIL
|
|
|
|
#undef HAVE_MAILLOCK_H
|
|
|
|
#undef HAVE_TOUCHLOCK
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
#undef HAVE_ALLOCA_H
|
|
|
|
|
|
|
|
#undef HAVE_GETTIMEOFDAY
|
1997-07-01 05:09:25 +00:00
|
|
|
/* If we don't have gettimeofday,
|
|
|
|
the test for GETTIMEOFDAY_ONE_ARGUMENT may succeed,
|
|
|
|
but we should ignore it. */
|
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
1995-11-07 07:57:46 +00:00
|
|
|
#undef GETTIMEOFDAY_ONE_ARGUMENT
|
1997-07-01 05:09:25 +00:00
|
|
|
#endif
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_GETHOSTNAME
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_GETDOMAINNAME
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_DUP2
|
|
|
|
#undef HAVE_RENAME
|
|
|
|
#undef HAVE_CLOSEDIR
|
|
|
|
|
|
|
|
#undef TM_IN_SYS_TIME
|
|
|
|
#undef HAVE_TM_ZONE
|
|
|
|
#undef HAVE_TZNAME
|
|
|
|
|
|
|
|
#undef const
|
|
|
|
|
|
|
|
#undef HAVE_LONG_FILE_NAMES
|
|
|
|
|
|
|
|
#undef CRAY_STACKSEG_END
|
|
|
|
|
|
|
|
#undef HAVE_LIBXBSD
|
|
|
|
#undef HAVE_XRMSETDATABASE
|
|
|
|
#undef HAVE_XSCREENRESOURCESTRING
|
|
|
|
#undef HAVE_XSCREENNUMBEROFSCREEN
|
|
|
|
#undef HAVE_XSETWMPROTOCOLS
|
|
|
|
|
|
|
|
#undef HAVE_MKDIR
|
|
|
|
#undef HAVE_RMDIR
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_SYSINFO
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_RANDOM
|
|
|
|
#undef HAVE_LRAND48
|
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
* alloc.c (overrun_check_malloc, overrun_check_realloc)
(overrun_check_free, xstrdup, allocate_string)
(allocate_string_data, compact_small_strings, Fmake_string)
(make_unibyte_string, make_multibyte_string)
(make_string_from_bytes, make_specified_string, make_float)
(Fcons, allocate_terminal, allocate_frame, make_pure_string)
(Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
memcpy, memmove, memset, memcmp.
* atimer.c (start_atimer, set_alarm): Likewise.
* buffer.c (clone_per_buffer_values, report_overlay_modification)
(mmap_realloc, init_buffer_once): Likewise.
* callint.c (Fcall_interactively): Likewise.
* callproc.c (Fcall_process, Fcall_process_region, child_setup)
(getenv_internal_1): Likewise.
* casefiddle.c (casify_object): Likewise.
* ccl.c (ccl_driver): Likewise.
* character.c (str_as_multibyte, str_to_multibyte): Likewise.
* charset.c (load_charset_map_from_file)
(load_charset_map_from_file, load_charset_map_from_vector)
(Fdefine_charset_internal): Likewise.
* cm.c (Wcm_clear): Likewise.
* coding.c (decode_eol, decode_coding_object)
(Fset_coding_system_priority, make_subsidiaries): Likewise.
* data.c (Faset): Likewise.
* dired.c (directory_files_internal, file_name_completion_stat):
Likewise.
* dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
(clear_glyph_row, copy_row_except_pointers)
(copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
(save_current_matrix, restore_current_matrix)
(build_frame_matrix_from_leaf_window, mirrored_line_dance)
(mirror_line_dance, scrolling_window): Likewise.
* doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
Likewise.
* doprnt.c (doprnt): Likewise.
* editfns.c (Fuser_full_name, make_buffer_string_both)
(Fmessage_box, Fformat, Ftranspose_regions): Likewise.
* emacs.c (sort_args): Likewise.
* eval.c (Fapply, Ffuncall): Likewise.
* fileio.c (Ffile_name_directory, make_temp_name)
(Fexpand_file_name, search_embedded_absfilename)
(Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
(auto_save_error): Likewise.
* fns.c (Fstring_equal, Fcopy_sequence, concat)
(string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
(internal_equal, Fclear_string, larger_vector, copy_hash_table)
(Fmake_hash_table): Likewise.
* fringe.c (Fdefine_fringe_bitmap): Likewise.
* ftfont.c (ftfont_text_extents): Likewise.
* getloadavg.c (getloadavg): Likewise.
* image.c (define_image_type, make_image, make_image_cache)
(x_create_x_image_and_pixmap, xbm_image_p)
(w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
(xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
(init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
(png_image_p, png_read_from_memory, png_load, jpeg_image_p)
(tiff_image_p, tiff_read_from_memory, gif_image_p)
(gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
Likewise.
* indent.c (scan_for_column, compute_motion): Likewise.
* insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
(insert_1_both, insert_from_gap, replace_range_2): Likewise.
* intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
* keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
(kbd_buffer_store_event_hold, apply_modifiers_uncached)
(store_user_signal_events, menu_bar_items, tool_bar_items)
(process_tool_bar_item, append_tool_bar_item)
(read_char_minibuf_menu_prompt, read_key_sequence)
(Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
Likewise.
* keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
Likewise.
* lisp.h (STRING_COPYIN): Likewise.
* lread.c (Fload, read1, oblookup): Likewise.
* msdos.c (Frecent_doskeys): Likewise.
* nsfns.m (Fx_create_frame): Likewise.
* nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
Likewise.
* nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
(EmacsImage-initForXPMWithDepth:width:height:flip:length:):
Likewise.
* nsmenu.m (ns_update_menubar): Likewise.
* nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
* print.c (print_unwind, printchar, strout, print_string)
(print_error_message): Likewise.
* process.c (conv_lisp_to_sockaddr, set_socket_option)
(Fmake_network_process, Fnetwork_interface_list)
(Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
(init_process): Likewise.
* ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
* regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
Likewise.
* scroll.c (do_scrolling, do_direct_scrolling)
(scrolling_max_lines_saved): Likewise.
* search.c (search_buffer, wordify, Freplace_match): Likewise.
* sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
* syntax.c (skip_chars, skip_syntaxes): Likewise.
* sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
(emacs_set_tty): Likewise.
* term.c (encode_terminal_code, calculate_costs)
(produce_special_glyphs, create_tty_output, init_tty, delete_tty):
Likewise.
* termcap.c (tgetst1, gobble_line): Likewise.
* termhooks.h (EVENT_INIT): Likewise.
* tparam.c (tparam1): Likewise.
* unexalpha.c (unexec): Likewise.
* unexec.c (write_segment): Likewise.
* unexmacosx.c (unexec_write_zero): Likewise.
* w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
(Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
* w32font.c (w32font_list_family, w32font_text_extents)
(w32font_list_internal, w32font_match_internal)
(w32font_open_internal, compute_metrics, Fx_select_font):
Likewise.
* w32menu.c (set_frame_menubar, add_menu_item)
(w32_menu_display_help, w32_free_submenu_strings): Likewise.
* w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
* w32uniscribe.c (uniscribe_list_family): Likewise.
* w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
* window.c (make_window, replace_window, set_window_buffer)
(Fsplit_window): Likewise.
* xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
(add_to_log, message3, x_consider_frame_title)
(append_space_for_newline, extend_face_to_end_of_line)
(decode_mode_spec_coding, init_glyph_string): Likewise.
* xfaces.c (x_create_gc, get_lface_attributes_no_remap)
(Finternal_copy_lisp_face, Finternal_merge_in_global_face)
(face_attr_equal_p, make_realized_face, make_face_cache)
(free_realized_faces, lookup_named_face, smaller_face)
(face_with_height, lookup_derived_face)
(x_supports_face_attributes_p, Finternal_set_font_selection_order)
(Finternal_set_font_selection_order, realize_default_face)
(compute_char_face, face_at_buffer_position)
(face_for_overlay_string, face_at_string_position, merge_faces):
Likewise.
* xfns.c (xic_create_fontsetname, Fx_create_frame)
(Fx_window_property, x_create_tip_frame)
(Fx_backspace_delete_keys_p): Likewise.
* xfont.c (xfont_list, xfont_match, xfont_list_family)
(xfont_text_extents): Likewise.
* xmenu.c (set_frame_menubar, xmenu_show): Likewise.
* xrdb.c (magic_file_p, x_get_resource): Likewise.
* xselect.c (x_queue_event, x_get_window_property)
(receive_incremental_selection): Likewise.
* xsmfns.c (x_session_check_input): Likewise.
* xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
(handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
Likewise.
* character.h (BCOPY_SHORT): Removed.
* config.in: Regenerate.
* dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
* emacs.c (main) [PROFILING]: Don't declare
dump_opcode_frequencies.
* lisp.h (safe_bcopy): Remove declaration.
(memset) [!HAVE_MEMSET]: Declare.
(memcpy) [!HAVE_MEMCPY]: Likewise.
(memmove) [!HAVE_MEMMOVE]: Likewise.
(memcmp) [!HAVE_MEMCMP]: Likewise.
* s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
(BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
Don't define.
(HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
* s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
(BCOPY_DOWNWARD_SAFE): Don't define.
* sysdep.c (memset) [!HAVE_MEMSET]: Define.
(memcpy) [!HAVE_MEMCPY]: Define.
(memmove) [!HAVE_MEMMOVE]: Define.
(memcmp) [!HAVE_MEMCMP]: Define.
* config.nt (HAVE_BCOPY, HAVE_BCMP): Remove undefs.
(HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET, HAVE_MEMCMP): Add undefs.
* sed2v2.inp (HAVE_MEMCPY, HAVE_MEMSET): Edit to 1.
(HAVE_BZERO): Don't edit.
* lwlib.c (lwlib_memset, lwlib_bcopy): Remove.
(malloc_widget_value, free_widget_info, allocate_widget_instance)
(lw_separator_p): Replace lwlib_memset, lwlib_bcopy, bzero, bcmp by
memset, memcpy, memcmp.
* lwlib-utils.c (XtApplyToWidgets): Likewise.
* xlwmenu.c (XlwMenuInitialize): Likewise.
* lwlib.h (lwlib_bcopy): Remove declaration.
* ebrowse.c (add_sym, make_namespace): Replace bcopy, bzero by
memcpy, memmove, memset.
* pop.c (pop_retrieve, socket_connection, pop_getline): Likewise.
* CPP-DEFINES (BCOPY_DOWNWARD_SAFE, BCOPY_UPWARD_SAFE)
(GAP_USE_BCOPY, HAVE_BCMP, HAVE_BCOPY, bcmp, bcopy, bzero):
Remove.
* configure.in: Don't check for bcopy, bcmp, bzero. Don't include
<strings.h> and don't define bcopy, bzero, BCMP in config.h.
2010-07-07 22:18:28 +00:00
|
|
|
#undef HAVE_MEMCPY
|
|
|
|
#undef HAVE_MEMMOVE
|
|
|
|
#undef HAVE_MEMSET
|
|
|
|
#undef HAVE_MEMCMP
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_LOGB
|
|
|
|
#undef HAVE_FREXP
|
|
|
|
#undef HAVE_FMOD
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_RINT
|
|
|
|
#undef HAVE_CBRT
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_FTIME
|
|
|
|
#undef HAVE_RES_INIT /* For -lresolv on Suns. */
|
|
|
|
#undef HAVE_SETSID
|
|
|
|
#undef HAVE_FPATHCONF
|
|
|
|
#undef HAVE_SELECT
|
|
|
|
#undef HAVE_MKTIME
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_EUIDACCESS
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_GETPAGESIZE
|
2005-09-10 11:46:35 +00:00
|
|
|
#undef HAVE_GET_CURRENT_DIR_NAME
|
1997-07-01 05:09:25 +00:00
|
|
|
#undef HAVE_TZSET
|
|
|
|
#undef HAVE_SETLOCALE
|
|
|
|
#undef HAVE_UTIMES
|
|
|
|
#undef HAVE_SETRLIMIT
|
|
|
|
#undef HAVE_SETPGID
|
|
|
|
#undef HAVE_GETCWD
|
|
|
|
#undef HAVE_SHUTDOWN
|
1998-04-17 05:04:46 +00:00
|
|
|
#undef HAVE_STRFTIME
|
2002-03-13 23:04:39 +00:00
|
|
|
/* Standard Windows strftime does not support POSIX.2 extensions. */
|
|
|
|
#define STRFTIME_NO_POSIX2 1
|
1997-07-01 05:09:25 +00:00
|
|
|
|
2002-03-19 12:03:42 +00:00
|
|
|
#define HAVE_SENDTO 1
|
|
|
|
#define HAVE_RECVFROM 1
|
|
|
|
#define HAVE_GETSOCKOPT 1
|
|
|
|
#define HAVE_SETSOCKOPT 1
|
|
|
|
#define HAVE_GETSOCKNAME 1
|
|
|
|
#define HAVE_GETPEERNAME 1
|
2006-09-24 12:36:19 +00:00
|
|
|
#define HAVE_LANGINFO_CODESET 1
|
2002-03-19 12:03:42 +00:00
|
|
|
/* Local (unix) sockets are not supported. */
|
|
|
|
#undef HAVE_SYS_UN_H
|
|
|
|
|
1998-12-03 03:12:04 +00:00
|
|
|
#define LOCALTIME_CACHE
|
1995-05-26 05:06:02 +00:00
|
|
|
#undef HAVE_INET_SOCKETS
|
|
|
|
|
|
|
|
#undef HAVE_AIX_SMT_EXP
|
|
|
|
|
|
|
|
/* Define if you have the ANSI `strerror' function.
|
|
|
|
Otherwise you must have the variable `char *sys_errlist[]'. */
|
|
|
|
#undef HAVE_STRERROR
|
|
|
|
|
|
|
|
/* Define if `sys_siglist' is declared by <signal.h>. */
|
|
|
|
#undef SYS_SIGLIST_DECLARED
|
|
|
|
|
|
|
|
/* Define if `struct utimbuf' is declared by <utime.h>. */
|
|
|
|
#undef HAVE_STRUCT_UTIMBUF
|
|
|
|
|
|
|
|
/* Define if `struct timeval' is declared by <sys/time.h>. */
|
|
|
|
#undef HAVE_TIMEVAL
|
|
|
|
|
2005-07-30 11:30:33 +00:00
|
|
|
/* Define to 1 if you have the <getopt.h> header file. */
|
|
|
|
#undef HAVE_GETOPT_H
|
|
|
|
|
|
|
|
/* Define to 1 if you have the `getopt_long_only' function. */
|
|
|
|
#undef HAVE_GETOPT_LONG_ONLY
|
|
|
|
|
1995-05-26 05:06:02 +00:00
|
|
|
/* If using GNU, then support inline function declarations. */
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define INLINE __inline__
|
|
|
|
#else
|
|
|
|
#define INLINE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EMACS_CONFIGURATION
|
|
|
|
|
|
|
|
#undef EMACS_CONFIG_OPTIONS
|
|
|
|
|
|
|
|
/* The configuration script defines opsysfile to be the name of the
|
|
|
|
s/SYSTEM.h file that describes the system type you are using. The file
|
|
|
|
is chosen based on the configuration name you give.
|
|
|
|
|
|
|
|
See the file ../etc/MACHINES for a list of systems and the
|
|
|
|
configuration names to use for them.
|
|
|
|
|
|
|
|
See s/template.h for documentation on writing s/SYSTEM.h files. */
|
2003-02-04 14:56:31 +00:00
|
|
|
#undef config_opsysfile
|
1996-11-19 07:15:13 +00:00
|
|
|
#include "s/ms-w32.h"
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
/* The configuration script defines machfile to be the name of the
|
|
|
|
m/MACHINE.h file that describes the machine you are using. The file is
|
|
|
|
chosen based on the configuration name you give.
|
|
|
|
|
|
|
|
See the file ../etc/MACHINES for a list of machines and the
|
|
|
|
configuration names to use for them.
|
|
|
|
|
|
|
|
See m/template.h for documentation on writing m/MACHINE.h files. */
|
|
|
|
#undef config_machfile
|
|
|
|
#include "m/intel386.h"
|
|
|
|
|
|
|
|
/* Define `subprocesses' should be defined if you want to
|
|
|
|
have code for asynchronous subprocesses
|
|
|
|
(as used in M-x compile and M-x shell).
|
2008-07-23 06:26:32 +00:00
|
|
|
Only MSDOS does not support this. */
|
1995-05-26 05:06:02 +00:00
|
|
|
|
2008-07-23 06:26:32 +00:00
|
|
|
#define subprocesses
|
1995-05-26 05:06:02 +00:00
|
|
|
|
|
|
|
/* Define STACK_DIRECTION here, but not if m/foo.h did. */
|
|
|
|
#ifndef STACK_DIRECTION
|
|
|
|
#undef STACK_DIRECTION
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define the return type of signal handlers if the s-xxx file
|
|
|
|
did not already do so. */
|
|
|
|
#define RETSIGTYPE void
|
|
|
|
|
|
|
|
/* SIGTYPE is the macro we actually use. */
|
|
|
|
#ifndef SIGTYPE
|
|
|
|
#define SIGTYPE RETSIGTYPE
|
|
|
|
#endif
|
|
|
|
|
1995-11-07 07:57:46 +00:00
|
|
|
#ifdef emacs /* Don't do this for lib-src. */
|
|
|
|
/* Tell regex.c to use a type compatible with Emacs. */
|
1998-04-17 05:04:46 +00:00
|
|
|
#define RE_TRANSLATE_TYPE Lisp_Object
|
2001-01-02 22:41:07 +00:00
|
|
|
#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
|
1998-04-29 04:31:34 +00:00
|
|
|
#define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0)
|
1995-11-07 07:57:46 +00:00
|
|
|
#endif
|
|
|
|
|
1997-07-01 05:09:25 +00:00
|
|
|
/* Avoid link-time collision with system mktime if we will use our own. */
|
|
|
|
#if ! HAVE_MKTIME || BROKEN_MKTIME
|
|
|
|
#define mktime emacs_mktime
|
|
|
|
#endif
|
|
|
|
|
2003-06-27 11:55:04 +00:00
|
|
|
#define my_strftime nstrftime /* for strftime.c */
|
|
|
|
|
2000-08-22 21:48:48 +00:00
|
|
|
#ifndef WINDOWSNT
|
1995-05-26 05:06:02 +00:00
|
|
|
/* Some of the files of Emacs which are intended for use with other
|
|
|
|
programs assume that if you have a config.h file, you must declare
|
2010-06-03 05:29:02 +00:00
|
|
|
the type of getenv. */
|
1995-05-26 05:06:02 +00:00
|
|
|
extern char *getenv ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* EMACS_CONFIG_H */
|
1995-11-07 07:57:46 +00:00
|
|
|
|
|
|
|
/* These default definitions are good for almost all machines.
|
1997-07-01 05:09:25 +00:00
|
|
|
The exceptions override them in m/MACHINE.h. */
|
1995-11-07 07:57:46 +00:00
|
|
|
|
|
|
|
#ifndef BITS_PER_CHAR
|
|
|
|
#define BITS_PER_CHAR 8
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BITS_PER_SHORT
|
|
|
|
#define BITS_PER_SHORT 16
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Note that lisp.h uses this in a preprocessor conditional, so it
|
|
|
|
would not work to use sizeof. That being so, we do all of them
|
|
|
|
without sizeof, for uniformity's sake. */
|
|
|
|
#ifndef BITS_PER_INT
|
|
|
|
#define BITS_PER_INT 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef BITS_PER_LONG
|
|
|
|
#define BITS_PER_LONG 32
|
|
|
|
#endif
|
1998-04-17 05:04:46 +00:00
|
|
|
|
2000-06-11 20:58:22 +00:00
|
|
|
#ifndef POINTER_TYPE
|
|
|
|
#define POINTER_TYPE void
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PROTOTYPES
|
|
|
|
#define PROTOTYPES 1
|
|
|
|
#endif
|
|
|
|
|
1998-04-17 05:04:46 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include "string.h"
|
|
|
|
#endif
|
2007-10-22 22:39:06 +00:00
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
#include "strings.h"
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
2000-09-24 11:12:04 +00:00
|
|
|
|
|
|
|
#ifndef NO_RETURN
|
|
|
|
#if defined __GNUC__ && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR >= 5))
|
|
|
|
#define NO_RETURN __attribute__ ((__noreturn__))
|
|
|
|
#else
|
|
|
|
#define NO_RETURN /* nothing */
|
|
|
|
#endif
|
|
|
|
#endif
|
2003-09-01 15:45:59 +00:00
|
|
|
|
2007-10-22 22:39:06 +00:00
|
|
|
/* Redefine abort. */
|
|
|
|
#ifdef HAVE_NTGUI
|
|
|
|
#define abort w32_abort
|
|
|
|
void w32_abort (void) NO_RETURN;
|
|
|
|
#endif
|
|
|
|
|
2008-06-26 22:33:33 +00:00
|
|
|
/* Prevent accidental use of features unavailable in
|
|
|
|
older Windows versions we still support. */
|
|
|
|
#define _WIN32_WINNT 0x0400
|
|
|
|
|
|
|
|
/* Make a leaner executable. */
|
|
|
|
#define WIN32_LEAN_AND_MEAN 1
|
|
|
|
|
2003-09-01 15:45:59 +00:00
|
|
|
/* arch-tag: df720992-aa5a-499a-882d-958dc5eeb5e9
|
|
|
|
(do not change this comment) */
|