* Makefile.in: Fix build error on FreeBSD.
[emacs.git] / ChangeLog
blob48d1e52e2cd3200dc8a897752d62ec3818bff42d
1 2012-09-17  Paul Eggert  <eggert@cs.ucla.edu>
3         * Makefile.in: Fix build error on FreeBSD.
4         ($(MAKEFILE_NAME)): Pass MAKE='$(MAKE)' to config.status's env.
5         Suggested by Wolfgang Jenker in
6         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00430.html>.
7         (MAKE_CONFIG_STATUS): Remove.  Remaining use expanded.
8         This undoes part of the 2012-09-10 patch.
9         (bootstrap): Run ./configure, rather than trying to run config.status
10         if it exists.  That builds src/epaths.h more reliably.
12         Remove no-longer-needed Solaris 2.4 vfork bug workaround.
13         * configure.ac (ac_cv_func_vfork_works): Default to 'no' on
14         Solaris 2.4, so that AC_FUNC_VFORK doesn't think vfork works.
16 2012-09-17  Glenn Morris  <rgm@gnu.org>
18         * configure.ac (copyright): New output variable.
19         (COPYRIGHT): New AC_DEFINE.
21 2012-09-16  Paul Eggert  <eggert@cs.ucla.edu>
23         Remove configure's --without-sync-input option (Bug#12450).
24         * configure.ac (SYNC_INPUT, BROKEN_SA_RESTART): Remove.
26 2012-09-16  Glenn Morris  <rgm@gnu.org>
28         Increase compartmentalization of Nextstep builds rules,
29         and store Emacs version number in fewer versioned files.
30         * configure.ac (ns_appsrc): Use relative names.
31         (ns_frag): Remove.
32         (Info-gnustep.plist, Emacs.desktop, Info.plist, InfoPlist.strings)
33         (nextstep/Makefile): Generate these nextstep files.
34         (SUBDIR_MAKEFILES): Add nextstep.
35         * Makefile.in (clean, distclean, bootstrap-clean): Add nextstep.
36         * make-dist (nextstep/templates): Add directory.
37         (nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj): Remove.
38         (nextstep/Cocoa/Emacs.base/Contents)
39         (nextstep, nextstep/GNUstep/Emacs.base/Resources): Update contents.
41 2012-09-15  Paul Eggert  <eggert@cs.ucla.edu>
43         Port better to POSIX hosts lacking _setjmp (Bug#12446).
44         * configure.ac (HAVE__SETJMP, HAVE_SIGSETJMP): New symbols.
45         (_setjmp, _longjmp): Remove.
47 2012-09-14  Paul Eggert  <eggert@cs.ucla.edu>
49         * configure.ac (--without-sync-input): Fix typo in usage message.
51         * configure.ac: Port to hosts lacking gtk.
52         (PKG_CHECK_MODULES): Capture pkg-config diagnostics
53         better, in particular, problems in invoking pkg-config itself.
54         This is useful on hosts that don't have pkg-config.
55         (GTK_MODULES): Do not exit 'configure' simply because gtk3
56         and gtk2 are both missing.  Problem found on Solaris 8.
58 2012-09-13  Jan Djärv  <jan.h.d@swipnet.se>
60         * configure.ac: Reorder Xaw3d messages.
61         Report Gtk+ 3 as GTK.
63 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
65         Simplify SIGIO usage (Bug#12408).
66         * configure.ac (NO_TERMIO, BROKEN_FIONREAD, BROKEN_SIGAIO)
67         (BROKEN_SIGPOLL, BROKEN_SIGPTY): Remove.
68         (USABLE_FIONREAD, USABLE_SIGIO): New symbols.  All uses of
69         'defined SIGIO' replaced with 'defined USABLE_SIGIO', with no need
70         to #undef SIGIO now (which was error-prone).  Likewise, all uses
71         of 'defined FIONREAD' replaced with 'defined USABLE_FIONREAD'.
73 2012-09-12  Jan Djärv  <jan.h.d@swipnet.se>
75         * configure.ac: No --with-x-toolkit given: Try gtk3 toolkit first
76         and then gtk2 if not found.
77         --with-x-toolkit=gtk|yes: As above, but fail if gtk2 or gt3 not found.
78         --with-x-toolkit=gtk2: Only try gtk2, fail if not found.
79         --with-x-toolkit=gtk3: Only try gtk3, fail if not found.
81 2012-09-11  Glenn Morris  <rgm@gnu.org>
83         * Makefile.in (install-arch-dep, install-arch-indep, install-doc):
84         Be more explicit about dependencies, for parallel `make install'.
86 2012-09-11  Paul Eggert  <eggert@cs.ucla.edu>
88         Simplify, document, and port floating-point (Bug#12381).
89         * configure.ac (logb, cbrt): Do not check for these functions,
90         as they are not being used.
92 2012-09-10  Paul Eggert  <eggert@cs.ucla.edu>
94         Improve robustness of 'make bootstrap' (Bug#12376).
95         Run autogen.sh after bootstrap-clean, to avoid bzr pull issues.
96         * INSTALL, README: Document autogen.sh.
97         * Makefile.in (Makefile): Mark it as precious, since it's updated
98         atomically.
99         (MAKE_CONFIG_STATUS): New macro.
100         (config.status, bootstrap): Use it.  This causes 'make bootstrap'
101         to run config.status with the --recheck option, which is more
102         appropriate for a bootstrap.
103         (bootstrap): Run autogen.sh right after cleaning.  Don't worry
104         about failures due to missing tools.
105         * autogen.sh: Exit with status 101 when failing due to missing tools.
106         * make-dist: Distribute autogen.sh.
108 2012-09-09  Paul Eggert  <eggert@cs.ucla.edu>
110         Assume C89 or later for math functions (Bug#12381).
111         * configure.ac (frexp, fmod): Remove checks for these functions,
112         as we now assume them.
113         (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC, NO_MATHERR)
114         (HAVE_EXCEPTION):
115         Remove; no longer needed.
117 2012-09-07  Paul Eggert  <eggert@cs.ucla.edu>
119         More signal-handler cleanup (Bug#12327).
120         * configure.ac (FLOAT_CHECK_DOMAIN): Comment fix (Bug#12327).
122 2012-09-06  Paul Eggert  <eggert@cs.ucla.edu>
124         Signal-handler cleanup (Bug#12327).
125         * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
126         Adjust to syssignal.h changes.
127         (SIGNAL_H_AB): Remove; no longer needed.
129 2012-09-04  Paul Eggert  <eggert@cs.ucla.edu>
131         Simplify redefinition of 'abort' (Bug#12316).
132         * configure.ac (NO_ABRT): Remove.
134         * configure.ac (_setjmp, _longjmp): Check by compiling
135         instead of by guessing.  The guesses were wrong for
136         recent versions of Solaris, such as Solaris 11.
138 2012-09-03  Paul Eggert  <eggert@cs.ucla.edu>
140         * configure.ac (WARN_CFLAGS): Omit -Wjump-misses-init.
141         It generates false alarms in doc.c, regex.c, xdisp.c.  See
142         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00040.html>.
144         Merge from gnulib, incorporating:
145         2012-08-29 stdbool: be more compatible with mixed C/C++ compiles
146         2011-11-30 manywarnings: update the list of "all" warnings
148 2012-09-02  Jan Djärv  <jan.h.d@swipnet.se>
150         * configure.ac (HAVE_GOBJECT): Check for gobject-2.0 (Bug#12332).
152 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
154         * configure.ac (_FORTIFY_SOURCE): Define only when optimizing.
155         This ports to glibc 2.15 or later, when configured with
156         --enable-gcc-warnings.  See Eric Blake in
157         <http://lists.gnu.org/archive/html/bug-grep/2012-09/msg00000.html>.
159 2012-09-01  Daniel Colascione  <dan.colascione@gmail.com>
161         * configure.ac: Introduce term_header variable, which holds the
162         value which will become TERM_HEADER in code.  We effect our choice
163         of window system by setting term_header and WINDOW_SYSTEM_OBJ
164         instead of using ad-hoc variables and flags for each window
165         system.
167 2012-08-26  Paul Eggert  <eggert@cs.ucla.edu>
169         * configure.ac (CFLAGS): Prefer -g3 to -g if -g3 works
170         and if the user has not specified CFLAGS.  -g3 simplifies
171         debugging, since it makes macros visible to the debugger.
173 2012-08-25  Juanma Barranquero  <lekktu@gmail.com>
175         * lib/makefile.w32-in ($(BLD)/execinfo.$(O)): Update dependencies.
177 2012-08-25  Eli Zaretskii  <eliz@gnu.org>
179         * lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
180         (GNULIBOBJS): Add $(BLD)/execinfo.$(O).
182 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
184         On assertion failure, print backtrace if available.
185         Merge from gnulib, incorporating:
186         2012-08-24 execinfo: port to FreeBSD
187         2012-08-22 execinfo: new module
188         * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
189         * lib/execinfo.c, lib/execinfo.in.h, m4/execinfo.m4: New files.
191 2012-08-22  Glenn Morris  <rgm@gnu.org>
193         * Makefile.in (install-arch-dep): If NO_BIN_LINK is non-null,
194         do not create the bin/emacs link.  (Bug#12011)
196 2012-08-21  Paul Eggert  <eggert@cs.ucla.edu>
198         Merge from gnulib, incorporating:
199         2012-08-20 extern-inline: support old GCC 'inline'
201 2012-08-20  Glenn Morris  <rgm@gnu.org>
203         * configure.ac (AC_PROG_LN_S): Test for ln.
204         * Makefile.in (LN_S): New, set by configure.
205         (install-arch-dep): Use $LN_S.
207 2012-08-19  Paul Eggert  <eggert@cs.ucla.edu>
209         Merge from gnulib, incorporating:
210         2012-08-19 ignore-value, stat-time, timespec: omit AC_C_INLINE
211         2012-08-19 mktime, sys_select: avoid 'static inline'
212         2012-08-19 gnulib-tool: Fix indentation.
214 2012-08-18  Paul Eggert  <eggert@cs.ucla.edu>
216         * lib/sigprocmask.c, m4/signalblocking.m4: Remove.
217         These files have been unused since the 2012-06-22 patch that
218         introduced high-resolution time stamps.
220 2012-08-17  Jan Beich  <jbeich@tormail.org>  (tiny change)
222         * configure.ac (PTY_OPEN): Try posix_openpt on gnu-linux,
223         gnu-kfreebsd, freebsd, and netbsd.  (Bug#12040)
225 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
227         Merge from gnulib, incorporating:
228         2012-08-05 extern-inline: also ignore -Wmissing-declarations
230 2012-08-10  Juanma Barranquero  <lekktu@gmail.com>
232         * lib/makefile.w32-in (STAT_TIME_H): New macro.
233         (FTOASTR_C, $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O))
234         ($(BLD)/u64.$(O)): Update dependencies.
236 2012-08-10  Glenn Morris  <rgm@gnu.org>
238         * configure.ac (DIRECTORY_SEP): Move here from src/lisp.h.
240 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
242         * configure.ac (--disable-features): Rename to --without-all.
243         (OPTION_DEFAULT_ON): Change to use with_features.
244         * INSTALL: Fix description.
246 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
248         * configure.ac: New option --disable-features.
249         (OPTION_DEFAULT_ON): Change to use enable_features.
250         * INSTALL: Explain --disable-features.
252 2012-08-07  Glenn Morris  <rgm@gnu.org>
254         * configure.ac: Require automake 1.11 (fairly arbitrarily).
255         * autogen.sh (automake_min): Get it from configure.ac.
257 2012-08-06  Glenn Morris  <rgm@gnu.org>
259         * configure.ac (BROKEN_GETWD) [unixware]: New define.
261         * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove.
262         (PENDING_OUTPUT_COUNT): Absorb GNU_LIBRARY_PENDING_OUTPUT_COUNT.
263         (DISPNEW_NEEDS_STDIO_EXT): New define.
265 2012-08-05  Michael Albinus  <michael.albinus@gmx.de>
267         * INSTALL: Explain how to completely disable D-Bus.  (Bug#12112)
269 2012-08-05  Ulrich Müller  <ulm@gentoo.org>
271         * configure.ac: Disable paxctl if binaries don't have a
272         PT_PAX_FLAGS program header.  (Bug#11979)
274 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
276         * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O),
277         $(BLD)/timespec.$(O), and $(BLD)/u64.$(O).
278         (SHA512_H): Don't mention u64.h twice.
279         ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)):
280         New targets.
282 2012-08-03  Paul Eggert  <eggert@cs.ucla.edu>
284         Merge from gnulib, incorporating:
285         2012-08-02 stat-time, timespec, u64: support naive out-of-dir builds
287 2012-08-02  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
289         * lib/Makefile.am (DEFAULT_INCLUDES): Add -I$(top_srcdir)/lib for
290         out-of-tree build.
292 2012-08-02  Glenn Morris  <rgm@gnu.org>
294         * make-dist: Remove src/s.
296         * lib/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
298 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
300         Merge from gnulib (Bug#12116), incorporating:
301         2012-08-01 extern-inline: new module
302         2012-08-01 stat-time, timespec, u64, utimens: use extern-inline
303         * lib/stat-time.c, lib/timespec.c, lib/u64.c, m4/extern-inline.m4:
304         New files.  The new .c files are for instantiating extern inline
305         functions.
307         Port to Solaris 8.
308         Without this change, 'configure' fails because the recently-added
309         wait3 prototype in config.h messes up later 'configure' tests.
310         Fix this problem by droping wait3 and WRETCODE, as they're
311         no longer needed on hosts that are current porting targets.
312         * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
313         All uses changed to waitpid and WEXITSTATUS.
315         Avoid needless autoheader after autogen.sh.
316         * src/stamp-h.in: Remove from bzr repository; no longer needed there.
317         * .bzrignore: Add it.
318         * autogen.sh: Create it.
320 2012-08-01  Glenn Morris  <rgm@gnu.org>
322         * configure.ac (DOS_NT, MSDOS): New system type templates.
324 2012-08-01  Ulrich Müller  <ulm@gentoo.org>
326         * configure.ac (LIB_STANDARD, START_FILES) [FreeBSD]:
327         Don't include crtbegin.o and crtend.o.  (Bug#12047)
329 2012-08-01  Glenn Morris  <rgm@gnu.org>
331         * configure.ac (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC)
332         (INTERNAL_TERMINAL): New.
334         * configure.ac (DEVICE_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP)
335         (IS_ANY_SEP): Move here from src/lisp.h.
337 2012-08-01  Juanma Barranquero  <lekktu@gmail.com>
339         * lib/makefile.w32-in (CONFIG_H): Update dependencies.
340         (CONF_POST_H): New macro.
342 2012-07-31  Glenn Morris  <rgm@gnu.org>
344         * configure.ac (S_FILE): Remove output variable.
346         * configure.ac (opsysfile): Use AH_TEMPLATE.  Doc fix.
348         * configure.ac (NULL_DEVICE, SEPCHAR, USER_FULL_NAME):
349         Move here from src.
351         * configure.ac (AMPERSAND_FULL_NAME, subprocesses):
352         Move here from conf_post.h.
354 2012-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
356         Improve OpenMotif detection on GNU/Linux systems.
357         * configure.ac (MOTIF): Check for /usr/include/openmotif
358         and /usr/(lib|lib64)/openmotif if --with-x-toolkit=motif.
360 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
362         * Makefile.in (install-arch-indep): Avoid eval.
364 2012-07-31  Glenn Morris  <rgm@gnu.org>
366         * configure.ac (opsysfile, S_FILE): Now they are always empty.
368         * configure.ac (opsysfile): Forgot to set it to empty on sol2-10
369         when removing src/s/sol2-6.h yesterday.
371         * configure.ac (USG5_4): Reintroduce this.
372         (opsysfile): Set to empty on irix6-5, sol2*, and unixware.
374         * configure.ac (wait3, WRETCODE): Move here from src/s/usg5-4-common.h.
376         * configure.ac (opsysfile): Set to empty on hpux*, darwin;
377         and to s/usg5-4-common.h on irix6-5.
379 2012-07-30  Glenn Morris  <rgm@gnu.org>
381         * configure.ac (AH_BOTTOM): Use an include file, so that the
382         contents do not get processed by autoheader.
384 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
386         Do not overwrite config.status while executing it (Bug#11214).
387         * Makefile.in (MAKEFILE_NAME): New macro.
388         ($(MAKEFILE_NAME)): Rename rule from Makefile.
389         * configure.ac (epaths): Set MAKEFILE_NAME to a bogus value,
390         so that GNU 'make' isn't tempted to make the Makefile and then
391         regenerate config.status while config.status is running.
393         Update .PHONY listings in makefiles.
394         * Makefile.in (.PHONY): Add all, ${SUBDIR}, blessmail, epath-force,
395         FRC, install-arch-dep, install-arch-indep, install-doc,
396         install-info, install-man, install-etc, install-strip, uninstall,
397         bootstrap-clean, TAGS, tags, info-real, force-info, check-info-dir.
398         (.RECURSIVE): Remove; hasn't been needed for years.
400 2012-07-30  Glenn Morris  <rgm@gnu.org>
402         * configure.ac (SIGNAL_H_AHB): New hack macro.
403         (opsysfile): Set to empty on netbsd, openbsd.
404         (AH_BOTTOM): Include signal.h if SIGNAL_H_AHB is defined.
406         * configure.ac (_longjmp, _setjmp, TIOCSIGSEND): Move here from src/s.
408 2012-07-30  Jan Djärv  <jan.h.d@swipnet.se>
410         * Makefile.in (install-arch-indep): Remove sh -x.
412 2012-07-30  Glenn Morris  <rgm@gnu.org>
414         * configure.ac (opsysfile): Tweak message for null case.
416         * configure.ac (opsysfile): Set to empty on aix4-2, freebsd,
417         gnu-linux, gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware.
419 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
421         Merge from gnulib, incorporating:
422         * doc/misc/texinfo.tex: Update to 2012-07-29.17 version.
424 2012-07-29  Jan Djärv  <jan.h.d@swipnet.se>
426         * Makefile.in (install-arch-indep): Handle space in locallisppath.
428 2012-07-28  Paul Eggert  <eggert@cs.ucla.edu>
430         Use Gnulib environ module (Bug#9772).
431         * m4/environ.m4: New file, from gnulib.
432         * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
434         Use Gnulib stdalign module (Bug#9772, Bug#9960).
435         This should improve portability of macros like alignof and DECL_ALIGN.
436         * lib/stdalign.in.h, m4/stdalign.m4: New files, from gnulib.
437         * .bzrignore: Add lib/stdalign.h.
438         * config.bat: Do not set NO_DECL_ALIGN; no longer needed.
439         Copy lib/stdalign.in.h to lib/stdalign.in-h as needed.
440         * configure.ac (HAVE_ATTRIBUTE_ALIGNED): Remove the code that
441         fiddles with this, as gnulib now does this for us.
443 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
445         Fix toolkit configuration report.
446         * configure.ac (USE_X_TOOLKIT): Report toolkit as GTK3 if
447         --with-x-toolkit=gtk3 is used.
449 2012-07-17  Paul Eggert  <eggert@cs.ucla.edu>
451         Fix regression with pthread_sigmask on FreeBSD (Bug#11884).
452         * configure.ac: Configure gnulib at the end, not before running
453         pkg-config.  This restores the behavior before 2012-06-22, when
454         higher-resolution time stamps were added, and fixes a bug whereby
455         LIB_PTHREAD was not used and gnulib's part of 'configure'
456         therefore incorrectly assumed that pthread_sigmask wasn't working.
457         Fix the problem with -lrt and clock_gettime a different way.
458         This should complete the fix for Bug#11884.
459         (pre_PKG_CONFIG_CFLAGS, pre_PKG_CONFIG_LIBS): New shell vars.
461 2012-07-15  Paul Eggert  <eggert@cs.ucla.edu>
463         Merge from gnulib, incorporating:
464         2012-07-15 pthread_sigmask: fix bug on FreeBSD 9 (Bug#11884)
465         2012-07-11 gettext: do not assume '#define ... defined ...' behavior
467 2012-07-14  Glenn Morris  <rgm@gnu.org>
469         * configure.ac (GC_SETJMP_WORKS, GC_MARK_STACK): Move here from src/s.
470         (AH_BOTTOM): Move GC_SETJMP_WORKS GCC fallback to main body.
472 2012-07-13  Glenn Morris  <rgm@gnu.org>
474         * configure.ac (opsysfile): Set to empty on gnu, cygwin.
476         * configure.ac (BSD4_2, BSD_SYSTEM, USG, USG5, _AIX, CYGWIN)
477         (DARWIN_OS, GNU_LINUX, HPUX, IRIX6_5, SOLARIS2):
478         Move "system type" macros here from src/s.
479         (BSD_SYSTEM_AHB): New hack macro.
480         (AH_BOTTOM): Set BSD_SYSTEM, using BSD_SYSTEM_AHB.
482         * configure.ac (NSIG_MINIMUM, ULIMIT_BREAK_VALUE, SETUP_SLAVE_PTY)
483         (GC_MARK_SECONDARY_STACK): Move here from src/s.
485 2012-07-12  Glenn Morris  <rgm@gnu.org>
487         * configure.ac (AH_BOTTOM) [DARWIN_OS]: Move SYSTEM_PURESIZE_EXTRA
488         setting here from src/s/darwin.h.
490         * configure.ac (NO_MATHERR): Unconditionally define for Darwin;
491         as src/s/darwin.h used to.
493         * configure.ac (NARROWPROTO, NO_ABORT, BROKEN_GET_CURRENT_DIR_NAME)
494         (BROKEN_FIONREAD, BROKEN_PTY_READ_AFTER_EAGAIN, BROKEN_SIGAIO)
495         (BROKEN_SIGPOLL, BROKEN_SIGPTY, FIRST_PTY_LETTER, NO_EDITRES)
496         (G_SLICE_ALWAYS_MALLOC, PREFER_VSUSP, PTY_ITERATION, PTY_OPEN)
497         (PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF, RUN_TIME_REMAP)
498         (SETPGRP_RELEASES_CTTY, TAB3, TABDLY, RUN_TIME_REMAP, UNIX98_PTYS)
499         (XOS_NEEDS_TIME_H): Move here from src/s.
501 2012-07-11  Glenn Morris  <rgm@gnu.org>
503         * configure.ac (INTERRUPT_INPUT): Move here from src/s.
504         (HAVE_PTYS, HAVE_SOCKETS): Define unconditionally.
506 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
508         * configure.ac (tzset): Remove check that's redundant with gnulib.
510 2012-07-11  Glenn Morris  <rgm@gnu.org>
512         * configure.ac (CLASH_DETECTION): Define unconditionally.
514         * configure.ac (opsysfile): Use bsd-common on gnu systems.
516         * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT):
517         (SIGNALS_VIA_CHARACTERS): Move here from src/s.
519 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
521         Assume mkdir, rename, rmdir, strerror.
522         * configure.ac (mkdir, rename, rmdir, strerror): Remove check.
524 2012-07-11  Glenn Morris  <rgm@gnu.org>
526         * configure.ac (DONT_REOPEN_PTY): Move here from src/s.
528         * configure.ac (DEFAULT_SOUND_DEVICE): New definition.
530 2012-07-10  Paul Eggert  <eggert@cs.ucla.edu>
532         Remove "#define unix" that is no longer needed (Bug#11905).
533         Merge from gnulib to make "#define unix" unnecessary, incorporating:
534         2012-07-10 getloadavg: clean out old Emacs and Autoconf cruft
535         2012-07-09 getopt: Simplify after Emacs changed.
537 2012-07-10  Glenn Morris  <rgm@gnu.org>
539         * configure.ac (DATA_START, DATA_SEG_BITS, PENDING_OUTPUT_COUNT):
540         Move here from src/s.
542 2012-07-09  Andreas Schwab  <schwab@linux-m68k.org>
544         * configure.ac (PNG_DEPSTRUCT): Define this instead of
545         PNG_DEPRECATED.
547 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
549         Add GCC-style 'const' attribute to functions that can use it.
550         * configure.ac (WARN_CFLAGS): Add -Wsuggest-attribute=const.
551         (ATTRIBUTE_CONST): New macro, in config.h.
553 2012-07-09  Juanma Barranquero  <lekktu@gmail.com>
555         * lib/makefile.w32-in: Rework dependencies.
556         (GNU_LIB, NT_INC, C_CTYPE_H, MS_W32_H, CONFIG_H, FILEMODE_H)
557         (FTOASTR_H, FTOASTR_C, GETOPT_INT_H, MD5_H, SHA1_H, SHA256_H)
558         (U64_H, SHA512_H): New macros.
559         (SRC): Redefine to point to src/, not current directory.
560         ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
561         ($(BLD)/c-strncasecmp.$(O), $(BLD)/dtoastr.$(O))
562         ($(BLD)/dtotimespec.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
563         ($(BLD)/gettime.$(O), $(BLD)/strftime.$(O), $(BLD)/time_r.$(O))
564         ($(BLD)/timespec-add.$(O), $(BLD)/timespec-sub.$(O), $(BLD)/md5.$(O))
565         ($(BLD)/sha1.$(O), $(BLD)/sha256.$(O), $(BLD)/sha512.$(O))
566         ($(BLD)/filemode.$(O)): Update dependencies.
568 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
570         Merge from gnulib, incorporating:
571         2012-07-09 timespec: mark functions with const attributes
573         Rename configure.in to configure.ac (Bug#11603).
574         The name 'configure.in' has been obsolescent for quite some time,
575         and the next release of Autoconf will generate warnings for it.
576         See commit 'v2.69-4-g560f16b' of 2012-05-06, "general: deprecate
577         'configure.in' as autoconf input" in the Autoconf git repository.
578         * configure.ac: Rename from configure.in.
579         * INSTALL, INSTALL.BZR, README, make-dist:
580         * Makefile.in (AUTOCONF_INPUTS):
581         * autogen.sh (autoconf_min):
582         * autogen/update_autogen (sources):
583         Adjust to reflect new name.
585 2012-07-08  Paul Eggert  <eggert@cs.ucla.edu>
587         Restore deprecation warnings, except for older libpng.
588         * configure.in (WARN_CFLAGS): Remove -Wno-deprecated-declarations.
589         (HAVE_LIBPNG_PNG_H): Don't bother checking for this if we have png.h.
590         (PNG_DEPRECATED): Define when compiling with older PNG versions.
592 2012-07-07  Andreas Schwab  <schwab@linux-m68k.org>
594         * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
596 2012-07-07  Paul Eggert  <eggert@cs.ucla.edu>
598         Improve static checking when configured --with-ns.
599         See Samuel Bronson's remarks in
600         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00146.html>.
601         * configure.in (WARN_CFLAGS): Omit -Wunreachable-code, as it's
602         a no-op with recent GCC and harmful in earlier ones.
603         Omit -Wsync-nand, as it's irrelevant to Emacs and provokes a
604         warning when compiling with ObjC.  Always omit
605         -Wunsafe-loop-optimizations, as we don't mind when optimization is
606         being done correctly.
608 2012-07-07  Glenn Morris  <rgm@gnu.org>
610         * configure.in (BROKEN_SA_RESTART): Doc fix.
612         * configure.in: Rather than checking for things then undef'ing
613         them on some platforms, simply don't check for them.
614         (getwd): Don't check for it on unixware.
615         (random, rint): Don't check for these on hpux.
616         (res_init, libresolv): Don't check for these on darwin.
618 2012-07-07  Juanma Barranquero  <lekktu@gmail.com>
620         * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O),
621         $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O).
622         ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
623         ($(BLD)/c-strncasecmp.$(O)): New dependencies.
625 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
627         * configure.in: Document --enable-gcc-warnings better.
629         Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
630         This is safer than strcasecmp, which has unspecified behavior
631         outside the POSIX locale and in practice sometimes does not work
632         in multibyte locales.  Similarly for c_strncasecmp and strncasecmp.
633         * configure.in (strcasecmp, strncasecmp): Remove checks.
635         * lib/c-ctype.c, lib/c-ctype.h, lib/c-strcase.h, lib/c-strcasecmp.c:
636         * lib/c-strncasecmp.c: New files, taken from gnulib.
637         * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
639         Merge from gnulib, incorporating:
640         2012-07-06 timespec-sub: avoid duplicate include
641         Reported by Juanma Barranquero.
643 2012-07-06  Glenn Morris  <rgm@gnu.org>
645         * make-dist [update]: Let autoreconf figure out what needs updating.
646         Use `make info-real'.  leim/leim-list.el should always exist.
647         Check cd return value.
649 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
651         Merge from gnulib.  This is for OpenBSD 5.1 amd64.
652         * m4/sys_time_h.m4: New version from gnulib, incorporating:
653         2012-07-05 sys_time: allow too-wide tv_sec
655 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
657         Merge from gnulib.
658         * lib/alloca.in.h: New version from gnulib, incorporating:
659         2012-07-03 alloca: add support for HP NonStop TNS/E native
661 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
663         * configure.in: If --enable-gcc-warnings, disable
664         -Wunsafe-loop-optimizations for -O1 optimization level.
666 2012-06-30  Glenn Morris  <rgm@gnu.org>
668         * configure.in (standardlisppath): New output variable.
669         (lisppath): Use standardlisppath.
670         * Makefile.in (standardlisppath): New, set by configure.
671         (epaths-force): Use standardlisppath and locallisppath rather than
672         lisppath.
674 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
676         * configure.in: Fix previous change. Remove --enable-asserts.
677         (CPPFLAGS): Remove conditional -DXASSERTS=1.
678         Add --enable-link-time-optimization.
679         * INSTALL: Mention this.
681 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
683         * configure.in: Add glyphs category to --enable-checking option.
684         (GLYPH_DEBUG): Define if glyphs debugging is enabled.
686 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
688         * configure.in (ENABLE_CHECKING): Update comment.
690 2012-06-28  Paul Eggert  <eggert@cs.ucla.edu>
692         * configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
693         Emacs proper no longer uses these headers, and can rely on Gnulib
694         for these checks.
696         Merge from gnulib.
697         * m4/getopt.m4: Copy new version from gnulib, incorporating:
698         getopt-posix: No longer guarantee that option processing is resettable.
700 2012-06-27  Glenn Morris  <rgm@gnu.org>
702         * configure.in: Only check for paxctl on gnu-linux.  (Bug#11398#26)
704         * INSTALL: Remove references to paths.el.
706 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
708         * lib/makefile.w32-in ($(GNULIBOBJS)): Depend on stamp_BLD.  This
709         replaces separate dependency for each object file, which required
710         the same object file to be mentioned twice, causing failures in
711         parallel builds.
713 2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
715         Clean out last vestiges of the old HAVE_CONFIG_H stuff.
716         * lib/makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
718 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
720         * configure.in (AC_CHECK_FUNCS): Detect library functions
721         strcasecmp and strncasecmp.
723 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
725         Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
726         We might as well use the spelling standardized by C11,
727         as in the long run that should simplify maintenance.
728         * configure.in (NO_RETURN): Remove.  All uses replaced by _Noreturn.
730 2012-06-24  Eli Zaretskii  <eliz@gnu.org>
732         * lib/makefile.w32-in ($(BLD)/dtotimespec.$(O)):
733         ($(BLD)/timespec-add.$(O)):
734         ($(BLD)/timespec-sub.$(O)): Don't depend on
735         $(EMACS_ROOT)/nt/inc/sys/time.h.
737         * lib/stat-time.h:
738         * lib/timespec.h:
739         * lib/utimens.h: Revert last change.
741 2012-06-23  Paul Eggert  <eggert@cs.ucla.edu>
743         Merge from gnulib.
744         * m4/getopt.m4: Copy new version from gnulib, incorporating:
745         getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
747 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
749         Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
750         * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/dtotimespec.$(O),
751         $(BLD)/gettime.$(O), $(BLD)/timespec-add.$(O), and
752         $(BLD)/timespec-sub.$(O).
753         ($(BLD)/dtotimespec.$(O)):
754         ($(BLD)/gettime.$(O)):
755         ($(BLD)/timespec-add.$(O)):
756         ($(BLD)/timespec-sub.$(O)): New dependencies.
758         * lib/stat-time.h:
759         * lib/timespec.h:
760         * lib/utimens.h: Include sys/time.h.
762 2012-06-23  Andreas Schwab  <schwab@linux-m68k.org>
764         * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
765         the correct CFLAGS and LIBS.
767 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
769         Support higher-resolution time stamps (Bug#9000).
770         * configure.in (gl_ASSERT_NO_GNULIB_POSIXCHECK)
771         (gl_ASSERT_NO_GNULIB_TESTS, gl_INIT): Move these up earlier, so
772         that the new clock stuff doesn't clash with RSVG_LIBS.
773         (AC_CHECK_HEADERS): Don't check for sys/select.h, sys/time.h, utime.h,
774         as gnulib does that for us now.
775         (emacs_cv_struct_utimbuf, HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL)
776         (GETTIMEOFDAY_ONE_ARGUMENT): Remove; gnulib does these now.
777         (AC_CHECK_FUNCS): Remove utimes; no longer needed.
778         * lib/dtotimespec.c, lib/gettime.c, lib/gettimeofday.c, lib/pselect.c:
779         * lib/stat-time.h, lib/sys_select.in.h, lib/sys_time.in.h:
780         * lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
781         * lib/utimens.c, lib/utimens.h, m4/clock_time.m4, m4/gettime.m4:
782         * m4/gettimeofday.m4, m4/pselect.m4, m4/stat-time.m4:
783         * m4/sys_select_h.m4, m4/sys_socket_h.m4, m4/sys_time_h.m4:
784         * m4/timespec.m4, m4/utimbuf.m4, m4/utimens.m4, m4/utimes.m4:
785         New files, copied automatically from gnulib.
786         * lib/gnulib.mk, m4/gnulib-comp.m4: Merge from gnulib.
788 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
790         Merge from gnulib.
791         * lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
792         * lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
793         * m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
794         * m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
795         Copy new versions from gnulib, incorporating the following changes:
796         2012-06-22 time_r: fix typo that always overrode localtime_r decl
797         2012-06-22 Write "Mac OS X" instead of "MacOS X".
798         2012-06-21 mktime: fix integer overflow in 'configure'-time test
799         2012-06-21 nonblocking: Avoid compilation error on mingw64.
800         2012-06-19 stat, fstat: Avoid warnings on mingw64.
801         2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
803 2012-06-13  Andreas Schwab  <schwab@linux-m68k.org>
805         * configure.in: Rename --enable-use-lisp-union-type to
806         --enable-check-lisp-object-type and define CHECK_LISP_OBJECT_TYPE
807         instead of USE_LISP_UNION_TYPE.
809 2012-06-12  Glenn Morris  <rgm@gnu.org>
811         * configure.in (HAVE_PROCFS, _STRUCTURED_PROC): New AC_DEFINEs.
812         (opsysfile): Set specially for sol2-10.
814         * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
815         New AC_DEFINEs, for hpux11.
816         (opsysfile): Set specially for hpux11.
818 2012-06-12  Paul Eggert  <eggert@cs.ucla.edu>
820         * configure.in: Coalesce some function checking.
821         This makes 'configure' a bit smaller.
822         Prefer AC_CHECK_FUNCS_ONCE for functions that we always check for.
824 2012-06-12  Glenn Morris  <rgm@gnu.org>
826         * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
828         * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
830         * configure.in: Anticipate platforms with no src/s file.
832 2012-06-12  Chong Yidong  <cyd@gnu.org>
834         * configure.in: Check for MagickMergeImageLayers (Bug#11678).
836 2012-06-11  Glenn Morris  <rgm@gnu.org>
838         * configure.in (SYSTEM_TYPE): New AC_DEFINE.
840 2012-06-09  Michael Albinus  <michael.albinus@gmx.de>
842         * configure.in (dbus_type_is_valid): Check for library function.
844 2012-06-06  Glenn Morris  <rgm@gnu.org>
846         * INSTALL, make-dist: Remove vcdiff.
848 2012-06-03  Glenn Morris  <rgm@gnu.org>
850         * INSTALL, make-dist: Remove rcs-checkin.
852 2012-06-03  Ulrich Müller  <ulm@gentoo.org>
854         * configure.in (PAXCTL): Check for paxctl. (Bug#11398)
856 2012-06-01  Paul Eggert  <eggert@cs.ucla.edu>
858         Remove --disable-maintainer-mode option from 'configure'.  (Bug#11555)
859         It is confusingly named and rarely useful.  See, for example,
860         <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
861         * INSTALL.BZR: Don't mention --disable-maintainer-mode.
862         * Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
863         * configure.in: Remove --disable-maintainer-mode.
864         (USE_MAINTAINER_MODE, MAINT): Remove.
866 2012-05-28  Paul Eggert  <eggert@cs.ucla.edu>
868         Make 'configure' a bit smaller and faster.
869         * configure.in (INSTALL_INFO): Set it with one call to
870         AC_PATH_PROG, not three.
871         (PKG_CONFIG): Hoist this out of PKG_CHECK_MODULES, since it's
872         so likely that it'll be needed.
873         (AC_CHECK_HEADERS_ONCE): Prefer to AC_CHECK_HEADERS where either works.
874         (AC_PROG_MAKE_SET): Remove; Automake does this.
875         (sysinfo): Do not check for this function, as it's never used.
876         (tzset): Check for this function just once.
877         * m4/manywarnings.m4: Sync from gnulib, incorporating the following:
878         2012-05-27 manywarnings: remove duplicate -Wmultichar entry
880 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
882         * config.bat (lib): Create/update lib/stdalign.in-h and
883         lib/sys_types.in-h.
885         * lib/makefile.w32-in ($(BLD)/md5.$(O)):
886         ($(BLD)/sha1.$(O)):
887         ($(BLD)/sha256.$(O)):
888         ($(BLD)/sha512.$(O)): Depend on $(EMACS_ROOT)/nt/inc/stdalign.h.
889         Suggested by Christoph Scholtes <cschol2112@googlemail.com>.
891         * lib/getopt_.h: Regenerate.
893 2012-05-27  Paul Eggert  <eggert@cs.ucla.edu>
895         Assume gnulib does largefile.
896         Gnulib does the largefile configuration anyway, so when configure.in
897         invokes AC_SYS_LARGEFILE, that bloats 'configure' unnecessarily.
898         * configure.in (AC_SYS_LARGEFILE): Remove.
899         * lib/gnulib.mk: Autoupdate.
901 2012-05-26  Paul Eggert  <eggert@cs.ucla.edu>
903         Merge from gnulib.  (Bug#11527)
905         The build procedure now creates <stdalign.h> and <sys/types.h> for
906         older hosts that lack a working <stdalign.h> or whose
907         <sys/types.h> does not define pid_t, size_t, ssize_t, mode_t.  New
908         symbols such as WINDOWS_64_BIT_OFF_T may require attention in the
909         msdos and nt builds.
911         Here is a precis of gnulib changes that seem relevant; please see
912         the gnulib ChangeLog for details.
914         2012-05-18 crypto: fix bug in large buffer handling
915         2012-05-14 ignore-value.h: remove unused _GL_ATTRIBUTE_DEPRECATED
916         2012-05-10 _Noreturn: port config.h to gcc -Wundef
917         2012-05-08 warnings.m4: give a means to specify the program to compile
918         2012-05-07 stdint: be more consistent with glibc, SunOS libc
919         2012-04-21 Large File Support for native Windows platforms.
920         2012-04-14 stat: Bypass buggy override in mingw64.
921         2012-03-29 stdio: don't assume gets any more
922         2012-03-24 Enable common subexpression optimization in GCC.
923         2012-02-09 maint: replace FSF snail-mail addresses with URLs
924         2012-01-30 sys_stat: Fix support for mingw64 and MSVC.
925         2012-01-28 strtoimax: eliminate need for stdint.h, inttypes.h checks
926         2012-01-21 stdint: Add support for Android.
927         2012-01-15 Improve support for MSVC 9.
928         2012-01-08 mktime: Avoid compilation error on Solaris 11.
929         2012-01-05 Use ', not `, for quoting output.
930         2012-01-05 strtoimax: Don't replace systems where intmax_t is int.
931         2012-01-05 strtoimax: Work around AIX 5.1 bug.
932         2012-01-05 inttypes: Modernize.
933         2011-12-13 inttypes, stdint: add C++11 support
934         2011-11-26 Fix conflict between two instantiations of module 'unistd'.
935         2011-11-21 _Noreturn: Check that _MSC_VER is defined
936         2011-11-10 ptsname_r: Avoid compilation error on OSF/1 5.1.
937         2011-11-09 raise: fix mingw handling of SIGPIPE
938         2011-10-27 Add stdalign module and use it in other modules.
940         * lib/stdalign.in.h, lib/sys_types.in.h, m4/off_t.m4, m4/stdalign.m4:
941         * m4/sys_types_h.m4:
942         New files.
943         * build-aux/move-if-change, build-aux/snippet/_Noreturn.h:
944         * build-aux/snippet/arg-nonnull.h, build-aux/snippet/c++defs.h:
945         * build-aux/snippet/warn-on-use.h, doc/misc/texinfo.tex:
946         * lib/alloca.in.h, lib/allocator.h, lib/careadlinkat.c:
947         * lib/careadlinkat.h, lib/dosname.h, lib/dup2.c, lib/filemode.c:
948         * lib/filemode.h, lib/ftoastr.c, lib/ftoastr.h, lib/getloadavg.c:
949         * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
950         * lib/gettext.h, lib/gnulib.mk, lib/ignore-value.h, lib/intprops.h:
951         * lib/inttypes.in.h, lib/lstat.c, lib/md5.c, lib/md5.h, lib/mktime.c:
952         * lib/pathmax.h, lib/pthread_sigmask.c, lib/readlink.c, lib/sha1.c:
953         * lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
954         * lib/signal.in.h, lib/sigprocmask.c, lib/stat.c, lib/stdarg.in.h:
955         * lib/stdbool.in.h, lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h:
956         * lib/stdlib.in.h, lib/strftime.c, lib/strftime.h, lib/strtoimax.c:
957         * lib/strtol.c, lib/strtoll.c, lib/strtoul.c, lib/strtoull.c:
958         * lib/symlink.c, lib/sys_stat.in.h, lib/time.in.h, lib/time_r.c:
959         * lib/u64.h, lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
960         * m4/alloca.m4, m4/c-strtod.m4, m4/dup2.m4, m4/extensions.m4:
961         * m4/filemode.m4, m4/getloadavg.m4, m4/getopt.m4, m4/gl-comp.m4:
962         * m4/gnulib-common.m4, m4/gnulib-tool.m4, m4/include_next.m4:
963         * m4/inttypes.m4, m4/largefile.m4, m4/longlong.m4, m4/lstat.m4:
964         * m4/md5.m4, m4/mktime.m4, m4/multiarch.m4, m4/nocrash.m4:
965         * m4/pathmax.m4, m4/pthread_sigmask.m4, m4/readlink.m4, m4/sha1.m4:
966         * m4/sha256.m4, m4/sha512.m4, m4/signal_h.m4, m4/signalblocking.m4:
967         * m4/socklen.m4, m4/ssize_t.m4, m4/st_dm_mode.m4, m4/stat.m4:
968         * m4/stdarg.m4, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4:
969         * m4/stdio_h.m4, m4/stdlib_h.m4, m4/strftime.m4, m4/strtoimax.m4:
970         * m4/strtoll.m4, m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4:
971         * m4/sys_stat_h.m4, m4/time_h.m4, m4/time_r.m4, m4/tm_gmtoff.m4:
972         * m4/unistd_h.m4, m4/warnings.m4, m4/wchar_t.m4:
973         Update from gnulib.
975 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
977         Remove src/m/*.
978         * configure.in: Remove all mention of src/m/*.
979         (machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
980         All uses removed.
981         (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
982         (BITS_PER_LONG_LONG): Move to src/lisp.h.
983         * lib/makefile.w32-in: Remove dependencies on
984         $(EMACS_ROOT)/src/m/intel386.h.
985         * make-dist: Don't make links to src/m.
987 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
989         * Makefile.in (ACLOCAL_INPUTS): Fix up gnulib-comp.m4 name.  (Bug#11529)
990         Without this further fix, aclocal was being invoked unnecessarily.
992 2012-05-22  Glenn Morris  <rgm@gnu.org>
994         * Makefile.in (blessmail, install-arch-dep, uninstall):
995         Check cd lib-src works.
996         (install-arch-dep, uninstall): Remove unneeded subshells.
998 2012-05-21  Glenn Morris  <rgm@gnu.org>
1000         * update-subdirs: Move to build-aux/.
1001         * make-dist, Makefile.in (install-arch-indep): Update for this change.
1003         * Makefile.in (leimdir): New, set by configure.
1004         (COPYDIR, COPYDESTS): Add leim directories.
1005         (install-leim): Remove.
1006         (install-arch-indep): Handle leim installation directly.
1008         * vpath.sed: Remove unused file.
1009         * make-dist: No more vpath.sed.
1011 2012-05-21  Paul Eggert  <eggert@cs.ucla.edu>
1013         Use full name for m4/gnulib-comp.m4.  (Bug#11529)
1014         Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions,
1015         even though the file's name in gnulib is m4/gnulib-comp.m4.
1016         This had a problem when merging from gnulib, as the code temporarily
1017         renamed it to the full name, causing problems when interrupted.
1018         Now the file has its full name, with the idea that we will find
1019         a solution for MS-DOS that does not affect the rest of Emacs.
1020         * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4.
1022         Assume C89 or later.
1023         * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
1024         (POINTER_TYPE, PROTOTYPES): Remove.
1026         Make merging from gnulib a script, not a makefile action.
1027         Putting it in a makefile has some problems with reflection, as
1028         merging from gnulib updates 'configure', which can update the makefile.
1029         Putting it in a standalone script breaks this loop.
1030         * Makefile.in (gnulib_srcdir, $(gnulib_srcdir), DOS_gnulib_comp.m4)
1031         (GNULIB_MODULES, GNULIB_TOOL_FLAGS, sync-from-gnulib):
1032         Remove, moving the actions to the script admin/merge-gnulib.
1034 2012-05-21  Glenn Morris  <rgm@gnu.org>
1036         * configure.in (LEIM_INSTALLDIR):
1037         Rename to leimdir, treat like lispdir.
1039 2012-05-21  Glenn Morris  <rgm@gnu.org>
1041         * Makefile.in (install-arch-indep, install-doc, install-info)
1042         (uninstall): Scrap superfluous subshells.
1044 2012-05-19  Ulrich Mueller  <ulm@gentoo.org>
1046         * Makefile.in (install-etc): Respect DESTDIR.  (Bug#11518)
1048 2012-05-19  Paul Eggert  <eggert@cs.ucla.edu>
1050         * configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
1051         getdomainname, mblen (twice), mbrlen (twice), mbsinit, ualarm,
1052         getsockopt, setsockopt, mremap, mempcpy.
1054         * configure.in (machine): Do not set to 'vax', since src/m/vax.h
1055         is being removed.
1056         (AC_CHECK_FUNCS): Remove ftime.
1058 2012-05-19  Glenn Morris  <rgm@gnu.org>
1060         * Makefile.in (install-arch-indep): Remove unneeded subshell.
1062         * Makefile.in (install-arch-indep): Remove unneeded chmod.
1063         Set permissions of lisp/subdirs.el.
1065         * Makefile.in (SUBDIR): Add leim.  Update users.
1067         * Makefile.in (lib, lib-src, lisp): Check cd return value.
1069         * Makefile.in (leim): No need to set PARALLEL.
1071 2012-05-18  Glenn Morris  <rgm@gnu.org>
1073         * Makefile.in (install-arch-indep, install-info, install-man):
1074         Simplify some one-sided ifs.
1076         * Makefile.in: Install only the relevant DOC file.
1077         (install-arch-indep): Delete etc/DOC*.
1078         (install-doc): No more need to delete etc/DOC.
1080         * Makefile.in (install-arch-indep): Split into several rules.
1081         (install-doc, innstall-info, install-man): New rules.
1083         * configure.in (mandir): May as well include it in the NS app bundle.
1085         * configure.in (INSTALL_ARCH_INDEP_EXTRA): New output variable.
1086         * Makefile.in (INSTALL_ARCH_INDEP_EXTRA): New, set by configure.
1087         (install-arch-indep): Don't install-etc for self-contained ns builds.
1089         * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
1090         No longer unconditonally add /sw directories.  (Bug#2280)
1092         * Makefile.in (install-arch-dep): Depend on install-arch-indep.
1093         (install-arch-indep): Depend on install-leim.
1094         (install): Remove explicit install-leim dependence.
1096         * Makefile.in (install-arch-indep):
1097         Move last element of mkdir rule here.
1098         (mkdir): Remove rule.
1100         * Makefile.in (install-arch-indep): Remove unneeded chmods.
1101         INSTALL_DATA does this for us.
1103         * Makefile.in (install-arch-dep): Ensure bindir exists.
1104         Drop mkdir dependency.
1105         (install-arch-indep): Ensure docdir, infodir, mandir exist.
1106         (install-leim): Drop mkdir dependency.
1107         (mkdir): Remove most directories, now made in relevant rules.
1109         * Makefile.in (install-arch-indep): Combine adjacent loops.
1111 2012-05-17  Glenn Morris  <rgm@gnu.org>
1113         * Makefile.in (install-etc, mkdir):
1114         Make relevant directories in install-etc rather than mkdir.
1116         * Makefile.in (write_subdir): Create the directory if needed.
1117         (install-arch-dep, mkdir): No need to make site-lisp directories.
1119         * Makefile.in (write_subdir): New.
1120         (install-arch-indep, install-arch-dep): Use $write_subdir.
1122         * configure.in (docdir, etcdir, infodir, lispdir):
1123         For a self-contained ns build, set these to the appropriate values.
1124         * Makefile.in (install-arch-dep): No need to move info/ any more.
1126         * configure.in (ns_self_contained): New output variable.
1127         * Makefile.in (ns_self_contained): New, set by configure.
1128         (install-arch-dep): For a self-contained ns build,
1129         don't bother installing binaries then immediately deleting them.
1131         * Makefile.in (ns_appbindir, ns_appresdir):
1132         Move them before things that may refer to them.
1133         (install-arch-dep): No need to relocate self-contained ns libexec.
1135         * configure.in (archlibdir): Set it for self-contained ns builds.
1136         (libexecdir): Don't expand it now (this is mainly cosmetic).
1138 2012-05-16  Paul Eggert  <eggert@cs.ucla.edu>
1140         * configure.in: Simplify by removing CPP etc.
1141         (CPP_TEST_OPTIONS, NON_GNU_CPP, cc_specified, SPECIFIED_CFLAGS)
1142         (SPECIFED_CPP, CPP, NON_GNU_CC, AC_PROG_CPP): Remove; not needed.
1143         In particular we no longer need to fiddle with CPP, since we don't
1144         use CPP specially any more.
1145         (gl_EARLY): Invoke this after adjusting CC, so that it uses the
1146         adjusted compiler.
1147         (AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_RANLIB): Comment out,
1148         since gl_EARLY and/or Autoconf already does these.
1150 2012-05-16  Glenn Morris  <rgm@gnu.org>
1152         * configure.in: Try to fix building with gcc >= 4.6 on Darwin.
1153         (CPP): Do not unconditionally set it on Darwin.
1154         Instead, try to test if -no-cpp-precomp is accepted.
1155         (CPP_TEST_OPTIONS, SPECIFIED_CPP): New.  (Bug#9755)
1157 2012-05-15  Glenn Morris  <rgm@gnu.org>
1159         * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
1161         * Makefile.in (install-arch-dep): Do not hard-code version number.
1163         * Makefile.in (install-arch-dep): NS install no longer needs to
1164         symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change.
1166 2012-05-12  Glenn Morris  <rgm@gnu.org>
1168         * configure.in (ns_appbindir): Remove trailing "/".
1170         * configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
1171         (MKDEPDIR): Use $MKDIR_P.
1172         * Makefile.in (MKDIR_P): New, set by configure.
1173         (mkdir): Use $MKDIR_P.
1175 2012-05-11  Glenn Morris  <rgm@gnu.org>
1177         * Makefile.in (install-arch-indep): There are no more Makefile.c files.
1178         Use INSTALL_DATA for the DOC file.
1179         Remove dead code for ./lisp that never executes.
1181 2012-05-10  Glenn Morris  <rgm@gnu.org>
1183         * configure.in (LEIM_INSTALLDIR): New output variable.
1185 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1187         * .dir-locals.el (log-edit-mode): Enable gnu-style checks.
1189 2012-05-08  Glenn Morris  <rgm@gnu.org>
1191         * make-dist: No more doc/lispref/*.el.
1193 2012-05-05  Andreas Schwab  <schwab@linux-m68k.org>
1195         * configure.in: Fix quoting bugs.
1197 2012-05-04  Glenn Morris  <rgm@gnu.org>
1199         * configure.in (INFO_EXT, INFO_OPTS): New output variables.
1201 2012-05-02  Glenn Morris  <rgm@gnu.org>
1203         * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat
1204         the choices made by FreeBSD and NetBSD.  (Bug#10313)
1206         * Makefile.in (INFO_FILES): Remove variable.
1207         (INFO_NONMISC): New variable.
1208         (install-arch-indep, uninstall): Don't use $INFO_FILES.
1210         * Makefile.in (uninstall): Remove useless-use-of-for; that for
1211         some reason caused problems on an old Solaris.
1213         * Makefile.in (install-arch-indep, uninstall):
1214         Ensure that INSTALL-type commands are run from top-level.
1216         * info/dir: Make some entries consistent with the source texi files.
1218         * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
1220 2012-05-02  Glenn Morris  <rgm@gnu.org>
1222         * Makefile.in (install-arch-indep):
1223         Combine adjacent install-data and install-info loops.
1225 2012-05-01  Glenn Morris  <rgm@gnu.org>
1227         * Makefile.in (MAN_PAGES): Remove.
1228         (install-arch-indep, uninstall): Don't use $MAN_PAGES.
1230         * configure.in: Try libtinfo for tputs.
1231         (LIBS_TERMCAP) [gnu*]: Use libtinfo if it was found.  (Bug#9741)
1233         * configure.in: Combine adjacent $opsys case blocks.
1235         * configure.in (LIBS_TERMCAP): Remove unreachable branch for sol2.
1237         * configure.in: Invert the TERMINFO logic,
1238         since "yes" is far more common than "no".
1240         * configure.in (HAVE_LIBNCURSES): Remove; it is required to be true.
1242         * configure.in (LD_SWITCH_X_SITE_RPATH):
1243         Rename from LD_SWITCH_X_SITE_AUX_RPATH.
1245         * configure.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
1247 2012-04-26  Glenn Morris  <rgm@gnu.org>
1249         * make-dist: No more doc/lispref/tindex.pl.
1251 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
1253         * configure.in (dbus_validate_bus_name, dbus_validate_path)
1254         (dbus_validate_interface, dbus_validate_member): Check also for
1255         these library functions.
1257 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
1259         * configure.in (doug_lea_malloc): Check for __malloc_initialize_hook.
1260         With glibc 2.14 or later, when compiled with GCC 4.7.0's
1261         -Werror=deprecated-declarations flag, use of hooks like
1262         __malloc_initialize_hook causes compilation to fail because these
1263         hooks are deprecated.  Modify 'configure' to check for these hooks too.
1264         Simplify the 'configure' code to test for all the hooks at once.
1265         (emacs_cv_var___after_morecore_hook): Remove, replacing with ...
1266         (emacs_cv_var_doug_lea_malloc): ... this new var.
1268 2012-04-21  Paul Eggert  <eggert@cs.ucla.edu>
1270         Sync from gnulib version 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc
1271         dated 2011-10-07.  Regenerating from current gnulib would be a
1272         pervasive change, and currently the trunk isn't open to such changes.
1273         * configure.in (WARN_CFLAGS): Remove; no longer needed now
1274         that gnulib does it.
1275         * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1277 2012-04-21  Andreas Schwab  <schwab@linux-m68k.org>
1279         * m4/gl-comp.m4: Update.  (Bug#11285)
1281 2012-04-20  Ludovic Courtès  <ludo@gnu.org>
1283         * configure.in: Don't use the -R option (Bug#11251).
1285 2012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
1287         configure: new option --enable-gcc-warnings (Bug#11207)
1288         I have been using this change for many months in my private copy
1289         of Emacs, and have used it to find several bugs.  It's mature
1290         enough to publish now.
1291         * Makefile.in (GNULIB_MODULES): Add warnings, manywarnings.
1292         * configure.in: Support --enable-gcc-warnings, in the style of
1293         other GNU packages such as coreutils.
1294         (C_WARNINGS_SWITCH): Remove, replacing with...
1295         (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable.
1296         (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I,
1297         when including system files with GCC.
1298         * etc/NEWS: Mention --enable-gcc-warnings.
1299         * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise.
1300         * lib/Makefile.am (AM_CFLAGS): New macro.
1301         * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib.
1303 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
1305         * configure.in (AC_CHECK_FUNCS):
1306         Add getpwent, endpwent, getgrent, endgrent. (Bug#7900)
1308 2012-04-16  Glenn Morris  <rgm@gnu.org>
1310         * configure.in (NS_HAVE_NSINTEGER): Remove unnecessary variable.
1312         * configure.in: Remove X libs workaround for old autoconf.
1314 2012-04-12  Ken Brown  <kbrown@cornell.edu>
1316         * configure.in: Warn that Cygwin 1.5 is unsupported.  (Bug#10398)
1318 2012-04-11  Glenn Morris  <rgm@gnu.org>
1320         * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
1322 2012-04-10  Glenn Morris  <rgm@gnu.org>
1324         * configure.in: Conditionally generate admin/unidata/Makefile.
1326 2012-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
1328         * info/dir, Makefile.in (INFO_FILES): Add emacs-gnutls manual.
1330 2012-04-09  Glenn Morris  <rgm@gnu.org>
1332         * Makefile.in (leim): Check cd return value.  Pass fewer variables.
1333         (install-leim): Check cd return value.  Pass $MFLAGS.
1334         (install-strip): Pass $MFLAGS.
1336         * configure.in: Require makeinfo >= 4.7.  (Bug#10910)
1337         Eg org.texi has been using 4.7 functions for some time.
1339 2012-04-07  Paul Eggert  <eggert@cs.ucla.edu>
1341         Check pkg-config exit status when configuring (Bug#10626).
1342         * configure.in (PKG_CHECK_MODULES): Do not assume that pkg-config
1343         works; check its exit status.  Problem reported by Jordi Gutiérrez
1344         Hermoso in
1345         <http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00787.html>.
1347 2012-04-07  Glenn Morris  <rgm@gnu.org>
1349         * README, configure.in (AC_INIT): Bump version to 24.1.50.
1351 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
1353         * lib/makefile.w32-in (gnulib, all): Don't depend on stamp_BLD.
1355 2012-03-04  Paul Eggert  <eggert@cs.ucla.edu>
1357         configure: fix ncurses 'configure' issue on Solaris 10 (Bug#10677)
1358         * configure.in (LIBS_TERMCAP): Default this to the result of
1359         the tputs library search.  Do a run-time test for the linkability
1360         of tputs unless cross-compiling, as that's more reliable if the
1361         link flags and libraries are messed up.  Don't change LIBS as
1362         a result of the test, as that may mess up later tests.
1364 2012-02-05  Christoph Scholtes  <cschol2112@googlemail.com>
1366         * make-dist (README.W32): Include file in source tarball. (Bug#9750)
1368         * lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
1369         specific makefiles to support getopt_.h generation with MSVC.
1371 2012-02-04  Glenn Morris  <rgm@gnu.org>
1373         * Makefile.in (uninstall):
1374         Handle compressed info files and man pages.  (Bug#10718)
1376 2012-02-02  Glenn Morris  <rgm@gnu.org>
1378         * configure.in [HAVE_NS]:
1379         Error if use --without-toolkit-scroll-bars.  (Bug#10673)
1381 2012-02-01  Paul Eggert  <eggert@cs.ucla.edu>
1383         Port to older Solaris 10 versions (Bug#10677).
1384         Bug reported by Chong Yidong for SunOS 5.10 Generic_127111-11 sparc.
1385         I cannot reproduce it on SunOS 5.10 Generic_141444-09 sparc but
1386         possibly this is because Sun fixed the 'stat' bug in my version.
1387         * Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid the pathmax module.
1388         * lib/pathmax.h, m4/pathmax.m4: New files, from gnulib.
1389         * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1390         These changes are based on gnulib version
1391         4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc dated 2011-10-07 20:59:10,
1392         because Emacs is in feature freeze and we do not want to merge any
1393         more-recent changes from gnulib.
1395 2012-01-31  Glenn Morris  <rgm@gnu.org>
1397         * configure.in: Throw an explicit error if Motif toolkit was
1398         requested but requirements could not be found.
1400         * configure.in: Allow Emacs to actually be built with xaw scroll-bars.
1402 2012-01-30  Eli Zaretskii  <eliz@gnu.org>
1404         * lib/makefile.w32-in ($(BLD)/sha1.$(O) $(BLD)/sha256.$(O)
1405         $(BLD)/sha512.$(O)): Depend on stamp_BLD.  Fixes a build failure
1406         with "make -j3".
1408 2012-01-16  Juanma Barranquero  <lekktu@gmail.com>
1410         * .bzrignore: Ignore etc/__pycache__.
1412 2011-12-17  Paul Eggert  <eggert@cs.ucla.edu>
1414         Port HAVE_PTHREAD configuration to MirBSD 10 (Bug#10201).
1415         * configure.in (HAVE_PTHREAD): Check for pthread_atfork if linking
1416         to gmalloc.c.  This should prevent a MirBSD 10 build failure reported
1417         by Nelson H. F. Beebe in
1418         <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00065.html>.
1420 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
1422         * update-subdirs: Don't set no-byte-compile twice (bug#10260).
1424 2011-12-10  Jan Djärv  <jan.h.d@swipnet.se>
1426         * configure.in (HAVE_ALSA, HAVE_GSETTINGS): Save and restore LIBS
1427         instead of LDFLAGS (Bug#10230).
1429 2011-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1431         * INSTALL.BZR: Mention configure -C, --disable-maintainer-mode.
1433         Propagate configure flags to sub-configures.
1434         * Makefile.in (cache_file, MAINTAINER_MODE_FLAG, CONFIGUREFLAGS):
1435         New macros.
1436         (config.status, bootstrap): Use them to propagate configure flags
1437         to sub-configures.
1438         * configure.in (cache_file): AC_SUBST this, for Makefile.in.
1440 2011-12-03  Paul Eggert  <eggert@cs.ucla.edu>
1442         * .bzrignore: Add config.cache.
1444 2011-11-27  Jan Djärv  <jan.h.d@swipnet.se>
1446         * configure.in: Check for gtk_window_set_has_resize_grip.
1448 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
1450         * configure.in (HAVE_XPM): Fix typo.
1452 2011-11-22  Glenn Morris  <rgm@gnu.org>
1454         * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can
1455         have confusing effects on the build.  (Bug#6401)
1457         * Makefile.in (install-arch-dep): Tweak previous change.
1459 2011-11-22  Yavor Doganov  <yavor@gnu.org>
1461         Do not install arch-dependent files in the app bundle if
1462         --disable-ns-self-contained is requested.  (Bug#1335)
1463         * configure.in (exec_prefix, libexecdir): Define relative to
1464         `ns_appbindir' only if configured for a self-contained app.
1465         * Makefile.in (install-arch-dep): Test for the existence of
1466         libexec in the Emacs.app bundle before executing commands.
1468 2011-11-20  Andreas Schwab  <schwab@linux-m68k.org>
1470         * configure.in: Remove reference to src/m/ibms390.h.
1472 2011-11-13  Glenn Morris  <rgm@gnu.org>
1474         * INSTALL: Tiny updates for disk space used during installation.
1476 2011-11-05  Eli Zaretskii  <eliz@gnu.org>
1478         * lib/makefile.w32-in (FRC): New dummy target.
1479         (TAGS): Depend on FRC.
1481 2011-11-04  Glenn Morris  <rgm@gnu.org>
1483         * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929)
1484         Do not include GnuTLS version info in final summary message.
1486 2011-10-31  Eli Zaretskii  <eliz@gnu.org>
1488         * config.bat: Use config.in and Makefile.in from src/ and lib/, if
1489         they exist there, else from autogen/.
1491         * make-dist (msdos): Add depfiles.bat and inttypes.h.
1493 2011-10-25  Nali Toja  <nalitoja@gmail.com>  (tiny change)
1495         * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var.  (Bug#9868)
1497 2011-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1499         * configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
1500         if the library is found.  Otherwise, later configure-time tests,
1501         such as the test for pthread_sigmask, generate the wrong results
1502         on some platforms.  Problem reported for FreeBSD by Nali Toja.
1504 2011-10-20  Paul Eggert  <eggert@cs.ucla.edu>
1506         Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
1507         * configure.in (AC_STRUCT_TM, AC_STRUCT_TIMEZONE, HAVE_TM_GMTOFF):
1508         Remove; no longer needed, now that we defer to strftime for time
1509         zone names.
1511 2011-10-18  Jan Djärv  <jan.h.d@swipnet.se>
1513         * configure.in (GLIB_REQUIRED, GTK_REQUIRED): Set to 2.10 (Bug#9786).
1515 2011-10-18  Chong Yidong  <cyd@gnu.org>
1517         * make-dist: Remove Cocoa/Emacs.xcodeproj from distribution.
1519 2011-10-13  Glenn Morris  <rgm@gnu.org>
1521         * configure.in: Also look for tputs in libcurses.  (Bug#9736)
1523 2011-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1525         * configure.in: Remove check for -lintl (Bug#9713).
1526         The check could break 'configure' on GNU/Linux with a (broken) libintl.
1527         The check was helpful but not essential in Solaris 2.6 (1997),
1528         and is no longer needed in Solaris 8 (2000).  Solaris 2.6 is
1529         obsolete -- Sun dropped support for it in 2006 -- and without
1530         access to that Silurian platform we can't maintain the code anyway.
1532 2011-10-07  Paul Eggert  <eggert@cs.ucla.edu>
1534         Merge from gnulib, fixing some 'configure' typos (Bug#9696).
1535         * lib/signal.in.h, lib/sigprocmask.c, m4/gl-comp.m4:
1536         * m4/gnulib-common.m4: Merge from gnulib.
1537         Without this, 'configure' would say "func_gl_gnulib_m4code_pathmax:
1538         command not found" on powerpc-apple-darwin9.8.0.
1540         * configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
1541         This is now done by src/alloc.c.
1543 2011-10-02  Richard Stallman  <rms@gnu.org>
1545         * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
1546         and xlinux_second_failure to xgnu_linux_second_failure.
1548 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
1550         * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
1551         lib/signal.in-h.
1553         * config.bat: Rename GNUmakefile, so it is not run on MS-DOS.
1554         Rename signal.in.h and alloca.in.h.
1556 2011-09-28  Eli Zaretskii  <eliz@gnu.org>
1558         * INSTALL: Mention that m17n libraries and libotf are needed for
1559         Arabic shaping.
1561 2011-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1563         Merge from gnulib, improving some licensing wording.
1564         This clarifies and fixes some licensing issues raised by Glenn Morris
1565         <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
1566         It also merges the latest version of texinfo.tex and has some
1567         MSVC-related changes that don't affect Emacs.
1568         * Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
1569         pathmax, and raise, since these are needed only to address
1570         MSVC-related issues that Emacs doesn't have.
1571         * doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
1572         * lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
1573         * lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
1574         * m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
1575         * m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
1576         * m4/unistd_h.m4: Merge from gnulib.
1578 2011-09-26  Andreas Schwab  <schwab@linux-m68k.org>
1580         * configure.in: Initialize HAVE_LIBXML2.
1582 2011-09-26  Glenn Morris  <rgm@gnu.org>
1584         * make-dist: Add lib/makefile.w32-in.
1586 2011-09-24  Glenn Morris  <rgm@gnu.org>
1588         * configure.in (CRT_DIR): Fix netbsd/openbsd handling.
1590 2011-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1592         * .dir-locals.el: Change the debbugs regexp to allow having the
1593         bug number as the first thing on a line.
1595 2011-09-15  Glenn Morris  <rgm@gnu.org>
1597         * configure.in: Make configure work with recent GNUsteps.
1598         (_NATIVE_OBJC_EXCEPTIONS): New AC_DEFINE.
1599         (GNU_OBJC_CFLAGS): Add -fobjc-exceptions when needed.
1600         (C_SWITCH_X_SYSTEM): Enable GNUstep to find its headers.
1602 2011-09-11  Paul Eggert  <eggert@cs.ucla.edu>
1604         Merge from gnulib, porting to Tru64.
1605         * lib/lstat.c, lib/stat.c, m4/include_next.m4, m4/nocrash.m4:
1606         * m4/signal_h.m4, m4/time_h.m4, m4/unistd_h.m4:
1607         Merge from gnulib.  This fixes a compilation error on Tru64 UNIX
1608         aka OSF/1 5.1 DTK cc.  There is also some mingw stuff here that
1609         doesn't affect Emacs.
1611 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1613         * configure.in (isnan): Remove now-unnecessary check.
1615 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1617         Merge from gnulib, using build-aux to remove clutter (Bug#9169).
1618         This is to fix the following problems:
1619          . On FreeBSD 6.4, HP-UX 11.31, and Solaris 9, and when Emacs is
1620            configured not to use gtk or any other thread-using library,
1621            signals aren't blocked correctly.
1622          . On IRIX 6.5 it fixes an unwanted clash between Emacs's
1623            and IRIX's signal handling.
1624          . On Cygwin 1.7.5 it works around an incompatibility with
1625            the system pthread_sigmask.
1626          . On MacOS X 10.5 (32-bit), files whose inode numbers
1627            exceed 2**31 cannot be read or manipulated.
1628          . pthread_sigmask: Actually use results of gl_THREADLIB.
1629          . strtoimax, strtoumax: Avoid link error on OSF/1 with DTK cc.
1630          . find 'ar' program that fits with --host argument.
1631          . Allow the user to override the choice of AR, ARFLAGS, RANLIB.
1632         * autogen/README: Update destination list.
1633         * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
1634         The autogenerated files compile, config.guess,
1635         config.sub, depcomp, install-sh, and missing are now in build-aux.
1636         * m4/largefile.m4: New file, so that Emacs does not mess up when
1637         accessing files with large inode numbers in MacOS X 10.5 and later.
1638         * m4/nocrash.m4: New file, to avoid triggering background debugger
1639         and/or create core dumps during 'configure'.
1640         * build-aux/move-if-change: Renamed from move-if-change.
1641         * build-aux/snippet/arg-nonnull.h: Renamed from arg-nonnull.h.
1642         * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
1643         * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
1644         * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
1645         * Makefile.in (epaths-force, sync-from-gnulib):
1646         move-if-change is now in build-aux.
1647         (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
1648         of gnulib's pthread_sigmask module, but Emacs doesn't need it.
1649         (mkdir): install-sh is now in build-aux.
1650         * config.bat: c++defs.h is now in build-aux/snippets.
1651         * configure.in: Specify AC_CONFIG_AUX_DIR with build-aux (the
1652         usual parameter).
1653         * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1654         * lib/makefile.w32-in (ARG_NONNULL_H): arg-nonnull.h moved
1655         to build-aux/snippet.
1656         * lib/pthread_sigmask.c, lib/stdlib.in.h, m4/extensions.m4:
1657         * m4/getopt.m4, m4/gnulib-common.m4, m4/pthread_sigmask.m4:
1658         Merge from gnuilib.  This fixes porting bugs on Cygwin, Irix, and
1659         Solaris, enables MacOS extensions, and enables nocrash during
1660         'configure'.
1661         * make-dist: Adjust to new build-aux and build-aux/snippit dirs.
1663 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
1665         * configure.in (snprintf): New check.
1667 2011-08-30  Paul Eggert  <eggert@cs.ucla.edu>
1669         * configure.in (opsys): Change pattern to *-*-linux*
1670         to recognize powerpc-gnu-linux-uclibc (Bug#9403).
1671         Remove unreachable pattern hppa*-*-linux-gnu*.
1672         Also, remove ia64*-hp-hpux1[1-9]*, as it also sets machine=hp800,
1673         and that can't possibly work now that src/m/hp800.h no longer exists.
1675 2011-08-26  Jan Djärv  <jan.h.d@swipnet.se>
1677         * configure.in: Add -MP to DEPFLAGS (Bug#9372).
1679 2011-08-13  Jan Djärv  <jan.h.d@swipnet.se>
1681         * configure.in: Add header check: sys/socket.h (Bug#8477),
1682         ifaddrs.h, net/if_dl.h.  Check for getifaddrs and freeifaddrs.
1683         Check for sa_len in struct ifreq.ifr_addr (Bug#8477).
1685 2011-08-04  Jan Djärv  <jan.h.d@swipnet.se>
1687         * configure.in (HAVE_PTHREAD): Add check for -lpthread (Bug#9216).
1688         (HAVE_GTK_AND_PTHREAD): Remove.
1690 2011-07-28  Alp Aker  <alp.tekin.aker@gmail.com>
1692         * configure.in (HAVE_RSVG): Allow use of -lrsvg-2 for any NextStep
1693         build, not just GNUstep (Bug#9177).
1695 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
1697         Assume freestanding C89 headers, string.h, stdlib.h.
1698         Again, this simplifies the code, and all current platforms have these.
1699         * configure.in (AC_CHECK_HEADERS): Don't check for limits.h.
1700         (AC_HEADER_STDC): Remove.
1701         (AC_CHECK_FUNCS): No need to check for strchr, strrchr.
1702         (strchr, strrchr): Remove fallback macros.
1704         Assume support for memcmp, memcpy, memmove, memset.
1705         This simplifies the code a bit.  All current platforms have these,
1706         as they are required for C89.  If this turns into a problem we
1707         can add the gnulib modules for these (a 1-line change to Makefile.in).
1708         * configure.in: Don't check for memcmp, memcpy, memmove, memset.
1710 2011-07-27  Paul Eggert  <eggert@cs.ucla.edu>
1712         * GNUmakefile: New file.
1713         This is for convenience, so that one can run GNU make in an
1714         unconfigured source tree, and get a default build.
1716 2011-07-13  Jan Djärv  <jan.h.d@swipnet.se>
1718         * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.
1720 2011-07-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1722         * configure.in (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie on Darwin
1723         so as to suppress address randomization (Bug#8395).
1725 2011-07-09  Paul Eggert  <eggert@cs.ucla.edu>
1727         * lib/stdint.in.h: Merge from gnulib (Bug#9025).
1728         This fixes a build problem on older Mac OS X hosts.
1730         * m4/pthread_sigmask.m4 (gl_FUNC_PTHREAD_SIGMASK): Omit gl_THREADLIB
1731         test, which runs afoul of Automake installations where, for example,
1732         /usr/share/aclocal contains a copy of gl_THREADLIB.
1733         Problem reported by Sven Joachim in
1734         <http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00529.html>.
1735         This is just a quick temporary fix, specific to Emacs; I'll work
1736         with the other gnulib maintainers to get a more-permanent fix.
1738         Add gnulib's strtoimax module, needed on Solaris 8.
1739         * Makefile.in (GNULIB_MODULES): Add strtoimax.
1740         * lib/strtoll.c, m4/strtoimax.m4, m4/strtoll.m4: New files,
1741         automatically imported from gnulib.
1742         * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1744 2011-07-08  Paul Eggert  <eggert@cs.ucla.edu>
1746         Add gnulib support for pthread_sigmask (Bug#9010).
1747         * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
1748         * configure.in (AC_TYPE_UID_T): New dummy macro.
1749         Configure gnulib after adjusting LIBS,
1750         so that gnulib can assume the libraries in LIBS.
1751         * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
1752         * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
1753         * lib/pthread_sigmask.c:
1754         New files, automatically imported from gnulib.
1755         * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
1756         due to the above changes.
1757         * .bzrignore: Add lib/signal.h.
1759         * lib/getopt.c, lib/unistd.in.h, m4/getopt.m4: Merge from gnulib.
1761 2011-07-07  Andreas Schwab  <schwab@linux-m68k.org>
1763         * configure.in (maintainer-mode): Reflect default in help string.
1765 2011-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
1767         * configure.in: Remove reference to iris4d.h.
1769 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
1771         * configure.in (HAVE_GCONF): Allow both HAVE_GCONF and HAVE_GSETTINGS.
1773 2011-07-01  Glenn Morris  <rgm@gnu.org>
1775         * configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
1777 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1779         * configure.in (HAVE_GSETTINGS): Fix syntax for GSETTINGS tests,
1780         which made ./configure infloop.
1782 2011-06-30  Jan Djärv  <jan.h.d@swipnet.se>
1784         * configure.in (gsettings): New option and check for GSettings.
1786 2011-06-29  Glenn Morris  <rgm@gnu.org>
1788         * configure.in: Try to test for the required crt*.o files.
1790 2011-06-27  Bill Wohler  <wohler@newt.com>
1792         * .bzrignore: Add lisp/mh-e/mh-autoloads.el and lisp/mh-e/mh-cus-load.el.
1794 2011-06-25  Paul Eggert  <eggert@cs.ucla.edu>
1796         Use gnulib's dup2 module instead of rolling our own.
1797         * Makefile.in (GNULIB_MODULES): Add dup2.
1798         * configure.in: Do not check for dup2; gnulib does that now.
1799         * lib/dup2.c, m4/dup2.m4: New files, from gnulib.
1801 2011-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1803         * lib/getopt.c, lib/stat.c, m4/gl-comp.m4: Merge from gnulib.
1805 2011-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1807         Use gnulib's alloca-opt module.
1808         * .bzrignore: Add lib/alloca.h.
1809         * Makefile.in (GNULIB_MODULES): Add alloca-opt.
1810         * configure.in (AC_FUNC_ALLOCA): Remove almost all the alloca stuff,
1811         as gnulib now does that for us.  Put alloca check in config.h.
1812         Include <alloca.h> before any other include file, for AIX 3.
1813         * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1814         * lib/alloca.in.h, m4/alloca.m4: New files, from gnulib.
1816 2011-06-21  Leo Liu  <sdl.web@gmail.com>
1818         * m4/sha256.m4:
1819         * m4/sha512.m4:
1820         * m4/gl-comp.m4:
1821         * lib/u64.h:
1822         * lib/sha256.c:
1823         * lib/sha256.h:
1824         * lib/sha512.c:
1825         * lib/sha512.h:
1826         * lib/makefile.w32-in (GNULIBOBJS):
1827         * lib/gnulib.mk:
1828         * Makefile.in (GNULIB_MODULES): Add crypto/sha256 and
1829         crypto/sha512 modules from gnulib.
1831 2011-06-19  Paul Eggert  <eggert@cs.ucla.edu>
1833         * lib/unistd.in.h, m4/getloadavg.m4: Merge from gnulib.
1835 2011-06-17  Glenn Morris  <rgm@gnu.org>
1837         * configure.in: Restore the behavior of checking crt-dir only
1838         when the user specified it (not all platforms use it).
1840 2011-06-16  Paul Eggert  <eggert@cs.ucla.edu>
1842         * m4/lstat.m4: Merge from gnulib (Bug#8878).
1844 2011-06-16  Miles Bader  <miles@gnu.org>
1846         * configure.in: Try to determine CRT_DIR automatically when
1847         using gcc.
1849 2011-06-15  Paul Eggert  <eggert@cs.ucla.edu>
1851         * lib/ftoastr.c, lib/stdio.in.h, lib/verify.h:
1852         * lib/gnulib.mk, m4/c-strtod.m4, m4/filemode.m4, m4/getloadavg.m4:
1853         * m4/getopt.m4, m4/gl-comp.m4, m4/lstat.m4, m4/md5.m4, m4/mktime.m4:
1854         * m4/readlink.m4, m4/sha1.m4, m4/stat.m4, m4/strftime.m4:
1855         * m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4, m4/time_r.m4:
1856         Merge from gnulib.
1858 2011-06-14  Jan Djärv  <jan.h.d@swipnet.se>
1860         * configure.in: Add emacsgtkfixed.o to GTK_OBJ if HAVE_GTK3.
1862 2011-06-08  Paul Eggert  <eggert@cs.ucla.edu>
1864         * lib/gnulib.mk, m4/gnulib-common.m4: Merge from gnulib.
1866 2011-06-07  Paul Eggert  <eggert@cs.ucla.edu>
1868         * configure.in: Add --with-wide-int.
1869         * INSTALL: Mention this.
1871 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
1873         Merge from gnulib.
1874         * lib/careadlinkat.c, lib/careadlinkat.h, m4/gnulib-common.m4: Merge.
1876 2011-06-02  Paul Eggert  <eggert@cs.ucla.edu>
1878         * lib/allocator.h, lib/careadlinkat.c: Merge from gnulib.
1880 2011-05-30  Paul Eggert  <eggert@cs.ucla.edu>
1882         Use 'inline', not 'INLINE'.
1883         * configure.in (INLINE): Remove.
1885 2011-05-29  Paul Eggert  <eggert@cs.ucla.edu>
1887         Adjust to recent gnulib change for @GUARD_PREFIX@.
1888         * lib/makefile.w32-in (getopt_h): Substitute @GUARD_PREFIX@, too.
1889         All uses of _GL_ for guard prefixes in lib/*.h replaced with
1890         _@GUARD_PREFIX@_.
1892 2011-05-27  Paul Eggert  <eggert@cs.ucla.edu>
1894         * lib/getopt.c, lib/intprops.h: Merge from gnulib.
1896 2011-05-24  Glenn Morris  <rgm@gnu.org>
1898         * Makefile.in (check): Just give a message if no test/ directory.
1900         * configure.in: Avoid using variables inside AC_CONFIG_FILES.
1902         * configure.in (OPT_MAKEFILES_IN): Remove.
1903         (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
1904         (SUBDIR_MAKEFILES_IN): New output variable.
1905         * Makefile.in (OPT_MAKEFILES_IN): Remove.
1906         (SUBDIR_MAKEFILES_IN): Let configure set it.
1908 2011-05-24  Leo Liu  <sdl.web@gmail.com>
1910         * m4/sha1.m4:
1911         * m4/gl-comp.m4:
1912         * lib/sha1.h:
1913         * lib/sha1.c:
1914         * lib/makefile.w32-in (GNULIBOBJS):
1915         * lib/gnulib.mk:
1916         * Makefile.in (GNULIB_MODULES): Add crypto/sha1 module.
1918 2011-05-24  Glenn Morris  <rgm@gnu.org>
1920         * configure.in: Remove test for already configured source directory.
1921         AM_INIT_AUTOMAKE has already done a more stringent test.  (Bug#953)
1923         * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
1925 2011-05-24  Glenn Morris  <rgm@gnu.org>
1927         * make-dist: Don't distribute test/.  (Bug#8107)
1928         * configure.in (OPT_MAKEFILES_IN): New output variable.
1929         (AC_CONFIG_FILES): Conditionally include test/automated/Makefile.
1930         * Makefile.in (OPT_MAKEFILES_IN): New, set by configure.
1931         (SUBDIR_MAKEFILES_IN): Use $OPT_MAKEFILES_IN.
1932         (check): Give an explicit error if test/ is not present.
1934         * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
1935         (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
1936         (Makefile): Use $SUBDIR_MAKEFILES_IN.
1938 2011-05-23  Paul Eggert  <eggert@cs.ucla.edu>
1940         * lib/verify.h: Merge from gnulib.
1942 2011-05-22  Paul Eggert  <eggert@cs.ucla.edu>
1944         * lib/intprops.h, lib/stdint.in.h, m4/mktime.m4, m4/readlink.m4:
1945         Merge from gnulib.
1947 2011-05-21  Andreas Schwab  <schwab@linux-m68k.org>
1949         * Makefile.in (AUTOMAKE_INPUTS): Add $(srcdir)/lib/gnulib.mk.
1951 2011-05-20  Eli Zaretskii  <eliz@gnu.org>
1953         * .bzrignore: Add lib/stdio.in-h, lib/stdbool.h, and lib/stdint.h.
1955         * config.bat: Concatenate lisp.mk onto the end of src/Makefile.
1957 2011-05-20  Glenn Morris  <rgm@gnu.org>
1959         * configure.in (lisp_frag): New output file.
1961 2011-05-19  Glenn Morris  <rgm@gnu.org>
1963         * configure.in (NS_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
1964         (WINDOW_SUPPORT): Remove output variables that are no longer used.
1966 2011-05-17  Paul Eggert  <eggert@cs.ucla.edu>
1968         * lib/gnulib.mk:
1969         * lib/intprops.h:
1970         * lib/unistd.in.h:
1971         * m4/inttypes.m4:
1972         * m4/stdint.m4:
1973         * m4/unistd_h.m4: Sync from gnulib.
1975 2011-05-14  Glenn Morris  <rgm@gnu.org>
1977         * configure.in: Treat failure to find an X toolkit the same way we treat
1978         failure to find X and image support.
1980 2011-05-12  Glenn Morris  <rgm@gnu.org>
1982         * Makefile.in (src, install-arch-indep, bootstrap-clean)
1983         (check-declare): Shell portability fixes.  (Bug#8642)
1985 2011-05-09  Teodor Zlatanov  <tzz@lifelogs.com>
1987         * configure.in: Require GnuTLS 2.6.x or higher.
1989 2011-05-06  Paul Eggert  <eggert@cs.ucla.edu>
1991         Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
1992         * Makefile.in (GNULIB_MODULES): Add stdarg, for va_copy.
1993         * lib/stdarg.in.h, m4/stdarg.m4: New files, from gnulib.
1995         * Makefile.in (GNULIB_TOOL_FLAG): Add --conditional-dependencies.
1996         This new gnulib-tool option saves 'configure' the trouble of
1997         checking for strtoull when strtoumax exists.
1999         * configure.in (BITS_PER_LONG_LONG): New macro.
2001 2011-05-05  Glenn Morris  <rgm@gnu.org>
2003         * Makefile.in (bootstrap-clean): Save config.log.  (Bug#765)
2004         (top_distclean): Delete config.log~.
2006 2011-04-27  Ben Key  <bkey76@gmail.com>
2008         * configure.in: Fixed a bug that caused configure with
2009         --enable-checking=stringoverrun to have no effect.
2011 2011-04-26  Paul Eggert  <eggert@cs.ucla.edu>
2013         * configure.in: Suppress unnecessary checks for size_t.
2014         (AC_TYPE_SIZE_T): Define an empty macro, to suppress obsolescent test.
2015         (size_t): Do not check for this, and do not typedef.  This code
2016         is never exercised now.
2018         * Makefile.in (GNULIB_MODULES): Add strtoumax.
2019         This is needed for the new integer-reading code in lread.c.
2020         It automatically pulls in the following gnulib files, which
2021         are used on old-fashioned platforms that don't have strtoumax:
2022         lib/inttypes.in.h, lib/strtoimax.c, lib/strtol.c, lib/strtoul.c,
2023         lib/strtoull.c, lib/strtoumax.c, lib/verify.h, m4/inttypes.m4,
2024         m4/strtoull.m4, m4/strtoumax.m4.
2025         * .bzrignore: Add lib/inttypes.h.
2027 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
2029         * configure.in: Check for GnuTLS certificate verify callbacks.
2031 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2033         * Makefile.in (config.status): Don't erase in case of error.
2034         In case it disappeared, rebuild it with `configure'.
2036 2011-04-20  Ken Brown  <kbrown@cornell.edu>
2038         * configure.in (use_mmap_for_buffers): Set to yes on Cygwin.
2040 2011-04-12  Glenn Morris  <rgm@gnu.org>
2042         * configure.in: Require ImageMagick >= 6.2.8.  (Bug#7955)
2044 2011-04-09  Paul Eggert  <eggert@cs.ucla.edu>
2046         * lib/allocator.c: New file, automatically generated by gnulib.
2048 2011-04-07  Glenn Morris  <rgm@gnu.org>
2050         * autogen/update_autogen: Ignore comment diffs in ldefs-boot.el.
2052 2011-04-06  Eli Zaretskii  <eliz@gnu.org>
2054         * lib/makefile.w32-in ($(BLD)/careadlinkat.$(O), GNULIBOBJS):
2055         Revert last change.
2057 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
2059         * lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O).
2060         ($(BLD)/careadlinkat.$(O)): New target.
2061         ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
2062         ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)):
2063         Update dependencies.
2065 2011-04-06  Paul Eggert  <eggert@cs.ucla.edu>
2067         Fix more problems found by GCC 4.6.0's static checks.
2069         * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
2071         Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
2072         * Makefile.in (GNULIB_MODULES): Add careadlinkat.
2073         * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
2074         * m4/ssize_t.m4: New files, automatically generated from gnulib.
2076 2011-04-06  Glenn Morris  <rgm@gnu.org>
2078         * autogen/update_autogen: Handle loaddefs-like files as well.
2079         (usage): Add -l, -C.
2080         (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
2081         With -l, check status of lisp/ as well.
2082         With -C, clean before building.
2083         (autoreconf): Only pass -f in the `clean' case.
2084         (commit): New function.
2086 2011-03-28  Glenn Morris  <rgm@gnu.org>
2088         * autogen/update_autogen: Pass -f to autoreconf.
2090         * autogen.sh (get_version): Discard "not found" lines.
2091         (check_version): Respect $AUTOCONF etc environment variables.
2093 2011-03-27  Glenn Morris  <rgm@gnu.org>
2095         * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
2096         (AH_BOTTOM): Do not define SIGTYPE.
2098 2011-03-26  Glenn Morris  <rgm@gnu.org>
2100         * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,
2101         AC_TRY_RUN with AC_COMPILE_IFELSE, AC_LINK_IFELSE, AC_RUN_IFELSE.
2103 2011-03-25  Andreas Schwab  <schwab@linux-m68k.org>
2105         * autogen/update_autogen: Remove useless function keyword.
2107 2011-03-25  Eli Zaretskii  <eliz@gnu.org>
2109         * config.bat: Generate src/config.h and lib/Makefile from
2110         autogen/config.in and autogen/Makefile.in.
2112 2011-03-25  Glenn Morris  <rgm@gnu.org>
2114         * compile, config.guess, config.sub, depcomp, install-sh, missing:
2115         Remove; autoreconf can supply them.
2116         * Makefile.in (sync-from-gnulib): Don't sync config.sub,
2117         config.guess, install-sh.  Pass -i to autoreconf.
2118         * autogen/update_autogen (genfiles): Add compile, config.guess,
2119         config.sub, depcomp, install-sh, missing.  Pass -i to autoreconf.
2120         Discard non-error output from autoreconf in -q case.
2121         * autogen/compile, autogen/config.guess, autogen/config.sub:
2122         * autogen/depcomp, autogen/install-sh, autogen/missing: New.
2123         * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp,
2124         install-sh, missing.
2126 2011-03-23  Glenn Morris  <rgm@gnu.org>
2128         * autogen/update_autogen: Fix typo.
2129         (msg): Remove function; use `exec' instead.
2131         * Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
2132         (sync-from-gnulib): Don't sync mkinstalldirs.
2133         * make-dist: Don't distribute mkinstalldirs.
2135 2011-03-23  Paul Eggert  <eggert@cs.ucla.edu>
2137         Fix more problems found by GCC 4.5.2's static checks.
2138         * Makefile.in (GNULIB_MODULES): Add socklen.
2139         * configure.in: Do not check for sys/socket.h, since socklen does that.
2140         * m4/socklen.m4: New automatically-generated file, from gnulib.
2142         fakemail: Remove dependency on ignore-value.
2143         * Makefile.in (GNULIB_MODULES): Add stdio.
2144         * lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
2145         imported from gnulib.
2146         * .bzrignore: Add lib/stdio.h.
2148 2011-03-22  Glenn Morris  <rgm@gnu.org>
2150         * autogen/copy_autogen: Work from ./ or ../.
2151         Fix time-stamps.
2152         * autogen.sh: Doc fix.
2154 2011-03-20  Glenn Morris  <rgm@gnu.org>
2156         * autogen/: New directory, to be excluded from releases.
2157         * autogen/copy_autogen, autogen/update_autogen: New scripts.
2158         * autogen/README: New file.
2159         * autogen/aclocal.m4, autogen/config.in, autogen/configure:
2160         * autogen/Makefile.in: Add auto-updated generated files.
2161         * autogen.sh: No longer a no-op, now it tests for autotools
2162         and runs them as necessary.
2163         * configure.in: Default maintainer-mode to on.
2164         * aclocal.m4, configure, lib/Makefile.in: Remove files.
2166 2011-03-13  Paul Eggert  <eggert@cs.ucla.edu>
2168         Update for gnulib.
2169         * Makefile.in (GNULIB_MODULES): Add intprops, as Emacs now
2170         includes <intprops.h> directly.
2171         * lib/sys_stat.in.h: New version from Gnulib, which fixes a bug
2172         when building Emacs on Solaris 9 and running it on Solaris 10.
2174 2011-03-08  Jan Djärv  <jan.h.d@swipnet.se>
2176         * configure.in: Require 3.0 for --with-gtk3.  Add HAVE_GTK3.
2178 2011-03-07  Chong Yidong  <cyd@stupidchicken.com>
2180         * Version 23.3 released.
2182 2011-03-06  Glenn Morris  <rgm@gnu.org>
2184         * configure.in (FREETYPE_LIBS): Actually set it to something.
2186 2011-03-02  Paul Eggert  <eggert@cs.ucla.edu>
2188         Work around some portability problems with symlinks.
2190         * Makefile.in (GNULIB_MODULES): Add lstat, readlink, symlink.
2191         * configure.in (lstat, HAVE_LSTAT): Remove special hack.
2192         * lib/dosname.h, lib/lstat.c, lib/readlink.c, lib/stat.c:
2193         * lib/symlink.c, m4/lstat.m4, m4/readlink.m4, m4/stat.m4:
2194         * m4/symlink.m4:
2195         New files, automatically generated from gnulib.
2196         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2197         * m4/gl-comp.m4, src/config.in, config.sub: Regenerate.
2199 2011-02-26  Eli Zaretskii  <eliz@gnu.org>
2201         * .bzrignore: Ignore new lib/*.in-h files.
2203         * config.bat: Rename stdint.in.h and sys_stat.in.h.  Call
2204         depfiles.bat even if lib/deps already exist.
2206 2011-02-25  Paul Eggert  <eggert@cs.ucla.edu>
2208         * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk:
2209         * lib/stdlib.in.h, m4/stdlib_h.m4: Regenerate to incorporate
2210         recent changes to configure.in and to gnulib.
2212 2011-02-24  Glenn Morris  <rgm@gnu.org>
2214         * configure.in: Replace obsolete AC_OUTPUT() with AC_CONFIG_FILES(),
2215         AC_CONFIG_COMMANDS(), and AC_OUTPUT sans arguments.
2217 2011-02-22  Paul Eggert  <eggert@cs.ucla.edu>
2219         Assume S_ISLNK etc. work, since gnulib supports this.
2220         * Makefile.in (GNULIB_MODULES): Add sys_stat.
2221         * configure.in: Check for lstat and set HAVE_LSTAT=0 if not.
2222         Pretend to be using the gnulib lstat module for benefit of sys/stat.h.
2223         * configure, lib/Makefile.in, lib/gnulib.mk: Regenerate.
2225 2011-02-21  Paul Eggert  <eggert@cs.ucla.edu>
2227         * lib/min-max.h: New file, for "min" and "max".
2229 2011-02-21  Christoph Scholtes  <cschol2112@gmail.com>
2231         * lib/makefile.w32-in ($(BLD)/md5.$(O)): Added dependency on
2232         $(EMACS_ROOT)/nt/inc/stdint.h.
2234 2011-02-21  Eli Zaretskii  <eliz@gnu.org>
2236         * lib/makefile.w32-in ($(BLD)/filemode.$(O)): Move from
2237         src/makefile.w32-in and adapt.  Depend on stamp_BLD.
2238         (GNULIBOBJS): Add $(BLD)/filemode.$(O).
2240 2011-02-20  Paul Eggert  <eggert@cs.ucla.edu>
2242         Import filemode module from gnulib.
2243         * .bzrignore: Add lib/sys/.
2244         * Makefile.in (GNULIB_MODULES): Add filemode.
2245         * lib/Makefile.am (MOSTLYCLEANDIRS): New macro.
2246         * lib/filemode.c: Renamed from src/filemode.c and regenerated
2247         from gnulib.  This adds support for some more file types, e.g.,
2248         Cray DMF migrated files.
2249         * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c.
2250         * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4:
2251         * m4/sys_stat_h.m4: New files, generated from gnulib.
2252         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2253         Regenerate.
2255 2011-02-20  Eli Zaretskii  <eliz@gnu.org>
2257         * lib/makefile.w32-in ($(BLD)/md5.$(O)): Don't depend on
2258         $(EMACS_ROOT)/nt/inc/sys/stat.h.
2260 2011-02-20  Paul Eggert  <eggert@cs.ucla.edu>
2262         * configure.in (C_WARNINGS_SWITCH): Do not prepend -Wno-pointer-sign.
2263         This undoes the 2006-01-02 change.  The -Wno-pointer-sign option
2264         is no longer needed, due to the recent SSDATA and related changes.
2265         Perhaps -Wno-pointer-sign should also be removed from
2266         nextstep/Cocoa/Emacs.xcodeproj/project.pbxproj but I have no easy
2267         way to test this so I left it alone.
2268         * configure: Regenerate.
2270 2011-02-20  Christoph Scholtes  <cschol2112@gmail.com>
2272         * lib/makefile.w32-in ($(BLD)/md5.$(O)): New recipe, moved from
2273         src/makefile.w32-in.
2275 2011-02-20  Paul Eggert  <eggert@cs.ucla.edu>
2277         Import crypto/md5 and stdint modules from gnulib.
2278         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2279         Regenerate.
2280         * lib/md5.c, lib/md5.h: Rename from src/md5.h and lib/md5.h.
2281         Import the new versions from gnulib; they assume a C99-style
2282         <stdint.h>, supplied by the stdint module.
2283         * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files,
2284         imported from gnulib.
2285         * Makefile.in (MAKEFILE_MODULES): Add crypto/md5.
2286         * admin/notes/copyright: Remove src/md5.c and src/md5.h as
2287         special cases.
2289 2011-02-19  Eli Zaretskii  <eliz@gnu.org>
2291         * .bzrignore: Ignore cxxdefs.h and lib/*.in-h files.
2292         Add lib/deps/.
2294         * config.bat: Configure in `lib'.
2295         Generate *.Po files in lib/deps.
2297 2011-02-18  Paul Eggert  <eggert@cs.ucla.edu>
2299         Import IRIX 6.5 getloadavg fixes from gnulib.
2300         * configure, lib/getloadavg.c, m4/getloadavg.m4: Regenerate.
2302 2011-02-16  Paul Eggert  <eggert@cs.ucla.edu>
2304         Import getloadavg module from gnulib.
2305         * .bzrignore: Add lib/stdlib.h.
2306         * Makefile.in (GNULIB_MODULES): Add getloadavg.
2307         * admin/notes/copyright: Remove src/getloadavg.c as a special case.
2308         * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this.
2309         (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES):
2310         Remove; gnulib does this now.
2311         * lib/getloadavg.c: Rename from src/getloadavg.c, and sync
2312         from gnulib.  This adds support for several other systems, such
2313         as Tru64 4.0D, QNX, AIX perfstat, etc.  It also fixes a potential
2314         buffer overrun on Linux hosts under very high load, and on hosts
2315         that maintain a channel to the load average file it makes sure
2316         the file descriptor is close-on-exec (on hosts that support this)
2317         and is not stdin, stdout, or stderr.
2318         * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files,
2319         from gnulib.
2320         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2321         * src/config.in: Regenerate.
2323 2011-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2325         Merge from gnulib.
2327         * install-sh: Update to scriptversion 2011-01-19.21.
2329         2011-02-13  Bruno Haible  <bruno@clisp.org>
2331         Consistent macro naming for macros that use GCC __attribute__.
2332         * lib/ignore-value.h (_GL_ATTRIBUTE_DEPRECATED): Renamed from
2333         ATTRIBUTE_DEPRECATED.
2335         2011-02-12  Bruno Haible  <bruno@clisp.org>
2337         setlocale: Prefer gnulib's override over libintl's override.
2338         * lib/gettext.h (setlocale): Redefine to rpl_setlocale if
2339         GNULIB_defined_setlocale is set.
2341 2011-02-13  Glenn Morris  <rgm@gnu.org>
2343         * make-dist: Exclude generated file src/globals.h.
2345 2011-02-10  Paul Eggert  <eggert@cs.ucla.edu>
2347         * arg-nonnull.h, c++defs.h, warn-on-use.h: Fix licenses.
2348         Sync from gnulib, which has been patched to fix the problem
2349         with the license notices.  Problem reported by Glenn Morris in
2350         <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00403.html>.
2352 2011-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2354         * .bzrignore: Ignore globals.h and related stamp.
2356 2011-02-09  Paul Eggert  <eggert@cs.ucla.edu>
2358         * lib/Makefile.in, lib/gnulib.mk: Regenerate.
2359         This merges the following fix from gnulib:
2361         2011-02-08  Bruno Haible  <bruno@clisp.org>
2363         Split large sed scripts, for HP-UX sed.
2365 2011-02-08  Tom Tromey  <tromey@redhat.com>
2367         * configure: Rebuild.
2368         * configure.in (NS_OBJC_OBJ): New subst.
2370 2011-02-06  Paul Eggert  <eggert@cs.ucla.edu>
2372         gnulib: allow multiple gnulib generated replacements to coexist
2373         This defines a few preprocessor symbols that should not affect Emacs.
2374         * lib/getopt.in.h, lib/time.in.h, lib/unistd.in.h: Regenerate
2375         via "make sync-from-gnulib".
2377         gnulib: undo previous change
2378         The upstream _HEADERS change was backed out of gnulib (see the
2379         same thread).  Stay in sync with gnulib.
2381         gnulib: adjust to upstream _HEADERS change
2382         * lib/Makefile.am (EXTRA_HEADERS, nodist_pkginclude_HEADERS):
2383         New empty macros, to accommodate recent changes to gnulib.  See
2384         <http://lists.gnu.org/archive/html/bug-gnulib/2011-02/msg00068.html>.
2385         * c++defs.h, lib/Makefile.in, lib/ftoastr.h, lib/getopt.in.h:
2386         * lib/gnulib.mk, lib/ignore-value.h, lib/stdbool.in.h, lib/stddef.in.h:
2387         * lib/time.in.h, lib/unistd.in.h:
2388         Regenerate.
2390 2011-02-05  Paul Eggert  <eggert@cs.ucla.edu>
2392         sync from gnulib to remove HAVE_STDBOOL_H
2393         * m4/stdbool.m4 (AC_CHECK_HEADER_STDBOOL): Renamed from
2394         AC_HEADER_STDBOOL.  All uses changed.  Do not define
2395         HAVE_STDBOOL_H, as gnulib does not need this.  This change is
2396         imported from the latest Autoconf git.  It was motivated by Emacs,
2397         which uses gnulib but does not need HAVE_STDBOOL_H.
2398         * configure, src/config.in: Regenerate.
2399         * config.guess, config.sub: Sync to 2011-02-02 versions (whitespace)
2401 2011-02-03  Paul Eggert  <eggert@cs.ucla.edu>
2403         allow C code to suppress warnings about ignored return values
2404         * Makefile.in (GNULIB_MODULES): Add ignore-value.
2405         * configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2406         * lib/ignore-value.h: New file.
2408 2011-01-31  Chong Yidong  <cyd@stupidchicken.com>
2410         * configure.in: Test existence of xaw3d library, not just the
2411         header (Bug#7642).
2413 2011-01-31  Eli Zaretskii  <eliz@gnu.org>
2415         * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and
2416         $(BLD)/time_r.$(O).
2417         ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and
2418         $(EMACS_ROOT)/src/m/intel386.h.
2419         ($(BLD)/strftime.$(O)):
2420         ($(BLD)/time_r.$(O)): Define prerequisites.
2422 2011-01-31  Paul Eggert  <eggert@cs.ucla.edu>
2424         src/emacs.c now gets version number from configure.in
2425         * configure.in (version): Set this from $PACKAGE_VERSION,
2426         which is set from AC_INIT, rather than scouting through src/emacs.c.
2427         * configure: Regenerate.
2428         * make-dist (version): Get it from configure.in, not src/emacs.c.
2430 2011-01-30  Paul Eggert  <eggert@cs.ucla.edu>
2432         strftime: import from gnulib
2433         * Makefile.in (GNULIB_MODULES): Add strftime.
2434         * configure.in (AC_FUNC_STRFTIME, my_strftime): Remove; no longer
2435         needed.
2436         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2437         Regenerate.
2438         * lib/strftime.c, lib/strftime.h, lib/stdbool.in.h: New files,
2439         imported from gnulib.
2440         * m4/strftime.m4, m4/stdbool.m4, m4/tm_gmtoff.m4: Likewise.
2441         This incorporates many changes from gnulib, including simpler
2442         handling of multibyte formats, porting to mingw32 and other
2443         platforms, and support for higher-resolution time stamps.
2444         Emacs does not yet use the higher-resolution interface.
2446 2011-01-30  Paul Eggert  <eggert@cs.ucla.edu>
2448         gnulib: import mktime and move-if-change fixes from gnulib
2450         * configure: Regenerate from the following.
2452         2011-01-30  Paul Eggert  <eggert@cs.ucla.edu>
2454         mktime: clarify long_int width checking
2455         * lib/mktime.c (long_int_is_wide_enough): Move this assertion to
2456         the top level, to make it clearer that the assumption about
2457         long_int width is being checked.  See
2458         <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00554.html>.
2460         2011-01-29  Paul Eggert  <eggert@cs.ucla.edu>
2462         TYPE_MAXIMUM: avoid theoretically undefined behavior
2463         * lib/intprops.h (TYPE_MINIMUM, TYPE_MAXIMUM): Do not shift a
2464         negative number, which the C Standard says has undefined behavior.
2465         In practice this is not a problem, but might as well do it by the book.
2466         Reported by Rich Felker and Eric Blake; see
2467         <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00493.html>.
2468         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
2469         * lib/mktime.c (TYPE_MAXIMUM): Redo slightly to match the others.
2471         mktime: #undef mktime before #defining it
2472         * lib/mktime.c (mktime) [DEBUG]: #undef mktime before #defining it.
2474         mktime: systematically normalize tm_isdst comparisons
2475         * lib/mktime.c (isdst_differ): New function.
2476         (__mktime_internal): Use it systematically for all isdst comparisons.
2477         This completes the fix for libc BZ #6723, and removes the need for
2478         normalizing tm_isdst.  See
2479         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>
2480         (not_equal_tm) [DEBUG]: Use isdst_differ here, too.
2482         mktime: fix some integer overflow issues and sidestep the rest
2484         This was prompted by a bug report by Benjamin Lindner for MinGW
2485         <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00472.html>.
2486         His bug is due to signed integer overflow (0 - INT_MIN), and I
2487         I scanned through mktime.c looking for other integer overflow
2488         problems, fixing all the bugs I found.
2490         Although the C Standard says the resulting code is still not safe
2491         in the presence of integer overflow, in practice it should be good
2492         enough for all real-world two's-complement implementations, except
2493         for debugging environments that deliberately trap on integer
2494         overflow (e.g., gcc -ftrapv).
2496         * lib/mktime.c (WRAPV): New macro.
2497         (SHR): Also check that long_int and time_t shift right in the
2498         usual way, before using the fast-but-unportable method.
2499         (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove, no longer
2500         used.  The code already assumed two's complement, so there's
2501         no need to test for alternatives.  All uses removed.
2502         (TYPE_MAXIMUM): Don't rely here on overflow behavior not defined by
2503         the C standard.  Problem reported by Rich Felker in
2504         <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00488.html>.
2505         (twos_complement_arithmetic): Also check long_int and time_t.
2506         (time_t_avg, time_t_add_ok, time_t_int_add_ok): New functions.
2507         (guess_time_tm, ranged_convert, __mktime_internal): Use them.
2508         (__mktime_internal): Avoid integer overflow with unary subtraction
2509         in two instances where -1 - X is an adequate replacement for -X,
2510         since the calculations are approximate.
2512         2011-01-29  Eric Blake  <eblake@redhat.com>
2514         mktime: avoid infinite loop
2515         * m4/mktime.m4 (AC_FUNC_MKTIME): Avoid overflow on possibly-signed
2516         type; behavior is still undefined but portable to all known targets.
2517         Reported by Rich Felker.
2519         2011-01-28  Paul Eggert  <eggert@cs.ucla.edu>
2521         mktime: avoid problems on NetBSD 5 / i386
2522         * lib/mktime.c (long_int): New type.  This works around a problem
2523         on NetBSD 5 / i386, where 'long int' and 'int' are both 32 bits
2524         but time_t is 64 bits, and where I expect the existing code is
2525         wrong in some cases.
2526         (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it.
2527         (ydhms_diff): Bring back the compile-time check for wide-enough
2528         year and yday.
2530         mktime: fix misspelling in comment
2531         * lib/mktime.c (__mktime_internal): Fix misspelling in comment.
2532         This merges all recent glibc changes of importance.
2534         2011-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2536         move-if-change: cope with concurrent mv of identical file.
2537         * move-if-change (CMPPROG): Accept environment
2538         variable as an override for `cmp'.
2539         (usage): Document CMPPROG.
2540         Adjust comparison to drop stdout.  Cope with failure of mv if
2541         the target file exists and is identical to the source, for
2542         parallel builds.
2543         Report from H.J. Lu against binutils in PR binutils/12283.
2545 2011-01-29  Eli Zaretskii  <eliz@gnu.org>
2547         * lib/makefile.w32-in:
2548         * lib/getopt_.h: New files.
2550 2011-01-28  Paul Eggert  <eggert@cs.ucla.edu>
2552         improve fix for MS-DOS file name clash
2553         * Makefile.in (DOS_gnulib_comp.m4): Renamed from DOS-gnulib-comp.m4,
2554         for portability to POSIX make.  Reported by Bruno Haible.
2555         (sync-from-gnulib): Copy gl-comp.m4 (if present) back to
2556         gnulib-comp.m4 before running gnulib-tool, to prevent old gnulib
2557         files from accumulating as garbage.  Also reported by Bruno Haible.
2559 2011-01-27  Paul Eggert  <eggert@cs.ucla.edu>
2561         fix two m4/gnulib-*.m4 file names that clashed under MS-DOS
2562         * Makefile.in (DOS-gnulib-comp.m4): New macro.
2563         (sync-from-gnulib): Rename m4/gnulib-comp.m4 to m4/gl-comp.m4 to avoid
2564         problems with MS-DOS 8+3 file name restrictions.
2565         Remove m4/gnulib-cache.m4, as we can live without it.  If we kept
2566         it, it would also cause problems when extracting Emacs distribution
2567         tarballs on MS-DOS hosts.
2568         (ACLOCAL_INPUTS): Adjust to file renaming.
2569         * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
2570         * config.guess, config.sub: Sync from gnulib.
2571         * m4/gnulib-cache.m4: Remove from repository.
2572         * m4/gl-comp.m4: Rename from m4/gnulib-comp.m4.
2574 2011-01-25  Glenn Morris  <rgm@gnu.org>
2576         * README: Add a note about ranges in copyright years.
2578         * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
2580 2011-01-25  Peter O'Gorman  <bug-gnu-emacs@mlists.thewrittenword.com>  (tiny change)
2582         * configure.in: Add HP-UX on IA64 (Bug#6811).
2584 2011-01-24  Paul Eggert  <eggert@cs.ucla.edu>
2586         Remove HAVE_RAW_DECL_CHOWN etc. from config.h
2587         * Makefile.in (sync-from-gnulib): Remove m4/warn-on-use.m4,
2588         as it is no longer needed.
2589         * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
2590         * configure.in: Invoke the new gnulib macro
2591         gl_ASSERT_NO_GNULIB_POSIXCHECK, which removes the need for
2592         warn-on-use.m4 and for the HAVE_RAW_DECL_* symbols in config.h.
2593         * m4/getopt.m4: Sync from gnulib; this removes the need for
2594         HAVE_DECL_OPTRESET and HAVE_DECL_GETOPT_CLIP from config.h.
2595         * m4/gnulib-common.m4 (gl_ASSERT_NO_GNULIB_POSIXCHECK):
2596         New macro, synced from gnulib.
2597         * m4/warn-on-use.m4: Remove.
2599 2011-01-22  Paul Eggert  <eggert@cs.ucla.edu>
2601         aclocal.m4: put this file back into repository
2602         This way, we don't have to assume that the maintainer has
2603         the automake package installed.  See
2604         <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00746.html>.
2605         * .bzrignore: Remove aclocal.m4, undoing the previous change.
2606         * Makefile.in (top_maintainer_clean): Do not remove aclocal.m4,
2607         undoing the previous change.
2608         * aclocal.m4: New file (actually, resurrected).
2610 2011-01-22  Miles Bader  <miles@gnu.org>
2612         * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
2613         FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
2614         Emacs directly uses fontconfig, and breaks building when using a
2615         strict linker).
2617 2011-01-21  Paul Eggert  <eggert@cs.ucla.edu>
2619         src/config.in: shrink slightly
2620         * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS.
2621         This makes src/config.in a bit smaller, by removing identifiers
2622         like GNULIB_TEST_MKTIME that Emacs does not need.
2623         * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4:
2624         * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4:
2625         Sync from gnulib.  This removes a few more unnecessary symbols from
2626         src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H.
2627         * configure, src/config.in: Regenerate.
2629         aclocal.m4: tweaks to regenerate more conveniently
2630         This attempts to act better when the source is in a weird state.  See
2631         <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00734.html>.
2632         * Makefile.in (am--refresh): Add aclocal.m4, configure, config.in.
2633         * .bzrignore: Add aclocal.m4.
2635 2011-01-20  Paul Eggert  <eggert@cs.ucla.edu>
2637         aclocal.m4: omit auto-generated file from repository
2638         * Makefile.in (top_maintainer_clean): Remove aclocal.m4; this undoes
2639         the most recent change here.
2640         * aclocal.m4: Remove from bzr repository.  This file is
2641         auto-generated and isn't needed to run 'configure'.  See
2642         <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00698.html>.
2644 2011-01-19  Paul Eggert  <eggert@cs.ucla.edu>
2646         Minor Makefile.in tweaks to build from gnulib better.
2647         <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>
2648         * Makefile.in (sync-from-gnulib): Also run autoreconf -I m4.
2649         (top_maintainer_clean): Don't remove aclocal.m4.
2651 2011-01-18  Paul Eggert  <eggert@cs.ucla.edu>
2653         Minor cleanups for 'bzr status'
2654         * .bzrignore: Add emacs-*/, the output of make-dist, and stamp-h1,
2655         the output of config.guess.
2656         * Makefile.in (top_distclean): Remove stamp-h1 too.
2658         * configure.in (HAVE_ATTRIBUTE_ALIGNED): Arrange for this to be
2659         defined if the compiler supports GCC-style __attribute__
2660         ((__aligned__ ...)).  IBM AIX and Oracle Solaris Studio support
2661         this syntax.
2663 2011-01-17  Paul Eggert  <eggert@cs.ucla.edu>
2665         Makefile.in: tidy up the building of lib
2666         * Makefile.in (am--refresh): Mark as .PHONY.
2667         (top_maintainer_clean): Don't remove lib/gnulib.mk m4/gnulib-cache.m4,
2668         as they're not rebuilt unless you do a "make sync-from-gnulib"
2669         and the former is needed for "configure".
2670         (maintainer-clean): Don't recurse into lib, as "make bootstrap-clean"
2671         has already removed lib/Makefile.
2673         * Makefile.in (GNULIB_MODULES): Change ftoastr to dtoastr.
2674         This avoids building ftoastr and ldtoastr, which aren't needed.  See
2675         <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00199.html>.
2677         * .bzrignore: Add .h files that are host-dependent.
2678         Add lib/.deps/, lib/arg-nonnull.h, lib/c++defs.h, lib/getopt.h,
2679         lib/time.h, lib/unistd.h, lib/warn-on-use.h.  These are
2680         host-dependent and are built as part of an ordinary 'make', and
2681         should not be checked in.
2683         * lib/Makefile.in: Regenerate.
2684         * lib/COPYING: New file, a copy of COPYING.
2686         * configure: Regenerate.
2687         * configure.in (AC_USE_SYSTEM_EXTENSIONS): Remove: gnulib does this.
2689         Regenerate.
2690         * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
2691         * lib/gettext.h, lib/unistd.in.h, m4/unistd_h.m4:
2692         New files, copied from gnulib by gnulib-tool.
2693         * aclocal.m4, configure, lib/Makefile.in, m4/getopt.m4:
2694         * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2695         Regenerate.
2697         Use gnulib's getopt-gnu module.
2698         * Makefile.in (GNULIB_MODULES): Add getopt-gnu.
2699         (AUTOCONF_INPUTS): Remove getopt.m4; aclocal.m4 is a good-enough
2700         representative of the dependencies.
2701         * configure.in: Do not configure getopt, as gnulib does that now.
2702         * make-dist: Do not worry about lib-src/getopt.h, as gnulib handles
2703         getopt now, in lib.
2705         Regenerate.
2706         * arg-nonnull.h, c++defs.h, lib/mktime-internal.h, lib/mktime.c:
2707         * lib/stddef.in.h, lib/time.h, lib/time.in.h, lib/time_r.c:
2708         * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4:
2709         * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4:
2710         * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4, m4/multiarch.m4:
2711         * m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4, m4/warn-on-use.m4:
2712         * m4/wchar_t.m4, warn-on-use.h:
2713         New files, copied from gnulib by gnulib-tool.
2714         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2715         * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2716         Regenerate.
2718         Use gnulib's mktime module.
2719         * Makefile.in (GNULIB_MODULES): Add mktime.
2720         * configure.in: Remove code no longer needed, as gnulib now does it.
2721         (AC_CHECK_FUNCS): Remove mktime.
2722         (AC_FUNC_MKTIME, BROKEN_MKTIME): Remove.
2723         (__restrict): Remove, as this now gets in the way of the C99
2724         support for 'restrict' pulled in by the gnulib mktime module.
2725         Code should now use 'restrict' and not '__restrict".
2726         (mktime): Remove.
2727         * make-dist: Put gnulib-generated files arg-nonnull.h, c++defs.h,
2728         and warn-on-use.h into the distribution.
2730         Regenerate.
2731         * lib/dtoastr.c, lib/ftoastr.c, lib/ftoastr.h, lib/intprops.h:
2732         * lib/ldtoastr.c, m4/c-strtod.m4:
2733         New files, copied from gnulib by gnulib-tool.
2734         * lib/dummy.c: Remove.
2735         * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2736         * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2737         Regenerate.
2739         Use gnulib's ftoastr module.
2740         * Makefile.in (GNULIB_MODULES): Add ftoastr.  Remove dummy.
2742         Regenerate.
2743         * aclocal.m4, compile, depcomp, lib/Makefile.in, lib/dummy.c:
2744         * lib/gnulib.mk, m4/00gnulib.m4, m4/gnulib-cache.m4:
2745         * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing:
2746         New files, generated automatically, with 'make sync-from-gnulib'
2747         followed by 'make'.
2748         * configure, lisp/dired.el, src/config.in: Regenerate.
2750         Automate syncing from gnulib.
2751         * INSTALL, README: Document new subdirectory 'lib'.
2752         * Makefile.in (SUBDIR): Add lib.
2753         (SUBDIR_MAKEFILES): Add lib/Makefile.
2754         (lib-src, src, TAGS, tags): Depend on lib.
2755         (gnulib_srcdir, GNULIB_MODULES, GNULIB_TOOL_FLAGS): New macros.
2756         ($(gnulib_srcdir)): New rule.
2757         (sync-from-gnulib): New rule, which is .PHONY.
2758         (lib): New rule, which is like lib-src.
2759         (Makefile): Depend on lib/Makefile.in.
2760         (AUTOCONF_INPUTS): Depend on aclocal.m4.
2761         (ACLOCAL_INPUTS, AUTOMAKE_INPUTS): New macros.
2762         ($(srcdir)/aclocal.m4, $(srcdir)/lib/Makefile.in): New rules.
2763         (am--refresh): New rule, to pacify Automake.
2764         (mostlyclean, clean, distclean, bootstrap-clean, maintainer-clean):
2765         Clean lib, too.
2766         (top_maintainer_clean): New macro, to remove gnulib-tool and Automake
2767         droppings.
2768         (maintainer-clean, extraclean): Use it.
2769         * configure.in: Initialize for automake and gnulib, by invoking
2770         AM_INIT_AUTOMAKE, AM_PROG_CC_C_O, gl_EARLY, and gl_INIT.  Output
2771         lib/Makefile, too.  Use automake to build gnulib, as gnulib works
2772         more conveniently with automake.
2773         * lib/Makefile.am: New file.
2774         * make-dist: Also put into the distribution aclocal.m4,
2775         compile, depcomp, missing, and the files under lib/.
2777 2011-01-15  Glenn Morris  <rgm@gnu.org>
2779         * Makefile.in (epaths-force): No more arch-tag to edit.
2781 2011-01-15  Chong Yidong  <cyd@stupidchicken.com>
2783         * configure.in: Bump min libxml2 version to 2.6.17 (Bug#7603).
2785 2011-01-14  Paul Eggert  <eggert@cs.ucla.edu>
2787         * make-dist: Distribute test/ files too.
2788         Distribute every file under test/ that is under version control,
2789         using patterns like *.el to capture files that are added later.
2790         Without this change, "configure" would fail, because it would
2791         attempt to build from a Makefile.in that was not distributed.
2793 2011-01-13  Christian Ohler  <ohler@gnu.org>
2795         * Makefile.in (INFO_FILES): Add ERT.
2797         * Makefile.in (check): Run tests in test/automated.
2799         * Makefile.in:
2800         * configure.in: Add test/automated/Makefile.
2802 2011-01-07  Paul Eggert  <eggert@cs.ucla.edu>
2804         * install-sh, mkinstalldirs, move-if-change: Update from master
2805         source in gnulib.
2807         * config.guess, config.sub: Updated from master source.
2809 2011-01-05  Andreas Schwab  <schwab@linux-m68k.org>
2811         * configure.in: Check for __builtin_unwind_init.
2813 2011-01-05  Glenn Morris  <rgm@gnu.org>
2815         * configure.in (HAVE_MAKEINFO): New output variable.
2816         (MAKEINFO): Reset to "makeinfo" if not found.
2817         * Makefile.in (install-arch-indep, info):
2818         Replace MAKEINFO = off with HAVE_MAKEINFO = no.
2820 2010-12-29  Ulrich Mueller  <ulm@gentoo.org>
2822         * configure.in: Make gameuser configurable (Bug#7717).
2824 2010-12-15  Glenn Morris  <rgm@gnu.org>
2826         * Makefile.in (install-arch-dep, uninstall): Remove code relating to the
2827         long absent lib-src/fns-*.el.
2829 2010-12-11  Glenn Morris  <rgm@gnu.org>
2831         * make-dist: Exclude etc/*.pyc.
2833 2010-12-10  Andreas Schwab  <schwab@linux-m68k.org>
2835         * configure.in: Don't double machfile in final message.
2837 2010-12-04  Chong Yidong  <cyd@stupidchicken.com>
2839         * configure.in: Fix last change.
2841 2010-12-04  Andreas Schwab  <schwab@linux-m68k.org>
2843         * configure.in: Remove reference to removed machine description
2844         files and allow $machine and $machfile to be empty.  Substitute
2845         M_FILE/S_FILE instead of machfile/opsysfile.
2847 2010-12-03  Glenn Morris  <rgm@gnu.org>
2849         * make-dist: Remove EMACS_UNIBYTE unsetting; it does nothing.
2851 2010-11-23  Dan Nicolaescu  <dann@ics.uci.edu>
2853         * configure.in <AC_CHECK_HEADERS>: Remove sys/ioctl.h.
2854         (EXTERNALLY_VISIBLE): New definition.
2856 2010-11-21  Dan Nicolaescu  <dann@ics.uci.edu>
2858         * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
2860 2010-11-15  Dan Nicolaescu  <dann@ics.uci.edu>
2862         * configure.in: Do not check for unconditionally included headers.
2864 2010-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2866         * .dir-locals.el (log-edit-mode): Set log-edit-rewrite-fixes.
2868 2010-11-09  Michael Albinus  <michael.albinus@gmx.de>
2870         * configure.in: Don't write a warning for D-Bus anymore.
2872 2010-11-06  Andreas Schwab  <schwab@linux-m68k.org>
2874         * configure.in: Fix indentation.
2876 2010-10-31  Ken Brown  <kbrown@cornell.edu>
2878         * configure.in (checking whether localtime caches TZ): Use
2879         unsetenv instead of modifying environment directly.
2881 2010-10-25  Andreas Schwab  <schwab@linux-m68k.org>
2883         * configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
2884         to avoid warning.
2886 2010-10-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2888         * configure.in: Remove the BROKEN annotation from GnuTLS.
2890 2010-10-22  Glenn Morris  <rgm@gnu.org>
2892         * make-dist: Avoid listing .el files twice.  Don't try to run
2893         autoconf if --no-update.
2895 2010-10-20  Glenn Morris  <rgm@gnu.org>
2897         * make-dist: No longer create lisp/MANIFEST.
2899 2010-10-14  Glenn Morris  <rgm@gnu.org>
2901         * BUGS, INSTALL.BZR, README: Updates.
2903 2010-10-13  Glenn Morris  <rgm@gnu.org>
2905         * make-dist: Remove --compress.  Check for the appropriate
2906         gzip-like executable, and if not found, don't compress.
2907         Check version number in README, don't change it.
2908         Use find for nt/inc/*.h.
2910 2010-10-12  Dan Nicolaescu  <dann@ics.uci.edu>
2912         * configure (ns_appdir, OLDXMENU, TOOLTIP_SUPPORT): Remove
2913         trailing / from directory names.
2915 2010-10-12  Glenn Morris  <rgm@gnu.org>
2917         * make-dist: Update and simplify.
2919 2010-10-12  Eli Zaretskii  <eliz@gnu.org>
2921         * make-dist: Don't distribute src/buildobj.h.  (Bug#7167)
2923 2010-10-10  Dan Nicolaescu  <dann@ics.uci.edu>
2925         * configure.in (PROFILING_LDFLAGS): Do not define, remove all uses.
2927 2010-10-09  Glenn Morris  <rgm@gnu.org>
2929         * make-dist: No more doc/emacs/*.texi.in.
2931         * configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
2933 2010-10-09  Glenn Morris  <rgm@gnu.org>
2935         * configure.in: Combine some conditionals.
2937         * configure.in (AC_OUTPUT): Add doc/emacs/emacsver.texi.
2938         * make-dist: Include doc/emacs/*.texi.in.
2940         * INSTALL, make-dist: Remove references to b2m.
2941         * Makefile.in (MAN_PAGES): Remove b2m.1.
2943 2010-10-05  Glenn Morris  <rgm@gnu.org>
2945         * .dir-locals.el: The Emacs convention is sentence-end-double-space.
2947 2010-10-03  Dan Nicolaescu  <dann@ics.uci.edu>
2949         * configure.in (NO_INLINE, noinline): Move here from src/xterm.c.
2951 2010-10-01  Dan Nicolaescu  <dann@ics.uci.edu>
2953         * configure.in: Include stdlib.h and string.h unconditionally.
2955 2010-09-29  Romain Francoise  <romain@orebokech.com>
2957         * configure.in: Don't enable ImageMagick unless HAVE_X11.
2959 2010-09-28  Glenn Morris  <rgm@gnu.org>
2961         * configure.in (HAVE_GNUTLS): Add a description to make autoheader
2962         happy.
2964 2010-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2966         * configure.in: Enable imagemagick by default.
2968 2010-09-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2970         * configure.in (HAVE_GNUTLS): Don't break if we don't have the
2971         GnuTLS libraries.
2973 2010-09-26  Teodor Zlatanov  <tzz@lifelogs.com>
2975         * configure.in: Set up GnuTLS.
2977 2010-09-22  Chong Yidong  <cyd@stupidchicken.com>
2979         * configure.in: Announce whether libxml2 is linked to.
2981 2010-09-20  Dan Nicolaescu  <dann@ics.uci.edu>
2983         * configure.in (LINKER): Rename to LD_FIRSTFLAG, do not include $(CC).
2985 2010-09-18  Eli Zaretskii  <eliz@gnu.org>
2987         * config.bat: Detect that libxml2 is installed and if so, build
2988         with it.
2990 2010-09-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2992         * configure.in (HAVE_LIBXML2): Check that the libxml2 we found can
2993         be used.  This fixes a conf problem on Mac OS X.
2995 2010-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2997         * configure.in: Check for libxml2.
2999 2010-09-09  Glenn Morris  <rgm@gnu.org>
3001         * make-dist: No more TODO files under lisp/.
3003 2010-09-04  Eli Zaretskii  <eliz@gnu.org>
3005         * config.bat: Produce lisp/gnus/_dir-locals.el from
3006         lisp/gnus/.dir-locals.el.
3008 2010-08-23  Andreas Schwab  <schwab@linux-m68k.org>
3010         * configure.in: Fix check for librsvg, imagemagick and
3011         MagickExportImagePixels.
3013 2010-08-18  Joakim Verona  <joakim@verona.se>
3015         * Makefile.in, configure.in: Checks for ImageMagick.
3017 2010-08-10  Dan Nicolaescu  <dann@ics.uci.edu>
3019         * configure.in (AC_PREREQ): Require autoconf 2.65.
3021 2010-08-09  Dan Nicolaescu  <dann@ics.uci.edu>
3023         * configure.in (AC_PREREQ): Require autoconf 2.66 to stop version churn.
3025 2010-08-09  Andreas Schwab  <schwab@linux-m68k.org>
3027         * configure.in: Add AC_C_BIGENDIAN.
3029 2010-08-09  Dan Nicolaescu  <dann@ics.uci.edu>
3031         * configure.in (ORDINARY_LINK): Use on hpux* too.
3033 2010-08-06  Jan Djärv  <jan.h.d@swipnet.se>
3035         * configure.in: Check for util.h.
3036         Use -Wimplicit-function-declaration if compiler supports it.
3038 2010-08-05  Eli Zaretskii  <eliz@gnu.org>
3040         * configure.in (UNEXEC_OBJ): Rename unexec.o => unexcoff.o.
3042 2010-08-04  Andreas Schwab  <schwab@linux-m68k.org>
3044         * configure.in: Restore accidentally removed use of
3045         GCC_TEST_OPTIONS/NON_GCC_TEST_OPTIONS.
3047 2010-07-29  Chad Brown  <yandros@mit.edu>
3049         * configure.in: Check for dirent.h.
3051 2010-07-29  Dan Nicolaescu  <dann@ics.uci.edu>
3053         * configure.in: Remove reference to usg5-4, unused.
3055 2010-07-25  Andreas Schwab  <schwab@linux-m68k.org>
3057         * configure.in: Check for __executable_start.
3059 2010-07-24  Ken Brown  <kbrown@cornell.edu>
3061         * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715)
3063 2010-07-24  Juanma Barranquero  <lekktu@gmail.com>
3065         * .bzrignore, .gitignore: Ignore README.W32 on the root directory.
3067 2010-07-24  Ken Brown  <kbrown@cornell.edu>  (tiny change)
3069         * configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
3071 2010-07-12  Andreas Schwab  <schwab@linux-m68k.org>
3073         * configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
3074         (PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
3075         (C_OPTIMIZE_SWITCH): Remove.
3076         (TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
3078 2010-07-11  Andreas Schwab  <schwab@linux-m68k.org>
3080         * configure.in: Don't check for index and rindex, check for strchr
3081         and strrchr.  Define strchr and strrchr as index and rindex,
3082         resp., in src/config.h if not available.
3084 2010-07-08  Dan Nicolaescu  <dann@ics.uci.edu>
3086         * configure.in: Use -Wold-style-definition if available.
3087         This helps with the transition to standard C code, it can be
3088         removed when done.
3090         * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
3092         * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
3093         and MSWindows.
3095 2010-07-07  Andreas Schwab  <schwab@linux-m68k.org>
3097         * configure.in: Don't check for bcopy, bcmp, bzero.  Don't include
3098         <strings.h> and don't define bcopy, bzero, BCMP in config.h.
3100 2010-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
3102         * configure.in (getenv): Remove K&R declaration.
3104 2010-07-02  Jan Djärv  <jan.h.d@swipnet.se>
3106         * configure.in: Remove define __P.
3108 2010-07-02  Dan Nicolaescu  <dann@ics.uci.edu>
3110         * configure.in (--enable-use-lisp-union-type): New flag.
3112 2010-06-30  Dan Nicolaescu  <dann@ics.uci.edu>
3114         Fix CFLAGS for non-GCC compilers.
3115         * configure.in (CFLAGS): Always use -g like it was done before the
3116         2010-03-30 change.
3117         (REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
3118         (Bug#6538)
3120 2010-06-30  Glenn Morris  <rgm@gnu.org>
3122         * configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
3123         Set with AC_DEFINE rather than AH_BOTTOM.
3125         * configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
3126         (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
3127         Set with shell, not cpp.
3128         (LIBX): Remove, just use -lX11 in the one place this was used.
3129         (cannot_dump): Replace with CANNOT_DUMP.
3131 2010-06-28  Jan Djärv  <jan.h.d@swipnet.se>
3133         * configure.in: Add --with-x-toolkit=gtk3.  Remove HAVE_GTK_MULTIDISPLAY,
3134         check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
3135         by minimum required Gtk+ 2.6).  Add checks for functions introduced
3136         in Gtk+ 2.14 or newer (bug#6505).
3138 2010-06-26  Eli Zaretskii  <eliz@gnu.org>
3140         * config.bat: Remove white space around "+" in COPY commands.
3142 2010-06-23  Glenn Morris  <rgm@gnu.org>
3144         * info/dir: Start descriptions in column 32, per Texinfo convention.
3146 2010-06-16  Chong Yidong  <cyd@stupidchicken.com>
3148         * INSTALL: Update font information (Bug#6389).
3150 2010-06-16  Glenn Morris  <rgm@gnu.org>
3152         * INSTALL: General update.
3154 2010-06-12  Glenn Morris  <rgm@gnu.org>
3156         * Makefile.in (install-arch-indep): Delete any old info .gz files first.
3158 2010-06-11  Glenn Morris  <rgm@gnu.org>
3160         * configure.in (--without-compress-info): New option.
3161         (GZIP_INFO): New output variable.
3163         * Makefile.in (GZIP_INFO): New, set by configure.
3164         (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
3165         Handle man pages in the same way.
3167 2010-06-10  Glenn Morris  <rgm@gnu.org>
3169         * Makefile.in (install-arch-indep): Gzip the info files too.
3171         * make-dist: Remove references to non-existent directories and files.
3173 2010-06-08  Dan Nicolaescu  <dann@ics.uci.edu>
3175         * configure.in: Include <strings.h> and <string.h> instead of
3176         "strings.h" and "string.h".
3178 2010-06-06  Dan Nicolaescu  <dann@ics.uci.edu>
3180         * configure.in: Remove code dealing with BSTRING.
3182 2010-06-03  Dan Nicolaescu  <dann@ics.uci.edu>
3184         * configure.in (AC_PREREQ): Require autoconf 2.65.
3186         * configure.in (unxec): Do not define and substitute.
3187         (UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
3189 2010-06-03  Glenn Morris  <rgm@gnu.org>
3191         * configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
3193 2010-06-02  Dan Nicolaescu  <dann@ics.uci.edu>
3195         Fix alloca definition when using gcc on non-gnu systems.
3196         * configure.in: Use the code sequence indicated by "info autoconf"
3197         for alloca (bug#6170).
3199 2010-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3201         * .bzrignore: Ignore new files from trunk, which appear if you use
3202         colocated branches (i.e. "bzr switch").
3204 2010-05-28  Glenn Morris  <rgm@gnu.org>
3206         * configure.in: Simplify some of the $canonical tests.
3208 2010-05-27  Glenn Morris  <rgm@gnu.org>
3210         * config.bat: Do not preprocess src/Makefile.in.
3212         * configure.in: Do not preprocess src/Makefile.in.
3213         (cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
3214         (AC_EGREP_CPP): Test no longer needed.
3216         * make-dist: No more Makefile.c files.
3218 2010-05-26  Glenn Morris  <rgm@gnu.org>
3220         * configure.in (YMF_PASS_LDFLAGS): Remove.
3221         (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
3223         * configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
3224         Add $GNUSTEP_LOCAL_HEADERS.
3225         (LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
3227         * configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
3228         (GNUSTEP_MAKEFILES): Remove.
3229         (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
3230         stuff to here.
3232 2010-05-25  Glenn Morris  <rgm@gnu.org>
3234         * configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
3235         (LD_SWITCH_SYSTEM_TEMACS): ... to here.
3237         * configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
3238         (LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
3239         here instead.
3241 2010-05-24  Romain Francoise  <romain@orebokech.com>
3243         * make-dist: Look for version in src/emacs.c.
3244         Use lisp/subr.el rather than lisp/version.el for location check.
3246 2010-05-21  Glenn Morris  <rgm@gnu.org>
3248         * configure.in (MKDEPDIR): Parallel build tweak.
3250         * configure.in (ns_frag): New output file.
3252         * configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
3253         (OLDXMENU_TARGET): Set to empty if USE_GTK.
3255         * configure.in (cannot_dump): New output variable.
3257 2010-05-20  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
3259         * configure.in: On NetBSD, if terminfo is found, use it in
3260         preference to termcap.  (Bug#6190)
3262 2010-05-20  Glenn Morris  <rgm@gnu.org>
3264         * make-dist (src): Include *.mk.
3265         * config.bat: Concatenate deps.mk onto the end of src/Makefile.
3266         * configure.in (DEPFLAGS, MKDEPDIR): New output variables.
3267         (deps_frag): New output file.
3268         (AUTO_DEPEND): Remove this definition.
3270         * configure.in (--with-gtk, --with-gcc): Remove option stubs.
3272 2010-05-19  Glenn Morris  <rgm@gnu.org>
3274         * configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
3275         (ORDINARY_LINK): New AC_DEFINE.
3276         (LIB_GCC): No need to set if ORDINARY_LINK.
3278 2010-05-18  Glenn Morris  <rgm@gnu.org>
3280         * configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
3281         (POST_ALLOC_OBJ) [!cygwin]: Set to empty.
3283         * config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
3284         * configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
3285         (RALLOC_OBJ): New output variable.
3287         * config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
3288         * configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
3290 2010-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3292         * Makefile.in (src): Provide the name of the VCS file that witnesses
3293         a pull.
3294         ($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
3296 2010-05-17  Glenn Morris  <rgm@gnu.org>
3298         * configure.in (OLDXMENU_DEPS): New output variable.
3300 2010-05-16  Glenn Morris  <rgm@gnu.org>
3302         * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
3304         * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
3305         * Makefile.in (install-arch-dep): Update for above change.
3307         * Makefile.in (ns_appdir): Remove.
3308         (install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
3310         * configure.in (TEMACS_LDFLAGS2): New output variable.
3312         * configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
3313         (START_FILES): Set to empty if NS_IMPL_GNUSTEP.
3314         (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
3315         nothing uses.
3317 2010-05-16  Dan Nicolaescu  <dann@ics.uci.edu>
3319         * configure.in: Remove references to usg5-4 and bsd-common, $opsys
3320         does not use them.
3321         (X11R5_INHIBIT_I18N): Remove, unused.
3323 2010-05-15  Glenn Morris  <rgm@gnu.org>
3325         * configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
3327         * configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
3329 2010-05-15  Ken Raeburn  <raeburn@raeburn.org>
3331         * configure.in: Look for version string in its new location.
3333 2010-05-15  Eli Zaretskii  <eliz@gnu.org>
3335         * config.bat: Remove support for DJGPP v1.x.
3337 2010-05-15  Glenn Morris  <rgm@gnu.org>
3339         * configure.in (OLDXMENU_TARGET): New output variable.
3341         * Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
3343         * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
3344         and other files that no longer exist.
3346 2010-05-14  Glenn Morris  <rgm@gnu.org>
3348         * configure.in (cpp_undefs): Add mktime, register, X11.
3350         * configure.in (GPM_MOUSE_SUPPORT): Remove.
3351         (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
3352         (HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
3354         * configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
3355         (GNUSTEP_MAKEFILES): Do not output.
3357 2010-05-13  Glenn Morris  <rgm@gnu.org>
3359         * configure.in: Fix some paren typos.
3361         * configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
3363         * configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
3365 2010-05-12  Glenn Morris  <rgm@gnu.org>
3367         * configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
3369         * configure.in (LIB_GCC): New output variable.
3371 2010-05-11  Glenn Morris  <rgm@gnu.org>
3373         * make-dist (msdos): No more mainmake.
3375         * configure.in: Generate lib-src/Makefile directly, do not run cpp.
3376         * config.bat: Do not run cpp on lib-src/Makefile.in.
3378         * config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
3380 2010-05-10  Glenn Morris  <rgm@gnu.org>
3382         * configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
3384         * configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
3385         (BLESSMAIL_TARGET): New output variable.
3387 2010-05-08  Štěpán Němec  <stepnem@gmail.com>  (tiny change)
3389         * INSTALL: Fix typos.
3391 2010-05-08  Chong Yidong  <cyd@stupidchicken.com>
3393         * configure.in: Add check for buggy version of GCC (Bug#6031).
3395 2010-05-08  Glenn Morris  <rgm@gnu.org>
3397         * configure.in (HAVE_LIBNCURSES): New local variable.
3398         (TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
3399         replacing cpp in src/s/*.h and src/Makefile.in.
3401 2010-05-07  Chong Yidong  <cyd@stupidchicken.com>
3403         * Version 23.2 released.
3405 2010-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3407         * configure.in: Add tests for `isnan' and `copysign'.
3409 2010-05-07  Eli Zaretskii  <eliz@gnu.org>
3411         * config.bat: Allow for 2 leading `#'s in comments in
3412         src/Makefile.in.
3414 2010-05-07  Glenn Morris  <rgm@gnu.org>
3416         * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
3417         Merges logic from src/s/* and src/Makefile.in.
3418         (LD_SWITCH_SYSTEM_TEMACS): New output variable.
3420 2010-05-07  Dan Nicolaescu  <dann@ics.uci.edu>
3422         Define START_FILES and LIB_STANDARD using autoconf.
3423         * configure.in (START_FILES, LIB_STANDARD): New definitions, moved
3424         here from src/s/*.h.
3425         (HAVE_CRTIN): Remove, inline logic in the netbsd
3426         START_FILES/LIB_STANDARD computation.
3428 2010-05-06  Glenn Morris  <rgm@gnu.org>
3430         * configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
3432         * Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
3433         (LD_SWITCH_X_SITE): Remove unused variables.
3435 2010-05-04  Glenn Morris  <rgm@gnu.org>
3437         * configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
3438         as well.
3439         (LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
3441         * configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
3443         * configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
3444         variables, replacing c_switch_machine, c_switch_system.
3445         * Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
3446         @c_switch_system@.
3448 2010-05-03  Glenn Morris  <rgm@gnu.org>
3450         * configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
3452         * make-dist: There are no more src/m/*.inp files.
3454 2010-05-01  Dan Nicolaescu  <dann@ics.uci.edu>
3456         * configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
3457         (ac_link): Do not use ld_switch_machine.
3459 2010-05-01  Glenn Morris  <rgm@gnu.org>
3461         * configure.in (OTHER_OBJ): Remove.
3462         (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
3464 2010-04-30  Glenn Morris  <rgm@gnu.org>
3466         * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
3467         Elsewhere, maybe include it.
3469         * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
3470         (OLDXMENU, LIBXMENU): New output variables.
3472         * configure.in (OTHER_OBJ): New output variable.
3474 2010-04-28  Glenn Morris  <rgm@gnu.org>
3476         * configure.in (CYGWIN_OBJ): New output variable.
3478         * configure.in (GPM_MOUSE_SUPPORT): New output variable.
3480         * configure.in (FONT_OBJ): New output variable.
3482         * configure.in (LIBXMU): New output variable.
3484         * configure.in (NS_OBJ, NS_SUPPORT): New output variables.
3486         * configure.in (machine, canonical): On amdx86-64, check for a 32-bit
3487         userland and maybe change values to i386 (move test from s/amdx86-64.h).
3489 2010-04-27  Glenn Morris  <rgm@gnu.org>
3491         * configure.in (LIBXTR6): New output variable.  Move unixware special
3492         case here from src/s/unixware.h.
3494         * configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
3495         in Makefiles.
3496         (TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
3498         * configure.in (HAVE_MOTIF_2_1): Remove unused variable.
3499         (LIBXP): No longer substitute in Makefiles.
3500         (MOTIF_LIBW): New output variable.  Move system-specific settings here
3501         from src/s files.
3503 2010-04-27  Dan Nicolaescu  <dann@ics.uci.edu>
3505         Reduce CPP usage.
3506         * configure.in (LIB_X11_LIB): Remove, inline in the only user.
3507         (unexec): Define unconditionally, all platforms define
3508         UNEXEC.  AC_SUBST it.
3509         (UNEXEC_SRC): Remove, unused.
3510         (C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
3512 2010-04-27  Glenn Morris  <rgm@gnu.org>
3514         * configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
3515         replaced by LIBXP.
3517         * configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
3518         (CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
3519         On hpux10-20, default to /lib.
3521         * configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
3523 2010-04-26  Dan Nicolaescu  <dann@ics.uci.edu>
3525         * configure.in (LIBS_MACHINE): Remove, unused.
3527         * configure.in (LIB_MATH): New output variable.  Set it for some systems.
3529 2010-04-24  Glenn Morris  <rgm@gnu.org>
3531         * configure.in (CRT_DIR): New output variable.
3532         (--with-crt-dir): New option.  (Bug#5655)
3533         (HAVE_LIB64_DIR): Remove.
3535 2010-04-22  Dan Nicolaescu  <dann@ics.uci.edu>
3537         * configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
3539 2010-04-22  Miles Bader  <miles@gnu.org>
3541         * configure.in: Get rid of "unix" pre-defined macro when
3542         preprocessing Makefile.  (Bug#5857)
3544 2010-04-21  Andreas Schwab  <schwab@linux-m68k.org>
3546         Avoid non-portable shell command negation
3547         * configure.in: Revert last change.
3549 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
3551         * configure.in: Change "if test ! -f" to "if ! test -f".
3553 2010-04-21  Glenn Morris  <rgm@gnu.org>
3555         * configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
3556         (GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
3558 2010-04-21  Karel Klíč  <kklic@redhat.com>
3560         * configure.in: New option: --with(out)-selinux, on by default.
3561         Set HAVE_LIBSELINUX if we find libselinux, and substitute
3562         LIBSELINUX_LIBS in Makefiles.
3564 2010-04-01  Dan Nicolaescu  <dann@ics.uci.edu>
3566         * configure.in: Remove all references to LIBX11_SYSTEM.
3568 2010-03-30  Dan Nicolaescu  <dann@ics.uci.edu>
3570         * configure.in: Remove all references to C_DEBUG_SWITCH.
3572 2010-03-27  Eli Zaretskii  <eliz@gnu.org>
3574         * config.bat <lib-src>: Edit out lines that begin with several #
3575         characters.
3577 2010-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
3579         * configure.in: Remove support for old UNIX System V systems and
3580         for Unixware on non-x86 machines.
3582         * configure.in: Remove support for Solaris on PPC and for old versions.
3584         * configure.in: Remove non-working lynxos port.
3586 2010-03-19  Dan Nicolaescu  <dann@ics.uci.edu>
3588         * .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
3590 2010-03-19  Glenn Morris  <rgm@gnu.org>
3592         * configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
3593         happy.
3595 2010-03-18  Jan Djärv  <jan.h.d@swipnet.se>
3597         * configure.in: Check for tputs and friends, abort if not
3598         found (bug#5735).
3600 2010-03-18  Glenn Morris  <rgm@gnu.org>
3602         * configure.in (--with-x-toolkit): In the help text, say which options
3603         are synonyms.
3605         * configure.in (--with-mmdf, --with-mail-unlink):
3606         New options, off by default.
3607         (--with-mailhost): New option to set default POP host.
3608         (LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
3609         (LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
3610         New variables, substituted in Makefiles.
3611         (try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
3612         (LIBGIF): Use AC_SUBST rather than AC_DEFINE.
3613         (HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
3614         (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
3615         (HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
3617 2010-03-18  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
3619         * Makefile.in (uninstall): Handle the case where archlibdir does not
3620         exist.  (Bug#5720)
3622 2010-03-12  Eli Zaretskii  <eliz@gnu.org>
3624         These changes remove termcap.c from the build on POSIX platforms.
3625         * configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
3627         * configure: Regenerated.
3629 2010-03-10  Chong Yidong  <cyd@stupidchicken.com>
3631         * Branch for 23.2.
3633 2010-01-31  Juri Linkov  <juri@jurta.org>
3635         * .bzrignore: Add TAGS-LISP.
3637 2010-01-23  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
3639         * configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
3640         this header file).
3642 2010-01-12  Juanma Barranquero  <lekktu@gmail.com>
3644         * .bzrignore: Ignore all .exe, instead of individual files.
3646 2010-01-12  Chong Yidong  <cyd@stupidchicken.com>
3648         * configure.in: Explicitly check for and link to -lXrender.
3650 2010-01-12  Glenn Morris  <rgm@gnu.org>
3652         * INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
3653         for bug reports for development versions.
3655 2010-01-02  Eli Zaretskii  <eliz@gnu.org>
3657         * .bzrignore: Add more ignored patterns, including for the MS-DOS
3658         build.
3660 2009-12-27  Karl Fogel  <kfogel@red-bean>
3662         * INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
3663         * INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
3665 2009-12-17  Glenn Morris  <rgm@gnu.org>
3667         * .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
3669 2009-12-15  Glenn Morris  <rgm@gnu.org>
3671         * info/dir: Add EDT entry.
3672         * Makefile.in (INFO_FILES): Add edt.
3674 2009-12-10  Jan Djärv  <jan.h.d@swipnet.se>
3676         * configure.in: Check for RSVG if GNUstep is used.
3678 2009-12-09  Jan Djärv  <jan.h.d@swipnet.se>
3680         * configure.in: Don't check for RSVG or GConf unless X11 is used.
3682 2009-12-09  Ken Brown  <kbrown@cornell.edu>  (tiny change)
3684         * configure.in: Allow compiling Emacs with GTK on Cygwin.
3686 2009-12-01  Glenn Morris  <rgm@gnu.org>
3688         * make-dist: Add etc/images/mpc directory.
3690 2009-11-21  Jan Djärv  <jan.h.d@swipnet.se>
3692         * configure.in: Don't check for GConf unless X is used.
3694 2009-11-20  Dan Nicolaescu  <dann@ics.uci.edu>
3696         * configure.in: Use -Wdeclaration-after-statement if available.
3698 2009-11-17  Jan Djärv  <jan.h.d@swipnet.se>
3700         * configure.in: New option: --with(out)-gconf.
3701         Set HAVE_GCONF if we find gconf.
3703 2009-11-17  Glenn Morris  <rgm@gnu.org>
3705         * Makefile.in (INFO_FILES): Add semantic.
3707 2009-11-16  Chong Yidong  <cyd@stupidchicken.com>
3709         * info/dir: Add Semantic.
3711 2009-11-16  Glenn Morris  <rgm@gnu.org>
3713         * Makefile.in (install-arch-indep): Use a more restrictive Makefile
3714         pattern, so as not to exclude makefile*.el.  (Bug#4912)
3716 2009-11-14  Jan Djärv  <jan.h.d@swipnet.se>
3718         * configure.in: --enable-autodepend is new.  Check for GNU Make
3719         and that gcc supports -MMD -MF.  Define AUTO_DEPEND if we can use
3720         gcc and GNU make to generate dependencies.
3722 2009-10-27  Glenn Morris  <rgm@gnu.org>
3724         * make-dist: Make links to doc/lispintro/*.pdf.
3726 2009-10-23  Jim Meyering  <meyering@redhat.com>
3728         * configure.in: Invoke $CPP with -P when creating Makefile and
3729         src/Makefile.  Without this, gcc 4.4.2 converts each
3730         backslash-newline pair in the input to a bare newline, yielding
3731         invalid Makefiles.
3733         * configure: Regenerate.
3735 2009-10-19  Dan Nicolaescu  <dann@ics.uci.edu>
3737         * configure.in (vax-dec-vms): Remove, not supported anymore.
3739 2009-10-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
3741         * configure.in (NS_HAVE_NSINTEGER): Back out previous change.
3742         (*-apple-darwin*): Add x86_64 architecture.
3744 2009-10-14  Dan Nicolaescu  <dann@ics.uci.edu>
3746         * config.guess, config.sub: Updated from master source.
3748 2009-10-11  Adrian Robert  <Adrian.B.Robert@gmail.com>
3750         * configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
3752 2009-10-07  Edward Trumbo  <etrumbo@comcast.net>  (tiny change)
3754         * Makefile.in (INFO_FILES): Add EDE and EIEIO.
3756 2009-09-29  Glenn Morris  <rgm@gnu.org>
3758         * make-dist (check): Update for two new levels of subdirectory in lisp/.
3760 2009-09-17  Dan Nicolaescu  <dann@ics.uci.edu>
3762         * config.guess, config.sub: Updated from master source.
3764         * configure.in (OTHER_FILES): Define using autoconf not cpp.
3766 2009-09-14  Dan Nicolaescu  <dann@ics.uci.edu>
3768         * .dir-locals.el (change-log-mode): Restore bug-reference-mode.
3770 2009-09-13  Chong Yidong  <cyd@stupidchicken.com>
3772         * INSTALL: Update URL for GNU FreeFont.
3774 2009-09-09  Glenn Morris  <rgm@gnu.org>
3776         * Makefile.in (install-arch-indep): Don't recursively change perms of
3777         site-lisp and infodir.  There may be non-Emacs files in here, and the
3778         files supplied by Emacs are all handled explicitly already.  (Bug#3800)
3779         (mkdir): Set umask to world-readable before creating directories.
3780         mkinstalldirs already checks if dirs exist, don't duplicate this test.
3782 2009-08-29  Glenn Morris  <rgm@gnu.org>
3784         * Makefile.in (info-real): Don't ignore errors from doc Makefiles.
3785         (info): Don't give an error in the absence of makeinfo - let the doc
3786         Makefiles do that, if the info files need rebuilding.  (Bug#3982)
3788 2009-08-23  Ken Raeburn  <raeburn@raeburn.org>
3790         * Makefile.in (install-arch-indep): If the versioned DOC-####
3791         generated during loadup+dump isn't found, install the plain DOC
3792         file that always gets generated, in case CANNOT_DUMP is set.
3794         * configure.in: Warn if package version specified here doesn't
3795         match the version in version.el.
3796         * configure: Regenerate.
3798 2009-08-22  Michael Albinus  <michael.albinus@gmx.de>
3800         * configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
3802         * configure: Regenerate.
3804 2009-08-19  Glenn Morris  <rgm@gnu.org>
3806         * INSTALL: Remove reference to cvtmail.
3808 2009-08-15  CHENG Gao  <chenggao@gmail.com>
3810         * Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
3812 2009-08-02  Kevin Ryde  <user42@zip.com.au>
3814         * INSTALL: Fix free fonts URL.
3816 2009-07-22  Glenn Morris  <rgm@gnu.org>
3818         * configure.in (AC_PREREQ): Require autoconf 2.62.
3820 2009-07-04  Andreas Schwab  <schwab@linux-m68k.org>
3822         * configure.in (--enable-checking, --enable-profiling):
3823         Use AS_HELP_STRING.
3825 2009-07-03  Dan Nicolaescu  <dann@ics.uci.edu>
3827         * configure.in (--enable-profiling): New option.
3828         (mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
3830 2009-06-27  Glenn Morris  <rgm@gnu.org>
3832         * configure.in: Restore netbsd on mips, mipsel, mipseb.
3834 2009-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
3836         * configure.in (--enable-checking): New option.
3838 2009-06-24  Glenn Morris  <rgm@gnu.org>
3840         * make-dist: Warn if subdir does not exist in source.
3841         (nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
3842         (nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
3843         No longer make links.
3845 2009-06-24  Yavor Doganov  <yavor@gnu.org>
3847         * make-dist (tempdir): Don't create directories preferences.gorm
3848         and preferences.nib, they are no longer required.
3850 2009-06-21  Chong Yidong  <cyd@stupidchicken.com>
3852         * Branch for 23.1.
3854 2009-06-12  Chong Yidong  <cyd@stupidchicken.com>
3856         * configure.in: Delete mac-fix-env target, which has been
3857         removed (Bug#3531).
3859 2009-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3861         * configure.in: Don't define CANNOT_DUMP for GNUstep any more.
3863 2009-05-05  Per Starbäck  <per@starback.se>  (tiny change)
3865         * BUGS: Use new binding of view-emacs-problems.
3867 2009-05-04  Simon Leinen  <simon.leinen@switch.ch>  (tiny change)
3869         * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
3870         for Solaris compatibility.
3872 2009-04-25  Chong Yidong  <cyd@stupidchicken.com>
3874         * configure: Regenerate.
3876         * configure.in: Disable use of FreeType without libXft.
3878 2009-04-19  Jan Djärv  <jan.h.d@swipnet.se>
3880         * configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
3881         Check if it is declared in gtk.h.
3883 2009-04-12  Andreas Schwab  <schwab@linux-m68k.org>
3885         * Makefile.in (install-arch-indep): Remove .gitignore files.
3887 2009-04-03  Kenichi Handa  <handa@m17n.org>
3889         * INSTALL: Make the section "Complex Text Layout support
3890         libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
3892 2009-03-06  Dan Nicolaescu  <dann@ics.uci.edu>
3894         * configure.in (rs6000-ibm-aix6*): Fix typo.
3896 2009-03-04  Glenn Morris  <rgm@gnu.org>
3898         * Makefile.in (INFO_FILES): Add auth.
3900 2009-03-03  Glenn Morris  <rgm@gnu.org>
3902         * info/dir: Add Auth-source.
3904 2009-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3906         * Makefile.in (src): Fix last change so the first `cd' doesn't affect
3907         the second.
3909 2009-02-28  Eli Zaretskii  <eliz@gnu.org>
3911         * config.bat: Copy .dbxinit to _dbxinit.
3913         * make-dist (Making links to `info'): Remove .gitignore.
3915 2009-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3917         * Makefile.in (lib-src, lisp): Use simpler rule.
3918         (src): Be more specific to avoid recompiling all the .elc files just
3919         because the bootstrap-emacs is missing.
3921 2009-02-26  Chong Yidong  <cyd@stupidchicken.com>
3923         * configure.in: Require librsvg >= 2.11.
3925 2009-02-23  Adrian Robert  <Adrian.B.Robert@gmail.com>
3927         * configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
3928         (HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
3930 2009-02-04  Adrian Robert  <Adrian.B.Robert@gmail.com>
3932         * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
3934 2009-02-03  Glenn Morris  <rgm@gnu.org>
3936         * make-dist: Add some missing files, remove some that are no longer
3937         present.
3939 2009-02-02  Glenn Morris  <rgm@gnu.org>
3941         * make-dist: Add some missing nextstep/ files.
3943 2009-01-22  Yavor Doganov  <yavor@gnu.org>  (tiny change)
3945         * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also.  (Bug#616)
3947 2009-01-22  Dan Nicolaescu  <dann@ics.uci.edu>
3949         * configure.in: Add support for m68k-*-netbsd.
3951 2009-01-14  Juri Linkov  <juri@jurta.org>
3953         * .dir-locals.el (change-log-mode): Remove bug-reference-mode.
3955         * .dir-locals.el (change-log-mode): Add bug-reference-url-format
3956         and bug-reference-mode.
3958 2009-01-11  Juri Linkov  <juri@jurta.org>
3960         * INSTALL.CVS: Move configuration explicitly to the first step.
3962 2009-01-09  Glenn Morris  <rgm@gnu.org>
3964         * .dir-locals.el: Don't set indent-tabs-mode.
3966 2008-12-30  Kenichi Handa  <handa@m17n.org>
3968         * configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
3969         the function OTF_get_variation_glyphs.
3971 2008-12-30  Jan Djärv  <jan.h.d@swipnet.se>
3973         * Makefile.in (install-arch-dep): Remove old directories in
3974         ns_app* before moving new directories there.
3976 2008-12-27  Dan Nicolaescu  <dann@ics.uci.edu>
3978         * .dir-locals.el: Remove non-working entry for pmail.
3979         (fill-column): Fix typo.
3980         (change-log-mode): Add fill column.
3982 2008-12-26  Eli Zaretskii  <eliz@gnu.org>
3984         * config.bat: Produce _dir-locals.el from .dir-locals.el.
3986 2008-12-23  Dan Nicolaescu  <dann@ics.uci.edu>
3988         * make-dist (tempdir): Distribute .dir-locals.el.
3990         * .dir-locals.el: New file.
3992 2008-12-19  Eli Zaretskii  <eliz@gnu.org>
3994         * config.bat (--with-system-malloc): New option; see msdos/INSTALL
3995         for rationale.
3997 2008-12-13  Glenn Morris  <rgm@gnu.org>
3999         * Makefile.in (install-arch-indep): Add new man-pages.
4000         (manext): Remove variable.
4001         (MAN_PAGES): New variable.
4002         (install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
4003         and remove.
4004         (uninstall): Remove desktop file and icons, game scores if empty.
4006 2008-12-11  Dan Nicolaescu  <dann@ics.uci.edu>
4008         * config.guess, config.sub: Updated from master source.
4010 2008-12-10  Dan Nicolaescu  <dann@ics.uci.edu>
4012         * Makefile.in (install-arch-indep): Install ebrowse.1.
4014 2008-12-09  Ali Bahrami  <ali_gnu@emvision.com>  (tiny change)
4016         * configure.in: Add Solaris on x86_64.
4018 2008-12-09  Dan Nicolaescu  <dann@ics.uci.edu>
4020         * config.guess, config.sub: Updated from master source.
4022 2008-12-08  Eli Zaretskii  <eliz@gnu.org>
4024         * info/dir: Fix last change.
4026 2008-12-07  Eli Zaretskii  <eliz@gnu.org>
4028         * info/dir: Untabify.
4030 2008-11-28  Ulrich Mueller  <ulm@gentoo.org>
4032         * configure.in: Fix last change.
4034 2008-11-28  Richard M Stallman  <rms@gnu.org>
4036         * configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
4037         New configurations.
4039 2008-11-20  Josh Elsasser  <josh@elsasser.org>  (tiny change)
4041         * configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
4042         removed while misclassified as now unsupported hp9000s300.  (Bug#1365)
4044 2008-11-15  Eli Zaretskii  <eliz@gnu.org>
4046         * Makefile.in (INFO_FILES): Remove ns-emacs.
4048         * info/dir (NS-Emacs): Remove entry.
4050 2008-11-08  Eli Zaretskii  <eliz@gnu.org>
4052         * INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
4054 2008-11-07  Glenn Morris  <rgm@gnu.org>
4056         * configure.in (HAVE_LIB64_DIR): Check for crtn.o.  (Bug#1287)
4058 2008-10-31  Eli Zaretskii  <eliz@gnu.org>
4060         * config.bat: Tell user to expect one "File not found" message
4061         while the `doc' directory is being configured.
4063 2008-10-30  Chong Yidong  <cyd@stupidchicken.com>
4065         * update-subdirs: Put obsolete directory last.
4067 2008-10-30  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>
4069         * configure.in: Check fontconfig always.
4071 2008-10-30  Dan Nicolaescu  <dann@ics.uci.edu>
4073         * configure (*-solaris2.[7-9]*): Fix typo.
4075 2008-10-24  Glenn Morris  <rgm@gnu.org>
4077         * configure.in (--without-sync-input, --with-pkg-config-prog):
4078         Help strings start with lower case.
4079         (--with-gnustep-conf): New option.
4080         (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
4082 2008-10-24  Yavor Doganov  <yavor@gnu.org>  (tiny change)
4084         * configure.in: Use `.' instead of `source' to source GNUstep.conf.
4085         Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
4086         is not found.  (Bug#1230)
4088 2008-10-23  Ali Bahrami  <ali_gnu@emvision.com>  (tiny change)
4090         * configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
4091         Use sol2-6.h for Solaris 7-9.
4093 2008-10-18  Ulrich Mueller  <ulm@gentoo.org>
4095         * configure.in: Add support for GNU/Linux on SuperH.
4097 2008-10-12  Andreas Schwab  <schwab@suse.de>
4099         * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
4101 2008-10-03  Adrian Robert  <Adrian.B.Robert@gmail.com>
4103         * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
4104         "X") to avoid confusion.
4106         * configure: Regenerate.
4108 2008-09-07  Romain Francoise  <romain@orebokech.com>
4110         * make-dist: Distribute doc/man/ChangeLog.
4112 2008-08-28  Chong Yidong  <cyd@stupidchicken.com>
4114         * configure.in: Disable XFT and Freetype when without X.
4116         * configure: Regenerate.
4118 2008-08-24  Dan Nicolaescu  <dann@ics.uci.edu>
4120         * configure.in (NS_IMPL_GNUSTEP): Increase pure size.
4122 2008-08-21  Christian Faulhammer  <opfer@gentoo.org>  (tiny change)
4124         * configure.in (GNUSTEP_SYSTEM_HEADERS): Define
4125         GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
4127         * configure: Regenerate.
4129 2008-08-20  Eli Zaretskii  <eliz@gnu.org>
4131         * configure.in: Move "#define subprocesses" before
4132         config_opsysfile is included.
4134 2008-08-19  Kenichi Handa  <handa@m17n.org>
4136         * INSTALL (Extra fonts): Mention local fonts, don't mention
4137         mule-unicode.
4139 2008-08-16  Chong Yidong  <cyd@stupidchicken.com>
4141         * make-dist: Omit info/.arch-inventory.
4143 2008-08-16  Jason Rumney  <jasonr@gnu.org>
4145         * make-dist (tempdir/nt): Link emacsclient.rc.
4147 2008-08-07  Dan Nicolaescu  <dann@ics.uci.edu>
4149         * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
4150         AC_SUBST it.
4151         (GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
4152         AC_SUBST it.
4153         (OTHER_FILES): Always define for HAVE_NS.
4154         (C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
4155         * configure: Regenerate.
4157 2008-08-07  Andreas Schwab  <schwab@suse.de>
4159         * configure.in: Correctly handle
4160         --enable-cocoa-experimental-ctrl-g=no and
4161         --enable-ns-self-contained=yes.
4163 2008-08-06  Adrian Robert  <Adrian.B.Robert@gmail.com>
4165         * configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
4166         (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep.  Don't
4167         bother undef'ing since won't have desired effect.
4169 2008-08-06  Andreas Schwab  <schwab@suse.de>
4171         * configure.in: Fix quoting.
4173 2008-08-06  Chong Yidong  <cyd@stupidchicken.com>
4175         * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
4177 2008-08-05  Ulrich Mueller  <ulm@gentoo.org>
4179         * configure.in: Add checks for krb5_error.text and
4180         krb5_error.e_text struct members.
4182 2008-08-04  Chong Yidong  <cyd@stupidchicken.com>
4184         * configure.in: Test for existence of NSInteger.
4185         Suggested by Yavor Doganov.
4187 2008-08-02  Romain Francoise  <romain@orebokech.com>
4189         * Makefile.in (INFO_FILES): Add mairix-el.
4191 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
4193         * make-dist:
4194         * README: Remove VMS support.
4195         * vms: Remove directory.
4197 2008-07-31  Dan Nicolaescu  <dann@ics.uci.edu>
4199         * configure.in (MULTI_KBOARD): Remove.
4201 2008-07-30  Dan Nicolaescu  <dann@ics.uci.edu>
4203         * configure.in (DO_BLOCK_INPUT): Remove, unused.
4205 2008-07-29  Chong Yidong  <cyd@stupidchicken.com>
4207         * info/dir (File): Add mairix-el.
4209 2008-07-27  Dan Nicolaescu  <dann@ics.uci.edu>
4211         Remove support for Mac Carbon.
4212         * mac: Remove directory.
4213         * make-dist:
4214         * configure.in:
4215         * README:
4216         * Makefile.in:
4217         * INSTALL: Remove code for Carbon.
4218         * configure: Regenerate.
4220 2008-07-26  Adrian Robert  <Adrian.B.Robert@gmail.com>
4222         * Makefile.in (install-arch-dep): Fix typo in NS installation commands.
4224 2008-07-25  Chong Yidong  <cyd@stupidchicken.com>
4226         * configure.in: Check for getrlimit.
4228         * configure: Regenerate.
4230 2008-07-23  Dan Nicolaescu  <dann@ics.uci.edu>
4232         * configure.in (LD_SWITCH_SITE): Remove, set the values directly
4233         in src/Makefile.in.
4234         (static): Remove, autoconf would always comment it out anyway.
4235         (subprocesses): Define unconditionally.
4237 2008-07-19  Yavor Doganov  <yavor@gnu.org>  (tiny change)
4239         * configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
4240         compilation under GNUstep.
4242 2008-07-18  Kenichi Handa  <handa@m17n.org>
4244         * INSTALL (Complex Text Layout support libraries): Delete the
4245         paragraph about --enable-font-backend.
4247 2008-07-17  Adrian Robert  <Adrian.B.Robert@gmail.com>
4249         * configure.in: Print out some info to user for NeXTstep builds.
4250         (ns-app): Remove enable option.
4251         (ns-self-contained): Add enable option.
4252         (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
4253         GNUstep, use to set install prefixes, and substitute in Makefiles.
4254         * configure: Regenerate.
4255         * Makefile.in (install-arch-dep): Perform post-install cleanup inside
4256         NS app bundle.
4258 2008-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4260         * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
4262 2008-07-16  Adrian Robert  <Adrian.B.Robert@gmail.com>
4264         * configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
4265         NS_IMPL_COCOA.
4267 2008-07-16  Glenn Morris  <rgm@gnu.org>
4269         * configure.in (with_kerberos, with_kerberos5, with_hesiod):
4270         Fix tests for OPTION_DEFAULT_OFF (variables never unset).
4271         (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
4272         never unset.
4274         * make-dist: Add nextstep/ directories.
4275         (src, lib-src): Add .m files.
4277 2008-07-16  Dan Nicolaescu  <dann@ics.uci.edu>
4279         * configure.in (freebsd, kfreebsd): Undo part of previous change.
4280         (USER_FULL_NAME): Remove, not used anymore.
4281         * configure: Regenerate.
4283 2008-07-15  Adrian Robert  <Adrian.B.Robert@gmail.com>
4285         Changes and additions for NeXTstep windowing system (Cocoa and
4286         GNUstep) support.
4288         * configure.in: Add support for NS window system: --with-ns (default
4289         off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
4290         sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
4291         disable font backend if window system is "none", not if !HAVE_X11.
4292         * Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
4293         (install-arch-dep): Add commands to assemble NS .app package.
4295 2008-07-10  Dan Nicolaescu  <dann@ics.uci.edu>
4297         * configure.in: Use macppc for Darwin.  Remove references to
4298         desupported systems.
4299         * configure: Regenerate.
4301 2008-07-05  Glenn Morris  <rgm@gnu.org>
4303         * make-dist (EMACS): Doc fix.
4304         (lisp): There are no *.dat or image files here any more.
4305         (src): There are no *.s files here any more.
4306         (etc/images, etc/images/*): Link to most regular files.
4308 2008-07-04  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
4310         * configure.in: Remove reference to deleted $USE_FONT_BACKEND.
4312 2008-07-01  Glenn Morris  <rgm@gnu.org>
4314         * configure.in (cpp_undefs): Rename from `undefs', update uses.
4315         Use $srcdir rather than $top_srcdir.  Set before calling AC_OUTPUT,
4316         and explicitly export there.  (Bug#507.)
4318 2008-06-26  Dan Nicolaescu  <dann@ics.uci.edu>
4320         * configure.in:
4321         * configure: Remove references to obsolete systems.
4323 2008-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4325         * Makefile.in (Makefile): Use it for its timestamp value as well, and
4326         make it depend on all other */.in files.
4327         (src/Makefile, src/config.stamp, lib-src/Makefile)
4328         (doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
4329         (doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
4330         (leim/Makefile, lisp/Makefile): Remove those overlapping targets.
4331         (leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
4333         * configure.in: Don't create src/config.stamp any more.
4335 2008-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
4337         * Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
4339 2008-06-22  Glenn Morris  <rgm@gnu.org>
4341         * Makefile.in (top_bootclean): Remove obsolete references to lock/.
4343 2008-06-21  Romain Francoise  <romain@orebokech.com>
4345         * Makefile.in (INFO_FILES): Add sasl.
4347 2008-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4349         * Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
4350         (bootstrap-build): Remove.
4351         (top_bootclean): New var.
4352         (top_distclean, bootstrap-clean): Use it.
4353         (bootstrap): Don't recheck config.  Make normally.
4355 2008-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4357         * Makefile.in (SUBDIR): Include `lisp'.
4358         (lisp): Depend on `src'.
4359         (top_distclean): Don't remove config.status.
4360         (bootstrap-clean): New target.
4361         (maintainer-clean): Use it.
4362         (bootstrap): Use bootstrap-clean.  Re-run config.status.
4363         (src/bootstrap-emacs${EXEEXT}): New target.
4364         (bootstrap-build): Use it.  Don't use bootstrap-prepare because
4365         src/Makefile now takes care of it.
4366         (bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
4368 2008-06-15  Glenn Morris  <rgm@gnu.org>
4370         * info/dir: Add sasl.
4372 2008-06-09  Alan Mackenzie  <acm@muc.de>
4374         * INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
4376 2008-06-08  Eric S. Raymond  <esr@snark.thyrsus.com>
4378         * INSTALL.CVS: Indicate when "cvs update -d" may be needed.
4380 2008-06-07  Glenn Morris  <rgm@gnu.org>
4382         * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
4383         serve no purpose.
4385 2008-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
4387         * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
4388         * configure: Regenerate.
4390 2008-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4392         * update-subdirs: Don't touch subdirs.el if it is unchanged.
4394 2008-05-14  Kenichi Handa  <handa@m17n.org>
4396         * configure: Regenerate.
4398         * configure.in: Don't handle --disable-font-backend.  Don't print
4399         a message about a font backend.
4401 2008-05-09  Glenn Morris  <rgm@gnu.org>
4403         * configure.in: Make absence of makeinfo a fatal error only if the info
4404         files don't exist.
4405         * Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
4407 2008-05-07  Eli Zaretskii  <eliz@gnu.org>
4409         * config.bat: Fix last change: don't use < and > in "rem" lines,
4410         they are interpreted as redirection by DOS shells.
4412 2008-05-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4414         * configure.in: Check availability of AvailabilityMacros.h
4415         if HAVE_CARBON.
4417         * configure: Regenerate.
4419 2008-05-03  Glenn Morris  <rgm@gnu.org>
4421         * configure.in (x_libraries): Remove standard 64-bit directories -
4422         experimental workaround for minor autoconf bug.
4424         * configure.in (--without-makeinfo): New option.  If set,
4425         absence of suitable makeinfo is not a fatal error.
4426         * Makefile.in (MAKEINFO): New, set by configure.
4427         (install-arch-indep): Without makeinfo, ignore any missing manuals.
4428         (info-real): New target.
4429         (info): Without makeinfo, do nothing, else call `info-real'.
4431 2008-04-23  Dan Nicolaescu  <dann@ics.uci.edu>
4433         * configure.in: Remove hpux10.20 from the desupported list.
4435 2008-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4437         * configure.in: Define USE_LUCID/USE_MOTIF in config.h.
4439 2008-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4441         * configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
4442         rather than change CPPFLAGS.
4443         (HAVE_GTK): Rename to USE_GTK.
4445 2008-04-16  Yavor Doganov  <yavor@gnu.org>  (tiny change)
4447         * configure.in: Replace the obsolete macros AC_AIX and
4448         AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
4450 2008-04-05  Andreas Schwab  <schwab@suse.de>
4452         * configure.in: No longer create admin/unidata/Makefile.
4454 2008-03-28  Andreas Schwab  <schwab@suse.de>
4456         * Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
4457         (lisp/Makefile): New rule.
4459 2008-03-13  Glenn Morris  <rgm@gnu.org>
4461         * configure.in (AC_INIT): Fix version number.
4462         (sync-input): Reword the option, since it's on by default.
4464 2008-03-11  Jan Djärv  <jan.h.d@swipnet.se>
4466         * configure.in: Add --enable-sync-input, default yes.
4468 2008-03-11  Glenn Morris  <rgm@gnu.org>
4470         * Makefile.in (install-etc, mkdir): Handle directory
4471         etc/images/icons/hicolor/*/mimetypes/.
4473         * make-dist: Handle icons/hicolor/scalable directory.
4475 2008-03-05  Glenn Morris  <rgm@gnu.org>
4477         * configure.in: Enable font-backend by default.
4478         (USE_FONT_BACKEND): Set to "no" in absence of X.
4479         (PKG_CONFIG): Don't set multiple times, once is enough.
4480         (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
4482 2008-03-03  Glenn Morris  <rgm@gnu.org>
4484         * Makefile.in (iconsrcdir): New variable.
4485         (install-etc, mkdir): Use $iconsrcdir.  Handle the `scalable' icon
4486         directory.
4488 2008-02-29  Glenn Morris  <rgm@gnu.org>
4490         * test/: New directory.
4492 2008-02-27  Jan Djärv  <jan.h.d@swipnet.se>
4494         * configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
4496 2008-02-25  Dan Nicolaescu  <dann@ics.uci.edu>
4498         * configure.in: Print an error for systems that we think are obsolete
4499         and are proposed to be removed.  Remove some more unused systems.
4500         Add support for powerpc-ibm-aix6*.
4502 2008-02-24  Dan Nicolaescu  <dann@ics.uci.edu>
4504         * configure.in: Remove references to obsolete variables and systems.
4506 2008-02-21  Glenn Morris  <rgm@gnu.org>
4508         * Makefile.in (set_installuser): New.
4509         (install-arch-indep): Use set_installuser to avoid duplicate code.
4511         * README.unicode: Split into admin/notes/unicode,font-backend and
4512         remove.
4514 2008-02-10  Matthew Luckie  <mjl@luckie.org.nz>  (tiny change)
4516         * configure.in (arm*-*-freebsd*): Add.
4518 2008-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
4520         * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
4521         dealing with obsolete variables.
4523 2008-02-08  Glenn Morris  <rgm@gnu.org>
4525         * Makefile.in (check-info-dir): New target.
4527 2008-02-08  Michael Olson  <mwolson@gnu.org>
4529         * Makefile.in (INFO_FILES): Add epa.
4531         * info/dir: Add EasyPG Assistant manual to the "Emacs misc
4532         features" section.
4534 2008-02-06  Glenn Morris  <rgm@gnu.org>
4536         * configure.in (--with-gcc): Give an error saying this option has
4537         been removed.
4538         (--with-gtk): Remove this option.
4540 2008-02-06  Tom Tromey  <tromey@redhat.com>
4542         * configure.in (--with-gcc): Remove.
4543         * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
4545 2008-02-05  Ulrich Mueller  <ulm@gentoo.org>
4547         * INSTALL: Recommend giflib, not libungif.
4549 2008-02-05  Tom Tromey  <tromey@redhat.com>
4551         * configure.in (--with-dbus): Default to enabled.
4553 2008-02-05  Kenichi Handa  <handa@ni.aist.go.jp>
4555         * INSTALL (Complex Text Layout support libraries): New section.
4557 2008-02-04  Dan Nicolaescu  <dann@ics.uci.edu>
4559         * make-dist: Remove references to files in mac/ that have been
4560         deleted.
4562 2008-02-02  Thien-Thi Nguyen  <ttn@gnuvola.org>
4564         * configure.in: For libotf and m17n-flt checks, set shell vars
4565         HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
4566         pkg_check_m17n_flt, respectively, for the sake of the summary output.
4567         Reported by Ulrich Mueller.
4569 2008-02-02  Eli Zaretskii  <eliz@gnu.org>
4571         * configure.in: If admin/unidata/UnicodeData.txt is present, copy
4572         admin/unidata/Makefile.in to Makefile.
4574 2008-02-02  Glenn Morris  <rgm@gnu.org>
4576         * configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
4577         (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
4578         (HAVE_XFT): Add "Does Emacs use..." messages at end.
4580 2008-02-01  Miles Bader  <miles@gnu.org>
4582         * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
4583         [libotf], and [m17n-flt] options.
4585 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
4587         * configure.in: Add EMACS_ARG_N([libotf]...), and
4588         EMACS_ARG_N([m17n-flt].  Set back OLD_CPPFLAGS to CPPFLAGS (not
4589         CFLAGS) in XFT checking part.  Don't alter C_SWITCH_X_SITE,
4590         CFLAGS, and LIBS in checking of m17n-flt.
4592 2008-02-01  Kenichi Handa  <handa@ni.aist.go.jp>
4594         * configure.in: Check the availability of m17n-flt library.
4596 2008-02-01  Kenichi Handa  <handa@m17n.org>
4598         * configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
4599         not available.
4601 2008-02-01  Kenichi Handa  <handa@m17n.org>
4603         * configure.in: New args --enable-font-backend, --with-xft,
4604         --with-freetyp.  New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
4605         HAVE_FREETYPE, HAVE_LIBOTF.  New AC_SUBSTs XFT_LIBS,
4606         FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
4607         FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
4609 2008-02-01  Kenichi Handa  <handa@m17n.org>
4611         * make-dist: Include etc/charsets in tarball.
4613 2008-02-01  Kenichi Handa  <handa@m17n.org>
4615         * configure.in: While running cpp on junk.c, include
4616         -DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
4617         exists.
4619 2008-01-29  Dan Nicolaescu  <dann@ics.uci.edu>
4621         * configure.in (xtensa): Match more configurations.
4623 2008-01-27  Dan Nicolaescu  <dann@ics.uci.edu>
4625         * configure.in: Update comment.
4627 2008-01-26  Glenn Morris  <rgm@gnu.org>
4629         * configure.in (--without-gcc): By default, neither off nor on.
4630         (--with-carbon): Tone down rhetoric in help text.
4632 2008-01-25  Glenn Morris  <rgm@gnu.org>
4634         * configure.in: Correct usage of OPTION_DEFAULT_ON,
4635         OPTION_DEFAULT_OFF so that the defaults are as they used to be.
4636         Default `Carbon' to off (it's unsupported).
4638 2008-01-24  Glenn Morris  <rgm@gnu.org>
4640         * configure.in: Standardize dbus-related messages.
4642 2008-01-23  Michael Olson  <mwolson@gnu.org>
4644         * configure.in (pkg-config-prog): Remove initial whitespace.
4646 2008-01-23  Tom Tromey  <tromey@redhat.com>
4648         * configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
4649         (EMACS_ARG_Y, EMACS_ARG_N): Remove.
4650         Update all users.
4652 2008-01-21  Dan Nicolaescu  <dann@ics.uci.edu>
4654         * config.guess, config.sub: Updated from master source.
4656 2008-01-17  Andreas Schwab  <schwab@suse.de>
4658         * configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
4660 2008-01-17  Glenn Morris  <rgm@gnu.org>
4662         * configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
4664 2008-01-16  Dan Nicolaescu  <dann@ics.uci.edu>
4666         * configure.in: Remove more references to unsupported systems.
4668 2008-01-16  Sven Joachim  <svenjoac@gmx.de>
4670         * make-dist: Add --lzma.
4672 2008-01-16  Glenn Morris  <rgm@gnu.org>
4674         * Makefile.in (maybe_bootstrap): Remove texinfo message, since
4675         configure checks for this.
4677 2008-01-13  Dan Nicolaescu  <dann@ics.uci.edu>
4679         * configure.in: Remove more references to unsupported systems.
4681 2008-01-06  Romain Francoise  <romain@orebokech.com>
4683         * configure.in: Delete extra semicolons.
4685 2008-01-06  Dan Nicolaescu  <dann@ics.uci.edu>
4687         * configure.in: Remove references to unsupported systems.
4689 2008-01-05  Romain Francoise  <romain@orebokech.com>
4691         * make-dist: Add --bzip2.  Update copyright.
4693 2008-01-05  Dan Nicolaescu  <dann@ics.uci.edu>
4695         * configure.in: Remove support for Masscomp.
4697 2008-01-05  Glenn Morris  <rgm@gnu.org>
4699         * Makefile.in (desktopdir, icondir): New variables.
4700         (install-arch-indep): Also depend on `install-etc'.
4701         (install-etc): New target.
4702         (mkdir): Also create the `applications' and `icons' directories.
4704 2008-01-04  Glenn Morris  <rgm@gnu.org>
4706         * make-dist: Update for new etc/images/icons/hicolor directory.
4708 2007-12-09  Andreas Schwab  <schwab@suse.de>
4710         * configure.in: D-Bus is not enabled by default.
4712 2007-12-06  Jan Djärv  <jan.h.d@swipnet.se>
4714         * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
4715         change.
4717 2007-12-04  Jan Djärv  <jan.h.d@swipnet.se>
4719         * configure.in: Give package name and version to AC_INIT.
4721 2007-12-03  Magnus Henoch  <mange@freemail.hu>
4723         * configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
4725 2007-12-03  Michael Albinus  <michael.albinus@gmx.de>
4727         * configure.in: No need for DBUS_INFO anymore.
4729         * Makefile.in (INFO_FILES): Use dbus unconditionally.
4731 2007-12-02  Michael Albinus  <michael.albinus@gmx.de>
4733         * configure.in: Add D-Bus checks.  D-Bus is disabled by default.
4735         * Makefile.in (INFO_FILES): Add dbus.
4737 2007-12-02  Romain Francoise  <romain@orebokech.com>
4739         * make-dist: Fix last change.
4741 2007-11-28  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
4743         * configure.in: Add support for gnu-kfreebsd.
4745 2007-11-28  Glenn Morris  <rgm@gnu.org>
4747         * make-dist: Add etc/nxml.
4749 2007-11-24  Romain Francoise  <romain@orebokech.com>
4751         * Makefile.in (INFO_FILES): Add nxml-mode.
4753 2007-11-23  Romain Francoise  <romain@orebokech.com>
4755         * make-dist: Include nXML.  Don't try to copy FTP, it was removed on
4756         2007/10/17.  Don't special-case alloca.c which is no longer in CVS.
4758 2007-11-20  Andreas Schwab  <schwab@suse.de>
4760         * configure.in: Always include <resolv.h> when checking for res_init.
4762 2007-11-17  Andreas Schwab  <schwab@suse.de>
4764         * update-subdirs: Atomically update subdirs.el.
4766 2007-11-17  Glenn Morris  <rgm@gnu.org>
4768         * Makefile.in (check-declare): New target.
4770 2007-11-07  Glenn Morris  <rgm@gnu.org>
4772         * configure.in: Deprecate Mac Carbon port.
4774 2007-11-01  Jan Djärv  <jan.h.d@swipnet.se>
4776         * configure.in: Remove HAVE_X11R5 check.
4778 2007-10-31  Glenn Morris  <rgm@gnu.org>
4780         * Makefile.in (install-arch-indep): Fallback to $USER and `id -un'
4781         when changing ownership of installed files.
4783 2007-10-30  Glenn Morris  <rgm@gnu.org>
4785         * make-dist: Add new directory etc/gnus.
4787 2007-10-30  Michael Olson  <mwolson@gnu.org>
4789         * Makefile.in (INFO_FILES): Alphabetize.  Add remember.
4791 2007-10-29  Glenn Morris  <rgm@gnu.org>
4793         * make-dist: Add new directories etc/images/smilies/grayscale,medium.
4795 2007-10-23  Glenn Morris  <rgm@gnu.org>
4797         * MAINTAINERS: Move to admin/.
4799 2007-10-17  Chong Yidong  <cyd@stupidchicken.com>
4801         * configure.in (HAVE_RES_INIT): Define if res_init() exists.
4802         (HAVE_LIBRESOLV): Also define if we are using res_init().
4804 2007-10-17  Glenn Morris  <rgm@gnu.org>
4806         * FTP: Remove file, since it's just a duplicate of one in etc/.
4808 2007-10-05  Eli Zaretskii  <eliz@gnu.org>
4810         * config.bat: Fix configuring `doc' due to changes in the
4811         directory structure.
4813 2007-09-16  Peter O'Gorman  <bug-gnu-emacs@mlists.thewrittenword.com>  (tiny change)
4815         * configure.in: Don't use -lpthread on HP-UX.
4817 2007-09-16  Glenn Morris  <rgm@gnu.org>
4819         * make-dist: File gfdl.1 has been removed.
4821 2007-09-15  Glenn Morris  <rgm@gnu.org>
4823         * configure.in: Fix makeinfo version regexp.
4825 2007-09-12  Glenn Morris  <rgm@gnu.org>
4827         * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
4828         implementation of alloca is not found.
4830         * Makefile.in (SOURCES, unlock, relock): Delete.
4831         (install-arch-indep): Do not exclude the etc/ Makefiles.
4833 2007-09-09  Juri Linkov  <juri@jurta.org>
4835         * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc).
4837         * README: Add doc/ to documentation directories.
4839 2007-09-08  Michael Olson  <mwolson@gnu.org>
4841         * MAINTAINERS: Add myself for ERC and tq.el.
4842         Update for new doc/ directory layout.
4844 2007-09-06  Romain Francoise  <romain@orebokech.com>
4846         * make-dist: Update for new doc/ directory layout.
4848 2007-09-06  Glenn Morris  <rgm@gnu.org>
4850         * Makefile.in (mansrcdir): New variable.
4851         (SUBDIR_MAKEFILES): Update for new doc/ directory layout.
4852         (man/Makefile, lispref/Makefile, lispintro/Makefile): Rename and
4853         update these targets for new doc/ directory layout.
4854         (doc/misc/Makefile): New target.
4855         (install-arch-indep): Use mansrcdir for new location of manpages.
4856         (mostlyclean, clean, distclean, maintainer-clean, unlock)
4857         (relock, info, dvi): Update targets for new doc/ directory layout.
4859         * configure.in (AC_OUTPUT): Update names of generated Makefiles
4860         for new doc/ directory layout.
4862 2007-09-02  Andreas Schwab  <schwab@suse.de>
4864         * configure.in: Use AS_HELP_STRING throughout.
4865         * configure: Regenerate.
4867 2007-09-02  Jan Djärv  <jan.h.d@swipnet.se>
4869         * configure.in: Require Gtk/Glib 2.6.
4871 2007-09-02  Thien-Thi Nguyen  <ttn@gnuvola.org>
4873         * configure.in (EMACS_ARG_Y, EMACS_ARG_N): New AC_DEFUNs.
4874         Use them throughout in place of AC_ARG_WITH calls.
4875         * configure: Regenerate.
4877 2007-09-01  Andreas Schwab  <schwab@suse.de>
4879         * configure.in: Put quotes around nested macro calls.
4881 2007-08-31  Ulrich Mueller  <ulm@gentoo.org>  (tiny change)
4883         * configure.in: Fix typo.
4884         * configure: Regenerate.
4886 2007-08-30  Glenn Morris  <rgm@gnu.org>
4888         * configure.in (AH_BOTTOM): Copy some manual changes made to
4889         src/config.in here so they are not lost when it regenerates.
4891         * README.multi-tty: Move to admin/notes/multi-tty, with some edits.
4893 2007-08-29  Károly Lőrentey  <karoly@lorentey.hu>
4895         * README.multi-tty: New file.
4897 2007-08-29  Glenn Morris  <rgm@gnu.org>
4899         * README: Increase version to 23.0.50.
4901 2007-08-29  Jan Djärv  <jan.h.d@swipnet.se>
4903         * configure.in: New option: --without-xaw3d.
4905 2007-08-24  Glenn Morris  <rgm@gnu.org>
4907         * configure.in: Check for a suitably recent makeinfo.
4909 2007-08-23  Johannes Weiner  <hannes@saeurebad.de>  (tiny change)
4911         * configure.in (Check for required libraries): Typo.
4913 2007-08-23  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4915         * configure.in: Check librsvg2 also for Mac Carbon.
4917 2007-08-22  Romain Francoise  <romain@orebokech.com>
4919         * make-dist: Follow reorganization of files in etc/.
4921 2007-08-22  Paul Pogonyshev  <pogonyshev@gmx.net>
4923         * configure.in: Add support for SVG images through librsvg2.
4925 2007-07-28  Eli Zaretskii  <eliz@gnu.org>
4927         * Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
4928         to avoid an error message if there is no DOC there.
4930 2007-07-25  Glenn Morris  <rgm@gnu.org>
4932         * Relicense all FSF files to GPLv3 or later.
4934         * COPYING, info/COPYING: Switch to GPLv3.
4936 2007-06-20  Jan Djärv  <jan.h.d@swipnet.se>
4938         * configure.in: Complain if X seems to be installed but no
4939         development files were found.
4941 2007-06-20  Glenn Morris  <rgm@gnu.org>
4943         * configure.in: Prefer libgif over libungif.
4945 2007-06-14  Jan Djärv  <jan.h.d@swipnet.se>
4947         * configure.in: Check for all image libraries before exiting.
4949 2007-06-13  Jan Djärv  <jan.h.d@swipnet.se>
4951         * configure.in: Exit with error if image libraries aren't found.
4953 2007-06-13  Chong Yidong  <cyd@stupidchicken.com>
4955         * configure.in: Merge xaw3d and libXaw checks.  Check xaw3d even
4956         when compiling without scrollbars.
4958 2007-06-12  Glenn Morris  <rgm@gnu.org>
4960         * configure.in (HAVE_GIF): If -lungif fails, try -lgif.
4962 2007-06-11  Jan Djärv  <jan.h.d@swipnet.se>
4964         * configure.in: Change wording about yes/gtk and lucid/athena
4965         being synonyms.
4967 2007-06-08  Glenn Morris  <rgm@gnu.org>
4969         * configure.in: Make gtk the default toolkit.
4971 2007-06-07  Glenn Morris  <rgm@gnu.org>
4973         * configure.in (NON_GNU_CPP): On Solaris, set using a proper check
4974         for a Sun C compiler.
4976         * Makefile.in (install-arch-indep): Install only the DOC- file
4977         specific to the build, if possible, rather than DOC-*.
4979 2007-06-02  Chong Yidong  <cyd@stupidchicken.com>
4981         * Version 22.1 released.
4983 2007-05-25  Chong Yidong  <cyd@stupidchicken.com>
4985         * mkinstalldirs: Sync to version in automake CVS.
4987 2007-05-22  Andreas Schwab  <schwab@suse.de>
4989         * configure.in: Prefer build_alias over host when host_alias is not set.
4990         * configure: Regenerate.
4992 2007-05-20  Andreas Schwab  <schwab@suse.de>
4994         * configure.in: Remove empty AC_SUBST.
4995         * configure: Regenerate.
4997 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
4999         * configure.in: Use HAVE_GPM instead of HAVE_GPM_H and implement
5000         it like others.
5001         * configure: Regenerate.
5003 2007-05-20  Nick Roberts  <nickrob@snap.net.nz>
5005         * configure.in (AC_CHECK_HEADERS): Add gpm.h.
5006         (AC_CHECK_LIB): Add -lgpm.
5007         * configure: Regenerate.
5009 2007-05-03  Glenn Morris  <rgm@gnu.org>
5011         * configure: Tweak message about the absence of shell functions.
5013 2007-04-27  Andreas Schwab  <schwab@suse.de>
5015         * Makefile.in (config.status): Depend on ${srcdir}/lisp/version.el.
5017 2007-04-26  Glenn Morris  <rgm@gnu.org>
5019         * README: Increase version to 22.1.50.
5021 2007-04-24  Juanma Barranquero  <lekktu@gmail.com>
5023         * INSTALL (DETAILED BUILDING AND INSTALLATION): Fix typo.
5025 2007-04-19  Glenn Morris  <rgm@gnu.org>
5027         * configure.in: Signal error if Xaw libs are missing in a Lucid build.
5029 2007-04-18  Glenn Morris  <rgm@gnu.org>
5031         * INSTALL: Mention CPP.
5033 2007-04-15  Glenn Morris  <rgm@gnu.org>
5035         * FTP: Replace with a pointer to the web version.
5037 2007-04-13  Glenn Morris  <rgm@gnu.org>
5039         * INSTALL: In lib-src, timer, wakeup, yow are removed.
5041 2007-04-04  Glenn Morris  <rgm@gnu.org>
5043         * configure.in (NON_GNU_CPP): Use associated preprocessor when
5044         compiling with Sun Studio on Solaris.
5046 2007-03-23  Glenn Morris  <rgm@gnu.org>
5048         * configure.in: Restore support for hp800 (removed 2007-01-27)
5049         following clarification of legal status.
5051 2007-03-22  Joe Buehler  <jbuehler@spirentcom.com>  (tiny change)
5053         * configure.in: Add support for AIX4.3 on IBM RS6000.
5055         * configure: Regenerate.
5057 2007-03-20  Richard Stallman  <rms@gnu.org>
5059         * configure.in: Fix previous change.
5061 2007-03-19  Deanna Phillips  <deanna@sixbit.org>  (tiny change)
5063         * configure.in (arm-*-openbsd*, hppa-*-openbsd*)
5064         (m88k-*-openbsd*, mips64-*-openbsd*, sh-*-openbsd*): Added.
5065         (ns32k-*-openbsd*, ns32k-*-openbsd*): Deleted.
5067 2007-03-19  Chong Yidong  <cyd@stupidchicken.com>
5069         * configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
5070         user specifies "without".
5072         * configure: Regenerate.
5074 2007-03-18  Jan Djärv  <jan.h.d@swipnet.se>
5076         * configure.in: Warning for Gtk+ and Cygwin added.
5077         (HAVE_XFT): OLD_CFLAGS changed to OLD_CPPFLAGS.
5079 2007-02-27  Glenn Morris  <rgm@gnu.org>
5081         * make-dist (oldXMenu): Remove Imakefile.
5082         (etc/images): Add README.
5084 2007-02-25  Dan Nicolaescu  <dann@ics.uci.edu>
5086         * configure.in (xtensa-*-linux-gnu*): New configuration.
5088         * configure: Regenerate.
5090 2007-02-22  Dan Nicolaescu  <dann@ics.uci.edu>
5092         * config.guess, config.sub: Updated from master source.
5094 2007-01-31  Sascha Wilde  <wilde@sha-bang.de>  (tiny change)
5096         * configure.in (PKG_CHECK_MODULES): Change ///* to / in cflags and libs.
5098 2007-01-29  Chong Yidong  <cyd@stupidchicken.com>
5100         * configure.in: Restore support for hp800's not running HP-UX.
5102         * configure: Regenerate.
5104 2007-01-27  Chong Yidong  <cyd@stupidchicken.com>
5106         * configure.in: Remove support for hp800 and sr2k machine types.
5108         * configure: Regenerate.
5110 2007-01-26  Jan Djärv  <jan.h.d@swipnet.se>
5112         * configure.in: Add check for libXft.
5114 2007-01-18  Bruno Haible  <bruno@clisp.org>  (tiny change)
5116         * INSTALL: Info files moved to share/info.
5118 2007-01-02  Stephen C. Gilardi  <scgilardi@gmail.com>  (tiny change)
5120         * configure.in: Detect and use fink-installed in intel-based Mac
5121         builds; change Apple Darwin section to support both PowerPC and
5122         Intel-based Macs.
5124 2006-12-26  Andreas Schwab  <schwab@suse.de>
5126         * Makefile.in (datarootdir): Define.
5128 2006-12-24  Richard Stallman  <rms@gnu.org>
5130         * configure.in: Require Autoconf 2.61.
5132 2006-12-22  Mark Davies  <mark@mcs.vuw.ac.nz>
5134         * configure.in: Add support for NetBSD on x86-64, hp800 and sh3el.
5135         Remove redundant entry for powerpc-apple-netbsd.
5137         * configure: Regenerate.
5139 2006-12-22  Chong Yidong  <cyd@stupidchicken.com>
5141         * configure: Regenerate with autoconf 2.61.
5143 2006-12-20  Jan Djärv  <jan.h.d@swipnet.se>
5145         * configure.in: Detect alsa/asoundlib.h also.
5146         * configure: Regenerate.
5148 2006-12-19  Jan Djärv  <jan.h.d@swipnet.se>
5150         * configure.in: Check if GTK+ compiles at all.
5152 2006-12-10  Andreas Schwab  <schwab@suse.de>
5154         * configure.in: Remove check for struct timezone, its result is
5155         never used.
5157 2006-12-08  NAKAJI Hiroyuki  <nakaji@jp.freebsd.org>  (tiny change)
5159         * configure.in: Add support for Solaris 10 on x86-64.
5161 2006-12-08  Jan Djärv  <jan.h.d@swipnet.se>
5163         * INSTALL (DETAILED BUILDING AND INSTALLATION): Document usage
5164         of PKG_CONFIG_PATH.
5166 2006-12-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5168         * configure.in (HAVE_SYNC): New test.
5170 2006-12-03  Glenn Morris  <rgm@gnu.org>
5172         * Makefile.in: Fix Copyright format.
5174         * configure.in (AH_TOP): Add missing Copyright year.
5176         * update-subdirs: Add missing Copyright years.
5178 2006-11-27  Chris Moore  <christopher.ian.moore@gmail.com>
5180         * Makefile.in: Touch only the parts of the share/emacs directory
5181         specific to this version.
5183 2006-11-26  Chong Yidong  <cyd@stupidchicken.com>
5185         * configure.in (HAVE_X86_64_LIB64_DIR): New test.
5187 2006-11-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5189         * configure.in (HAVE_CANCELMENUTRACKING): Remove test.
5191 2006-11-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5193         * configure.in: Prefer X11 to Carbon only when some X-specific
5194         option is specified (Thanks to Jan Djärv and Andreas Schwab).
5196 2006-11-04  Romain Francoise  <romain@orebokech.com>
5198         * Makefile.in (bootstrap-clean-before): Fix typo.
5199         Use new target `bootstrap-clean' in the leim subdirectory.
5201 2006-11-03  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
5203         * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
5205 2006-10-30  Chong Yidong  <cyd@stupidchicken.com>
5207         * make-dist: Add makefile.w32-in to the man, lispref and lispintro
5208         directories.
5210 2006-10-29  Jeramey Crawford  <jeramey@jeramey.com>
5212         * configure.in: Enable x86-64 OpenBSD compilation.
5214 2006-10-28  Glenn Morris  <rgm@gnu.org>
5216         * AUTHORS: Add cal-html.el author.
5218 2006-10-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5220         * make-dist: Make links to mac/make-package and
5221         mac/Emacs.app/Contents/Resources/Emacs.icns.
5223 2006-10-27  Chong Yidong  <cyd@stupidchicken.com>
5225         * README: Bump version number to 22.0.90.
5227 2006-10-23  Andreas Schwab  <schwab@suse.de>
5229         * configure.in: Make sure x_default_search_path is always set even
5230         when x_libraries is empty, and look in .../share as well for each
5231         library directory.
5233 2006-09-28  Kenichi Handa  <handa@m17n.org>
5235         * configure.in (locallisppath): Don't include leim dir.
5236         (lisppath): Include leim dir.
5238 2006-09-15  Jay Belanger  <belanger@truman.edu>
5240         * COPYING: Replace "Library Public License" by "Lesser Public
5241         License" throughout.
5243 2006-09-11  Paul Eggert  <eggert@cs.ucla.edu>
5245         * make-dist (EMACS): Exit and fail if the EMACS environment
5246         variable is set to something other than an absolute file name.
5248 2006-08-16  Andreas Schwab  <schwab@suse.de>
5250         * configure.in (PKG_CHECK_MODULES): Use AS_MESSAGE_LOG_FD instead
5251         of hardcoding it.
5253 2006-08-16  Richard Stallman  <rms@gnu.org>
5255         * INSTALL.CVS: Clean up wording.
5257 2006-07-14  Eli Zaretskii  <eliz@gnu.org>
5259         * configure.in (PKG_CHECK_MODULES): Redirect the output of
5260         $PKG_CONFIG --exists "$2" to config.log.
5261         * configure: Regenerate.
5263 2006-07-09  Richard Stallman  <rms@gnu.org>
5265         * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections.
5267 2006-07-09  Kim F. Storm  <storm@cua.dk>
5269         * CONTRIBUTE: Use outline format.
5270         Add section on copyright years (from admin/notes/years).
5272 2006-07-08  Eli Zaretskii  <eliz@gnu.org>
5274         * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config
5275         to /dev/null, since we don't need the error message, just the
5276         exit status.
5278 2006-07-07  Eli Zaretskii  <eliz@gnu.org>
5280         * CONTRIBUTE: Slight formatting changes and typo fixes.
5281         Add description of NEWS markings.
5283 2006-07-07  Kim F. Storm  <storm@cua.dk>
5285         * CONTRIBUTE: Mention INSTALL.CVS.
5287 2006-07-05  Romain Francoise  <romain@orebokech.com>
5289         * make-dist (top-level): Add CONTRIBUTE.
5291 2006-07-04  Richard Stallman  <rms@gnu.org>
5293         * CONTRIBUTE: Much rewrite.
5295 2006-07-04  Nick Roberts  <nickrob@snap.net.nz>
5297         * CONTRIBUTE: New file.
5299 2006-06-24  Eli Zaretskii  <eliz@gnu.org>
5301         * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.
5303 2006-05-18  Jan Djärv  <jan.h.d@swipnet.se>
5305         * configure.in: Add check for ALSA.
5307 2006-05-06  Eli Zaretskii  <eliz@gnu.org>
5309         * Makefile.in (INFO_FILES): Remove emacs-xtra.
5311         * info/dir: Remove the Emacs-Xtra entry.
5313 2006-04-20  Ramprasad B  <ramprasad_i82@yahoo.com>
5315         Update copyright year(s) in many files.
5317 2006-04-01  Eli Zaretskii  <eliz@gnu.org>
5319         * configure: Regenerated.
5321 2006-04-01  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com>  (tiny change)
5323         * configure.in (HAVE_XAW3D): Disable Xaw3d check if
5324         --without-toolkit-scroll-bars was specified.
5326 2006-04-01  Christoph Bauer  <Christoph.Bauer@lms-gmbh.de>  (tiny change)
5328         * configure.in (hppa*-hp-hpux1[1-9]*): Add -D_INCLUDE__STDC_A1_SOURCE
5329         to CFLAGS.  Update Copyright years written to src/config.in.
5331 2006-03-18  Claudio Fontana  <claudio@gnu.org>
5333         * Makefile.in (INFO_FILES): New variable, contains all Info file names.
5334         (install-arch-indep, uninstall): Use $(INFO_FILES) to specify files
5335         to be installed/uninstalled.
5336         (uninstall): Invoke "$(INSTALL_INFO) --remove" to remove references
5337         to Info files installed by Emacs.
5339 2006-03-03  Claudio Fontana  <claudio@gnu.org>
5341         * Makefile.in (install, uninstall): Add DESTDIR variable to
5342         support staged installations.
5344 2006-02-14  Richard M. Stallman  <rms@gnu.org>
5346         * configure.in (s390x-*-linux-gnu*): New configuration.
5348 2006-01-31  Jan Djärv  <jan.h.d@swipnet.se>
5350         * configure.in: Require GTK 2.4 or newer.
5352 2006-01-29  Michael Olson  <mwolson@gnu.org>
5354         * Makefile.in (install-arch-indep, uninstall): Add ERC.
5355         * info/dir (ERC): New entry.
5357 2006-01-29  Eli Zaretskii  <eliz@gnu.org>
5359         * info/dir: Fix last change.
5361 2006-01-28  Luc Teirlinck  <teirllm@auburn.edu>
5363         * Makefile.in (install-arch-indep, uninstall): Add rcirc.
5365 2006-01-27  Eli Zaretskii  <eliz@gnu.org>
5367         * info/dir: Untabify the whole file.
5368         (Rcirc): New entry.
5370 2006-01-12  Andreas Schwab  <schwab@suse.de>
5372         * configure.in: Move AC_AIX and AC_GNU_SOURCE before first compile
5373         check.
5375 2006-01-02  Chong Yidong  <cyd@stupidchicken.com>
5377         * configure.in: Use -Wno-pointer-sign if available.
5379 2005-12-29  Andreas Schwab  <schwab@suse.de>
5381         * config.guess, config.sub: Updated from master source.
5383 2005-12-25  Giorgos Keramidas  <keramida@ceid.upatras.gr>  (tiny change)
5385         * configure.in: Use amdx86-64 for freebsd on x86_64.
5387 2005-11-22  Romain Francoise  <romain@orebokech.com>
5389         * make-dist: Add etc/images/icons.
5391 2005-11-03  Andreas Schwab  <schwab@suse.de>
5393         * configure.in: Use GZIP_PROG instead of GZIP.
5395         * Makefile.in (GZIP_PROG): Renamed from GZIP.
5396         (install-arch-indep): Adjust.
5398 2005-11-01  Andreas Schwab  <schwab@suse.de>
5400         * Makefile.in (bootstrap): Fix dependencies for parallel build.
5401         (bootfast): Likewise.
5403 2005-11-01  Romain Francoise  <romain@orebokech.com>
5405         * configure.in: Check for gzip.
5407         * Makefile.in (install): Compress source files.
5409 2005-10-24  Steven Tamm  <steventamm@mac.com>
5411         * configure.in: Fix darwin386 configuration issue.
5413 2005-10-22  Eli Zaretskii  <eliz@gnu.org>
5415         * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure.
5417 2005-10-17  Bill Wohler  <wohler@newt.com>
5419         * make-dist: Create and populate etc/images/low-color.
5421 2005-10-15  Bill Wohler  <wohler@newt.com>
5423         * make-dist: Create and populate etc/images/gud.
5425 2005-10-08  Richard M. Stallman  <rms@gnu.org>
5427         * make-dist (tempparent): Don't check for 14-char file name limit.
5429 2005-10-07  Romain Francoise  <romain@orebokech.com>
5431         * make-dist: Add etc/images/ezimage and etc/images/mail
5432         directories.  Install images in etc/images.
5434 2005-10-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5436         * configure.in: Prefer Carbon if --enable-carbon-app or
5437         --with-carbon is explicitly specified even when X11 is detected.
5439 2005-09-15  Ulf Jasper  <ulf.jasper@web.de>
5441         * Makefile.in (install-arch-indep, uninstall):
5442         Handle newsticker manual.
5443         (info): Add - to commands.
5445 2005-09-10  Giuseppe Scrivano  <gscrivano@gmail.com>
5447         Remove the MAXPATHLEN limitations:
5449         * configure.in (AC_CHECK_FUNCS): Check for get_current_dir_name.
5451 2005-09-09  Eli Zaretskii  <eliz@gnu.org>
5453         * configure.in <lynxsos*>: Support for LynxOS on PPC.
5454         * configure: Regenerate.
5456 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
5458         * config.guess, config.sub: Updated from master source.
5460 2005-08-03  Juanma Barranquero  <lekktu@gmail.com>
5462         * .cvsignore: Add `lock'.
5464 2005-07-28  Juanma Barranquero  <lekktu@gmail.com>
5466         * .cvsignore: Add `data' and `site-lisp' (for in-place installs).
5468 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
5470         Merge gnulib getopt implementation into Emacs.
5472         * Makefile.in (AUTOCONF_INPUTS): New macro.
5473         ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
5474         so that these files also depend on m4/getopt.m4.
5475         * configure.in: Configure getopt by including m4/getopt.m4,
5476         and configuring a getopt replacement if necessary.
5477         * make-dist: Add m4 subdirectory.  Unlink lib-src/getopt.h.
5478         * m4/getopt.m4: New file.
5480 2005-07-06  Lute Kamstra  <lute@gnu.org>
5482         * configure.in: Fix capitalization.
5484 2005-07-04  Lute Kamstra  <lute@gnu.org>
5486         Update FSF's address in GPL notices.
5488 2005-06-19  Jérôme Marant  <jerome@marant.org>
5490         * Makefile.in (epaths-force): Protect both lisppath and
5491         buildlisppath from whitespace.
5493 2005-06-08  Steven Tamm  <steventamm@mac.com>
5495         * configure.in: Support Darwin/MacOSX on Intel.
5497 2005-06-06  Jan Djärv  <jan.h.d@swipnet.se>
5499         * configure.in (HAVE_CANCELMENUTRACKING): New test.
5501 2005-05-19  Jérôme Marant  <jmarant@marant.org>
5503         * configure.in: Add --enable-locallisppath.
5505 2005-05-13  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5507         * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
5508         Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS.  Define
5509         USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
5511 2005-05-07  Jérôme Marant  <jerome@marant.org>
5513         * make-dist: Remove references to makefile.nt and makefile.def.
5514         Include widgets and images subdirectories of etc.  Do not exclude
5515         ldefs-boot.el.
5517 2005-04-23  Andreas Schwab  <schwab@suse.de>
5519         * configure.in: Remove duplicate match for powerpc configuration.
5521 2005-04-20  Thien-Thi Nguyen  <ttn@gnu.org>
5523         * configure.in: Check for <pwd.h>.
5525 2005-04-14  Lute Kamstra  <lute@gnu.org>
5527         * make-dist: Distribute all ChangeLog files in lisp/.
5528         Don't distribute ldefs-boot.el.
5529         lisp/makefile.nt no longer exists.
5531 2005-04-13  Lute Kamstra  <lute@gnu.org>
5533         * make-dist: Don't use DONTCOMPILE from lisp/Makefile.in; check
5534         for "no-byte-compile: t" in the file instead.
5536 2005-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5538         * configure.in <Motif>: Don't let a special LessTif/Motif1.2 install
5539         shadow the main Lesstif/Motif-2.1 libs and includes.
5541 2005-03-10  Jan Djärv  <jan.h.d@swipnet.se>
5543         * configure.in: Only add XASSERTS to cppflags.
5545 2005-03-04  Jan Djärv  <jan.h.d@swipnet.se>
5547         * configure.in: Added --enable-asserts.
5549 2005-02-09  Kim F. Storm  <storm@cua.dk>
5551         Change release version from 21.4 to 22.1 throughout.
5552         Change development version from 21.3.50 to 22.0.50.
5554 2005-01-19  Steven Tamm  <steventamm@mac.com>
5556         * configure.in: Check for <sys/utsname.h>.
5558 2004-12-11  Kim F. Storm  <storm@cua.dk>
5560         * Makefile.in (info): Undo 2004-12-05 change.
5562 2004-12-08  Luc Teirlinck  <teirllm@auburn.edu>
5564         * info/dir (File): Add URL and Org Mode manuals.
5565         * Makefile.in (install-arch-indep, uninstall): Add url and org
5566         manuals.
5568 2004-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5570         * configure.in (INLINE, RE_TRANSLATE_P): Move patches mistakenly
5571         committed to src/config.in.
5573 2004-12-07  Jan Djärv  <jan.h.d@swipnet.se>
5575         * configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
5576         pthreads and define HAVE_GTK_AND_PTHREAD.
5578 2004-12-05  Richard M. Stallman  <rms@gnu.org>
5580         * Makefile.in (info): Ignore errors building info files.
5582 2004-11-27  Eli Zaretskii  <eliz@gnu.org>
5584         * config.bat: If 8-byte alignment is not supported, define
5585         NO_DECL_ALIGN in src/config.h, instead of trivially defining
5586         DECL_ALIGN.  Protect & with "" because & is special for cmd.exe;
5587         filter through Sed to remove the quotes.
5589 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5591         * info/.cvsignore: Ignore everything.  It's OK since .cvsignore does
5592         not apply to files explicitly `cvs add'ed.
5594 2004-11-12  Eli Zaretskii  <eliz@gnu.org>
5596         * config.bat: Don't require djecho.exe for the v1.x build.
5597         Add a test for DECL_ALIGN support, and add a trivial definition to
5598         src/config.h if 8-byte alignment is not supported.
5600 2004-11-08  Kim F. Storm  <storm@cua.dk>
5602         * Makefile.in (bootstrap, bootstrap-clean-before): Remove .elc
5603         files before building.
5604         (bootfast, bootstrap-clean-before-fast): New targets, like
5605         bootstrap but don't remove .elc files.
5607 2004-11-06  Lars Brinkhoff  <lars@nocrew.org>
5609         * configure.in: Add check for getrusage.
5611 2004-11-02  Jan Djärv  <jan.h.d@swipnet.se>
5613         * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION):
5614         New tests for new and old GTK file dialogs.
5615         (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set
5616         to no.
5618 2004-10-20  Jan Djärv  <jan.h.d@swipnet.se>
5620         * configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
5621         can be set.  Remove SETARCH test.
5623 2004-10-08  Steven Tamm  <steventamm@mac.com>
5625         * configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h.
5627 2004-10-06  Jan Djärv  <jan.h.d@swipnet.se>
5629         * configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
5630         AC_MSG_WARN.  Move output of warning message to end of configure run.
5632 2004-10-05  Jan Djärv  <jan.h.d@swipnet.se>
5634         * configure.in (HAVE_RANDOM_HEAPSTART): Rename HAVE_EXECSHIELD.
5635         Run test to see if heap start address is random.
5637 2004-09-29  Miles Bader  <miles@gnu.org>
5639         * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
5640         if setarch is present.
5642 2004-09-25  Jan Djärv  <jan.h.d@swipnet.se>
5644         * configure.in (HAVE_EXECSHIELD): Only define on x86.
5646 2004-09-24  Jan Djärv  <jan.h.d@swipnet.se>
5648         * configure.in: Check for exec-shield.
5650 2004-09-04  Reiner Steib  <Reiner.Steib@gmx.de>
5652         * Makefile.in (install-arch-indep): Add pgg and sieve.
5654         * info/.cvsignore: Added pgg and sieve.
5656 2004-08-06  Andreas Schwab  <schwab@suse.de>
5658         * Makefile.in (install-arch-indep, uninstall): Add flymake.
5660 2004-07-31  Eli Zaretskii  <eliz@gnu.org>
5662         * config.bat: Update URLs in the comments.
5664 2004-07-05  Andreas Schwab  <schwab@suse.de>
5666         * Makefile.in (install-arch-indep): Remove .arch-inventory files.
5668 2004-06-21  Kenichi Handa  <handa@m17n.org>
5670         * make-dist: Link leim-ext.el into tempdir.
5672 2004-06-15  Luc Teirlinck  <teirllm@auburn.edu>
5674         * info/dir (File): Add emacs-xtra.
5675         * Makefile.in (install-arch-indep, uninstall): Add emacs-xtra.
5677 2004-06-12  Juri Linkov  <juri@jurta.org>
5679         * info/dir: Move menu help lines from `* Menu:' to file header.
5680         Describe the purpose of a red *.
5682 2004-05-04  Dave Love  <fx@gnu.org>
5684         * configure.in: Don't use `extrasub'.
5686 2004-04-29  Dave Love  <fx@gnu.org>
5688         * configure.in: Don't forget to quote args to `test'.
5690 2004-04-24  Thien-Thi Nguyen  <ttn@gnu.org>
5692         * autogen.sh: Update filename in "please read" message.
5694 2004-04-17  Richard M. Stallman  <rms@gnu.org>
5696         * INSTALL: Move the info about site-lisp dirs,
5697         and say uninstalled Emacs looks there too.
5699 2004-04-04  Eli Zaretskii  <eliz@gnu.org>
5701         * config.bat (lib-src): Recognize comment lines in Makefile.in
5702         that have a TAB after the #, to avoid errors in preprocessing with
5703         GCC 3.3.3.
5705 2004-03-31  Luc Teirlinck  <teirllm@auburn.edu>
5707         * Makefile.in: Mention in comment that `make maintainer-clean'
5708         deletes .elc files.
5710 2004-03-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5712         * update-subdirs: Add local variables to prevent byte-compiling.
5714 2004-03-21  Dave Love  <fx@gnu.org>
5716         * configure.in: Fix previous change.
5718 2004-03-18  Dave Love  <fx@gnu.org>
5720         * configure.in: Add -znocombreloc to LDFLAGS if compiler supports it.
5722 2004-03-15  Luc Teirlinck  <teirllm@auburn.edu>
5724         * info/dir (File): Add SMTP and SES.
5726 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5728         * Makefile.in (maintainer-clean): Clean in the lisp dir as well.
5729         (bootstrap): Use the new bootstrap-prepare target in lisp.
5731 2004-02-18  Kim F. Storm  <storm@cua.dk>
5733         * INSTALL.CVS: Add info about ssh/cvs related problems and work-around.
5735 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
5737         * make-dist: Don't link index.*perm and permute-index into tempdir.
5739 2004-02-14  Jonathan Yavner  <jyavner@member.fsf.org>
5741         * AUTHORS (JonathanYavner): Rename testcover-*.el to tcover-*.el
5742         to match previous changes by Eli Zaretskii.
5744 2004-02-09  Luc Teirlinck  <teirllm@auburn.edu>
5746         * Makefile.in: Set CDPATH to an empty string.
5748 2004-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5750         * configure.in <darwin>: Use fink packages if available.
5752 2004-01-25  Jérôme Marant  <jmarant@free.fr>  (tiny change)
5754         * make-dist (lispref): Do include lispref/index.texi.
5756 2004-01-06  Eric Hanchrow  <offby1@blarg.net>
5758         * make-dist (tempdir): Include cursors in nt/icons.
5760 2003-12-30  Eli Zaretskii  <eliz@gnu.org>
5762         * INSTALL.CVS: Renamed from INSTALL-CVS to avoid file-name
5763         clashes with install-sh on 8+3 filesystems.
5765 2003-12-24  Miles Bader  <miles@gnu.org>
5767         * .cvsignore: Add .arch-inventory.
5769 2003-12-24  Andreas Schwab  <schwab@suse.de>
5771         * configure.in: Check for <sys/socket.h>.  Include it before
5772         including <net/if.h>.  Move check for <net/if.h> before its use.
5774 2003-12-24  Jan Djärv  <jan.h.d@swipnet.se>
5776         * Makefile.in (install-arch-dep): Don't let cd output go into
5777         pipe for carbon_appdir.
5779 2003-12-24  Andreas Schwab  <schwab@suse.de>
5781         * configure.in (PKG_CHECK_MODULES): Fix quoting.
5783 2003-12-01  Andreas Schwab  <schwab@suse.de>
5785         * configure.in (powerpc-apple-darwin*): Use ${CC-cc} instead of
5786         hardcoding gcc.
5788 2003-11-16  Jan Djärv  <jan.h.d@swipnet.se>
5790         * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
5791         multiple displays.
5792         Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
5794 2003-09-23  Dave Love  <fx@gnu.org>
5796         * configure.in: Check members of struct ifreq.
5798 2003-09-14  Kim F. Storm  <storm@cua.dk>
5800         * configure.in: Add checks for sys/ioctl.h and net/if.h.
5802 2003-09-12  Luc Teirlinck  <teirllm@mail.auburn.edu>
5804         * Makefile.in (install-arch-indep, uninstall): Add SES manual.
5806 2003-08-18  Lute Kamstra  <lute@gnu.org>
5808         * configure.in: Revert the change of 2003-07-29 as GTK+ 2.2 is not
5809         required anymore.
5811 2003-08-07  Andrew Choi  <akochoi@shaw.ca>
5813         * configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
5814         option instead of -traditional-cpp for CPP.
5816 2003-07-29  Richard M. Stallman  <rms@gnu.org>
5818         * configure.in (HAVE_XIM): Define if XIM is available.
5820 2003-07-29  Tim Van Holder  <tim.vanholder@anubex.com>  (tiny change)
5822         * configure.in: The function gtk_window_set_icon_from_file was
5823         introduced in GTK+ 2.2, so check for that release.
5825 2003-07-23  Andreas Schwab  <schwab@suse.de>
5827         * configure.in: Add --enable-maintainer-mode, substitute MAINT.
5829         * Makefile.in (YACC): Remove, not used.
5830         (MAINT): Don't set.
5831         (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
5832         disable dependency on ${srcdir}/configure.in when maintainer mode
5833         is disabled.
5835 2003-07-22  Dave Love  <fx@gnu.org>
5837         * configure.in: Make XRegisterIMInstantiateCallback test depend on
5838         HAVE_X11, not with_xim.
5839         (HAVE_CRTIN): Provide template.
5840         <with_png>: Test for png.h and libpng/png.h.
5842 2003-07-15  Andreas Schwab  <schwab@suse.de>
5844         * configure.in: Temporarily leave quoting for AC_DEFINE.
5846 2003-07-13  Stefan Monnier  <monnier@cs.yale.edu>
5848         * configure.in: Check for posix_memalign.
5850 2003-07-12  Richard M. Stallman  <rms@gnu.org>
5852         * configure.in [netbsd systems]: Define HAVE_CRTIN properly.
5854 2003-07-09  Kim F. Storm  <storm@cua.dk>
5856         * INSTALL (DETAILED BUILDING AND INSTALLATION): Describe new
5857         functionality of --without-xim.
5859 2003-06-29  Dave Love  <fx@gnu.org>
5861         * configure.in: Fix XRegisterIMInstantiateCallback check for gcc.
5863 2003-06-23  Dave Love  <fx@gnu.org>
5865         * configure.in: Check for sys/_mbstate_t.h.
5866         Test XRegisterIMInstantiateCallback prototype.
5867         (AH_BOTTOM): Define DO_BLOCK_INPUT, my_strftime.
5869 2003-06-06  Dave Love  <fx@gnu.org>
5871         * configure.in: Check for locale.h.
5873 2003-06-05  Dave Love  <fx@gnu.org>
5875         * configure.in: Check for memcpy, mempcpy, mblen, mbrlen.
5876         Use AC_FUNC_STRFTIME, AC_STRUCT_TIMEZONE, AC_TYPE_MBSTATE_T.
5877         (NLIST_STRUCT): Don't define.
5878         (AH_BOTTOM): Define my_strftime.
5880 2003-06-02  Richard M. Stallman  <rms@gnu.org>
5882         * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
5884 2003-05-24  Andreas Schwab  <schwab@suse.de>
5886         * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
5887         bzero, and bcmp.
5889 2003-05-22  Dave Love  <fx@gnu.org>
5891         * configure.in: Remove redundant test for term.h.  Test for difftime.
5893 2003-05-20  Dave Love  <fx@gnu.org>
5895         * configure.in: Append * to s390-*-linux-gnu case.
5896         (LIBMAIL) <lockfile>: Don't define.
5898 2003-04-30  Kai Großjohann  <kai.grossjohann@gmx.net>
5900         * INSTALL (* GNU/Linux development packages): Mention Debian and
5901         RedHat package names.
5903 2003-04-30  Boyd Lynn Gerber  <gerberb@zenez.com>
5905         * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5907 2003-04-30  Kai Großjohann  <kai.grossjohann@gmx.net>
5909         * INSTALL (* GNU/Linux development packages): Tell people to
5910         install additional packages for compiling Emacs.
5912 2003-04-30  Richard M. Stallman  <rms@gnu.org>
5914         * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5916 2003-04-28  Francesco Potortì  <pot@gnu.org>
5918         * configure.in: Undo last (RMS') change, as it is useless, per
5919         Dave Love.
5921 2003-04-08  Richard M. Stallman  <rms@gnu.org>
5923         * configure.in: Put #include of jpeglib.h at start of line.
5925 2003-04-06  Francesco Potortì  <pot@gnu.org>
5927         * configure.in: Use the same configuration for all aix5, not just
5928         aix5.1.
5930 2003-03-16  Nelson H. F. Beebe  <beebe@math.utah.edu>  (tiny change)
5932         * configure.in: Check for need for bigtoc support on IBM AIX for
5933         solving a linker table overflow problem.
5935 2003-03-03  Rob Browning  <rlb@defaultvalue.org>
5937         * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
5938         (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
5939         over bzero, bcmp, and bcopy.
5941 2003-02-23  Simon Josefsson  <jas@extundo.com>
5943         * Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
5945 2003-02-21  Klaus Zeitler  <kzeitler@lucent.com>
5947         * configure.in: Set new hpux10-20.h as "major" include for 10.20.
5949 2003-02-13  Robert J. Chassell  <bob@rattlesnake.com>  (tiny change)
5951         * INSTALL (* Extra fonts): Say that Emacs doesn't include fonts.
5953 2003-02-08  Andreas Schwab  <schwab@suse.de>
5955         * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
5956         instead of the substitution.
5958 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
5960         * Makefile.in: Use @EXEEXT@ for Cygwin.
5961         Use USERNAME if LOGNAME is not set (for Cygwin).
5963         * configure.in: Add opsys=cygwin.
5965 2003-01-22  Andreas Schwab  <schwab@suse.de>
5967         * configure.in: Set HAVE_MENUS=yes when HAVE_CARBON=yes instead of
5968         redefining it explicitly in src/config.in.
5970 2003-01-22  Markus Rost  <rost@math.ohio-state.edu>
5972         * Makefile.in (bootstrap): Make bootstrap-after.
5974 2003-01-20  Jan Djärv  <jan.h.d@swipnet.se>
5976         * configure.in: Fix --with-gtk.
5978 2003-01-19  Jan Djärv  <jan.h.d@swipnet.se>
5980         * configure.in: Add --with-gtk, --with-x-toolkit=gtk.
5982         * INSTALL (DETAILED BUILDING AND INSTALLATION): Add text about GTK.
5984 2003-01-14  Francesco Potortì  <pot@gnu.org>
5986         * configure.in (m68k-motorola-sysv): Remove (obsolete).
5988 2003-01-07  Steven Tamm  <steventamm@mac.com>
5990         * configure.in: New option, --enable-carbon-app, to specify
5991         that the application should be installed
5992         * Makefile.in (install-arch-dep): On Mac OS X, install the
5993         Emacs.app application if carbon-app is enabled.
5995 2003-01-06  Dave Love  <fx@gnu.org>
5997         * configure.in: Check for nl_langinfo.
5998         [!HAVE_SIZE_T]: Fix typedef.
6000 2003-01-06  David Kastrup  <dak@gnu.org>
6002         * Makefile.in (INSTALL_INFO): Get install-info command from configure.
6004         * configure.in: Add tests for install-info.
6006 2002-12-09  Markus Rost  <rost@math.ohio-state.edu>
6008         * configure.in (*-sunos5*, *-solaris*): Revert previous change -
6009         use again sol2-6 instead of sol2-8.
6011 2002-12-09  Dave Love  <fx@gnu.org>
6013         * configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
6015 2002-12-08  Andreas Schwab  <schwab@suse.de>
6017         * Makefile.in (install-arch-indep): Revert last change.
6019 2002-11-27  Dave Love  <fx@gnu.org>
6021         * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST.
6022         Check for __sys_siglist too.  Check for memset.
6023         Use AC_FUNC_GETPGRP.  Add mipsel-*-linux-gnu* target.
6025 2002-11-22  Juanma Barranquero  <lektu@terra.es>
6027         * config.guess, config.sub: Updated from master source.
6029 2002-11-19  Karl Fogel  <kfogel@red-bean.com>
6031         * autogen.sh: New file.
6033 2002-11-18  Dave Love  <fx@gnu.org>
6035         * configure.in: Tidy up various quoting issues throughout.
6036         Use AC_GNU_SOURCE.
6037         (AH_BOTTOM): Fix #endif protecting config.h.  Maybe include
6038         alloca.h.  Define GC_SETJMP_WORKS, GC_LISP_OBJECT_ALIGNMENT.
6039         Maybe define bcopy, bzero, bcmp.
6040         (powerpcle-*-solaris2.5*, powerpcle-*-solaris2*): Remove (use
6041         non-existent machine file).
6042         (sys/vlimit.h, sys/resource.h, fsync, __restrict): Test for.
6043         (term.h, X11/Xaw3d/Scrollbar.h): Avoid warning from test.
6044         (nlist.h): Move test up.
6046 2002-11-18  Markus Rost  <rost@math.ohio-state.edu>
6048         * configure.in (*-sunos5*, *-solaris*): Use sol2-8.
6050 2002-11-14  Francesco Potortì  <pot@gnu.org>
6052         * configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
6054 2002-11-11  Tim Van Holder  <tim.vanholder@anubex.com>  (tiny change)
6056         * Makefile.in (install-arch-indep): Prepend $(srcdir)/ to lisp.
6058 2002-11-08  Dave Love  <fx@gnu.org>
6060         * configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf 2.54.
6061         (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
6063 2002-11-07  Miles Bader  <miles@gnu.org>
6065         * Makefile.in (maybe_bootstrap): Fix shell variable usage.
6066         Handle separate-build-dir case.
6068 2002-11-06  Richard M. Stallman  <rms@gnu.org>
6070         * Makefile.in (maybe_bootstrap): Add doublequotes to make it
6071         bulletproof.  $bar may be empty when there are no .elc files.
6073 2002-10-30  Dave Love  <fx@gnu.org>
6075         * configure.in: Require autoconf 2.53.  Test for pty.h,
6076         sys/mman.h, sys/param.h, mremap, memmove.
6077         (AH_BOTTOM): Maybe include strings.h.  Add local variables for mode.
6078         (AC_PROG_YACC): Delete.
6079         (size_t): Use AC_CHECK_TYPES.
6080         (AH_TOP): Up-date copyright.
6082 2002-10-01  Juanma Barranquero  <lektu@terra.es>
6084         * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
6086 2002-09-19  Richard M. Stallman  <rms@gnu.org>
6088         * configure.in: Fix the LessTif-directory-finder for real.
6090 2002-09-14  Richard M. Stallman  <rms@gnu.org>
6092         * Makefile.in (maybe_bootstrap): Test for complete absence
6093         of compiled Lisp files.
6095 2002-09-11  Stefan Monnier  <monnier@cs.yale.edu>
6097         * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
6098         (bootstrap-clean-after): Delete.
6099         (bootstrap): Make the sequencing explicit.
6101 2002-09-10  Richard M. Stallman  <rms@gnu.org>
6103         * configure.in: Fix previous LessTif change.
6105 2002-09-09  Richard M. Stallman  <rms@gnu.org>
6107         * configure.in (powerpcle-*-solaris2.5*): New configuration.
6108         (powerpcle-*-solaris*): Use version 2.6 as default.
6109         (*-sunos5.6*, *-solaris2.6*): New alternative.
6110         (*-sunos5*): Use version 2.6 as default.
6112 2002-09-06  Kai Großjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6114         * configure.in: Fix typo.
6116 2002-09-05  Richard M. Stallman  <rms@gnu.org>
6118         * configure.in: Look for LessTif in /usr/X11R6/LessTif/ before Motif.
6120         * configure.in: Handle $GCC_LINK_TEST_OPTIONS and
6121         $NON_GCC_LINK_TEST_OPTIONS after the AC_PROG_... macros.
6123 2002-08-26  Kim F. Storm  <storm@cua.dk>
6125         * Makefile.in (install-arch-indep): Do not remove DOC file
6126         when it is the only DOC file installed; this is the case when
6127         CANNOT_DUMP is defined.  From Joe Buehler (tiny change).
6129 2002-07-24  Markus Rost  <rost@math.ohio-state.edu>
6131         * configure.in: Fix typo.
6133 2002-07-24  Richard M. Stallman  <rms@gnu.org>
6135         * configure.in: Don't print anything special about gamedir.
6137         * configure.in: Delete nonstandard --with-game-user option.
6139 2002-07-21  Richard M. Stallman  <rms@gnu.org>
6141         * Makefile.in (gamedir, localstatedir): New variables.
6142         (epaths-force): Insert value of gamedir into PATH_GAME.
6144         * configure.in (gamedir): Handle it like lispdir.
6145         (--with-game-dir option): Delete.
6147 2002-06-21  Pavel Janík  <Pavel@Janik.cz>
6149         * configure.in: Add support for mipseb-*-netbsd* machines.
6151 2002-06-18  Kai Großjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6153         * Makefile.in (install-arch-indep, uninstall): Add Tramp.
6155 2002-06-17  Kai Großjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6157         * info/dir (File): Add an entry for Tramp.
6159 2002-06-17  Eli Zaretskii  <eliz@is.elta.co.il>
6161         * INSTALL-CVS: New file.
6163 2002-06-07  Andreas Schwab  <schwab@suse.de>
6165         * configure.in (x86_64-*-linux-gnu*): New system.
6167 2002-05-31  Eli Zaretskii  <eliz@is.elta.co.il>
6169         * config.bat: Handle the case when lispintro is truncated to lispintr.
6171 2002-05-26  Paul Eggert  <eggert@twinsun.com>
6173         * config.guess, config.sub: Updated from master source.
6175 2002-05-09  Richard M. Stallman  <rms@gnu.org>
6177         * configure.in (emacs_cv_speed_t): Add square brackets for clarity.
6179 2002-05-04  Pavel Janík  <Pavel@Janik.cz>
6181         * make-dist: Do not distribute lock/ directory.
6183 2002-04-30  Andrew Choi  <akochoi@shaw.ca>
6185         * configure.in: Provide documentation string when defining
6186         variable HAVE_CARBON.  Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
6187         and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
6189 2002-04-29  Colin Walters  <walters@verbum.org>
6191         * configure.in: Delete configure check for access to the game user.
6193 2002-04-29  Pavel Janík  <Pavel@Janik.cz>
6195         * make-dist: lwlib/Imakefile is removed.
6197 2002-04-26  Andrew Choi  <akochoi@shaw.ca>
6199         * configure.in: Add support for powerpc-apple-darwin*.
6200         (HAVE_CARBON): Add.
6202         * make-dist: Create directories in mac/Emacs.app.
6204 2002-04-25  Pavel Janík  <Pavel@Janik.cz>
6206         * make-dist: lwlib-Xol* are removed.
6208 2002-04-23  Andreas Schwab  <schwab@suse.de>
6210         * Makefile.in (MAINT): New variable.
6211         (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
6212         instead of configure.in, to avoid running autoconf and autoheader
6213         unless explicitly requested.
6215 2002-04-16  Eli Zaretskii  <eliz@gnu.org>
6217         * config.bat: Update for msdos/sed2v2.inp.
6219 2002-04-15  Andreas Schwab  <schwab@suse.de>
6221         * Makefile.in ($(srcdir)/src/config.in): Generate using autoheader.
6222         * configure.in: Add config header templates to all AC_DEFINE and
6223         AC_DEFINE_UNQUOTED symbols.
6224         * make-dist: Run autoheader if necessary.
6226 2002-04-10  Colin Walters  <walters@verbum.org>
6228         * configure.in: Add --game-dir, --game-user.  Test to see if we
6229         can use them.
6231 2002-04-08  Pavel Janík  <Pavel@Janik.cz>
6233         * configure.in: Add --with-sound.
6235 2002-03-18  Kim F. Storm  <storm@cua.dk>
6237         * configure.in: Test for sendto, recvfrom, getsockopt, setsockopt,
6238         and getsockname functions.  Test for sys/un.h include file.
6240 2002-03-15  Eli Zaretskii  <eliz@is.elta.co.il>
6242         * configure.in: Support AIX 5.1.
6244 2002-03-10  Jan Djärv  <jan.h.d@swipnet.se>
6246         * configure.in: Added test for X Session Management (HAVE_X_SM).
6248 2002-03-03  Richard M. Stallman  <rms@gnu.org>
6250         * Makefile.in (install-arch-indep): Use umask 022 for DOC* and lisp/.
6251         Run chown $${LOGNAME} on files installed by tar xvf.
6253 2002-03-03  Kim F. Storm  <storm@cua.dk>
6255         * configure.in: Test for getpeername.
6257 2002-03-01  Richard M. Stallman  <rms@gnu.org>
6259         * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b.
6260         (HAVE_GIF): Don't use old libungif versions that crash.
6262 2002-02-26  Richard M. Stallman  <rms@gnu.org>
6264         * configure.in <making srcdir absolute>: Verify that PWD is correct,
6265         not just well-formed and valid.
6266         (mips-compaq-nonstopux*): New configuration.
6268 2002-02-18  Paul Eggert  <eggert@twinsun.com>
6270         * make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
6271         "sed q" is a portable equivalent to plain "head -1".
6273 2002-02-13  Richard M. Stallman  <rms@gnu.org>
6275         * Makefile.in (maybe_bootstrap): Do `exit 1'.
6276         (all): Don't depend on maybe_bootstrap here.
6277         (${SUBDIR}): Depend on it here instead.
6279 2002-02-08  Richard M. Stallman  <rms@gnu.org>
6281         * Makefile.in (maybe_bootstrap): Add an infinite sleep-loop.
6283 2002-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
6285         * configure.in: Recognize BSD/OS 5.0.
6287 2002-01-11  Eli Zaretskii  <eliz@is.elta.co.il>
6289         * make-dist: Make version checking in emacs.texi consistent with
6290         how we set it there.
6292 2001-12-29  Kim F. Storm  <storm@cua.dk>
6294         * INSTALL: <CONFIGURATION BY HAND> Now requires autoconf 2.51.
6296 2001-12-28  Richard M. Stallman  <rms@gnu.org>
6298         * configure.in: Test for mbsinit.
6300 2001-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
6302         These changes make Leim part of the standard distribution:
6304         * README: Add info about the `leim' directory.
6306         * INSTALL: Remove text that describes Leim as a separate package.
6308         * noleim-Makefile.in: File removed.
6310         * make-dist: Don't copy noleim-Makefile.in to the leim subdirectory.
6311         Link Leim files to ${tempdir}/leim, not to real-leim.  Don't move
6312         Leim files out of the Emacs tree.  Don't prepare a separate tarball
6313         for Leim.
6315 2001-12-11  Richard M. Stallman  <rms@gnu.org>
6317         * configure.in (hppa*-*-linux-gnu*): New alternative.
6319 2001-12-08  Pavel Janík  <Pavel@Janik.cz>
6321         * make-dist: Copy COPYING to leim/, lwlib/, mac/ and nt/ when
6322         creating distribution.
6324 2001-12-06  Paul Eggert  <eggert@twinsun.com>
6326         * configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
6327         (AC_FUNC_VFORK): Remove.
6328         (AC_FUNC_FORK): Add.
6329         (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
6330         this is required by recent Autoconf versions.
6332 2001-12-02  Pavel Janík  <Pavel@Janik.cz>
6334         * make-dist: Do not try to link removed files (aclocal.m4, _emacs,
6335         TODO, vms-pp.trans and others).
6337 2001-11-29  Pavel Janík  <Pavel@Janik.cz>
6339         * make-dist: Use COPYING from the top-level directory.
6341 2001-11-29  Gerd Moellmann  <gerd@gnu.org>
6343         * configure.in: Add support for FreeBSD/Alpha.
6345 2001-11-29  Pavel Janík  <Pavel@Janik.cz>
6347         * make-dist: Add COPYING to the top-level directory of the
6348         distribution.  Simplify the logic behind copying.
6350         * Makefile.in (maybe_bootstrap): Fix previous change.
6352 2001-11-28  Richard M. Stallman  <rms@gnu.org>
6354         * Makefile.in (maybe_bootstrap): Don't bootstrap, just suggest it.
6356 2001-11-26  Richard M. Stallman  <rms@gnu.org>
6358         * Makefile.in: bootstrap should not delete dumped executables.
6359         (bootstrap-clean-before): New target.
6360         (bootstrap): Use bootstrap-clean-before instead of clean.
6361         (bootstrap-clean-after): Rename from bootstrap-clean.  Calls changed.
6363 2001-11-24  Eli Zaretskii  <eliz@is.elta.co.il>
6365         These changes add the Emacs Lisp Introduction manual to the
6366         distribution:
6368         * Makefile.in (install-arch-indep, uninstall): Add ELisp Intro files.
6370         * make-dist: Copy the files in lispintro directory.
6372         * config.bat: Configure in the lispintro directory.
6374         * configure.in (AC_OUTPUT): Add lispintro/Makefile.
6376         * Makefile.in (SUBDIR_MAKEFILES): Add lispintro.
6377         (lispintro/Makefile): New target.
6378         (mostlyclean, clean, distclean, maintainer-clean): Add lispintro.
6379         (unlock, relock, info, dvi): Ditto.
6381 2001-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
6383         * Makefile.in (uninstall, install-arch-indep): Don't install gfdl.1.
6385         * make-dist (etc): Don't distribute gfdl.1.
6387 2001-11-22  Colin Walters  <walters@debian.org>
6389         * Makefile.in (install-arch-indep): Install the calc .info files.
6390         (uninstall): Handle deletion of calc .info files (thanks Pavel Janík).
6392 2001-11-17  Eli Zaretskii  <eliz@is.elta.co.il>
6394         * make-dist (lispref): Add *.txt, *.el, permute-index, and
6395         tindex.pl to the list of those being put into the distribution.
6397 2001-11-16  Eli Zaretskii  <eliz@gnu.org>
6399         * configure.in: Add coff.h to the list in AC_CHECK_HEADERS.
6401 2001-11-15  Pavel Janík  <Pavel@Janik.cz>
6403         * Makefile.in (uninstall): Fix previous change.
6405         * configure.in, Makefile.in: Add support for --program-prefix,
6406         --program-suffix and --program-transform-name options.
6408 2001-11-13  Pavel Janík  <Pavel@Janik.cz>
6410         * Makefile.in (install-arch-indep): Use `${manext}' instead of `.1'.
6411         (install-arch-indep): Install emacsclient manual page.
6412         (uninstall): Uninstall emacsclient manual page.
6414 2001-11-12  Eli Zaretskii  <eliz@is.elta.co.il>
6416         * make-dist: Add lispref/index.*perm files to the distribution.
6417         From Pavel Janík <Pavel@Janik.cz>.
6419 2001-11-12  Pavel Janík  <Pavel@Janik.cz>
6421         * Makefile.in (uninstall): Remove gfdl.1 when uninstalling.
6423 2001-11-10  Eli Zaretskii  <eliz@is.elta.co.il>
6425         * configure.in: AC_OUTPUT lispref/Makefile.
6427 2001-11-10  Eli Zaretskii  <eliz@is.elta.co.il>
6429         The following changes add the ELisp reference manual to the
6430         distribution.
6432         * make-dist: Add the lispref directory to the distribution.
6434         * Makefile.in (install-arch-indep): Add elisp* to the list of
6435         installed Info files.
6436         (SUBDIR_MAKEFILES): Add lispref/Makefile.
6437         (lispref/Makefile): New target.
6438         (mostlyclean, clean, distclean, maintainer-clean, unlock, relock):
6439         Add commands for the lispref directory.
6440         (info, dvi): Ditto.
6442         * config.bat: Configure in `lispref'.
6444 2001-11-09  Richard M. Stallman  <rms@gnu.org>
6446         * Makefile.in (bootstrap-lisp): Don't suppress error messages.
6448 2001-11-07  Eli Zaretskii  <eliz@is.elta.co.il>
6450         * make-dist (tempdir): Copy AUTHORS as well.
6452 2001-11-06  Sam Steingold  <sds@gnu.org>
6454         * configure.in: Added a check for <nlist.h>.
6456 2001-11-01  Pavel Janík  <Pavel@Janik.cz>
6458         * configure.in: Reindent --help output.
6459         From Per Starbäck (starback@ling.uu.se).
6461 2001-10-31  Eli Zaretskii  <eliz@is.elta.co.il>
6463         * configure.in: New entry for HP/UX-11.
6465         * Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
6466         From Eric S. Raymond <esr@golux.thyrsus.com>.
6468 2001-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
6470         * configure.in (s390-*-linux-gnu): New system.  From Adam Thornton
6471         <athornton@sinenomine.net>.
6473 2001-10-25  Gerd Moellmann  <gerd@gnu.org>
6475         * Makefile.in (maybe_bootstrap): New target.
6476         (all): Add to prerequisites to bootstrap if abbrev.elc doesn't exist.
6478 2001-10-24  Ken Raeburn  <raeburn@gnu.org>
6480         * configure.in: If --with-hesiod is given, look for
6481         hes_getmailhost and res_send or __res_send; check hesiod and
6482         resolv libraries respectively if system libraries don't supply them.
6484 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
6486         * configure.in: Use $MAKE for `make' if set.
6488 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
6490         * Makefile.in (install-arch-indep): Add -h (follow symlinks)
6491         to tar options.
6493 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
6495         * (Version 21.1 released).
6497 2001-10-20  Miles Bader  <miles@gnu.org>
6499         * configure.in (configuration): Set from `host' if `host_alias'
6500         isn't defined.
6502 2001-10-19  Andreas Schwab  <schwab@suse.de>
6504         * configure.in: Make ready for autoconf 2.5x.
6505         (AC_PREREQ): Require autoconf 2.50.
6506         * aclocal.m4: Removed.
6507         * Makefile.in (${srcdir}/configure): Don't depend on aclocal.m4.
6509 2001-10-13  Eli Zaretskii  <eliz@is.elta.co.il>
6511         * README: Bump Emacs version to 21.1.50.
6513 2001-10-05  Gerd Moellmann  <gerd@gnu.org>
6515         * Branch for 21.1.
6517 2001-09-05  Gerd Moellmann  <gerd@gnu.org>
6519         * configure.in: Avoid `$@' which is handled specially in
6520         Autoconf 2.52.  From "Adam J. Richter" <adam@yggdrasil.com>.
6522 2001-09-01  Eli Zaretskii  <eliz@is.elta.co.il>
6524         * make-dist (nt): Add subdirs.el to the list of distributed files.
6526 2001-08-14  Eli Zaretskii  <eliz@is.elta.co.il>
6528         * configure.in (machine): Add an entry for
6529         hppa1.1-hitachi-hiuxwe2*.
6531 2001-05-28  Gerd Moellmann  <gerd@gnu.org>
6533         * make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
6534         LC_MESSAGES and LANG.  From Karl Eichwalder <keichwa@gmx.net>.
6536 2001-05-14  Gerd Moellmann  <gerd@gnu.org>
6538         * make-dist: Copy texinfo.tex unconditionally.
6540 2001-04-25  Eli Zaretskii  <eliz@is.elta.co.il>
6542         * Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
6543         that are installed.
6545 2001-04-06  Gerd Moellmann  <gerd@gnu.org>
6547         * make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
6548         Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
6550         * make-dist: Handle leim/MISC-DIC.  Only include
6551         `[a-zA-Z]*.{el,elc}' from leim/quail.
6553 2001-04-05  Gerd Moellmann  <gerd@gnu.org>
6555         * Makefile.in (install-arch-indep): Remove .cvsignore files.
6557 2001-03-30  Gerd Moellmann  <gerd@gnu.org>
6559         * Makefile.in (.PHONY): Add for bootstrap targets.
6560         (bootstrap-clean): New target.
6561         (bootstrap): Use it instead of `clean'.
6563 2001-03-29  Eli Zaretskii  <a34785@is.elta.co.il>
6565         * Makefile.in (SUBDIR): Remove leim.
6566         (all, .RECURSIVE, extraclean): Add leim explicitly.
6567         (leim): Provide separate rule which exports PARALLEL=0 into the
6568         environment.
6570 2001-03-20  Gerd Moellmann  <gerd@gnu.org>
6572         * configure.in (HAVE_XPM): Don't print the result of the check for
6573         XpmReturnAllocPixels if we don't have an xpm.h.
6575 2001-03-05  Gerd Moellmann  <gerd@gnu.org>
6577         * COPYING: New file.
6579 2001-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
6581         * config.bat: Update the copyright.
6583 2001-02-23  Kenichi Handa  <handa@etl.go.jp>
6585         * configure.in: Use AC_EGREP_CPP to check if the C preprocessor
6586         converts `..' to `. .'.  If it converts, set CPP_NEED_TRADITIONAL
6587         to `yes'.  Later in AC_OUTPUT, check this variable.
6589 2001-02-09  Dave Love  <fx@gnu.org>
6591         * AUTHORS: Updated.
6593 2001-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
6595         * info/dir (Ebrowse): Fix the entry (was missing a dot).
6597 2001-02-02  Gerd Moellmann  <gerd@gnu.org>
6599         * mkinstalldirs (errstatus): Chmod a+rx directories we create.
6601         * Makefile.in (uninstall): Ignore exit code of `rm'.
6603         * Makefile.in (uninstall): Remove more info files.  Remove
6604         ${libexecdir}/emacs/${version}.  Remove ${archlibdir}/fns-*.
6606 2001-01-31  Gerd Moellmann  <gerd@gnu.org>
6608         * noleim-Makefile.in (extraclean): Add.
6610 2001-01-28  Gerd Moellmann  <gerd@gnu.org>
6612         * Makefile.in (extraclean): Added -f to -rm config-tmp-* to keep
6613         it quiet.
6615 2001-01-24  Colin Walters  <walters@cis.ohio-state.edu>
6617         * Makefile.in (tags): Fix typo.
6619 2001-01-13  Kenichi Handa  <handa@etl.go.jp>
6621         * configure.in: Fix typo in the code setting x_search_path.
6623 2001-01-10  Dave Love  <fx@gnu.org>
6625         * configure.in: Don't reset LIBS at end of -lXmu test.  Test for
6626         -lXext.
6627         (HAVE_XKBGETKEYBOARD): Fix reporting of result.
6628         (HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
6629         (HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
6630         Don't frob CFLAGS.  Remove extra X libs from AC_CHECK_LIB
6631         (now in $LIBS).
6633 2001-01-08  Eli Zaretskii  <eliz@is.elta.co.il>
6635         * config.bat: Run the preprocessor with -traditional.
6637 2001-01-01  Eli Zaretskii  <eliz@is.elta.co.il>
6639         * INSTALL: Move copying conditions to end of file.
6641 2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
6643         * INSTALL: Add basic installation procedure which assumes
6644         `configure' does its job.  Elaborate on image support libraries.
6645         Add a pointer to Xaw3d library.  Add advice about solving
6646         configure-time problems by looking in config.log and setting
6647         variables in the environment.
6649 2000-12-27  Gerd Moellmann  <gerd@gnu.org>
6651         * Makefile.in (install-arch-indep): If tar fails, exit with
6652         exit code 1.
6654 2000-12-19  Gerd Moellmann  <gerd@gnu.org>
6656         * configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
6657         source file includes XKBlib.h.  On some broken Solaris systems,
6658         there is an XKBlib.h, reportedly, but header files included by
6659         XKBlib.h are missing.
6661 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
6663         * configure.in: AC_CHECK_FUNC XkbGetKeyboard.
6665 2000-12-11  Dave Love  <fx@gnu.org>
6667         * configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
6669 2000-12-11  Paul Eggert  <eggert@twinsun.com>
6671         * aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
6672         Merge fixes from latest GNU tar version.  These macros no longer
6673         futz with _XOPEN_SOURCE, as that was not portable in practice.
6674         (AC_FUNC_FSEEKO): New macro.
6676         * configure.in: Use it instead of invoking AC_CHECK_FUNCS on
6677         ftello.
6679 2000-12-05  Dave Love  <fx@gnu.org>
6681         * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
6683 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
6685         * info/dir: Change the category to "Emacs".
6687 2000-12-01  Gerd Moellmann  <gerd@gnu.org>
6689         * make-dist (tempdir): Remove epaths.h from the distribution
6690         instead of paths.h.
6692 2000-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
6694         * config.bat: Check for existence of djecho.exe, and print an
6695         error message if it is not available.
6697         * INSTALL: Describe possible problem with djecho.exe in old
6698         versions of DJGPP v2.x.
6700 2000-11-23  Gerd Moellmann  <gerd@gnu.org>
6702         * configure.in: Initialize HAVE_LIBXP to no.
6704 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
6706         * configure.in: Use m/macppc.h instead of the non-existent
6707         m/powerpc.h.
6709 2000-11-21  Gerd Moellmann  <gerd@gnu.org>
6711         * Makefile.in (install-arch-indep): Also install info/eshell*
6712         and info/speedbar*.
6714         * configure.in (HAVE_PNG): Check for the presence of
6715         png_get_channels to rule out older PNG libs.
6717         * configure.in (AC_OUTPUT): Arrange to emit definitions of
6718         GCC and NON_GNU_CPP into config.status.
6720 2000-11-20  Dave Love  <fx@gnu.org>
6722         * configure.in: Fix last change.
6724         * GETTING.GNU.SOFTWARE: Deleted.
6725         * FTP: New file to replace it.
6726         * make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
6728 2000-11-20  Gerd Moellmann  <gerd@gnu.org>
6730         * configure.in: Use -traditional with GNU cpp.
6732 2000-11-17  Gerd Moellmann  <gerd@gnu.org>
6734         * make-dist: Handle the Mac port.  Distribute all makefile.w32-in.
6735         Distribute more files from the nt/ subdir.  Distribute PBM
6736         image files from subdirs of lisp/.  Distribute old change logs
6737         from subdirs of lisp/.  Distribute play/5x5.el.
6739 2000-11-11  Dave Love  <fx@gnu.org>
6741         * config.sub, config.guess: Updated from master source.
6743 2000-11-07  Dave Love  <fx@gnu.org>
6745         * configure.in: Test for mkstemp.
6747 2000-11-01  Eli Zaretskii  <eliz@is.elta.co.il>
6749         * info/dir (Top): Rearrange menu items more logically, and put
6750         them into a single category.  Add menu items for RefTeX and
6751         Widget.
6753 2000-10-29  Kai Großjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6755         * Makefile.in (install-arch-indep): Use --info-dir instead of
6756         --dir-file, and a simple argument instead of --info-file, so that
6757         the Debian version of install-info also works.
6759 2000-10-19  Eric M. Ludlam  <zappo@ultranet.com>
6761         * info/dir (Speedbar): Add entry.
6763 2000-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
6765         * INSTALL: Describe the new image-support options to the configure
6766         script.  List URLs where image support libraries can be found.
6768 2000-10-14  Eli Zaretskii  <eliz@is.elta.co.il>
6770         * info/dir (Top): Add an entry for Eshell.
6772 2000-10-02  Dave Love  <fx@gnu.org>
6774         * configure.in: Check for gai_strerror.
6776 2000-10-01  Andreas Schwab  <schwab@suse.de>
6778         * Makefile.in (install-arch-indep): Update list of installed info files.
6780 2000-09-30  Gerd Moellmann  <gerd@gnu.org>
6782         * configure.in: Support `sparc*-*-netbsd*'.
6784 2000-09-29  Eli Zaretskii  <eliz@is.elta.co.il>
6786         * info/dir (MIME): Add entry for emacs-mime.
6788 2000-09-29  Dave Love  <fx@gnu.org>
6790         * configure.in: Fix alpha*-dec-osf4 using the osf5 config.
6792 2000-09-26  Gerd Moellmann  <gerd@gnu.org>
6794         * make-dist: Adapt to the change of leim/Makefile which was
6795         necessary to ensure a reasonably working `make dist'.
6797         * leim-Makefile.in: Moved to leim/Makefile.in..
6799         * noleim-Makefile.in: New file, formerly leim/Makefile.in.
6801 2000-09-21  Kenichi Handa  <handa@etl.go.jp>
6803         * leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
6804         (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
6805         (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
6806         files to .elc.
6807         (${TIT}): Adjusted for the above change.
6808         (clean mostlyclean): Likewise.
6809         (.el.elc): New target.
6811 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
6813         * make-dist: Include XPM and XBM files in lisp/ and subdirs
6814         in the distribution.
6816 2000-09-18  Gerd Moellmann  <gerd@gnu.org>
6818         * make-dist (skk): Rename to `ja-dic' because the leim directory
6819         was renamed.
6821 2000-09-14  Dave Love  <fx@gnu.org>
6823         * configure.in: Fix spurion in last change.
6825 2000-09-14  Gerd Moellmann  <gerd@gnu.org>
6827         * configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
6828         configuration files instead of REL_ALLOC_MMAP.  Set REL_ALLOC
6829         to `no' if defined.  Change result report.
6831 2000-09-08  Dave Love  <fx@gnu.org>
6833         * configure.in: Remove spurious `@'s.
6835         * aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
6836         autoconf.
6838 2000-09-06  Gerd Moellmann  <gerd@gnu.org>
6840         * configure.in (REL_ALLOC_MMAP): Recognize in system configuration
6841         file and print informational message.
6843         * configure.in (AC_FUNC_MMAP): Add.
6845 2000-09-01  Gerd Moellmann  <gerd@gnu.org>
6847         * configure.in: Add ``checking'' messages for
6848         XpmReturnAllocPixels.
6850 2000-08-28  Gerd Moellmann  <gerd@gnu.org>
6852         * configure.in: Check <strings.h>; check `index' and `rindex'
6853         functions.
6855 2000-08-26  Kenichi Handa  <handa@etl.go.jp>
6857         * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
6858         "case "${canonical}" in".
6860 2000-08-25  Dave Love  <fx@gnu.org>
6862         * configure.in <osf>: Use NON_GNU_CPP='cpp' always.
6864 2000-08-25  Kenichi Handa  <handa@etl.go.jp>
6866         * leim-Makefile.in: Rename skk to ja-dic throughout the file.
6868 2000-08-24  Gerd Moellmann  <gerd@gnu.org>
6870         * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
6871         contains a relative path.  Protect against unusable values of $PWD.
6873 2000-08-08  Eli Zaretskii  <eliz@is.elta.co.il>
6875         * info/dir (WoMan): Add entry.
6877         * config.bat (maindir): Update src/_gdbinit even if it does
6878         already exist.
6880 2000-08-07  Gerd Moellmann  <gerd@gnu.org>
6882         * Makefile.in (config.status): Prepend `$(srcdir)/' to `configure'.
6884 2000-08-03  Gerd Moellmann  <gerd@gnu.org>
6886         * configure.in: Add support for ia64*-*-linux*.
6888 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
6890         * make-dist (aclocal.m4): Include in distribution.
6892 2000-07-26  Dave Love  <fx@gnu.org>
6894         * configure.in (AC_SYS_LARGEFILE): Moved earlier.
6896 2000-07-24  Dave Love  <fx@gnu.org>
6898         * configure.in: Add AC_SIZE_T.
6900 2000-07-18  Dave Love  <fx@gnu.org>
6902         * configure.in: Reorder so that most tests are done after CPPFLAGS
6903         is set from the C_SWITCH_... definitions.
6905 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
6907         * configure.in (HAVE_XPM): Undo previous change.  Check for
6908         preprocessor define XpmReturnAllocPixels.
6910 2000-07-06  Gerd Moellmann  <gerd@gnu.org>
6912         * configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
6913         instead of XpmReadFileToPixmap.
6915 2000-07-05  Ken Raeburn  <raeburn@gnu.org>
6917         * configure.in: Check for <soundcard.h>.  Look for ossaudio
6918         library, and set LIBSOUND accordingly.
6920 2000-07-05  Dave Love  <fx@gnu.org>
6922         * configure.in: Use AC_HEADER_SYS_WAIT.
6924 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
6926         * make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
6927         lisp/Makefile.  Distribute lisp/Makefile.in instead of
6928         lisp/Makefile.
6930 2000-06-30  Ken Raeburn  <raeburn@gnu.org>
6932         * configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
6933         while searching for image-handling libraries.
6935 2000-06-26  Gerd Moellmann  <gerd@gnu.org>
6937         * configure.in (--with-xim): New option.
6939 2000-06-23  Dave Love  <fx@gnu.org>
6941         * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
6942         for struct timezone and test how we can call gettimeofday.
6943         Check for OSF 5+.  Check for term.h.
6945         * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
6946         version.
6948 2000-06-23  Gerd Moellmann  <gerd@gnu.org>
6950         * configure.in (HAVE_LIBXP): Change test for libXp.
6952 2000-06-21  Dave Love  <fx@gnu.org>
6954         * configure.in: Check for fcntl.h.  Use AC_FUNC_GETLOADAVG, not
6955         simple test for getloadavg and substitute GETLOADAVG_LIBS.
6956         Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
6958 2000-06-19  Dave Love  <fx@gnu.org>
6960         * configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
6961         _XOPEN_SOURCE is defined.
6963 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
6965         * Makefile.in (distclean): Also make distclean in lisp/.
6967 2000-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
6969         * config.bat: Generate lisp/Makefile from lisp/Makefile.in.
6971 2000-06-15  Gerd Moellmann  <gerd@gnu.org>
6973         * make-dist: Add --help and --snapshot options.
6975 2000-06-14  Gerd Moellmann  <gerd@gnu.org>
6977         * configure.in: Generate lisp/Makefile.
6979         * configure.in: Add support for `*-lynxos*'.
6980         Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
6981         recommended by <Karen.Dorhamer@compaq.com> to fix problems
6982         on Tru64 UNIX v5.0.
6984 2000-06-13  Ken Raeburn  <raeburn@gnu.org>
6986         * Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
6987         it's on a continuation line.
6989 2000-06-02  Dave Love  <fx@gnu.org>
6991         * Makefile.in (install-arch-indep): Add pcl-cvs to list of info
6992         files.
6994         * configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
6995         Check for struct exception.  Use AC_SYS_LARGEFILE and move ftello
6996         test.
6998         * aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
6999         (AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
7001 2000-05-26  Gerd Moellmann  <gerd@gnu.org>
7003         * configure.in: Add check for speed_t typedef.
7005 2000-05-25  Ken Raeburn  <raeburn@gnu.org>
7007         * Makefile.in (install-arch-dep): Install fns-*.el only if it
7008         exists; it won't in the CANNOT_DUMP case.
7010 2000-05-25  Gerd Moellmann  <gerd@gnu.org>
7012         * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
7013         On FreeBSD, the exit status is 1 if CDPATH is not set.
7014         (install-arch-indep): Install ebrowse.info.
7016 2000-05-20  NIIBE Yutaka  <gniibe@mri.co.jp>
7018         * configure.in: Check for grandpt and getpt.
7020 2000-05-09  Dave Love  <fx@gnu.org>
7022         * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
7024 2000-05-05  Gerd Moellmann  <gerd@gnu.org>
7026         * make-dist: Make a link for lib-src/grep-changelog.
7027         Copy install-sh.
7029 2000-05-01  Eli Zaretskii  <eliz@is.elta.co.il>
7031         * config.bat: Identify the beginning of the cpp stuff in
7032         src/Makefile.in and lib-src/Makefile.in more accurately.
7034 2000-04-27  Gerd Moellmann  <gerd@gnu.org>
7036         * configure.in: Add support for `powerpc*-*-linux-gnu*'.
7038 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
7040         * configure.in: Add support for `powerpc-*-netbsd*'.
7042 2000-04-19  Dave Love  <fx@gnu.org>
7044         * configure.in: Don't use AC_FUNC_GETLOADAVG.
7046         * aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
7048 2000-04-16  Dave Love  <fx@gnu.org>
7050         * Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
7052 2000-04-14  Dave Love  <fx@gnu.org>
7054         * configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
7056         * aclocal.m4 (AC_FUNC_MKTIME): New.
7058 2000-03-28  Ken Raeburn  <raeburn@gnu.org>
7060         * configure.in: Line up "--help" output a little better.
7062 2000-03-26  Gerd Moellmann  <gerd@gnu.org>
7064         * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
7065         New targets.
7066         (bootstrap): Rewritten in terms of the new targets above.  Make
7067         info files, too.
7069 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
7071         * config.guess, config.sub: Use the versions of the files from
7072         subversions.
7074 2000-03-08  Dave Love  <fx@gnu.org>
7076         * configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
7077         AC_C_VOLATILE.  Define POINTER_TYPE.
7079         * aclocal.m4: New file.
7081 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
7083         * configure.in (machine): Add `mipsel-*-netbsd*' and
7084         `arm-*-netbsd*'.
7086 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
7088         * configure.in (machine): Add support for `*-auspex-sunos*'.
7090 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
7092         * configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
7094 2000-02-18  Dave Love  <fx@gnu.org>
7096         * configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
7098 2000-02-18  Andreas Schwab  <schwab@suse.de>
7100         * Makefile.in (install-arch-indep): Add eudc to list of installed
7101         info files.
7103 2000-02-17  Ken Raeburn  <raeburn@gnu.org>
7105         * configure.in: Include -lz and -ljpeg (if it's available) when
7106         testing for the tiff library.
7108 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
7110         * configure.in: Remove LISP_FLOAT_TYPE.
7112 2000-02-12  Dave Love  <fx@gnu.org>
7114         * configure.in: Use AC_FUNC_VFORK.
7116 2000-02-01  Gerd Moellmann  <gerd@gnu.org>
7118         * make-dist: Various fixes for new development tree.
7120         * leim-Makefile.in: New file.
7122 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
7124         * Makefile.in (dist): Call ./make-dist.
7126 2000-01-24  Dave Love  <fx@gnu.org>
7128         * configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
7130 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
7132         * configure.in (HAVE_GIF): Check for DGifOpen instead of
7133         DGifOpenFileName.
7135 2000-01-11  Andreas Schwab  <schwab@suse.de>
7137         * Makefile.in (install-arch-indep): Update list of info files to
7138         be installed.
7140 2000-01-05  Dave Love  <fx@gnu.org>
7142         * configure.in: Check for jerror.h as well as libjpeg.
7144 2000-01-03  Andreas Schwab  <schwab@suse.de>
7146         * Makefile.in (install-arch-indep): Install autotype*.  Run
7147         install-info on autotype and emacs-faq.info.
7149 1999-12-04  Dave Love  <fx@gnu.org>
7151         * Makefile.in (install-arch-indep): Depend on `info'.
7152         (install-strip): Use `install' as sub-make target.
7154 1999-11-23  Ken Raeburn  <raeburn@gnu.org>
7156         * configure.in: Restore Kerberos code deleted on 1999-05-29 that
7157         didn't need to be deleted.  Check for the k5crypto library as well
7158         as the crypto library; MIT Kerberos 1.1 changed the name.
7160 1999-11-18  Dave Love  <fx@gnu.org>
7162         * configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
7164 1999-11-11  Erik Naggum  <erik@naggum.no>
7166         * configure.in (bitmapdir): Allow for both "bitmaps" directories.
7168 1999-11-08  Dave Love  <fx@gnu.org>
7170         * configure.in: Fix change for --with-pop default.
7172 1999-11-04  Dave Love  <fx@gnu.org>
7174         * configure.in: Default to --with-pop.  Change sense of with-gcc
7175         and with-toolkit-scroll-bars messages to reflect the defaults.
7177 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
7179         * INSTALL: Mention the Emacs Lisp Reference.
7181 1999-10-27  Noah Friedman  <friedman@splode.com>
7183         * configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
7185 1999-10-23  Gerd Moellmann  <gerd@gnu.org>
7187         * Makefile.in (bootstrap): New target.
7189 1999-10-19  Paul Eggert  <eggert@twinsun.com>
7191         Add support for large files.  Merge glibc 2.1.2.
7193         * configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
7194         (HAVE_TM_GMTOFF): New symbol.
7195         (AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
7196         mbrlen, strsignal.
7197         (LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
7199 1999-10-09  Stefan Monnier  <monnier@cs.yale.edu>
7201         * make-dist (dontcompile): Look for the DONTCOMPILE variable rather
7202         than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
7204 1999-10-09  Richard M. Stallman  <rms@gnu.org>
7206         * Makefile.in (uninstall, install-arch-indep, install-arch-dep):
7207         Unset CDPATH to prevent cd from generating output.
7209 1999-10-08  Stefan Monnier  <monnier@cs.yale.edu>
7211         * update-subdirs: Also ignore CVS subdirs.
7213 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
7215         * Makefile.in (install-arch-indep): Add ada-mode.
7217 1999-10-06  Dave Love  <fx@gnu.org>
7219         * Makefile.in: Add rules for config.status, configure.
7221 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
7223         * configure.in (--with-sound): Removed.
7225 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
7227         * configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
7228         the test for Xaw3d.
7229         (HAVE_TIFF): Add -lm to library check.
7231 1999-08-28  Richard Stallman  <rms@gnu.org>
7233         * configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
7234         -lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
7235         after the other X-related libraries.
7237 1999-08-21  Dave Love  <fx@gnu.org>
7239         * configure.in: Don't check for jpeglib.h.
7241 1999-08-20  Gerd Moellmann  <gerd@gnu.org>
7243         * configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
7244         (HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
7246 1999-08-18  Dave Love  <fx@gnu.org>
7248         * configure.in: Check for termcap.h.
7250 1999-08-15  Gerd Moellmann  <gerd@gnu.org>
7252         * configure.in: Add --with-toolkit-scroll-bars.  If "no",
7253         use Emacs' scroll bars, even if configured for Motif or when
7254         Xaw3d is available.
7256 1999-08-12  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
7258         * configure.in: Check for getaddrinfo.
7260 1999-08-04  Eli Zaretskii  <eliz@gnu.org>
7262         * config.bat: Make --no-debug work again by removing -gcoff.
7264 1999-07-30  Dave Love  <fx@gnu.org>
7266         * configure.in: Check for stdlib.h.
7268 1999-07-19  Dave Love  <fx@gnu.org>
7270         * configure.in: Grok sparc64-*-linux-gnu*.
7272 1999-07-12  Richard Stallman  <rms@gnu.org>
7274         * Version 20.4 released.
7276 1999-06-23  Karl Heuer  <kwzh@gnu.org>
7278         * make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
7279         Quote $EMACS, in case it's a program with args.
7281 1999-06-15  Gerd Moellmann  <gerd@gnu.org>
7283         * configure.in (HAVE_GIF): Use libungif instead of libgif
7284         because the former doesn't contain patented compression code.
7286 1999-05-29  Richard M. Stallman  <rms@gnu.org>
7288         * configure.in: Delete the Kerberos stuff.
7290 1999-05-27  Greg Hudson  <ghudson@mit.edu>
7292         * configure.in: Prefer kerberos 5 names.
7294 1999-04-26  Richard M. Stallman  <rms@gnu.org>
7296         * configure.in: Check for libXp.
7298 1999-04-08  Richard Stallman  <rms@gnu.org>
7300         * make-dist: Include change logs in subdirs of `lisp'.
7302 1999-04-05  Richard Stallman  <rms@gnu.org>
7304         * Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
7305         (install-arch-indep): Make ${datadir}/emacs world-readable.
7307 1999-03-30  Eli Zaretskii  <eliz@gnu.org>
7309         * config.bat: Use epaths.* instead of paths.*.
7311 1999-03-07  Eli Zaretskii  <eliz@gnu.org>
7313         * INSTALL: Add detailed instructions to unpack and install
7314         intlfonts on MS-DOS.
7316 1999-02-26  Richard Stallman  <rms@gnu.org>
7318         * configure.in: Use epaths.h and epaths-force instead of paths...
7320         * Makefile.in (epaths-force): Renamed from paths-force;
7321         operate on epaths.in and produce epaths.h.
7323 1999-02-24  Richard Stallman  <rms@gnu.org>
7325         * make-dist: Fix nt/icons directory handling.
7327 1999-02-22  Simon Josefsson  <jas@pdc.kth.se>
7329         * configure.in (f301-fujitsu-uxpv4.1): New target.
7331 1999-02-20  Richard Stallman  <rms@gnu.org>
7333         * make-dist (tempparent): Fix command to update info files.
7335 1999-02-09  Richard Stallman  <rms@gnu.org>
7337         * configure.in (powerpc-apple-netbsd*): New alternative.
7339 1999-01-25  Geoff Voelker  <voelker@cs.washington.edu>
7341         * make-dist: Include the new directory nt/icons in distributions.
7343 1999-01-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
7345         * configure.in: Change message about HAVE_XFREE386.
7347 1999-01-07  Eli Zaretskii  <eliz@gnu.org>
7349         * config.bat: Support configuring with leim.
7351 1998-12-16  Petri Kaurinkoski  <Petri.Kaurinkoski@hut.fi>
7353         * configure.in (mips-sgi-irix6.5): New target.
7355 1998-12-16  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
7357         * configure.in: Remove GSS-API support, since it has been removed
7358         from movemail.
7360 1998-12-04  Markus Rost  <rost@delysid.gnu.org>
7362         * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
7364 1998-12-04  Andreas Schwab  <schwab@delysid.gnu.org>
7366         * Makefile.in: Don't install customize info file.
7367         Run install-info on viper info file.
7369 1998-11-29  Richard Stallman  <rms@psilocin.ai.mit.edu>
7371         * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
7373 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
7375         * configure.in (*-*-bsdi4*): New target.
7377 1998-11-13  Ehud Karni  <ehud@unix.simonwiesel.co.il>
7379         * configure.in: Fix previous change.
7381 1998-11-11  Richard Stallman  <rms@gnu.org>
7383         * configure.in (aviion-intel): New machine.
7385 1998-11-04  Kenichi Handa  <handa@etl.go.jp>
7387         * configure.in (mips-nec-sysv4*): New target.
7389 1998-11-03  Andreas Schwab  <schwab@delysid.gnu.org>
7391         * Makefile.in (install-arch-dep): Fix last change and use fns-*.el
7392         from lisp.
7394 1998-10-31  Richard Stallman  <rms@psilocin.ai.mit.edu>
7396         * make-dist: Don't include fns*.el in dist.
7398 1998-10-30  Dave Love  <fx@gnu.org>
7400         * configure.in: Don't mkdir cpp.
7402 1998-10-30  Andreas Schwab  <schwab@delysid.gnu.org>
7404         * Makefile.in (install-arch-dep): Install src/fns-*.el in
7405         ${archlibdir}.
7407 1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
7409         * Version 20.3 released.
7411 1998-07-30  Paul Eggert  <eggert@twinsun.com>
7413         * Makefile.in (Makefile, src/Makefile, src/config.stamp)
7414         (lib-src/Makefile, man/Makefile, oldXMenu/Makefile)
7415         (lwlib/Makefile, leim/Makefile):
7416         Prepend $(srcdir)/ to rule dependencies outside this dir.
7418 1998-06-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
7420         * configure.in: Use unset CDPATH instead of making it empty.
7422 1998-06-20  Karl Heuer  <kwzh@gnu.org>
7424         * configure.in: Assume unspecified Solaris is 2.5, not 2.4.
7426 1998-06-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
7428         * make-dist (MANIFEST): Include most subdirs, but exclude subdirs.el
7429         and default.el.  Sort the results.
7431 1998-05-31  Karl Heuer  <kwzh@gnu.org>
7433         * Makefile.in (install-arch-indep): Don't die if site-lisp/ isn't
7434         writable.
7436 1998-05-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
7438         * Makefile.in (install-arch-indep):
7439         Don't alter site-lisp/subdirs.el if it exists.
7441 1998-05-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
7443         * Makefile.in (install-arch-indep): Put `-' on commands to create
7444         subdirs.el in site-lisp dirs.
7446 1998-05-07  Richard Stallman  <rms@psilocin.gnu.org>
7448         * Makefile.in (install-arch-indep): Fix typo in previous change.
7450 1998-05-06  Richard Stallman  <rms@psilocin.gnu.org>
7452         * Makefile.in (install-arch-indep): Pass --dir-file to install-info.
7454 1998-04-28  Richard Stallman  <rms@psilocin.gnu.org>
7456         * Makefile.in (mkdir): Create the site-lisp dirs.
7457         (install-arch-indep): Make site-lisp/subdirs files world-readable.
7459 1998-04-26  Richard Stallman  <rms@psilocin.gnu.org>
7461         * Makefile.in (INSTALL_INFO): New variable.
7462         (install-arch-indep): Don't replace the dir file if it already exists.
7463         Use the install-info program, via INSTALL_INFO, to add entries.
7464         Make the `info' subdir and the Info files world-readable.
7466 1998-04-16  Eli Zaretskii  <eliz@delysid.gnu.org>
7468         * config.bat: Make sure the environment is large enough to support
7469         all the "set foo=bar" commands.  Update pointers to DJGPP FTP sites.
7471 1998-04-10  Karl Heuer  <kwzh@gnu.org>
7473         * make-dist: Don't accept EMACS=t when testing for $EMACS set.
7475 1998-04-06  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
7477         * configure.in: Add --with-gssapi to specify GSS-API
7478         authentication support for movemail.
7480 1998-04-02  Richard Stallman  <rms@psilocin.ai.mit.edu>
7482         * Makefile.in (install-arch-indep): Fix previous change.
7484 1998-03-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
7486         * Makefile.in (info): Run man in build dir, not srcdir.
7488 1998-03-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
7490         * Makefile.in (install-arch-indep): Fix previous change.
7492 1998-03-23  Kenichi Handa  <handa@etl.go.jp>
7494         * Makefile.in (top_distclean): Check the existence of `lock' subdir.
7496 1998-03-22  Richard Stallman  <rms@gnu.org>
7498         * Makefile.in (install-arch-indep): Put special subdirs.el files
7499         in site-lisp dirs.  Use normal-top-level-add-subdirs-to-load-path.
7501 1998-03-21  Richard Stallman  <rms@psilocin.gnu.org>
7503         * make-dist: Fix shell syntax in check for missing .el or .elc files.
7505 1998-03-09  Richard Stallman  <rms@psilocin.gnu.org>
7507         * configure.in (hppa-hp-hpux1[0-9]*): Handle versions 1X like 10.
7508         (m68*-hp-hpux*): Handle versions 1X like 10.
7510 1998-03-07  Richard Stallman  <rms@psilocin.gnu.org>
7512         * make-dist: PROBLEMS is now in etc, not top level dir.
7514         * Makefile.in (SOURCES): Delete PROBLEMS.
7516 1998-02-25  Richard Stallman  <rms@gnu.org>
7518         * configure.in (hppa*-hp-hpux*): Use hpux10 by default.
7520         * Makefile.in (install-arch-indep): Do chmod a+x on subdirs.
7522 1998-01-17  Richard Stallman  <rms@gnu.org>
7524         * Makefile.in (install-arch-indep): Add semicolon before `else'.
7526 1998-01-02  Richard Stallman  <rms@psilocin.gnu.org>
7528         * make-dist (tempparent): New option --no-check.
7530         * make-dist: Don't do anything with cpp directory.
7532 1997-12-20  Richard Stallman  <rms@psilocin.gnu.org>
7534         * configure.in (sparc-fujitsu-sysv4*): New target.
7536 1997-12-17  Andreas Schwab  <schwab@gnu.org>
7538         * configure.in: Cache more tests.  Add missing quotes around
7539         message with embedded comma.
7541 1997-12-04  Karl Heuer  <kwzh@gnu.org>
7543         * Makefile.in (unlock, relock): Don't reference cpp/ directory.
7545 1997-11-26  Joel N. Weber II  <devnull@gnu.org>
7547         * make-dist: Changed the comment about `umask 0' to say `Don't
7548         restrict access to any files.'; previously it said `Don't protect
7549         any files', which may have implied that we think fascism is good.
7551 1997-11-24  Paul Eggert  <eggert@twinsun.com>
7553         * configure.in (AC_CHECK_FUNCS): Add strftime.  The new GNU C library
7554         strftime needs the underlying host's strftime for locale dependent
7555         formats.
7557 1997-11-20  Abraham Nahum  <miko@uxsrvc.tti.co.il>
7559         * configure.in (i586-dg-dguxR4.*): New name in case branch.
7561 1997-11-20  Eli Zaretskii  <eliz@is.elta.co.il>
7563         * config.bat: Configure the man subdirectory.
7565 1997-11-07  Paul Eggert  <eggert@twinsun.com>
7567         * configure.in (AC_CHECK_LIB): Add -lintl.
7569 1997-11-07  Karl Heuer  <kwzh@gnu.org>
7571         * make-dist (check for .elc files): Avoid bash-specific syntax.
7572         (check for overflow 14-char limit): Simplify.
7574 1997-11-07  Richard Stallman  <rms@gnu.org>
7576         * Makefile.in (install): Move blessmail last.
7578 1997-10-02  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7580         * configure.in (gettimeofday, one arg or two):
7581         Clarify messages by avoiding double negative.
7583 1997-09-30  Karl Eichwalder  <ke@suse.de>
7585         * Makefile.in (install-arch-indep): Install the widget info file.
7587 1997-09-24  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
7589         * configure.in (with-pop, with-kerberos): Need to check Kerberos
7590         libraries in reverse order, so that libraries will appear in the
7591         correct dependency order on the link line (and so that the
7592         configure checks themselves will work properly when early
7593         libraries depend on later ones).
7595 1997-09-21  Erik Naggum  <erik@naggum.no>
7597         * make-dist (making links to `src'): Keep timestamp on copied files.
7599         * make-delta: New script to produce delta distributions.
7601 1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7603         * Version 20.2 released.
7605 1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7607         * Version 20.1 released.
7609         * Makefile.in (install-leim): Depend on mkdir.
7610         (leim): Depend on src.
7612 1997-09-13  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7614         * configure.in: Recognize alpha* instead of just alpha.
7616 1997-09-12  Paul Eggert  <eggert@twinsun.com>
7618         * leim-Makefile.in (mostlyclean, maintainer-clean): New targets.
7620 1997-09-12  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7622         * update-subdirs: Use rm -f.
7624 1997-09-08  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7626         * update-subdirs: Delete subdirs.el if this dir has no subdirs.
7627         Ignore subdirs named Old.
7629 1997-08-04  Kenneth Stailey  <kstailey@elbereth.disclosure.com>
7631         * configure.in: Add OpenBSD clause to set $machine.
7633 1997-09-04  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7635         * make-dist: Recompile everything after updating various Lisp files.
7636         Recompile in leim as well as lisp.
7637         Check in leim as well as lisp for mismatched files and too-long names.
7639 1997-09-03  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7641         * Makefile.in (TAGS tags): Simply refer this to the src subdir.
7643 1997-08-30  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7645         * Makefile.in (install-arch-indep): Verify ./lisp has simple.el in it
7646         before trying to copy anything from it.
7648 1997-08-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7650         * Makefile.in (man/Makefile): New target.
7651         (tags): Define env var EMACS and run Makefile from build dir.
7653 1997-08-27  Eli Zaretskii  <eliz@psilocin.gnu.ai.mit.edu>
7655         * config.bat: If src/_gdbinit doesn't exist, try using
7656         src/.gdbinit to create it (for building on Windows 95).
7658 1997-08-25  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7660         * Makefile.in (install-arch-indep):
7661         Discard extra data in tar | tar pipes.
7663 1997-08-24  NIIBE Yutaka  <gniibe@mri.co.jp>
7665         * configure.in (x_default_search_path): Corrected
7666         '${x_library}' to '${x_library}/X11'.
7668 1997-08-22  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7670         * configure.in (HAVE_MOTIF_2_1): Test for Motif 2.1.
7672 1997-08-22  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
7674         * configure.in: Support auto-configuration of both Kerberos V4 and
7675         Kerberos V5 for movemail, including detection of V4 and V5 header
7676         files and libraries.
7678 1997-08-16  NIIBE Yutaka  <gniibe@etl.go.jp>
7680         * configure.in: Compute x_default_search_path
7681         and substitute into makefiles.
7683         * Makefile.in (paths-force): Store PATH_X_DEFAULTS in paths.h.
7685 1997-08-08  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7687         * Makefile.in (install-arch-indep): Run list-load-path-shadows.
7689 1997-08-07  Erik Naggum  <erik@naggum.no>
7691         * configure.in: Remove lockdir, it is no longer needed.
7692         * Makefile.in (mkdir): Don't create lockdir.
7693         (lockdir): Variable deleted.
7694         (paths-force): Don't operate on PATH_LOCK.
7696 1997-08-06  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7698         * leim-Makefile.in (clean, distclean): New targets.
7700         * make-dist: Include leim/ChangeLog in leim distribution.
7702 1997-08-01  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7704         * configure.in (i*86-*-sysv4.2uw*): Set NON_GNU_CPP.
7706 1997-07-30  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7708         * Makefile.in (CPPFLAGS): Get this from configure, like CFLAGS.
7710 1997-07-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7712         * Makefile.in (LDFLAGS): Get this from configure, like CFLAGS.
7714 1997-07-25  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7716         * make-dist: Update leim/leim-list.el.
7717         Pass along value of $EMACS when updating lisp dir.
7719 1997-07-25  Marcus G. Daniels  <marcus@cathcart.sysc.pdx.edu>
7721         * configure.in (doug_lea_malloc): Make __after_morecore_hook a
7722         prerequisite to the use of Doug Lea's malloc.
7724 1997-07-21  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7726         * Makefile.in (top_distclean): Use -f to delete contents of lock dir.
7728         * make-dist: Use name leim/SKK-DIC, not leim/SKK.
7730 1997-07-16  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7732         * make-dist: Arrange for the leim tar file to unpack in emacs-M.N/leim.
7734 1997-07-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7736         * configure.in (mips-sony-newsos6*): File news-risc.h renamed
7737         to news-r6.h.
7739 1997-07-10  Eli Zaretskii  <eliz@is.elta.co.il>
7741         * config.bat: Use `sed' instead of `cp', which might not be
7742         installed.
7744 1997-07-09  Kenichi Handa  <handa@etl.go.jp>
7746         * Makefile.in (mostlyclean): Add cleaning leim directory.
7747         (clean, distclean, maintainer-clean): Likewise.
7749 1997-07-09  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7751         * make-dist (bogosities): Check subdirs of `lisp' also.
7753 1997-07-08  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7755         * make-dist (etc): Really avoid symlinks now.
7756         (lisp): Don't delete from subdirs the things we never copy.
7758 1997-07-07  Kenichi Handa  <handa@psilocin.gnu.ai.mit.edu>
7760         * Makefile.in (install-arch-indep): Correct the target name.
7761         The first letter `i' was dropped by the previous change of mine.
7763 1997-07-06  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7765         * configure.in (leim/Makefile): Generate this.
7766         (*-sysv4.2uw*): Recognize new alternative.
7768         * leim-Makefile.in: Renamed from leim-Makefile.
7770         * make-dist: Set up real-leim subdirectory,
7771         with the real contents of leim; then move it to
7772         a separate top-level directory.
7774         * make-dist: Don't mention site-lisp, site-init, site-start
7775         or default, when listing files hat are not compiled and should be.
7777         * configure.in: Create src/config.stamp at the end.
7779 1997-07-04  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7781         * Makefile.in (install-leim): Correct previous change.
7783 1997-07-02  Kenichi Handa  <handa@psilocin.gnu.ai.mit.edu>
7785         * Makefile.in (install-leim): New target.
7786         (install): Depend on install-leim.
7788 1997-07-01  Kenichi Handa  <handa@psilocin.gnu.ai.mit.edu>
7790         * Makefile.in (SUBDIR): Add leim.
7791         (SUBDIR_MAKEFILES): Add leim/Makefile.
7792         (leim/Makefile): New target.
7794 1997-07-01  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7796         * leim-Makefile: New file.
7797         * make-dist: Initialize a `leim' subdirectory with that makefile.
7799 1997-06-29  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7801         * configure.in (GNU_MALLOC_reason): Fix message text.
7803 1997-06-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7805         * make-dist (lisp): Don't process subdirs that start with =.
7806         (etc): Copy symlinks, as in src.
7808 1997-06-26  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7810         * configure.in (i*86-*-unixware*): New alternative.
7812 1997-06-22  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7814         * Makefile.in (src/config.stamp): Target renamed from src/config.h
7815         and touch it explicitly.
7817         * configure.in (mips-sony-newsos6*): New alternative.
7818         (mips-*-linux-gnu*): New alternative.
7819         (*-*-bsdi*): New alternative.
7820         (i*86-*-bsd386, i*86-*-bsdi...): Delete old alternatives.
7822 1997-06-22  Dave Love  <d.love@dl.ac.uk>
7824         * Makefile.in (lib-src): Depend on src/config.h (e.g. for movemail.o).
7825         (src/config.h): New target to re-configure if src/config.in is patched.
7827 1997-06-18  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7829         * configure.in (shutdown): Check for `shutdown' function.
7831 1997-06-18  Kenichi Handa  <handa@psilocin.gnu.ai.mit.edu>
7833         * update-subdirs: Include the directory "language" in subdirs.
7835 1997-06-01  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7837         * configure.in (m88k-dg-dgux4*): New alternative.
7838         (alpha-*-netbsd*): New alternative.
7839         (powerpcle-*-solaris2*): New alternative.
7841 1997-05-20  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7843         * make-dist: Warn about .el files that are not compiled.
7845 1997-05-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7847         * Makefile.in (dist): Don't run update-subdirs here,
7848         since make-dist now gets that done.
7850         * make-dist: Use the new `updates' target in lisp/Makefile.
7852         * make-dist: Use new non-file targets in lisp/Makefile.
7854 1997-04-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7856         * make-dist: Handle all subdirs of `lisp' uniformly.
7857         Don't handle `term' and `language' specially.
7858         Clear out umask at the beginning.
7860 1997-04-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7862         * make-dist: Use Make to update finder-inf.el and autoloads.
7863         Also update cus-load.el.
7865 1997-04-09  Marcus G. Daniels  <marcus@cathcart.sysc.pdx.edu>
7867         * configure.in (doug_lea_malloc): First check for SYSTEM_MALLOC,
7868         in case it is desirable to disable the GNU malloc features with glibc.
7870 1997-04-08  Marcus G. Daniels  <marcus@cathcart.sysc.pdx.edu>
7872         * configure.in (DOUG_LEA_MALLOC):
7873         Define if malloc_{get,set}_state exist.
7875 1997-03-05  Kenichi Handa  <handa@etl.go.jp>
7877         * make-dist: Make links for files under lisp/language.
7879 1997-02-20  Kenichi Handa  <handa@etl.go.jp>
7881         * update-subdirs: Exclude the directory "language" from subdirs.
7883 1997-01-26  Karl Heuer  <kwzh@gnu.ai.mit.edu>
7885         * configure.in: Check for rint and cbrt.
7887 1997-01-01  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7889         * make-dist: Use $EMACS to say where to run Emacs.
7890         Add --no-update option.
7892 1996-12-30  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7894         * configure.in (hppa1.1-hitachi-hiuxmpp): New configuration.
7896 1996-12-28  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7898         * make-dist (copying src): Check thoroughly for symlinks
7899         and copy them in all cases.  Regularize the linking of *.in
7900         and *.opt and ChangeLog files.
7901         (copying lib-src): Likewise.
7902         Don't rm getdate.c or y.tab.*--they don't exist any more.
7904 1996-12-18  Jonathan I. Kamens  <jik@annex-1-slip-jik.cam.ov.com>
7906         * configure.in: Check for libmail, maillock.h and
7907         touchlock (for movemail).
7909 1996-12-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7911         * configure.in (limits.h): Check for this file.
7913 1996-12-08  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7915         * configure.in (rs6000-ibm-aix4.2): New alternative.
7916         (rs6000-ibm-aix4.0): New alternative.
7917         (rs6000-ibm-aix4*): Assume aix 4.1 by default.
7919 1996-11-22  Ben Harris  <bjh21@cam.ac.uk>
7921         * configure.in: Recognize vax-*-netbsd*.
7923 1996-11-06  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7925         * configure.in (locallisppath): Add leim directory.
7927 1996-10-31  Eli Zaretskii  <eliz@is.elta.co.il>
7929         * config.bat: Make sure `mv' supports forward slashes and -f.
7931 1996-10-28  Christian Limpach  <chris@nice.ch>
7933         * configure.in (hppa*-next-nextstep*): * added after hppa
7934         to accept hppa1.0 and hppa1.1.
7936 1996-10-05  Marcus G. Daniels  <marcus@coulee.tdb.com>
7938         * configure.in: Provide an empty default for LD_SWITCH_X_SITE_AUX.
7939         * configure.in (ld_switch_machine): Fix typo.
7941 1996-09-28  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7943         * configure.in: Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
7944         from config.h and use them in $ac_link.
7946 1996-09-28  Erik Naggum  <erik@psilocin.gnu.ai.mit.edu>
7948         * configure.in: Create a subdir named `lisp'.
7950 1996-09-24  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7952         * configure.in: Check for getcwd.
7954 1996-09-04  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7956         * configure.in: Check for termios.h.  Check for setpgid.
7958 1996-08-31  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7960         * configure.in: Check for setrlimit.
7962 1996-08-31  Paul Eggert  <eggert@twinsun.com>
7964         * configure.in: Check for sys/systeminfo.h, getdomainname, sysinfo.
7966 1996-08-28  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7968         * configure.in: Check for utimes.
7970         * configure.in: Check for com_err library, but only
7971         if --with-kerberos was used.  Check for krb and des
7972         only if --with-kerberos.
7974 1996-08-26  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7976         * Makefile.in (INSTALL_STRIP): New variable.
7977         (install-strip): Set INSTALL_STRIP, not INSTALL_PROGRAM.
7978         (install-arch-dep): Use INSTALL_STRIP, and pass it to lib-src.
7980 1996-08-25  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7982         * configure.in: Check for krb and des libraries.
7984 1996-08-24  Richard Stallman  <rms@ethanol.gnu.ai.mit.edu>
7986         * configure.in (*-sunos4.1.[3-9]*noshare):
7987         Use sunos413, not sunos4-1-3.
7988         (m88k-dg-dgux5.4R3*): Use dgux5-4-3, not dgux5-4r3.
7989         (arm-acorn-riscix1.2*): Use riscix12, not riscix1-2.
7991 1996-08-22  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
7993         * Makefile.in (src/paths.h): Target deleted.
7994         (paths-force): Delete all dependencies on this target
7995         but don't delete the target.
7996         (install): Depend on `all'.
7997         (paths-force): Don't print a message.
7999         * configure.in: Generate src/paths.h here.
8001 1996-08-18  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8003         * configure.in (NON_GCC_LINK_TEST_OPTIONS, GCC_LINK_TEST_OPTIONS):
8004         New variables that affect linking only.
8005         (alpha-dec-osf*): Use those instead of previous change.
8007 1996-08-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8009         * Makefile.in (install-arch-indep): Install info/messages.
8011 1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8013         * Version 19.33 released.
8015 1996-08-10  Marcus G. Daniels  <marcus@sayre.sysc.pdx.edu>
8017         * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
8018         Fix previous change.
8020 1996-08-08  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8022         * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
8023         New alternative.
8025 1996-08-07  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8027         * configure.in (alpha-dec-osf*): Specify GCC_TEST_OPTIONS
8028         and NON_GCC_TEST_OPTIONS.
8030 1996-08-06  Paul Eggert  <eggert@twinsun.com>
8032         * configure.in (LOCALTIME_CACHE): Don't put a string literal
8033         "TZ=..." in environ.
8035 1996-08-04  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8037         * make-dist (msdos): Add is_exec.c, sigaction.c to distribution.
8039 1996-08-03  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8041         * configure.in (*-sunos4.1.[3-9]*noshare): Move this before
8042         the more general *-sunos4.1.[3-9]* clause.
8044 1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8046         * Version 19.32 released.
8048         * configure.in (*-sco3.2v5*):
8049         Set OVERRIDE_CPPFLAG to a string of one space.
8050         Fix the code that uses OVERRIDE_CPPFLAG.
8052 1996-07-16  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8054         * configure.in: Undo previous change.
8056 1996-07-16  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8058         * config.sub: Use `pc', not `unknown', when canonicalizing
8059         the vendor for ...86.
8061 1996-07-15  David Mosberger-Tang  <davidm@AZStarNet.com>
8063         * configure.in: Check for termios.h header.
8065 1996-07-11  Bill Mann  <dvmann@dvncr.praxisint.com>
8067         * configure.in: Use s/usg5-4-3.h for ncr-i[3456]86-sysv4.3.
8069 1996-07-07  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8071         * configure.in: Split bsdos2 and bsdos2-1.
8073 1996-07-06  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8075         * config.sub: If last two words are not a recognized
8076         KERNEL-OS pair, use just the last word as OS, as in 19.31.
8077         Make conversion of gnu/linux to linux-gnu really work.
8079         * config.sub: If vendor unspecified with i386, use `pc' not `unknown'.
8081 1996-06-30  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8083         * configure.in (check for using Lucid widgets by default):
8084         Eliminate indentation that confuses some compilers.
8086 1996-06-29  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8088         * config.sub: Convert linux and gnu/linux to linux-gnu.
8090         * make-dist: Don't update getdate.c.
8091         Ignore =... files when checking for too-long Lisp file names.
8093 1996-06-28  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8095         * configure.in (euidaccess): Check for that, not for eaccess.
8097 1996-06-27  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8099         * configure.in (sunos4.1.[3-9]*noshare): Eliminate dash from
8100         before `noshare'.
8101         (mips-sgi-irix6*): Specify NON_GCC_TEST_OPTIONS.
8103 1996-06-21  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8105         * configure.in: Rename lignux to linux-gnu in configuration names.
8106         Use gnu-linux as the opsys value (s/ file name).
8107         Allow i686 just like i386, i486, i586.
8109 1996-06-20  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8111         * configure.in (i*86-*-sco3.2v5): New alternative.
8112         (OVERRIDE_CPPFLAG): New variable.
8113         (CPPFLAGS): If OVERRIDE_CPPFLAG is set, use that.
8115         * configure.in: Specify vpath for .texi files.
8117 1996-06-09  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8119         * configure.in: Always check for HAVE_X11R5.
8120         Separately decide whether to use a toolkit by default.
8122 1996-06-04  Bill Mann  <dvmann@dvhpux1.praxisint.com>
8124         * configure.in: If X11R5 is missing the Xaw headers,
8125         default to --with-x-toolkit=no.
8127 1996-05-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8129         * configure.in (powerpc-*-solaris2*): Use ibmrs6000, not rs6000.
8131 1996-05-30  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>
8133         * Makefile.in (install-arch-indep): If cd etc makes output,
8134         don't treat that as part of the tar data.
8135         Check that ./lisp actually exists.
8137 1996-05-29  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8139         * make-dist: Check for long file names.
8141 1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8143         * Version 19.31 released.
8145 1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8147         * configure.in: Recognize sparc-*-lignux.
8149 1996-05-03  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
8151         * make-dist: Include nt/inc/arpa and nt/inc/netinet in the dist.
8152         Don't include config.w95.
8154 1996-04-21  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>
8156         * make-dist: Replace --no-clean-up and --no-tar options
8157         with --clean-up and --tar, so that the default is useful.
8159 1996-04-15  Eli Zaretskii  <eliz@is.elta.co.il>
8161         * config.bat: Make sure the GDB init file is called src/_gdbinit;
8162         if not, tell the user to rename it and abort.
8164 1996-04-14  Eli Zaretskii  <eliz@is.elta.co.il>
8166         * config.bat: With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE
8167         test program.
8169 1996-04-12  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8171         * config.bat (djgpp_ver): Variable renamed from djgpp-ver.
8173         * make-dist (MANIFEST): Fix previous change.
8174         (msdos): Put mainmake.v2 into the dist.
8176 1996-04-10  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
8178         * make-dist: Exit if autoconf fails.
8180 1996-04-10  Eli Zaretskii  <eliz@is.elta.co.il>
8182         * config.bat: Set djgpp-ver, and unset it at the end.
8183         Add a number of conditionals for DJGPP version 2.
8184         Rename label libsrc2 to libsrc3.
8185         Substitute for LDFLAGS in src/Makefile.
8186         Substitute for ALL_CFLAGS in lib-src/Makefile.
8188 1996-04-08  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8190         * configure.in (ncurses): Check this after checking fns like strerror.
8192 1996-04-08  Erik Naggum  <erik@naggum.no>
8194         * make-dist (MANIFEST): Don't include lines from =files.
8196 1996-04-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8198         * make-dist: Don't put lisp/dired.todo in the dist.
8200 1996-04-05  Richard Stallman  <rms@lucy.gnu.ai.mit.edu>
8202         * configure.in (HAVE_NCURSES): Look for library named ncurses.
8204         * configure.in (setlocale): Check for it.
8206         * configure.in (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp.
8208 1996-03-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8210         * configure.in: Use lignux instead of linux as value of opsys.
8212 1996-03-22  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8214         * Makefile.in (install-strip): Fix whitespace.
8215         Get rid of continuation.
8217         * config.sub: Convert linux or gnu/linux to lignux.
8219 1996-03-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8221         * configure.in: Accept lignux in configuration name.
8223 1996-03-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8225         * Makefile.in (install-strip): New target.
8227 1996-03-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8229         * Makefile.in (top_distclean): Use `|| true' to ignore error in rm.
8230         -f failed to do the job on Suns.
8232 1996-03-13  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8234         * Makefile.in (install-arch-dep): Don't depend on install-arch-indep.
8236         * configure.in (linux/version.h): Check for this header.
8238 1996-03-12  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
8240         * configure.in: Remove -fno-builtin hackery from -lm check.
8242 1996-03-08  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
8244         * configure.in (-lm check): If $GCC, append -fno-builtin to $CC for
8245         just this test.
8247         * configure.in (AC_PREREQ): Require version 2.8 of Autoconf.
8249 1996-03-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8251         * configure.in: Check for ncurses.
8253 1996-02-28  Paul Eggert  <eggert@twinsun.com>
8255         * configure.in (LOCALTIME_CACHE):
8256         Also define if localtime mishandles unsetting TZ.
8257         This works around a localtime bug in mips-dec-ultrix.
8259 1996-02-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8261         * make-dist (finder-inf.el): Use finder-compile-keywords-make-dist.
8263         * configure.in: Improve messages about X versions.
8265 1996-02-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8267         * configure.in (LOCALTIME_CACHE): Cope if $ac_cv_func_tzset is null.
8269 1996-02-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8271         * configure.in (HAVE_X11XTR6): Set it as a shell variable.
8272         (HAVE_LIBXMU): If HAVE_X11XTR6, use -lSM and -lICE.
8274         * Makefile.in (install-arch-dep): Depend on install-arch-indep.
8275         (install): Put install-arch-indep before install-arch-dep.
8277 1996-02-20  Dave Love  <d.love@dl.ac.uk>
8279         * INSTALL: Clarify info about MS-DOS path handling.
8281 1996-02-12  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8283         * Makefile.in (install-arch-indep): Install info/ccmode*.
8284         In previous change, protect against /bin/pwd returning null string.
8286 1996-02-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8288         * Makefile.in (install-arch-indep): Copy build-dir's lisp subdir
8289         to lispdir.
8291 1996-02-01  Paul Eggert  <eggert@twinsun.com>
8293         * configure.in (LD_RUN_PATH): Prepend x_libraries to this envvar.
8295 1996-01-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8297         * configure.in (HAVE_TIMEVAL): Set explicitly to `no' if test fails.
8299 1996-01-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8301         * Makefile.in (extraclean): Use ${top_distclean} to ensure
8302         we delete everything distclean deletes.
8304 1996-01-23  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8306         * make-dist (lwlib): Don't distribute lwlib-Xol* files.
8308 1996-01-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8310         * configure.in (HAVE_X11): Merge $LD_SWITCH_X_SITE
8311         into LDFLAGS instead of into LIBS.
8313 1996-01-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8315         * configure.in (HAVE_XMU): Fix typo in previous change.
8317 1996-01-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8319         * configure.in [Solaris]: Don't let $CC make us use /usr/ucb/cc.
8321 1996-01-10  Erik Naggum  <erik@naggum.no>
8323         * configure.in (USE_X_TOOLKIT = maybe): Delete redundant `fi'.
8325 1996-01-10  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8327         * Makefile.in (install-arch-indep): Ignore error if no chmod -R.
8329 1996-01-10  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8331         * configure.in (HAVE_XMU): Check for libXmu.a only if using toolkit
8332         and use -lXt to link it.
8334 1996-01-08  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8336         * configure.in (locallisppath): Put version-specific dir first.
8338 1996-01-07  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8340         * configure.in (hppa-*-nextstep*): New alternative.
8341         (USE_X_TOOLKIT): By default, set this to "maybe";
8342         and change that later to LUCID or "no" according to X11 version.
8344         * make-dist: Recompile outdated .elc files and update all autoloads.
8346 1996-01-05  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8348         * configure.in (locallisppath): Fix typo in last change: " -> '.
8350 1996-01-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8352         * configure.in (locallisppath): Add ../emacs/VERSION/site-lisp.
8354 1995-12-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8356         * Makefile.in (install-arch-indep): Give all files read permission.
8358 1995-12-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8360         * configure.in (hppa*-hp-hpux9shr*, hppa*-hp-hpux9*, hppa*-hp-hpux*):
8361         If it is hpux 9, check for /usr/include/X11R5 and /usr/lib/x11R5.
8363 1995-12-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8365         * configure.in: Determine HAVE_X11R6.
8366         (HAVE_MENUS): Renamed from HAVE_X_MENU.
8368 1995-12-21  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8370         * configure.in: Just "solaris" now defaults to version 2.4.
8371         Add sunos4.1.n-noshare as alternative.
8373 1995-12-01  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8375         * configure.in (mips-sgi-irix6*): Set NON_GNU_CPP.
8377 1995-11-29  Erik Naggum  <erik@naggum.no>
8379         * Makefile.in (install-arch-indep): Add missing backslash.
8381 1995-11-29  Karl Eichwalder  <ke@ke.Central.DE>
8383         * Makefile.in (install-arch-indep): Don't install
8384         lispdir/[Mm]akefile*, lispdir/ChangeLog, lispdir/dired.todo.
8386 1995-11-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8388         * Makefile.in (install-arch-indep): Fix previous change.
8390         * configure.in (mips-sni-sysv*): New alias for mips-siemens-sysv*.
8392 1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8394         * Version 19.30 released.
8396         * make-dist (lisp): Exclude subdirs.el.
8398 1995-11-22  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8400         * make-dist (etc): Delete *.orig and *.rej.
8402 1995-11-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8404         * Makefile.in (install-arch-indep): Rename old info/dir only if exists.
8406 1995-11-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8408         * configure.in (hppa*-hp-hpux10*): Use s/hpux10.h.
8410 1995-11-14  Geoff Voelker  <voelker@cs.washington.edu>
8412         * make-dist (nt): Rename install, readme, and todo to
8413         INSTALL, README, and TODO.
8415 1995-11-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8417         * make-dist (lisp): Don't distribute site-start.
8419 1995-11-06  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8421         * make-dist: Break the hard link on alloca.c.
8423 1995-11-04  Richard Stallman  <rms@whiz-bang.gnu.ai.mit.edu>
8425         * configure.in (LIBS): Add libsrc_libs and keep the old LIBS.
8427 1995-11-02  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8429         * make-dist (src, lib-src): Don't distribute Makefile.c.
8430         (etc/e): Do cleanup in $tempdir/etc/e, not $tempdir/etc.
8432 1995-10-31  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8434         * Makefile.in (mkdir): Create man1dir, not mandir.
8435         (uninstall): Use man1dir, not mandir.
8437 1995-10-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8439         * Makefile.in (man1dir): New variable.
8440         (install-arch-indep): Use man1dir.
8442         * configure.in (sparc-*-nextstep*): Remove incorrect .h's.
8444         * make-dist: Create lisp/MANIFEST.
8446 1995-10-28  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
8448         * configure.in (m68k-*-linux*): New alternative.
8450 1995-10-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8452         * make-dist: Use new names config.in, paths.in, and
8453         {src,lib-src}/Makefile.in.
8455 1995-10-25  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8457         * configure.in: Don't bother checking for drem.
8459 1995-10-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8461         * Makefile.in (distclean): Delete line with just a tab in it.
8462         (install-arch-indep): Delete spaces that precede tabs.
8463         Delete spurious `fi' left from previous change.
8464         (install): Supply `true' as command, to avoid null command.
8466 1995-10-05  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8468         * configure.in (--with-x-toolkit)): Add `athen' as alias for `athena'.
8470 1995-09-30  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8472         * configure.in (powerpc-*-solaris2): New alternative.
8474 1995-09-12  Karl Heuer  <kwzh@gnu.ai.mit.edu>
8476         * Makefile.in (src/paths.h, paths-force): Use paths.h.$$ instead
8477         of paths.h.tmp$$, to avoid going beyond 14 characters.
8479 1995-09-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8481         * configure.in: Improve error msg for invalid --with-x-toolkit value.
8483 1995-09-06  Paul Eggert  <eggert@twinsun.com>
8485         * configure.in (LOCALTIME_CACHE): Define if tzset exists and
8486         if localtime caches TZ.  Check for tzset.
8488 1995-09-01  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8490         * config.bat: Simplify using new names file names src/makefile.in,
8491         config.in, paths.in.  Change Echo commands not to use `.
8493 1995-08-31  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8495         * Makefile.in (install-arch-indep): Always install the new dir file;
8496         rename the previous dir file to dir.bak or dir.old.
8498 1995-08-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8500         * configure.in (RANLIB): Substitute this into makefiles.
8501         Set it specially on solaris; set it by default on other systems.
8503         * configure.in: Fix previous Alpha change.
8505 1995-08-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8507         * configure.in (i*386-*-isc4.*): Set GCC_TEST_OPTIONS and
8508         NON_GCC_TEST_OPTIONS.
8510 1995-08-10  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8512         * configure.in (CFLAGS): When computing CFLAGS and REAL_CFLAGS
8513         from config.h, use SPECIFIED_CFLAGS to get what the user specified.
8515         * configure.in (alpha-*-linux*): New configuration.
8517 1995-08-05  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8519         * configure.in (m68*-next-*): Use m68k.h and nextstep.h.
8520         (m68k-next-nextstep*): New alias for that.
8521         (i*86-*-nextstep*): Use nextstep.h.
8522         (sparc-*-nextstep*): New configuration.
8524 1995-08-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8526         * configure.in (CPP): Save original CFLAGS value in SPECIFIED_CFLAGS.
8527         And get CFLAGS from config.h if SPECIFIED_CFLAGS is null.
8529 1995-07-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8531         * configure.in: Handle sunos4shr by sharing; not like sunos4*.
8532         Determine GETTIMEOFDAY_ONE_ARGUMENT by experiment.
8534 1995-07-18  Mike Long  <mike.long@analog.com>
8536         * make-dist: Fix update of finder-inf.el, and byte-compile it.
8538 1995-07-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8540         * Makefile.in (src/paths.h, paths-force):
8541         Rename src/paths.h.in to src/paths.in.
8542         (Makefile): Depend on src/Makefile.in, not src/Makefile.in.in.
8544         * configure.in: Rename {src,lib-src}/Makefile.in.in to Makefile.in.
8545         Use Makefile.c for intermediate file.
8546         Rename src/config.h.in to src/config.in.
8548 1995-07-17  Richard Stallman  <rms@gnu.ai.mit.edu>
8550         * configure.in (mips-dec-ultrix*): Assume version 4.3.
8551         (mips-dec-ultrix4.[12]): New alternative for old versions.
8553 1995-07-06  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8555         * make-dist: Don't break intra-tree links.
8557 1995-07-06  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
8559         * configure.in: Put back archlibdir initialization.  Require
8560         autoconf 2.4.1 or later.
8562 1995-07-01  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8564         * configure.in: Use sunos4shr normally for Sunos 4.1.[3-9].
8565         (mips-mips-riscos5*): New alternative.
8567 1995-06-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8569         * Makefile.in (uninstall, install-arch-indep): Install info/ediff*.
8571 1995-06-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8573         * configure.in (bindir, datadir, sharedstatedir, libexecdir)
8574         (mandir, infodir, archlibdir): Initializations deleted.
8576         * configure.in: On hpux9, use hpux9-x11r4.h if we have X11R4.
8577         On hpux9shr, use hpux9shxr4.h.
8579 1995-06-24  Morten Welinder  <terra+@cs.cmu.edu>
8581         * configure.in: Added target mips-dec-mach_bsd4.3.
8582         * config.guess: Guess mips-dec-mach_bsd4.3.
8584 1995-06-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8586         * Makefile.in (mkdir): Use symbolic chmod.
8588 1995-06-22  Paul Eggert  <eggert@twinsun.com>
8590         * configure.in: Treat SunOS 4.1.4 like SunOS 4.1.3.  (Likewise for
8591         SunOS 4.1.5 through 4.1.9, should they ever exist.)
8593 1995-06-22  Paul Eggert  <eggert@twinsun.com>
8595         * Makefile.in (SUBDIR_MAKEFILES):
8596         Add man/Makefile, so `make distclean' removes it.
8597         (top_distclean): Add config.log to the list of files to be removed.
8599 1995-06-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8601         * Version 19.29 released.
8603 1995-06-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8605         * configure.in: Fix the previous change to verify that the -b
8606         option really solves the problem.
8608         * make-dist (nt): Explicitly include makefile.nt and makefile.def only.
8610 1995-06-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8612         * configure.in: Test whether XFree86 needs -b i486-linuxaout to link.
8614 1995-06-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8616         * configure.in: Report more clearly when there is no special
8617         dir to search for X includes or libraries.
8619 1995-06-13  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8621         * configure.in: Check for -lpthreads, not -lpthread.
8623 1995-06-09  Geoff Voelker  <voelker@cs.washington.edu>
8625         * make-dist: Copy new files nt/addpm.c and nt/emacs.bat.in.
8627 1995-06-08  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8629         * configure.in: Check for -lpthread.
8631 1995-06-05  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8633         * Makefile.in (install-arch-indep): Install info files for mh-e.
8634         (uninstall): Uninstall info files for dired-x, gnus, mh-e, and sc.
8636 1995-06-01  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8638         * configure.in (*-solaris2.5): New configuration.
8640         * make-dist: Copy new files config.nt and config.w95.
8642 1995-05-30  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8644         * configure.in: Use x_includes, not x_libraries, for -I.
8645         Make bitmapdir a colon-separated list.
8647 1995-05-27  Richard Stallman  <rms@gnu.ai.mit.edu>
8649         * configure.in (hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
8651         * configure.in: Allow x_libraries and x_includes to be paths.
8653 1995-05-25  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8655         * configure.in: Fix typo.
8657 1995-05-24  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8659         * INSTALL: Clarify use of site-init.el.
8661 1995-05-22  enami tsugutomo  <enami@sys.ptg.sony.co.jp>
8663         * configure.in: Pass arg to sqrt.
8665 1995-05-18  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8667         * make-dist: Fix May 6 change.
8669 1995-05-17  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8671         * vpath.sed: Delete reference to ymakefile.
8673 1995-05-09  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
8675         * configure.in: Use sqrt (more portable) instead of fmod in -lm check.
8677 1995-05-09  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8679         * make-dist: Put nt/emacs.ico and nt/emacs.rc in dist.
8681         * update-subdirs: Specify /bin/sh to run the script.
8683 1995-05-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8685         * make-dist: Put src/makefile.nt in dist.
8687         * configure.in (i[345]86-*-bsdi2*): New configuration.
8688         (vax-dec-bsd386*): Deleted.
8690 1995-05-06  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
8692         * configure.in: Make sure CDPATH doesn't mess up PWD check.
8693         Check whether X bitmaps are in X11/bitmaps instead of bitmaps.
8694         Use fmod instead of logb in -lm check.
8696 1995-05-03  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8698         * configure.in (m68*-apollo-*): Renamed from m68*-apollo*.
8699         Use bsd4-3.  Don't set NON_GNU_CPP.
8701         * make-dist: Don't copy in src/s/*.inp.  Don't copy nt/src.
8702         In nt, copy various different things, but not *.cmd.
8703         Fix the ln commands for the subdirs of nt.
8705 1995-04-29  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8707         * configure.in (*-sun-sunos4.1.3*): Use sunos4shr.h.
8709 1995-04-27  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8711         * configure.in (*-sun-sunos4.1.3*): Use shared libraries,
8712         since that's what the header file expects.
8714 1995-04-24  Francesco Potortì  (pot@cnuce.cnr.it)
8716         * configure.in (m68k-motorola-sysv*): Distinguish between 68030
8717         and 68040 based machines when choosing options for gnucc.
8719 1995-04-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8721         * Makefile.in (top_distclean): Delete config.cache.
8723 1995-04-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8725         * Makefile.in (install-arch-indep): Delete .#* when copying subdirs.
8727         * configure.in: Use m/ncr386.h.
8729 1995-04-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8731         * Makefile.in (install-arch-indep): Undo Sep 23 change.
8733 1995-04-06  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8735         * make-dist (lib-src): Don't copy *.lex; it doesn't exist anymore.
8736         (man): Don't copy texindex.c and getopt.c; they're deleted.
8737         (etc): Omit `e'; it's a subdirectory.
8738         (etc/e): Use `../..', not `..', to reference top level.
8740 1995-04-06  Simon Leinen  <simon@lia.di.epfl.ch>
8742         * Makefile.in (install-arch-indep, dist):
8743         Look for `update-subdir' in $(srcdir).
8745 1995-04-06  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8747         * make-dist: Include mkinstalldirs in distribution.
8749 1995-04-05  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8751         * make-dist: Add missing close backquote.
8753 1995-04-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8755         * make-dist: Don't distribute shortnames directory.
8757 1995-03-12  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8759         * Makefile.in (blessmail): Pass archlibdir to the sub-make.
8761 1995-02-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8763         * configure.in (m88k-motorola-sysv4*): Use usg5-4-2.
8765 1995-02-23  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8767         * configure.in (EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
8769 1995-02-13  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
8771         * configure.in (mips-sgi-irix6): New configuration.
8773 1995-02-07  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
8775         * Makefile.in (maintainer-clean): Renamed from realclean.
8777 1995-02-02  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>
8779         * configure.in: Create a .gdbinit that sources the real one,
8780         if using a different build directory.
8782 1995-01-23  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8784         * configure.in: Check for sys/select.h.
8786 1995-01-02  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8788         * configure.in: On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
8790 1994-12-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8792         * configure.in: Handle isc 4.1 operating system.
8794 1994-12-10  Richard Stallman  <rms@kepa>
8796         * configure.in (rs6000-ibm-aix4.1*): New alternative.
8797         (rs6000-ibm-aix4*): New alternative.
8799 1994-12-06  Richard Stallman  <rms@kepa>
8801         * configure.in: For SVR4.2, set NON_GNU_CPP if not already set.
8803 1994-11-30  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
8805         * configure.in: Don't try to make directories that are guaranteed
8806         to already exist.
8808 1994-11-23  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8810         * configure.in: Generate man/Makefile from man/Makefile.in.
8811         Create the man subdir.
8813         * Makefile.in (dvi): Run Make in our man subdir.
8815         * make-dist: Create subdir etc/e.
8816         Make links to it.
8817         Put man/Makefile.in in dist, instead of man/Makefile.
8819 1994-11-21  David J. MacKenzie  (djm@mole.gnu.ai.mit.edu)
8821         * configure.in: Add --with-pop, --with-kerberos, and
8822         --with-hesiod for movemail.
8824 1994-11-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8826         * configure.in (m68*-apollo*): Use s/domain.h.
8828 1994-11-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8830         * configure.in (m68*-apollo*): Set NON_GNU_CPP.
8832 1994-11-14  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
8834         * configure.in: Don't add -I, -L, -R options for cc if their
8835         arguments would be empty.
8837 1994-11-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8839         * configure.in (i860-intel-osf1*): New alternative.
8840         (mips-sgi-irix5.[01]*): Distinguish from irix5*.
8841         (mips-sgi-irix*): Now an alias for mips-sgi-irix5*.
8843 1994-11-09  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
8845         * configure.in: Make h_errno check not use nested functions.
8847 1994-11-09  Richard Stallman  <rms@pogo.gnu.ai.mit.edu>
8849         * Makefile.in (install-arch-indep): Delete *.orig in copied dirs.
8851 1994-11-08  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
8853         * Makefile.in (install-arch-indep): Avoid continued comment
8854         swallowing target line.
8856 1994-11-08  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)
8858         * configure.in: Protect a character class with `changequote'.
8860 1994-11-07  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>
8862         * configure.in: Accept `news' as a synonym for `newsos'.
8864 1994-11-03  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8866         * Makefile.in: Don't rm files if cd fails.
8868 1994-11-01  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8870         * make-dist: Put nt subdir and its subdirs in the dist.
8871         (lib-src): Put makefile.nt in the dist.
8872         (lisp): Put makefile.nt in the dist.
8874 1994-10-29  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
8876         * configure.in: Change a stray `[' to `test'.
8878 1994-10-28  David J. MacKenzie  <djm@duality.gnu.ai.mit.edu>
8880         * configure.in: Adapt for Autoconf v2.  Use the standard argument
8881         parser, host type canonicalizer, X11 finder, and message
8882         printing macros.  Use the new macro names.  Use `test' instead of `['.
8884 1994-10-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8886         * configure.in: Check for getpagesize.
8888 1994-10-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8890         * make-dist (msdos): Put sed* in the distribution.
8892 1994-10-17  Morten Welinder  <terra@mole.gnu.ai.mit.edu>
8894         * config.bat: New option, `--with-x', for configuring Emacs
8895         for use with the X11 system DesqView/X.
8896         New option, `--no-debug', for compiling Emacs without debug
8897         information thus saving disk space.
8898         (src/config.h, src/paths.h): Use `update' (which is like
8899         `move-if-changed') to change the file.
8900         (src/config.h): When configuring for X11 perform extra changes.
8901         (src/makefile): When configuring for X11 perform extra changes.
8902         (lib-src): Remove temporary files.
8903         (): Check that `sed', `rm', `mv', and `gcc' are available.
8905 1994-10-17  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8907         * Makefile.in (sharedstatedir): Substitute sharedstatedir properly.
8909         * configure.in (bitmapdirs): Default to /usr/include/X11/bitmaps.
8911 1994-10-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8913         * configure.in (EMACS_CONFIGURATION): Use $canonical as value.
8915         * configure.in (canonical): Substitute var into makefiles.
8916         (bitmapdir): Likewise.
8918         * Makefile.in (bitmapdir): New variable.
8919         (src/paths.h, paths-force): Edit PATH_BITMAPS.
8921 1994-10-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8923         * make-dist: Put update-subdirs and lisp/subdirs.el in the dist.
8925         * Makefile.in (dist, install-arch-indep): Run update-subdirs.
8926         * update-subdirs: New shell script.
8928 1994-10-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8930         * Makefile.in (top_distclean): Don't rm build-install.
8931         (SOURCES): Delete build-install.in.
8933         * make-dist: Don't distribute build-ins.in.
8934         * build-ins.in: File deleted.
8936 1994-10-12  David J. MacKenzie  (djm@duality.gnu.ai.mit.edu)
8938         * Makefile.in (mkdir): Use mkinstalldirs instead of make-path.
8940 1994-10-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8942         * Makefile.in: Use libexecdir and sharedstatedir as appropriate.
8944         * configure.in (libexecdir): Renamed from libdir.  New default.
8945         (sharedstatedir): Renamed from statedir.  New default.
8946         (datadir): New default.
8948         * make-dist: Don't distribute subdirs.el.
8950 1994-10-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8952         * configure.in (eaccess): Check for it.
8954 1994-10-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8956         * configure.in (mktime): Check for it.
8958 1994-10-02  Paul Reilly  <pmr@geech.gnu.ai.mit.edu>
8960         * configure.in (motif): Add support for usage and option checking.
8962 1994-09-24  Richard Stallman  <rms@churchy.gnu.ai.mit.edu>
8964         * configure.in (utimes): Check for it.
8966 1994-09-23  Richard Stallman  <rms@churchy.gnu.ai.mit.edu>
8968         * Makefile.in (install-arch-indep): Don't do mkdir here.
8970 1994-09-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8972         * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8973         riscix.h renamed to acorn.h.
8975 1994-09-21  Michael Ben-Gershon  (mybg@cs.huji.ac.il)
8977         * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8978         New configurations.
8980 1994-09-21  David J. MacKenzie  (djm@geech.gnu.ai.mit.edu)
8982         * configure.in: Remove trailing slashes from srcdir.
8984 1994-09-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8986         * configure.in (i[345]86-sequent-ptx*): Handle.
8988 1994-09-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
8990         * Makefile.in (paths-force): Depend on src/paths.h.
8992 1994-09-19  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8994         * configure.in (config_options): Save all arguments, not just some.
8996 1994-09-18  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>
8998         * Makefile.in (install-arch-indep): Copy DOC-*, not DOC*.
9000         * configure.in: Add AC_AIX.
9001         Add checks to set HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL, HAVE_SELECT.
9003 1994-09-18  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9005         * configure.in (parsing options): Simplify sed command to delete -'s.
9007 1994-09-16  Karl Heuer  <kwzh@churchy.gnu.ai.mit.edu>
9009         * configure.in (config_options): New shell variable.
9010         Pass its value to C code in EMACS_CONFIG_OPTIONS.
9012 1994-09-16  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9014         * configure.in (alpha-dec-osf*): New target.
9016         * Makefile.in: Use just one FRC target.
9018 1994-09-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9020         * Makefile.in (removenullpaths, paths-force):
9021         Use name paths.h.tmp$$, which depends on the pid.
9023 1994-09-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9025         * Makefile.in (removenullpaths, paths-force):
9026         Put paths.h.tmp in top-level dir, not in src.
9028 1994-09-11  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9030         * Version 19.27 released.
9032 1994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9034         * Version 19.26 released.
9036 1994-09-04  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9038         * configure.in: Check for lrand48, not rand48.
9040 1994-09-03  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9042         * configure.in (powerpc-ibm-aix3.1*, powerpc-ibm-aix3.2.5)
9043         (powerpc-ibm-aix*): New aliases.
9045 1994-08-21  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9047         * make-dist (src/m, src/s): Put *.inp in distribution.
9049 1994-08-19  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9051         * configure.in: Accept i586 and i486 along with i386.
9053 1994-08-15  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9055         * configure.in: Do compute unexec, LIBX, system_malloc, etc
9056         even if CPP env var was set by the user.
9058         * configure.in (i[34]86-*-*): For SCO 3.2v4, fix NON_GNU_CPP value.
9060 1994-08-14  Jonathan I. Kamens  (jik@gza-client1.aktis.com)
9062         * Makefile.in: Uninstall "$(EMACS)", not "emacs".
9064 1994-08-13  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9066         * configure.in (i[34]86-*-*): For SCO 3.2v4, set NON_GNU_CPP.
9068 1994-08-09  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9070         * configure.in: Check more specifically for i*86-sun-sunos.
9072 1994-08-03  Caveh Jalali  (caveh@eng.sun.com)
9074         * configure.in: Handle solaris 2.4.
9076 1994-07-27  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9078         * configure.in (rand48): Check for it.
9080 1994-07-26  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9082         * make-dist: Update the info files.
9084 1994-07-25  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9086         * configure.in: Make "checking..." messages' style consistent.
9087         (HAVE_H_ERRNO): New test.
9089 1994-07-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
9091         * configure.in (i860-*-sysv4*): Set NON_GNU_CC and NON_GNU_CPP.
9093 1994-07-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9095         * configure.in (CFLAGS): If the envvar was specified, use that.
9096         And set REAL_CFLAGS from it too.
9098 1994-07-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9100         * make-dist: Update finder-inf.el.
9102 1994-07-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9104         * make-dist (msdos): Include sed4.inp in dist.
9106         * Makefile.in (libsrc_libs): Var deleted.
9108 1994-07-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9110         * Makefile.in (mkdir, removenullpaths): Put g in sed replace commands.
9112 1994-06-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9114         * configure.in (mips-sony-newsos4*): New alias.
9116 1994-06-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9118         * configure.in (*-convex-bsd*): Set NON_GNU_CPP.
9119         (*-convex-convexos*): Accept this as alias.
9121 1994-06-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9123         * configure.in: Get CFLAGS both with and without THIS_IS_CONFIGURE,
9124         for two different uses.
9126 1994-06-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9128         * configure.in: Define THIS_IS_CONFIGURE when extracting CFLAGS etc.
9130 1994-06-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9132         * make-dist: Put ./BUGS into the distrib.
9134 1994-06-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9136         * configure.in: Handle 386 running Solaris 2.
9138 1994-06-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9140         * configure.in (mips-siemens-sysv*): Use cpp, not cc -E.
9142 1994-06-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9144         * configure.in (mips-sony-newsos*): Use news-risc.h.
9146         * configure.in: Accept bsdi as opsys, like bsd386.
9148 1994-06-01  Morten Welinder  (terra@diku.dk)
9150         * config.bat (src/paths.h): Use sed script msdos/sed4.inp.
9152 1994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9154         * Version 19.25 released.
9156         * make-dist (shortversion): Don't assume another period follows.
9158 1994-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9160         * Makefile.in (install-arch-indep): Use /bin/pwd uniformly, not pwd.
9161         (uninstall): Use /bin/pwd.
9163         * Makefile.in (blessmail): Depend on src.
9164         (all): Don't depend on blessmail.
9166         * Makefile.in (src/paths.h): Don't force recomputation.
9167         (paths-force): New target; force recomputation of paths.h.
9168         (all): Depend on paths-force.
9169         (src, lib-src): Depend on src/paths.h.
9171         * configure.in (*-sun-sunos4*): Set GCC_TEST_OPTIONS,
9172         NON_GCC_TEST_OPTIONS.
9174 1994-05-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9176         * configure.in: Don't insist on subversions for irix.
9178 1994-05-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9180         * configure.in (hppa*-hp-hpux9shr): Move alternative up.
9182         * configure.in (i[34]86-next-*): New alternative.
9184 1994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9186         * Version 19.24 released.
9188         * configure.in: New config hppa*-hp-hpux9shr*.
9190 1994-05-22  Morten Welinder  (terra@tyr.diku.dk)
9192         * config.bat: Doc fix.
9194 1994-05-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9196         * Makefile.in (mostlyclean, clean, distclean, realclean)
9197         (extraclean): Don't act on man subdir if it doesn't exist.
9199 1994-05-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9201         * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS): New vars.
9202         Use them to set up CC.
9203         (*-sun-sunos4.1.3): Set them.
9205 1994-05-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9207         * Makefile.in (lib-src): Don't depend on src/paths.h.
9209 1994-05-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9211         * build-ins.in (copydests): Get rid of spurious `-'s.
9213         * configure.in: Define EMACS_CONFIGURATION instead of CONFIGURATION.
9215 1994-05-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9217         * Version 19.23 released.
9219         * configure.in [HAVE_X11]: Merge $C_SWITCH_X_SITE into CFLAGS
9220         for the Xlib and Xt checks; then restore old CFLAGS.
9222 1994-05-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9224         * configure.in (HAVE_X11XTR6): Add newline before #if.
9225         Add newline after #endif.
9227 1994-05-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9229         * configure.in (HAVE_X11XTR6): Arrange to define it.
9231 1994-05-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9233         * Makefile.in (install): Depend on blessmail.
9235 1994-05-12  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
9237         * configure.in (mips-siemens-sysv*): Put quotes around value
9238         containing blanks.
9240 1994-05-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9242         * Makefile.in (TAGS): Use the makefile in src subdir.
9244 1994-05-10  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9246         * configure.in (opsys): Recognize `gnu'.
9248 1994-05-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9250         * configure.in (using NON_GNU_CPP): Fix test for CPP already set.
9252 1994-05-09  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
9254         * configure.in: Remove AC_LANG_C call.  Not needed with Autoconf
9255         version > 1.8.
9257 1994-05-08  Morten Welinder  (terra@diku.dk)
9259         * config.bat: Forcibly remove "# " style comments from makefiles.
9261 1994-05-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9263         * Makefile.in (uninstall): When processing lispdir and etcdir,
9264         do nothing unless it exists and is a directory.
9266 1994-05-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9268         * Makefile.in (install-arch-indep): Do install info/dired-x*.
9269         Merge code in from install-doc.
9270         (install-doc): Merge code back into install-arch-indep.
9271         (install-arch-dep): Don't depend on install-doc.
9273         * configure.in (run_in_place): Don't use pwd for archlibdir and docdir.
9275 1994-05-04  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9277         * configure.in (making src/Makefile and lib-src/Makefile):
9278         Split off the autoconf substitutions and don't pass them thru cpp.
9279         (undefs): Use $canonical as well as $configuration.
9281         * make-dist: Distribute lisp/Makefile.
9283         * configure.in: Recognize m88k-dg-dgux5.4.3* and m88k-dg-dgux5.4.2*.
9284         Use lower case names for the s files.
9286 1994-05-03  Morten Welinder  (terra@diku.dk)
9288         * config.bat: Added possibility for different file name
9289         transcriptions in lib-src.
9291 1994-05-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9293         * Makefile.in (lib-src): Undo previous change.
9294         (blessmail): New target to run maybe-blessmail in lib-src.
9295         (all): Depend on blessmail.
9297         * Makefile.in (lib-src): Depend on src.
9299 1994-04-30  Paul Reilly  (pmr@churchy.gnu.ai.mit.edu)
9301         * configure.in (m88k-dg-dgux5.4R3): Use dgux5-4R3.
9302         (m88k-dg-dgux5.4R2): dgux5.4R2.
9304 1994-04-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9306         * configure.in (window_system): Restore accidentally deleted code
9307         that uses AC_FIND_X.
9309         * make-dist: Distribute config.bat.
9311 1994-04-29  Morten Welinder  (terra@diku.dk)
9313         * config.bat: Corrected the configuration of lib-src
9314         to keep up with configure.  Add note about dos version 3
9315         or better needed (djgpp needs that).  Add note explaining
9316         that either install in c:/emacs or edit the script.
9317         Don't change to c:/emacs, but assume we're there (to minimize
9318         the number of places to change).
9320         * config.bat: Build-in the first step towards X11 support with
9321         the X11 emulator that exists.  At this time it won't work,
9322         and several files are missing.
9324 1994-04-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9326         * configure.in: Use m/hp800.h in place of m/hp9000s800.h.
9327         Don't look for -lresolv.
9329         * Makefile.in (lib-src): Depend on src/paths.h.
9331 1994-04-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9333         * configure.in: Restore deleted AC_SUBST of `configuration'.
9334         Improve error message for bad --with-x-toolkit value.
9336         * configure.in: Define CONFIGURATION in src/config.h
9337         rather than substituting in src/Makefile.in.
9339 1994-04-26  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9341         * Makefile.in (install-doc): New target.
9342         (install-arch-dep): Depend on install-doc.
9343         (mkdir): Create docdir.
9345 1994-04-22  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9347         * configure.in: Test for libresolv.a.
9348         Substitute machfile and opsysfile.
9350 1994-04-22  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9352         * Makefile.in (.PHONY, install): Kill reference to obsolete do-install.
9353         (install-arch-dep): Install under the name $(EMACS).
9355 1994-04-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9357         * configure.in (version): Use entire value of emacs-version.
9358         (mips-siemens-sysv*): New alternative.
9360 1994-04-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9362         * Makefile.in (install-arch-indep): Don't install dired-x*.
9364 1994-04-18  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9366         * configure.in (src/Makefile, lib-src/Makefile): Delete ^L.
9367         Fix definition of $undefs.
9369 1994-04-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9371         * configure.in (window_system): Obey --with-x11=no and --with-x10=no.
9373         * configure.in (lib-src/Makefile.in): Use src, not lib-src, in -I.
9375 1994-04-16  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)
9377         * configure.in: Call AC_LANG_C, if it's defined, after AC_PREPARE.
9379 1994-04-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9381         * configure.in (lib-src/Makefile.in): Make this from Makefile.in.in
9382         and run it thru cpp, as with src/Makefile.in.
9384         * configure.in: Use AC_SET_MAKE.
9386 1994-04-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9388         * configure.in (i[34]86-ncr-sysv*): Use usg5-4-2.
9390 1994-04-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9392         * Makefile.in (MAKE): Don't just assign it--use @SET_MAKE@.
9394         * configure.in (CFLAGS): Exclude ${CFLAGS} from singlequotes.
9395         (printing the choices): Make the toolkit message unconditional.
9396         (USE_X_TOOLKIT): Use `none', not `no', if none.
9397         (include libsrc_libs): Include config.h, and specify -I for srcdir.
9398         Get rid of temp file foofoo1.
9400 1994-04-13  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9402         * configure.in (CFLAGS): Use shell syntax, not Makefile.
9404 1994-04-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9406         * configure.in (window_system): If no X, set USE_X_TOOLKIT=no.
9407         (printing the choices): State choice of toolkit.
9408         (libsrc_libs): Recalculate after writing config.h;
9409         then update lib-src/Makefile.
9411 1994-04-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9413         * configure.in: Add sunos4shr as alternative for suns.
9414         Conditionals testing for null $CC were backwards.
9416 1994-04-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9418         * make-dist (msdos): Don't link patch1.  Link sed*.inp, not sed.in*.
9420 1994-04-09  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9422         * configure.in: Handle -isc4.0*.
9424 1994-03-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9426         * configure.in (esix5): Set NON_GNU_CPP.
9428 1994-03-24  Roland McGrath  (roland@mole.gnu.ai.mit.edu)
9430         * Makefile.in (thisdir): Nonsensical variable removed.
9431         (install-arch-indep): Set shell var thisdir=`pwd` before cd and cd
9432         back to $thisdir, rather than the directory `this_dir'.
9434 1994-03-17  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9436         * Makefile.in (install-arch-indep): Add missing backslash after a
9437         `then'.
9439 1994-03-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9441         * Makefile.in (thisdir): New variable.
9442         (install-arch-indep): Go back to thisdir to run INSTALL_DATA.
9444 1994-03-08  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9446         * configure.in: Add freebsd.
9448 1994-03-08  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9450         * configure.in: Check for fpathconf.
9452 1994-03-02  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9454         * configure.in (with_x_toolkit): Fix typo in previous change.
9456 1994-03-01  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9458         * configure.in: New s-file for rs60000-ibm-aix3.2.5.
9460 1994-02-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9462         * configure.in (with_x_toolkit): Don't allow motif or open-look.
9464 1994-02-24  Karl Heuer  (kwzh@hal.gnu.ai.mit.edu)
9466         * configure.in: Fix value of docdir.
9467         * Makefile.in (install-arch-indep): Install DOC* in docdir.
9469 1994-02-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9471         * configure.in (*-sysv4.1): Set NON_GNU_CPP.
9473 1994-02-22  Karl Heuer  (kwzh@geech.gnu.ai.mit.edu)
9475         * configure.in: New variable docdir to control where the docstring
9476         file goes.
9477         Makefile.in: Use it to initialize PATH_DOC in paths.h.
9479 1994-02-22  Karl Heuer  (kwzh@mole.gnu.ai.mit.edu)
9481         * configure.in: When --run-in-place, don't inherit archlibdir.
9483 1994-02-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9485         * Makefile.in (install-arch-dep, install-arch-indep):
9486         New targets split up former do-install rule.
9487         (do-install): Target deleted.
9489 1994-02-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9491         * configure.in (mips-sony-newsos*): New configuration.
9493 1994-02-14  Frederic Pierresteguy  (fp@mole.gnu.ai.mit.edu)
9495         * configure.in (rs6000-bull-bosx*): Added support for BULL dpx20.
9497 1994-02-11  Karl Heuer  (kwzh@mole.gnu.ai.mit.edu)
9499         * configure.in: Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
9501 1994-02-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9503         * configure.in: Don't initialize CC.
9505 1994-02-10  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9507         * configure.in (creating src/Makefile): Also generate -U switches
9508         for symbols in the $configuration value.
9510         * configure.in: Check for sys_siglist being declared in system header.
9512 1994-02-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9514         * configure.in (creating src/Makefile): Delete blank lines
9515         along with lines of whitespace.
9516         (m68k-motorola-sysv*, m68000-motorola-sysv*): Compute proper CC value.
9518 1994-02-09  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9520         * configure.in: Get, use, and substitute C_SWITCH_MACHINE
9521         like C_SWITCH_SYSTEM.
9522         (m68*-motorola-sysv*): Set CC.  Require cpu type to be m68k or m68000.
9524 1994-02-04  Karl Heuer  (kwzh@mole.gnu.ai.mit.edu)
9526         * configure.in (drem): Check for this function.
9528 1994-02-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9530         * configure.in (Using NON_GNU_CPP): Don't lose if it has spaces.
9531         If CPP was inherited from environment, don't use NON_GNU_CPP.
9532         (NON_GNU_CC): Likewise.
9533         (handling with_gcc): Use explicit if in the `no' case.
9534         (cc_specified): New variable; if set, don't use NON_GNU_CC.
9536 1994-02-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9538         * configure.in (mips-mips-riscos4*): Set NON_GNU_CPP.
9540 1994-02-01  Karl Heuer  (kwzh@mole.gnu.ai.mit.edu)
9542         * configure.in: Check whether fmod exists.
9544 1994-01-31  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9546         * make-dist: Distribute {src,lisp}/ChangeLog.? instead of
9547         {src,lisp}/OChangeLog.
9549 1994-01-22  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9551         * configure.in: Restore Jan 8 and Jan 16 changes.  The -U hack is
9552         necessary for proper operation.  This code works with the current
9553         released version of Autoconf.
9555 1994-01-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9557         * configure.in (with_x_toolkit): Treat values athena and lucid alike.
9558         (USE_X_TOOLKIT): Define it for all values except `no'.
9560         * configure.in: Undo first Jan 8 change and Jan 16 change.
9562 1994-01-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9564         * configure.in: Handle --with-x-toolkit.  Produce lwlib/Makefile.
9565         Substitute USE_X_TOOLKIT as both C macro and Make variable.
9567         * Makefile.in (lwlib/Makefile): New target.
9568         (SUBDIR_MAKEFILES): Depend on lwlib/Makefile.
9569         (clean, mostlyclean, distclean, realclean): Handle lwlib subdir.
9570         (unlock, relock): Handle lwlib subdir.
9572         * Makefile.in: Add some .PHONY targets.
9574         * make-dist: Handle lwlib subdir like oldXMenu subdir.
9576         * lwlib: New subdirectory.
9578 1994-01-17  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9580         * configure.in: If CPP has a value that is a directory,
9581         discard the value.
9583 1994-01-16  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9585         * configure.in (srcdir_undefs): Add g flag to sed substitution to
9586         remove -U[0-9]*.
9588 1994-01-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9590         * Makefile.in (do-install): Install the dired-x info files.
9592         * configure.in: Provide for variable LD_SWITCH_X_SITE_AUX.
9593         (See src/s/sol2.h.)
9595 1994-01-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9597         * configure.in (m68k-harris-cxux*, m88k-harris-cxux*): New configs.
9599 1994-01-08  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9601         * configure.in (creating src/Makefile): Put code inside 2nd arg to
9602         AC_OUTPUT as it should be; hopefully no one will again see fit to
9603         gratuitously break this and not make a change log entry.
9604         Optimized sed processing of Makefile.in and cpp output; now
9605         preserves comments previously removed from the cpp input.
9606         Eliminated temp file for cpp output.  Generate -U switches to
9607         undefine all identifiers that appear in the directory name
9608         ${srcdir}; pass these to cpp.
9610         * configure.in (version): Fix sed regexp to match two-elt version
9611         number.
9613         * configure.in: Check for strerror.
9615 1994-01-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9617         * configure.in: Test for bcmp.
9619 1994-01-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9621         * make-dist (tempdir): Put subdir msdos into the distribution.
9623 1993-01-07  Morten Welinder  (terra@diku.dk)
9625         * config.bat: New file.
9627 1994-01-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9629         * Makefile.in (${SUBDIR} target): Pass down LDFLAGS and CPPFLAGS.
9631 1994-01-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9633         * configure.in (m68*-next-*): Don't care about which os is specified.
9634         (i[34]86-*-*): Check for *-nextstop*.
9636 1993-12-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9638         * configure.in: Check for setsid.
9640 1993-12-17  Richard Stallman  (rms@srarc2)
9642         * configure.in (*-sun-solaris*): Add special case for Solaris 2.3.
9644 1993-12-15  Richard Stallman  (rms@srarc2)
9646         * Makefile.in (mkdir): Make only the lockdir writable.
9648         * configure.in (i860-*-sysv4): Renamed from i860-*-sysvr4.
9650 1993-12-11  Richard Stallman  (rms@srarc2)
9652         * Makefile.in (libdir): Use @libdir@.
9654 1993-12-08  Richard Stallman  (rms@srarc2)
9656         * Makefile.in (install): Add empty command.
9658 1993-12-04  Richard Stallman  (rms@srarc2)
9660         * make-dist: Put man/getopt.c in the dist.
9662         * configure.in (LIBS): Add test for existence of XSetWMProtocols.
9664         * Makefile.in (install): Depend on ${SUBDIR}, not `all'.
9666 1993-12-03  Richard Stallman  (rms@srarc2)
9668         * configure.in (solaris): Set NON_GNU_CPP instead of CPP.
9669         Set it for all solaris versions.
9670         (mips-mips-riscos4*): Set NON_GNU_CC, not CC.
9671         (after checking for GCC): If not GCC, and NON_GNU_CPP is set, set CPP.
9672         Likewise for NON_GNU_CC and CC.
9674 1993-12-01  Richard Stallman  (rms@srarc2)
9676         * configure.in (mips-mips-riscos4*): Assign variable CC.
9677         (checking ${with_gcc}): If "no", don't override CC if already set.
9678         (CC): Initialize it as empty.
9680 1993-11-30  Richard Stallman  (rms@srarc2)
9682         * configure.in (Suns): Set CPP if *-solaris2.3*.
9684 1993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9686         * Version 19.22 released.
9688         * Makefile.in (do-install): Use umask 022 in copying etc and lisp dirs.
9690 1993-11-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9692         * make-dist: When breaking links, use cp -p.
9693         Copy install.sh into distribution.
9694         Move the temp dir up into the parent dir;
9695         don't leave the staging dir make-dist.tmp... in existence.
9696         * install.sh: New file.
9698 1993-11-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9700         * configure.in (i[34]86-ncr-sysv*): New specific alternative.
9702 1993-11-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9704         * configure.in (version): When --run-in-place, exclude
9705         ${datadir}/emacs/site-lisp from locallisppath.
9707 1993-11-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9709         * configure.in: Delete jumk.c before writing it.
9711 1993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9713         * Version 19.21 released.
9715         * Makefile.in (mkdir): Ignore error from chmod.
9717 1993-11-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9719         * make-dist: Don't put lisp/forms.README in the distribution.
9721 1993-11-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9723         * configure.in (creating src/Makefile): Before running cpp,
9724         discard all lines that start with `# Generated' or /**/#.
9726 1993-11-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9728         * Version 19.20 released.
9730         * make-dist: Use build-ins.in, not build-install.in.
9731         Don't bother updating TAGS since it's not included.
9733         * build-ins.in: Renamed from build-install.in.
9735 1993-11-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9737         * make-dist: Don't try to link *.texinfo--there are none now.
9738         When running make in lib-src, specify YACC var value.
9740 1993-10-03  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9742         * configure.in (extrasub): Add vpath patterns for %.[yls].
9744         * configure.in: Don't do seddery on config.status after AC_OUTPUT.
9745         Instead just include the commands to make src/Makefile as the
9746         second arg to AC_OUTPUT.
9748         * configure.in: Use : instead of dnl for comment inside
9749         $makefile_command.
9751         * configure.in: No longer use vpath_sed.  Instead, when we notice
9752         srcdir already configured, set extrasub to hack vpath in the
9753         makefiles.
9755         * configure.in: In cmds to make src/Makefile, chmod Makefile.new
9756         before moving it.
9757         * Makefile.in (VPATH): Define to @srcdir@.
9759 1993-09-28  Brian J. Fox  (bfox@cubit)
9761         * configure.in: Don't copy ${srcdir}/src/Makefile.in; that file
9762         doesn't exist.  Just copy src/Makefile.in instead.  Touch
9763         all of the Makefiles after editing config.status.
9765         * INSTALL: Update documentation to match new configuration
9766         mechanism.
9768 1993-09-27  Brian J. Fox  (bfox@ai.mit.edu)
9770         * configure.in: Allow any of the path or directory Makefile
9771         variables to be set with flags to configure.  Create all Makefiles
9772         at configure time.  Edit special commands into config.status after
9773         src/Makefile.in is built from src/Makefile.
9775         * Makefile.in (src/Makefile, lib-src/Makefile, oldXMenu/Makefile):
9776         If these files are out of date, simply have config.status
9777         rebuild them; don't rebuild them explicitly.
9779 1993-09-25  Brian J. Fox  (bfox@ai.mit.edu)
9781         * build-install.in: Change src/xemacs to src/emacs.  We no longer
9782         create src/xemacs, so the file wouldn't be found.
9784         * make-dist: Remove `src/ymakefile', add `src/Makefile.in.in'.
9786 1993-09-24  Brian J. Fox  (bfox@albert.gnu.ai.mit.edu)
9788         * configure.in: Avoid forcing the search of /usr/include before
9789         fixed include files by resetting C_SWITCH_X_SITE if it is
9790         "-I/usr/include".
9792 1993-09-20  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9794         * Makefile.in (@rip_paths@locallisppath):
9795         Delete ${datadir}/emacs/site-lisp.
9797 1993-09-15  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9799         * configure.in:
9800         Use AC_QUOTE_SQUOTE twice to properly quote vpath_sed value.
9801         Remove ${extra_output} from AC_OUTPUT call.
9803 1993-09-17  Brian J. Fox  (bfox@inferno)
9805         * make-dist: Quote backquotes found in strings to be echoed.
9807         * configure.in: Use "sh -c pwd" when we want to avoid having the
9808         shell fix up the value of $PWD.
9810 1993-09-13  Brian J. Fox  (bfox@inferno)
9812         * Makefile.in (do-install): Don't abort if ln or chmod at the end
9813         of the installation fail.  Suggested by Karl Berry.
9815 1993-08-30  Brian J. Fox  (bfox@inferno)
9817         * Makefile.in (*clean): Use "$(MAKE) $(MAKEFLAGS)" wherever "make"
9818         was used.  Set MAKEFLAGS from MFLAGS.
9820 1993-09-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9822         * configure.in: Test for res_init in libc.
9824 1993-09-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9826         * configure.in: In the file ${tempcname}, use configure___
9827         instead of @configure@.
9829 1993-09-12  Roland McGrath  (roland@sugar-bombs.gnu.ai.mit.edu)
9831         * make-dist: Dist vpath.sed.
9833         * Makefile.in (lib-src/Makefile, src/Makefile, oldXMenu/Makefile):
9834         Depend on vpath.sed.
9835         Replace sed command for VPATH with @vpath_sed@.
9837         * configure.in: Substitute variable `vpath_sed'.
9838         If not in $srcdir and $srcdir is configured,
9839         issue warning that GNU make is required,
9840         and set vpath_sed to use vpath.sed script.
9842 1993-09-10  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9844         * configure.in: Remove check for $srcdir being configured.  This
9845         pretty much works now.
9846         Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
9847         Check for XFree86 (/usr/X386/include) independent of whether
9848         -lXbsd exists.
9850         * Makefile.in (info, dvi, clean, mostlyclean, distclean,
9851         realclean, unlock, relock): Use `$(MAKE)' in place of plain
9852         `make'.
9854 1993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9856         * Version 19.19 released.
9858         * configure.in (i386-*-sunos4): Assume Sunos 4.0.
9860 1993-08-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9862         * configure.in: Check for XScreenNumberOfScreen.
9864 1993-08-12  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9866         * configure.in: Add * to end of all configuration alternatives.
9867         (m68*-sony-newsos3*): New alternative.
9869 1993-08-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9871         * make-dist: Include getdate.c in distribution.
9873         * configure.in: For --help, use $PAGER if it is set.
9874         (LIB_X11_LIB): Default to -lX11.
9875         (mips-sgi-irix5.*): New alternative.
9877         * Makefile.in (do-install): Install info/gnus* and info/sc*.
9879         * configure.in (m68*-hp-hpux*, hppa*-hp-hpux*):
9880         Recognize *.B8.* as hpux version 8.
9881         (m68*-tektronix-bsd*): Fix typo in tek4300.
9882         (AC_HAVE_FUNCS): Add ftime.
9884 1993-08-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9886         * configure.in (m88k-tektronix-sysv3*): Added the missing *.
9887         Use tekxd88, not tekXD88.
9889 1993-08-10  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
9891         * configure.in: Check for -lm.  Then can check for frexp and logb.
9893 1993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9895         * Version 19.18 released.
9897         * make-dist (src): Don't put gnu-hp300 in dist.
9898         (src, lisp): Include OChangeLog in dist.
9900 1993-08-08  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9902         * configure.in: Test for presence of logb and frexp functions.
9904 1993-08-05  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9906         * configure.in (machine): Add i370-ibm-aix*.
9908 1993-08-03  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9910         * configure.in (function checks): Test for mkdir and rmdir.
9912         * configure.in (function checks): Don't test for random and bcopy
9913         only when we're building with X; look for them all the time.
9915 1993-07-30  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9917         * configure.in: Test for availability of bcopy functions, searching
9918         the X libraries if we're using X.
9920         * configure.in: Test for the presence of/usr/lpp/X11/bin/smt.exp,
9921         and #define HAVE_AIX_SMT_EXP if we do.  This is present in some
9922         versions of AIX, and needs to be passed to the loader.
9924         * configure.in: Test for the availability of the
9925         XScreenResourceString function.
9927 1993-07-30  David J. MacKenzie  (djm@frob.eng.umd.edu)
9929         * configure.in: If we found X on our own, set C_SWITCH_X_SITE and
9930         LD_SWITCH_X_SITE and assume --with-x11.
9931         Only look for X11 files if we weren't told about a window system
9932         or if we were told to use X11 but not told where.
9933         Search the libraries from the s and/or m files when checking for
9934         functions.
9936         * configure.in: Remove any trailing slashes in prefix and exec_prefix.
9938 1993-07-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9940         * make-dist: Include lisp/dired.todo in the distribution.
9942 1993-07-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9944         * configure.in: Add code to set HAVE_INET_SOCKETS.
9946 1993-07-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9948         * configure.in: If we do find x_includes and x_libraries
9949         via AC_FIND_X, set C_SWITCH_X_SITE and LD_SWITCH_X_SITE.
9951 1993-07-19  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
9953         * make-dist: Include src/gnu-hp300 in the dist.
9955         * configure.in (canonical): New variable holds the canonicalized
9956         configuration.  Don't alter `configuration'.  Use `configuration'
9957         for Makefile.in for file naming.
9958         (testing x_includes and x_libraries): Use =, not ==.
9960 1993-07-17  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
9962         * Version 19.17 released.
9964         * Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
9965         directory's makefile.  This allows the invocation of CPP which
9966         builds xmakefile to receive these switches.  The SunSoft C
9967         preprocessor inserts spaces between tokens if it doesn't get the
9968         -Xs flag requested in src/s/sol2.h.
9970 1993-07-12  Frederic Pierresteguy  (F.Pierresteguy@frcl.bull.fr)
9972         * configure.in (m68k-bull-sysv3): New config.
9974 1993-07-10  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9976         * configure.in: Use the autoconf AC_FIND_X macro to try to find
9977         the X Windows libraries.
9979 1993-07-07  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9981         * make-dist (tempdir): Don't create lisp/forms-mode directory in
9982         the distribution.  Those files aren't kept in their own
9983         subdirectory any more.
9985 1993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9987         * Version 19.16 released.
9989 1993-06-23  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
9991         * configure.in: Add --verbose flag.
9993 1993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
9995         * version 19.15 released.
9997 1993-06-18  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
9999         * Makefile.in (top_distclean): Use -f switch when cleaning out
10000         lock dir; it might be empty.
10002         * configure.in: Only check for -lXbsd once.
10004 1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10006         * Version 19.14 released.
10008 1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10010         * make-dist: If using gzip, create distribution with '.gz' extension.
10012         * make-dist (lisp/term): This doesn't have a ChangeLog anymore.
10013         (lisp/forms-mode): This doesn't exist anymore.
10015         * configure.in: Look for the closedir function.
10017 1993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10019         * configure.in (CPP): Autoconf sets this to a shell variable
10020         reference, which doesn't work when it's edited into a makefile.
10021         Expand that variable reference.
10023         * Makefile.in (CPP): New variable.
10024         (src/Makefile): Edit CPP into src/Makefile.
10026         * Makefile.in (src/Makefile): Don't bother exiting single quotes
10027         and entering double quotes to get the values of LD_SWITCH_X_SITE
10028         and the other make variables; make substitutes them in anyway.
10030         * Makefile.in (uninstall): Don't remove the lisp and etc
10031         directories if they're in the source tree.
10033         Bring mumbleclean targets into conformance with GNU coding standards.
10034         * Makefile.in (mostlyclean, clean): Separate these two; just have
10035         them pass the request to the subdirectory makefiles.
10036         (distclean): Pass the request down, and then get rid of the
10037         files configure built, and get rid of the Makefiles.
10038         (realclean): Pass the request down, and then do the same things
10039         distclean does.
10040         (uninstall, info, dvi): New targets.
10042         * configure.in: Move clause for PC-compatible i386 box to the end
10043         of the case statement, to avoid masking configurations below.
10045         * configure.in: Add case for m88k-motorola-sysv4.
10047         * configure.in: Add support for HP/UX versions 7, 8, and 9 on
10048         the HP 68000 machines.
10050         * configure.in: Put the arguments to LD_SWITCH_X_SITE's and
10051         C_SWITCH_X_SITE's -L and -I switches in quotes, so the
10052         preprocessor won't fiddle with them.
10054 1993-06-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10056         * Makefile.in (TAGS): cd to src to run etags.
10058 1993-06-12  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10060         * configure.in (version): Check the X libraries for XrmSetDatabase
10061         and random, and see if we have -lXbsd.
10063 1993-06-11  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10065         * configure.in: Pass "-Isrc" to the CPP we run to examine the
10066         s/*.h and m/*.h files.  Martin Tomes
10067         <mt00@controls.eurotherm.co.uk> says ISC Unix 3.0.1 needs it.
10069 1993-06-10  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10071         * configure.in: Move i386-prime-sysv* and i386-sequent-bsd*
10072         above the general i386 alternative.
10074 1993-06-10  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10076         * configure.in: Recognize configuration name for Data General
10077         AViiON machines.
10079         * configure.in: Use AC_LONG_FILE_NAMES.
10081 1993-06-09  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10083         * configure.in: Test for bison.
10084         * Makefile.in (YACC): New variable.
10085         (lib-src/Makefile.in): Edit YACC into the makefile.
10087 1993-06-08  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10089         * Version 19.13 released.
10091         * configure.in (CFLAGS): Don't set this according to the value of
10092         the GCC shell variable.  Instead, consult the machine and system
10093         files for the values of C_OPTIMIZE_SWITCH and C_DEBUG_SWITCH, and
10094         test __GNUC__ while we're at it.
10096         * configure.in: Remove extra ;; from hpux cases.
10098 1993-06-07  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10100         * configure.in: Check to see if the system has -ldnet.
10102 1993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10104         * make-dist: Add clauses to distribute lisp/forms-mode.
10106 1993-06-07  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10108         * configure.in (machine): Fix the versions in hpux version number test.
10109         Do not guess based on cpu type.  Do check for explicit system version.
10111 1993-06-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10113         * configure.in: Do NOT look for `unknown' as company name.
10115 1993-06-02  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10117         * configure.in: Fix typo in message.
10119 1993-06-01  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10121         * Version 19.12 released.
10123         * Makefile.in (do-install): Correct previous etc-copying change.
10124         Partially rewrite using `if'.
10125         (src/Makefile): Insert --x-libraries option into LD_SWITCH_X_SITE.
10127         * Version 19.11 released.
10129         * configure.in: Handle 386bsd.
10131 1993-05-31  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10133         * make-dist: Update getdate.c.
10135         * configure.in: Handle bsd386.
10137         * Makefile.in (do-install): Use `-' in tar options.
10139         * configure.in: Change  ! "${...}"  to  x"${...}" = x.
10141         * Makefile.in (do-install): Copy the DOC-* files from the build
10142         etc directory, as well as lots of things from ${srcdir}/etc.
10144         * make-dist: Copy config.guess.
10146         * configure.in: Handle AIX versions 1.2, 1.3.
10148 1993-05-30  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10150         * configure.in: Use s/bsd4-3.h for mips-mips-riscos4, and add
10151         the configuration name mips-mips-usg* to represent USG systems.
10153         * configure.in: Fix logic to detect if srcdir is already configured.
10155         * Makefile.in: Pass in LD_SWITCH_X_SITE.
10157         * Makefile.in (mkdir, clean, mostlyclean, do-install): Use `(cd
10158         foo && pwd)` instead of `(cd foo ; pwd)` to get the canonical name
10159         of a directory; cd might fail, and have pwd print out the current
10160         directory.
10162 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10164         * configure.in: When looking for sources, use '.', not `.`.  Also '..'.
10166 1993-05-30  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10168         * configure.in: Complain if srcdir points at an already-configured
10169         tree.
10171 1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10173         * Version 19.10 released.
10175 1993-05-29  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10177         * Makefile.in: Use Makefile comments, not C comments.
10179         * configure.in: Add case for the Tektronix XD88.
10181 1993-05-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10183         * configure.in: Handle sysv4.2 and sysvr4.2.
10185 1993-05-29  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10187         * configure.in: Traverse the argument list without destroying it;
10188         don't use shift.  It turns out that "set - ${saved_arguments}"
10189         doesn't work portably.
10191         * configure.in: Add missing "fi".
10193         * make-dist: Rebuild configure if configure.in is newer.
10195         * Makefile.in (src:, lib-src:, FRC:): Force the src and lib-src
10196         targets to be executed even if make remembers that it has already
10197         satisfied FRC.
10199 1993-05-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10201         * Makefile.in (do-install): Delete redundant code to copy etc twice.
10203         * configure.in (romp): Handle various version numbers with aos and bsd.
10205 1993-05-28  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10207         * configure.in: Fix message text.
10209 1993-05-28  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10211         * make-dist: Make a `site-lisp' directory in the distribution,
10212         instead of a `local-lisp' directory, which hasn't been the
10213         appropriate name for a long time.
10214         * Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
10215         from the distribution first, then /usr/local/lib/emacs/site-lisp.
10217         * Makefile.in (do-install): Correctly detect if ./etc and
10218         ${srcdir}/etc are the same.
10220         * configure.in: Extract UNEXEC from the system configuration
10221         files, compute the name of the source file corresponding to the
10222         object file, and #define it as UNEXEC_SRC in config.h.
10224         * configure.in: If srcdir is '.', then try using PWD to make it
10225         absolute.
10227         * configure.in: Include ${srcdir} in the printed report, to help
10228         people notice if it's an automounter path.
10230 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10232         * configure.in (prefix): Don't run pwd on srcdir unnecessarily.
10234 1993-05-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10236         * Makefile.in (do-install): Delete the dest dir, not the source dir,
10237         when they are different.  Add  `shift' command.
10238         (COPYDESTS, COPYDIR): Delete external-lisp dir.
10239         (externallispdir): Var deleted.
10241         * configure.in: Delete spurious paren outputting short_usage.
10243 1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10245         * Version 19.9 released.
10247 1993-05-26  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10249         * Makefile.in (${SUBDIR}): Pass the value of the make variable to
10250         subdirectory makes.
10252         * make-dist: Check for .elc files with no corresponding .el file.
10254         * Makefile.in (mkdir): Make all the directories in locallisppath.
10256         * config.guess: New file.
10257         * configure.in: Use it, tentatively.
10258         * INSTALL: Mention its usage.
10260         * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;
10261         the former gives you the operating system rev directly.  Use
10262         s/hpux.h if we don't recognize what we got.
10264         * Makefile.in (do-install): Don't remove a destination directory
10265         if it's the same as the source.  If ${srcdir}/info == ${infodir},
10266         don't try to copy the info files.
10268         * Makefile.in (COPYDIR, COPYDESTS): Don't mention etc twice; this
10269         doesn't work if you're not using a separate source directory.
10270         (do-install): Copy the build tree's etc directory only after
10271         making sure it's not also the source tree's etc directory.
10273 1993-05-26  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10275         * configure.in: Handle sunos4.1.3 specially.
10277 1993-05-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10279         * Makefile.in (INSTALL): Add definition.
10281         * configure.in: Fix some messages.  Support -with-gnu-cc.
10282         At the end, use `set --', not `set -'.
10283         Delete spurious `.h' in hpux alternatives.
10285 1993-05-25  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10287         * Version 19.8 released.
10289 1993-05-25  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10291         * configure.in: When looking for source in the same directory as
10292         the configure script, make the path thus discovered absolute.
10293         If the user specifies the `--srcdir' switch, make that directory
10294         absolute too.
10296         * Makefile.in (srcdir): Remove comment saying this doesn't work.
10298         * Makefile.in (src/paths.h): Edit the `infodir' variable into this
10299         too, as the value of the PATH_INFO macro.
10301         * configure.in: Check to see if the source lives in the same
10302         directory as the configure script.
10304 1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10306         * Makefile.in (install): Split this into `install' and
10307         `do-install', to give people more control over exactly what gets
10308         done.
10309         (do-install): New target, containing the guts of `install'.  Don't
10310         remove and recreate the directories inside the copying loop - do
10311         it all before the copying loop.  Pass more flags to the lib-src
10312         make.
10313         (mkdir): Create ${infodir}, ${mandir}, and ${sitelispdir} here, to
10314         avoid errors and warnings.
10316         * configure.in: For generic IBM PC boxes, insist on "unknown" for
10317         the manufacturer - the more general case was blocking other i386
10318         configuration names below, and that's how the names are written in
10319         MACHINES anyway.
10321         * make-dist: When breaking links, remove the link before moving
10322         the copy onto it, to avoid interactive behavior.
10324         * Makefile.in: Doc fix.
10326         * configure.in: Doc fix.
10328         * INSTALL: Mention --exec-prefix option.
10330         * configure.in: Add support for the `--exec-prefix' option.
10331         * Makefile.in: Accept that support.
10333         * configure.in: Use the AC_PROG_INSTALL macro.
10334         * Makefile.in (INSTALL): Variable removed.
10335         (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
10337         * configure.in: Distinguish between hp800's and hp700's by calling
10338         "uname -m".
10340 1993-05-24  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10342         * configure.in: Recognize configuration names for i860 boxes
10343         running SYSV.
10345 1993-05-23  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10347         * configure.in: Distinguish between hp800's and hp700's by the
10348         version of HP/UX they run, since that's something people are more
10349         likely to know - hp700's run 8.0.
10350         Add HP 700 configuration.
10352         * configure.in: Test for the presence of the `rename' function.
10354         * Makefile.in (C_SWITCH_X_SITE): New variable - get this from
10355         configure.in.
10356         (oldXMenu/Makefile): Edit C_SWITCH_X_SITE into this.
10358         * make-dist: Break intra-tree links.
10360         * configure.in: Explain that this is an autoconf script, and give
10361         instructions for rebuilding configure from it.  Arrange to put
10362         comments in configure explaining this too.
10364         * configure.in: Make the first line of the configure script be
10365         "#!/bin/sh".  Leaving the first line blank didn't work.
10367         * configure.in (long_usage): Removed; made short_usage describe
10368         the options briefly.
10370         * configure.in: Implement the --prefix option.
10371         * Makefile.in (prefix): Add support for it here.
10372         * INSTALL: Document it here.
10374         * Makefile.in (install): Don't assume that the files in the `info'
10375         subdirectory match  *.info.  They don't have that prefix.
10377 1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10379         * configure.in: Add case for version 5 of Esix.
10381 1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10383         * Version 19.7 released.
10385         * make-dist: There aren't any *.com files in lib-src anymore.
10387         * make-dist: Copy texinfo.tex and texindex.c, rather than linking
10388         them; they're symlinks to other filesystems on the GNU machines.
10390         * make-dist: Check that the manual reflects the same version of
10391         Emacs as stated in lisp/version.el.  Edit that version number into
10392         the README file.
10394 1993-05-21  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10396         * configure.in: Remove the hack of AC_DEFINE; use
10397         AC_DEFINE_UNQUOTED.
10399 1993-05-20  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10401         * make-dist: Don't distribute precomp.com, compile.com, or
10402         link.com from ./src; they're in ./vms now.
10404         Some time-handling patches from Paul Eggert:
10405         * configure.in: Add AC_TIMEZONE.
10407 1993-05-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10409         * configure.in: Recognize Linux as a valid operating system for
10410         the i386.
10412 1993-05-18  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10414         * make-dist: Distribute some VMS files we got from Richard Levitte.
10416         * Makefile.in (oldXMenu/Makefile): Take oldXMenu/Makefile.in as
10417         the source for the sed command, not oldXMenu/Makefile.
10419 1993-05-17  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10421         * INSTALL: Don't claim the srcdir option doesn't work.
10423 1993-05-16  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10425         * configure.in: Include remarks saying what order the autoconf
10426         tests should go in, and remind people to change config.h.in
10427         whenever they add autoconf tests which make #definitions.
10429         * make-dist: Distribute oldXMenu/Makefile.in, not oldXMenu/Makefile.
10431 1993-05-15  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10433         * Makefile.in (oldXMenu/Makefile): Make this depend on
10434         ${srcdir}/oldXMenu/Makefile.in, not itself.
10436         * PROBLEMS: Some updates from David J. Mackenzie.
10438         More changes from David J. Mackenzie.
10439         * Makefile.in (install.sysv, install.xenix, install.aix): Targets
10440         removed; autoconf and config.h should specify all these
10441         differences.
10442         (buildlisppath): Make this path depend on ${srcdir}.
10443         (INSTALLFLAGS): Removed.
10444         (INSTALL): Include the -c flag.
10445         (install): Change the way we invoke install accordingly.
10447         Install ${srcdir} changes from DJM.
10448         * Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this
10449         list.
10450         (COPYDIR, COPYDESTS): Install files from both the etc directory in
10451         the source tree and the etc directory in the object tree.
10452         (${SUBDIR}): Pass the prefix variable down to submakes.
10453         (everywhere): Use `sed', not `/bin/sed'.  Not all systems have sed
10454         in /bin.
10455         (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in
10456         values for srcdir and VPATH.
10457         (install): Add `v' flag to tar command.  Make sure that `dir'
10458         exists in ${srcdir}/info before copying it.  Remember that the man
10459         pages come from the source tree, not the object tree.
10460         * configure.in: Remove remarks saying that the --srcdir option
10461         doesn't work.
10462         Create the etc directory in the object tree.
10463         Recognize configuration names of the form *-sun-solaris*.
10464         Recognize sunos5 and solaris as operating system names.
10466         * configure.in: Use the AC_TIME_WITH_SYS_TIME macro, for
10467         lib-src/getdate.y and src/systime.h.
10469 1993-05-15  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10471         * make-dist: Make links in info subdir.
10473 1993-05-13  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10475         * configure.in: Call AC_STDC_HEADERS.
10477 1993-05-10  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10479         * configure.in: Sidestep autoconf's quoting of the second argument
10480         of AC_DEFINE, so we can specify the value to put there.  It would
10481         be nice if autoconf provided some way to specify computed values
10482         for macros.
10484 1993-05-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10486         * Makefile.in (DEFS): Deleted; since we're using AC_CONFIG_HEADER,
10487         this is always just -DHAVE_CONFIG_H.
10489         The GNU coding standards specify that CFLAGS should be left for
10490         users to set.
10491         * Makefile.in (CFLAGS): Let configure determine the default value
10492         for this.  Don't
10493         have it default to DEFS.
10494         (${SUBDIR}): Pass CFLAGS down to submakes, not DEFS.
10495         (lib-src/Makefile, src/Makefile): Edit the default value for
10496         CFLAGS into these files, not DEFS.
10497         * configure.in (CFLAGS): Choose a default value for this - "-g"
10498         normally, or "-g -O" if we're using GCC.  Edit it into the
10499         top-level Makefile.
10501         * configure.in: When scanning the machine and system description
10502         #include files, write their names to conftest.c properly.
10504 1993-05-07  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10506         * configure.in: In configuration name case for Apallos running
10507         Domainios, set opsys, not opsysfile.
10509         * configure.in: Use the autoconf AC_CONFIG_HEADER macro to produce
10510         src/config.h, instead of AC_OUTPUT; the latter overwrites
10511         src/config.h even when it hasn't changed, puts a makefile-style
10512         comment at the top even though it's C code, and produces a
10513         config.status script which doesn't do the job right.
10515         * configure.in: Add AC_LN_S test, so we can tell whether or not we
10516         can use a symbolic link to get the X Menu library into src.
10517         * Makefile.in (LN_S): New variable.
10518         (src/Makefile): Edit the value of LN_S into this makefile.
10520 1993-05-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10522         * configure.in: Support *-sco3.2v4* as opsystem.
10524         * make-dist: Don't include calc directory.
10525         Exclude many files in the man directory; copy a few.
10527 1993-05-04  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10529         * configure.in: Use AC_HAVE_HEADERS to test for sys/time.h, and
10530         call AC_STRUCT_TM to see what's in time.h.
10532         * configure.in: Employ quoting stupidity to get the value of CPP
10533         to expand properly.
10535 1993-04-27  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10537         * configure.in: Use the AC_PROG_CPP macro, and then use the CPP
10538         variable to scan the machine and system description files.
10540         * configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
10541         so that getdate.y builds correctly.
10543 1993-04-26  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10545         * configure.in (tempcname): Change this to "conftest.c", so it will
10546         work properly on systems with short filenames; this is the name
10547         autoconf uses.
10549         * configure.in: Also detect the availability of dup2 and
10550         gethostname.
10552         * configure.in: Use the AC_ALLOCA test.
10553         * Makefile.in (ALLOCA): New variable, to be set by ./configure.
10554         (lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
10556 1993-04-24  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10558         * make-dist: Distribute configure, as well as configure.in.
10559         Oversight.
10561 1993-04-23  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10563         * Makefile.in (install): Print out the name of the directory we're
10564         copying, so people can have some idea of whether we're making
10565         progress.
10567         * Makefile.in (install.aix, install.xenix, install.sysv, install):
10568         Don't forget to re-create the COPYDESTS directories after we clear
10569         them out.
10571 1993-04-13  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10573         * Makefile.in: Add autoconf cookies so that the configure
10574         script can comment out sections of path variable definitions to
10575         choose between the installable configuration and the run-in-place
10576         configuration.
10577         * configure.in: Add new option `--run-in-place', to select the
10578         run-in-place path definitions.
10580         * configure.in: Add a clause to the big configuration name case
10581         for the NeXT machine.
10583 1993-04-12  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10585         * Makefile.in (install, install.sysv, install.xenix, install.aix):
10586         Make sure that each source directory exists, and is different from
10587         the destination directory; then, delete the destination before
10588         copying over the source.
10590         * make-dist: Distribute configure.in, instead of configure.
10592 1993-04-10  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10594         * configure.in: Don't set CC to "gcc -O" if the user specifies
10595         `--with-gcc'.  Add -O to DEFS if GCC is set.
10597 1993-04-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10599         * Makefile.in (clean mostlyclean): Missing right paren.
10601         * configure.in: When checking for X windows, search for an X11
10602         subdirectory of ${x_includes}.
10604         * configure.in: Check for gettimeofday function, for getdate.y.
10606         Change `configure' to a mixture of custom code and autoconf stuff.
10607         autoconf can't derive all the information we need, but we'd really
10608         like to be able to take advantage of some of its tests, and its
10609         file-editing facilities.
10610         * configure.in: Renamed from configure.
10611         Quote the sections of shell script we want copied literally to
10612         the configure script.
10613         (compile): Initialize this to make the autoconf macros' code happy.
10614         Use AC_PROG_CC, AC_CONST, and AC_RETSIGTYPE instead of writing out
10615         code to do their jobs.
10616         Use autoconf to produce Makefile and src/config.h.
10617         Remove the Makefile-style comment that autoconf places at the top
10618         of src/config.h.
10619         (config_h_opts): Removed - no longer necessary.
10620         * Makefile.in (configname): Renamed to configuration.
10621         (CONFIG_CFLAGS): Renamed to DEFS.
10622         (CC, DEFS, C_SWITCH_SYSTEM, version, configuration): Adjusted to
10623         get values via autoload @cookies@.
10624         (libsrc_libs): Get this from autoconf.  We used to do nothing
10625         about this.
10626         (${SUBDIR}): Pass DEFS to submakes instead of CONFIG_CFLAGS.
10628         * Makefile.in (src/paths.h, lib-src/Makefile, src/Makefile): Don't
10629         echo the move-if-change command.
10631 1993-04-08  Jim Blandy  (jimb@churchy.gnu.ai.mit.edu)
10633         * make-dist: Distribute lib-src/rcs-checkin.
10635         * make-dist: It's oldXMenu/compile.com, not oldXMenu/compile.mms.
10636         Don't try to make links to the RCS or Old subdirectories.
10637         Use the appropriate extension for the compression type in use.
10638         Create the tar file in the shell's initial default directory, not
10639         in ${tempparent}.
10640         Erase the whole ${tempparent} tree, not just ${tempdir}.
10642 1993-03-30  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10644         * Makefile.in (src/paths.h): Don't echo the huge sed command we
10645         use to build paths.h.
10646         (lib-src/Makefile, src/Makefile): Similarly.
10648         * configure: Extend test for working `const' keyword to handle AIX
10649         3.2 cc.
10651 1993-03-24  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10653         * make-dist: Distribute lisp/term/ChangeLog.
10655         Arrange for C compilation throughout the tree to get
10656         C_SWITCH_SYSTEM from the configuration files.
10657         * configure: Extract C_SWITCH_SYSTEM from the machine and
10658         system-dependent files, and save it in the top-level Makefile.
10659         * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit.
10660         (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
10662         * make-dist: Include the VMS support files in oldXMenu in the
10663         distribution.
10665         * configure: Doc fix.
10667         * configure: Fix corrupted config_h_opts.
10669         * configure: Properly report option names in error messages.
10671         * configure: Properly recognize --x-includes and --x-libraries
10672         options.
10674         * configure: Fix syntax errors in code handling XFree386.
10676 1993-03-23  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10678         * configure: Add special code to detect XFree386, and tell
10679         config.h about it.
10681         * configure: Properly handle extracting values of LIBS_MACHINE and
10682         LIBS_SYSTEM that contain spaces.
10684         * configure: Add `--x-includes' and `--x-libraries' options.  I
10685         think these are dopey, but no less than three alpha testers, at
10686         large sites, have said they have their X files installed in odd
10687         places.  Implement them by setting C_SWITCH_X_SITE and
10688         LD_SWITCH_X_SITE in src/config.h.
10690 1993-03-22  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)
10692         * make-dist: Don't distribute etc/Old files.
10694         * GETTING.GNU.SOFTWARE, PROBLEMS: Registered into RCS with their
10695         backups.
10697 1993-03-20  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10699         * make-dist: Fix typo.
10701 1993-03-19  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)
10703         * make-dist: Corrected typo, fixed it to discard = and TAGS files
10704         in some cases where it should but didn't seen to.
10706         * Makefile.in: Added unlock and relock productions.
10708 1993-03-18  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10710         * make-dist: Add a --compress option to force make-dist to use
10711         compress.
10713         * make-dist: Use gzip, if we can find it.
10715         * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10716         make rs6000-ibm-aix default to -aix32.
10718 1993-03-17  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)
10720         * Makefile.in: Added `Developer's configuration' section.
10722 1993-03-17  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)
10724         * Makefile.in: Add commented-out variable settings for developer's
10725         configuration.
10727 1993-03-14  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10729         * make-dist: Distribute `src/bitmaps' too.
10731 1993-03-14  Charles Hannum  (mycroft@hal.gnu.ai.mit.edu)
10733         * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10734         make rs6000-ibm-aix default to -aix32.
10736 1993-03-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10738         * configure: Recognize strings like "sysvr0" or "sysvr1" as System V.
10740         * Makefile.in (install.sysv): Add a second `$' in front of
10741         `${dest}', so that the shell will expand it, instead of Make.
10743         * configure: When processing the name of the configure script,
10744         collapse `././' to `./', but leave a single `./' prefix alone.
10746         * configure: Doc fix.
10748 1993-03-04  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10750         * configure: Handle isc3.0 correctly.
10752 1993-02-25  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10754         * make-dist: Don't try to copy the COPYING notice into
10755         external-lisp; we're not distributing that directory any more.
10757 1993-02-24  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10759         * Makefile.in (install, install.aix, install.xenix, install.sysv):
10760         Remove CVS subdirectories from the installed directory trees, as
10761         well as RCS directories.
10763 1993-02-23  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10765         * make-dist: Only copy gmalloc.c if we couldn't link it.
10766         Don't try to copy man/{README,Makefile} unless they actually exist.
10768         * Makefile.in (lisppath): Don't include externallispdir in this.
10769         We're not sure whether we're even going to distribute the
10770         directory yet.
10772 1993-02-17  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10774         * make-dist: Don't distribute the external-lisp directory anymore.
10775         * INSTALL: Remove all references to external-lisp.
10777         * configure: Detect whether the compiler supports `const'
10778         properly, and edit src/config.h accordingly.
10780         * configure: Tweak layout of final report.
10782         * Makefile.in (${SUBDIR}): Pass CONFIG_CFLAGS to the submakes, not
10783         CFLAGS.
10785         * Makefile.in (locallisppath): Make this default to
10786         ${datadir}/emacs/site-lisp, instead of
10787         ${datadir}/emacs/local-lisp.  ${datadir} and ${statedir} are often
10788         the same thing, and local-lisp causes completion conflicts with
10789         lock.
10790         (lisppath): Add ${externallispdir} to this.
10791         * INSTALL: Adjust installation directions.
10793         * Makefile.in (externallispdir): New variable, to say where to
10794         install the externally-maintained lisp files.
10795         (COPYDIR, COPYDESTS): Copy the external lisp directory just like
10796         the others.
10797         * INSTALL: Describe external-lisp and the new externallispdir
10798         variable.
10800 1993-02-14  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10802         * configure (progname): New option `--with-gcc'.  Make it clearer
10803         how we are trying to guess whether or not we have GCC.
10804         * INSTALL: Document the `--with-gcc' option, and improve
10805         description of `--with-x' options.
10807 1993-02-06  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10809         * Makefile.in (COPYDIR, COPYDESTS): Remove ${srcdir}/info and
10810         ${infodir} from these variables; we have written out explicit code
10811         to install the info files.
10813 1993-01-25  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)
10815         * make-dist: Don't distributed the RCS files in the etc directory.
10817 1993-01-24  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10819         * Makefile.in: Some makes can't handle comments in the middle of
10820         commands; move them to before the whole rule.
10822 1993-01-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10824         * README: Mention what Emacs is.
10826 1993-01-14  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
10828         * make-dist: Include `./lisp/calc-2.02' in the distribution.
10829         Add `./cpp' and `./man' back into the distribution.
10831 1993-01-13  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
10833         * Makefile.in: Define MAKE, and use where appropriate.
10835 1993-01-07  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10837         * make-dist: Remember that the authoritative COPYING notice is
10838         `etc/COPYING', not `../etc/COPYING'.
10840 1992-12-20  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10842         * make-dist: Make sure that the COPYING notices in each directory
10843         are copies, not symlinks.
10845 1992-12-19  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10847         * INSTALL: The build process produces an executable called `emacs'
10848         now.  Change references.
10849         * Makefile.in: Adjust `install.mumble' targets to install
10850         `src/emacs', not `src/xemacs'.
10852         * configure: Start with a blank line; this keeps some old CSH's
10853         from thinking it's a CSH script.  Most systems will just use
10854         /bin/sh to run it, which is what we're expecting; the only other
10855         shells which might try to interpret it themselves are probably
10856         Bourne-compatible.
10858 1992-12-14  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10860         * INSTALL: Improvements suggested by David Mackenzie.
10862 1992-12-12  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10864         * Makefile.in (install, install.sysv, install.xenix, install.aix):
10865         Don't try to copy the info files if there aren't any; the
10866         unexpanded globbing pattern disappoints `install'.  Ignore the
10867         return status of that command.
10869         * INSTALL: Updated for new configuration arrangement.
10871         * configure: Don't make the top-level Makefile read-only - people
10872         may want to edit the values of the path variables.
10874         * Makefile.in (install, install.sysv, install.xenix, install.aix):
10875         Install the info files in ${infodir}.  Install the executable
10876         under both `emacs' and `emacs-VERSION'.
10878         * Makefile.in: Doc fix.
10880         * Makefile.in (exec_prefix): New variable, as per latest version
10881         of coding standards.
10882         (bindir, libdir): Use it, instead of `prefix'.
10883         (lib-src/Makefile): Edit value of exec_prefix into lib-src/Makefile.
10885         * Makefile.in (mandir): Make the default value for this depend on
10886         $(prefix).
10888         * Makefile.in (datadir, statedir, libdir): Make these all default
10889         to ${prefix}/lib.
10890         (lispdir, locallisppath, etcdir, lockdir, archlibdir): Adjusted
10891         to compensate.
10893         * Makefile.in (install, install.sysv, install.xenix, install.aix):
10894         Install the etags and ctags man pages too.
10896         * Makefile.in (distclean): Don't delete backup files; that's the
10897         job of extraclean.
10898         (extraclean): Like distclean, but deletes backup and autosave files.
10900 1992-12-10  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10902         Make path specification conform to GNU coding standards.
10903         * configure (long_usage): Remove all traces of old arguments from
10904         usage messages, and document the options we do accept in more
10905         detail: -with-x... and --srcdir.
10906         (options, boolean_opts): Deleted; we don't have enough options to
10907         make this worthwhile.
10908         (prefix, bindir, lisppath, datadir, libdir, lockdir): Deleted,
10909         along with the code which supported them; these should be set as
10910         arguments to the top-level make.
10911         (config_h_opts): Since this no longer doubles as a list of option
10912         names, make them upper case; this simplifies the code which uses
10913         them to build the sed command to edit src/config.h.  Change the
10914         code which sets them.
10915         (cc, g, O): Don't allow the user to set these using options; they
10916         should be specified using `CC=' and `CFLAGS=' arguments to the
10917         top-level make.  Just choose reasonable default values for them,
10918         and edit them into Makefile.in's default CC and CONFIG_CFLAGS
10919         values.
10920         (gnu_malloc, rel_alloc): Don't allow the user to set these using
10921         options; use them whenever the configuration files say they're
10922         possible.
10923         Simplify the argument processing loop.  Don't accept abbreviations
10924         for option names; these might conflict with other configuration
10925         options in the future.
10926         Add some support for the `--srcdir' option.  Check for the sources
10927         in . and .. if `--srcdir' is omitted.  If the directories we will
10928         compile in don't exist yet, create them under the current directory.
10929         Note that the rest of the build process doesn't really support
10930         this.
10931         Edit only the top Makefile.  That should edit the others.  Edit
10932         into the makefile: `version', from lisp/version.el, `configname'
10933         and `srcdir' from the configuration arguments, `CC' and
10934         `CONFIG_CFLAGS' as guessed from the presence or absence of GCC in
10935         the user's path, and LOADLIBES as gleaned from the system
10936         description files.
10937         Simplify the report generated; it doesn't need to include any
10938         description of paths now.
10939         Make `config.status' exec configure instead of just calling it, so
10940         there's no harm in overwriting `config.status'.
10941         * Makefile.in (version, configname): New variables, used to choose
10942         the default values for datadir and libdir.
10943         Path variables rearranged into two clearer groups:
10944         - In the first group are the variables specified by the GNU coding
10945           standards (prefix, bindir, datadir, statedir, libdir, mandir,
10946           manext, infodir, and srcdir).
10947         - In the second are the variables actually used for Emacs's paths
10948           (lispdir, locallisppath, lisppath, buildlisppath, etcdir, lockdir,
10949           archlibdir), which depend on the first category.
10950         datadir and libdir default to directories under
10951         ${prefix}/lib/emacs instead of ${prefix}/emacs, by popular
10952         demand.
10953         etcdir and lispdir default to subdirectories of datadir.
10954         archlibdir defaults to libdir.
10955         The new installation tree is a bit deeper than it used to be, so
10956         use the new make-path program in lib-src to build them all.
10957         Always build a new src/paths.h.tmp and then move-if-change it to
10958         src/paths.h, to avoid unnecessary rebuilds while responding to the
10959         right changes.
10960         Remove all mention of arch-lib.  Run utility commands from
10961         lib-src, and let the executables be copied into archlibdir when
10962         Emacs is installed.
10963         Add targets for src/Makefile, lib-src/Makefile, and
10964         oldXMenu/Makefile, editing the values of the path variables into
10965         them.
10966         Let lib-src do its own installation.
10967         (datadir): Default to putting data files under
10968         ${prefix}/lib/emacs/${version}, not /usr/local/emacs.
10969         (emacsdir): Variable deleted; it would only be confusing to use.
10970         (lispdir, etcdir): Default to ${datadir}/lisp.
10971         (mkdir): Use make-path for this.
10972         (lockdir): Do this in mkdir.
10973         (Makefile): New target.
10975         * configure (usage_message): Rename to long_usage.
10977         * make-dist: Don't bother creating an arch-lib directory; that's
10978         only for installation now.
10980 1992-11-20  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
10982         * configure: Use GCC-style configuration names, using config.sub.
10983         Change the usage and help messages.
10985         * configure: Initialize window_system, not indow_system.
10987         * configure: Report which window system, compiler, and signal
10988         handler return type we decide to use.
10990         * make-dist: Explain what's going on if config.sub and gmalloc.c
10991         can't be linked.  Place the code which copies them near the code
10992         which links the rest of the files around them.
10994 1992-11-15  Jim Blandy  (jimb@apple-gunkies.gnu.ai.mit.edu)
10996         * make-dist: Don't bother to distribute src/*.com, or
10997         src/vmsbuild; those have all been moved to `../vms'.
10999 1992-11-07  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
11001         * make-dist: Don't forget that the way to avoid filenames starting
11002         with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
11003         `[a-zA-Z0-9].h'.  Add a new section for dealing with files that we
11004         couldn't make hard links to, since we have two already, and
11005         perhaps more to come.
11007 1992-11-04  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
11009         * configure: When editing parameters into lib-src/Makefile, change
11010         the definition of CONFIG_CFLAGS instead of CFLAGS itself; CFLAGS
11011         needs some other flags too.
11013 1992-11-03  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
11015         * configure: Remove spurious echo of the configuration name.
11017         * make-dist: Don't distribute files in src/m and src/s whose names
11018         begin with `='.
11020 1992-10-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
11022         * configure: Update GNU_MALLOC and REL_ALLOC in config.h.
11023         Also LISP_FLOAT_TYPE.
11025 1992-10-26  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
11027         * make-dist: Copy config.sub, since it's a symbolic link to a file
11028         on another file system.
11030 1992-10-17  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
11032         * make-dist: Include lib-src/makedoc.com and emacs.csh in the
11033         distribution.
11035         * config.sub: New file, to help us recognize configuration names.
11036         * make-dist: Include it in the distribution.
11038 1992-09-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
11040         * configure: Convert `-' to `_' in specified option names.
11041         Accept options with --.  Delete --highpri and --have-x-menu options.
11042         New options --with-x and --with-x10 replace -window-system.
11043         Don't mention options --gnu-malloc, --rel-alloc
11044         or --lisp-float-type in help message.
11046 1992-09-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11048         * make-dist: Include the `vms' subdirectory in the distribution.
11050 1992-09-10  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11052         * configure: Remove lines starting with "# DIST: " when building
11053         lib-src/Makefile and src/Makefile.  This allows us to mark the
11054         "Makefile.in" files with explanatory comments which won't also get
11055         stuck in the Makefiles.
11057 1992-09-05  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11059         * make-dist: Don't use the '+' operator in the sed regular
11060         expression that extracts the version number from lisp/version.el;
11061         Ultrix sed doesn't seem support the operator.  Just double the
11062         operand and use *.
11064 1992-09-01  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11066         * Makefile.in: Doc fix.
11068 1992-08-31  Jim Blandy  (jimb@totoro.cs.oberlin.edu)
11070         * configure: Rewrite sed command to remove at most one ./ prefix;
11071         Ultrix's sed doesn't allow us to apply the * operator to a \( \)
11072         group.
11074 1992-08-25  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
11076         * Makefile.in (src/paths.h): Use sed, not /bin/sed.
11078 1992-08-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11080         * make-dist: Go ahead and build a new TAGS file, unless the
11081         --newer option was specified.  Don't try to delete a TAGS file
11082         from etc; it's not kept there, and shouldn't be deleted anyway.
11084 1992-08-14  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11086         * make-dist: If the lisp directory contains a default.el, don't
11087         distribute it.
11089         * configure: When searching signal.h for the type of a signal
11090         return handler, make a copy of it, not a symbolic link to it; that
11091         way, it will work on systems that don't have symbolic links.
11093 1992-08-14  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)
11095         * make-dist: Taught it about vcdiff and rcs2log, added --newer
11096         option for generating incremental distributions.  Stopped it from
11097         generating a TAGS file into the distribution; that sucker is
11098         *big*, and easily enough generated with the toplevel makefile.
11100 1992-08-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11102         * configure: When writing config.status, don't prefix progname
11103         with a '.'; it might be absolute.
11105 1992-08-05  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11107         * configure: Choose to use X11 if either /usr/lib/libX11.a or
11108         /usr/include/X11 exist, not only if both exist.
11110 1992-07-27  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
11112         * make-dist: Make the new external-lisp directory a duplicate of
11113         the external-lisp directory, not the lisp directory.
11115 1992-07-07  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
11117         * Makefile.in (clean, mostlyclean): Don't bother trying to `make
11118         clean' in arch-lib; it doesn't even have a Makefile.
11120         * Makefile.in (clean, mostlyclean): In the test which tries to
11121         distinguish between the build directory, which should be cleaned,
11122         and the installed directory, which shouldn't, cd to `${emacsdir}',
11123         not `${DESTDIR}${LIBDIR}'.
11125 1992-06-30  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11127         * make-dist: Be sure to delete the .c and .h files that YACC and
11128         BISON create from getdate.y.
11130         * external-lisp: New directory; see `external-lisp/README'.
11131         * make-dist: Added support for the external-lisp subdirectory.
11133         * make-dist: Changed message which complains that make-dist wasn't
11134         invoked in the right directory to indicate which files it was
11135         looking for.
11137 1992-06-29  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11139         * configure: Add comments explaining why we can't translate
11140         character ranges or control characters in `tr'.
11142 1992-06-24  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11144         * configure: When generating the configuration message, we used to
11145         build the message from the start so that each line began with "# "
11146         so that it would be a comment in `config.status'.  However, this
11147         causes trouble if any of the variables we use in the message
11148         expand to more than one line of text - as gnu_malloc_reason
11149         sometimes does.  So instead, we build the message as it should be
11150         printed to the user (i.e. without the "# " prefixes), and stick on
11151         the "# "s when we write it to `config.status'.
11153         * Makefile.in (clean, mostlyclean): Don't neglect to clean out
11154         `lib-src' and `arch-lib'.
11156         * configure: When generating report and `config.status' file, note
11157         that bindir only determines where `make install' and
11158         `build-install' will place the executables; this should make it
11159         clear that the ordinary build process will not try to install
11160         things.
11162 1992-06-10  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)
11164         * make-dist: Change messages to say that we are 'making links to
11165         X', rather than 'copying X'.  And put `' quotes around file names.
11167         * make-dist: Include '.tmp' in the name of the staging directory.
11169         * make-dist: Pass the `-f' option to rm when you're not sure that
11170         the files you're removing actually exist.
11172         * make-dist: When setting up etc/COPYING, always nuke whatever is
11173         there, and then copy it in, to make sure we get a real file.
11175         * make-dist: Don't try to distribute *.defns files any more.  The
11176         only such file was for simula.el, which has been superseded by a
11177         version which doesn't have a separate .defns file.
11179 1992-05-28  Ken Raeburn  (Raeburn@Cygnus.COM)
11181         * make-dist: Don't distribute configured versions of config.h.in,
11182         paths.h.in, Makefile.in in src.
11184         * configure: Delete .tmp files before creating them; don't bother
11185         trying to make final targets writable first, since it won't
11186         matter to move-if-change.
11188 1992-05-19  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11190         * Makefile.in (mkdir, lockdir): Don't put dashes in front of the
11191         mkdir and chmod in the center of all the conditionals.  GNU Make
11192         will strip these out, but other makes won't.
11194 1992-05-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11196         * make-dist: Include move-if-change in list of files to distribute.
11198 1992-05-04  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11200         * configure: Remove any "." elements from the program name.
11202         * configure: Don't record the values of all the possible arguments
11203         in config.status; only record the options that the user specified.
11205         * configure: Use move-if-change to move in the new src/config.h.
11207 1992-04-29  Ken Raeburn  (Raeburn@Cygnus.COM)
11209         * move-if-change: New file, copied from gcc release.
11210         * Makefile.in (src/paths.h): Use it, and put the "sed" output into
11211         a temp file, so we don't update paths.h if an error occurs or if
11212         it doesn't need changing.
11214 1992-04-28  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11216         * Makefile.in (src/paths.h): Do not install a value for the
11217         PATH_SUPERLOCK value; that macro doesn't exist anymore.
11218         * build-install.in: Same thing.
11220 1992-04-24  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11222         * make-dist: Check the flag called "make_tar", not "make_dir"; the
11223         latter, being a typo, is always false, resulting in a program
11224         whose default behavior is to painstakingly build a copy of the
11225         source tree, and then delete it.  Rah.
11227         * Makefile.in: Add dist target, and comment for it.
11229         * configure: When scanning <signal.h> for a declaration for
11230         signal, create a symbolic link with a name ending in .c, so the
11231         compiler won't complain that it's only been given .h files.
11233         * configure: Check whether there are any arguments available
11234         before shifting to get the value of a non-boolean parameter.
11236         * make-dist: Doc fix.
11238 1992-04-20  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11240         * configure: Instead of grepping /usr/include/signal.h for a
11241         signal declaration, run /usr/include/signal.h or
11242         /usr/include/sys/signal.h through cpp and grep for the
11243         declaration.
11245         * configure: Redirect the output of grep to /dev/null instead of
11246         using grep -s - that flag means different things on other systems.
11248         * Makefile.in: Use 'buildlisppath' instead of 'dumplisppath',
11249         since the former is recognizable even if you don't know what
11250         'dumping' is.
11251         * configure: Accommodate that change.
11253         * configure: Accept options for all of the directories you can
11254         change in the Makefile.
11256         * configure: Accept "-OPTION VALUE" as well as "-OPTION=VALUE".
11258         * INSTALL: Mention that you have to copy all the 'FOO.in' files to
11259         FOO before you can use them.
11261         * build-install.in: Made the "Where To Install Things" section
11262         conform with the similar section from Makefile.in.  Copied section
11263         which builds src/paths.h from src/paths.h.in from the Makefile.
11265 1992-04-19  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11267         * configure: Write config.status to pass its command-line
11268         arguments on to configure, so that people can use it to recreate
11269         an old configuration, with minor changes.
11271 1992-04-16  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11273         * configure: Don't rely on option variables being unset if their
11274         values are the empty string.  In particular, when producing the
11275         English report, don't assume that highpri will be unset when no
11276         increased priority has been requested; -highpri='' should be the
11277         same as omitting -highpri altogether.
11279         * configure: Fix dumb bug: when running the system and machine
11280         description files through cpp, mark those lines that we want to
11281         evaluate with the string '@configure@', and then only evaluate
11282         them.  This way if the files include anything that actually
11283         generates text (type definitions or external declarations, say),
11284         we won't try to eval it.
11286 1992-04-11  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11288         * make-dist: New shell script.
11290         * configure: When creating foo from foo.in, make foo read-only to
11291         remind people to edit the .in file instead.
11293         * INSTALL: Changed references to config.h-dist to config.h.in.
11294         The "BUILDING GNU EMACS BY HAND" section neglected to mention how
11295         to build src/paths.h from src/paths.h.in; added a paragraph to do
11296         this.
11297         * configure, Makefile, build-install: Changed filenames like
11298         FOO-dist to FOO.in.
11300 1992-04-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11302         * Makefile, build-install: Renamed to Makefile.in and
11303         build-install.in; the configure script will edit these to produce
11304         the usable Makefile and build-install.
11305         * configure: Changed to produce ./Makefile, ./build-install,
11306         lib-src/Makefile, and src/Makefile from their *.in counterparts,
11307         instead of editing them in place.
11309 1992-04-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11311         * Makefile: Re-arranged so that the undumped Emacs will search
11312         ../lisp *after* the site's local elisp files.
11313         (locallisppath, dumplisppath): New variables.
11314         (lisppath): This variable's default value is now chosen based on
11315         $(locallisppath) and $(lispdir); while it used to be the
11316         customization point for adding site-local elisp directories to
11317         load-path, that job is now handled mostly by locallisppath.
11318         (src/paths.h): Edit the value of a new macro, PATH_DUMPLOADSEARCH.
11319         Check the values being assigned to the *LOADSEARCH macros for null
11320         path elements (like '::' in 'foo::bar').
11322         * configure: When checking if the machine- and system-dependent
11323         files define a particular macro or not, actually run them through
11324         CPP and test the macros with #ifs, instead of just grepping for
11325         the macros' names.  In particular, check for SYSTEM_MALLOC in this
11326         way.
11328 1992-04-03  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
11330         * Makefile (install): Don't use -s in install.  (Keep the symbols.)
11332 1992-04-02  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11334         * configure: Make the config.status file an executable shell
11335         script which will recreate the same configuration.  Include the
11336         verbal description of the current configuration as a comment in
11337         the script.
11338         * INSTALL: Doc fix.
11340         * Makefile: Brought the Makefile up to the GNU coding
11341         standards, as described in standards.text:
11342         (TAGS): New name for the target which rebuilds the tags table.
11343         (check): New target; doesn't do anything yet.
11344         (mostlyclean): New target, synonymous with clean.
11345         (realclean): New target.  Currently, this just calls the
11346         subdirectories's makefiles and then deletes config.status.
11347         (INSTALL, INSTALLFLAGS, INSTALL_PROGRAM, INSTALL_DATA): New
11348         variables.
11349         Installation directory variables changed to conform.
11350         (install, install.sysv, install.xenix, install.aix): Changed the
11351         code which copies the directories into their installed location to
11352         allow the installed locations to be in several different
11353         directories; the old version assumed that they would all be in
11354         $(emacsdir).
11355         (mkdir, lockdir): Allow the installed locations to be in several
11356         different directories.
11357         * INSTALL: Doc fix.
11359         * build-install: Use the same variable names as the Makefile.
11360         Allow the installed locations to be in several different
11361         directories.
11363 1992-03-31  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11365         * Makefile (src/paths.h): Instead of using a single sed command to
11366         edit both the PATH_LOCK and PATH_SUPERLOCK macros, edit the two
11367         separately, and don't forget to append "/!!!SuperLock!!!" to the
11368         value of the PATH_SUPERLOCK macro.
11370         * config.emacs: Renamed to configure, for consistency with other
11371         GNU products.  Internal references changed.
11372         INSTALL, Makefile: References changed.
11374         * lock: New directory, which should always be empty.  If this
11375         directory doesn't exist, Emacs won't complain; it just won't lock.
11376         Having this here means that people can just unpack Emacs, build
11377         it, and have locking work.
11379         * share-lib: Re-renamed to etc, for the sake of tradition.
11380         * config.emacs: Changed default value for datadir to ../etc.
11381         * INSTALL, README: Adjusted.
11383 1992-03-18  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11385         * config.emacs: Guess the value for LOADLIBES in lib-src/Makefile
11386         by running CPP on the appropriate s/*.h and m/*.h files.
11388 1992-03-16  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11390         * config.emacs: Make sure to set the "exit on error" flag once
11391         we've removed config.status; errors should abort the configuration.
11393 1992-02-15  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11395         * config.emacs: Added -distribute option, so that the Makefile
11396         paths are in their proper form.  I don't know why this matters.
11398 1992-02-14  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11400         * local-lisp: New directory, empty in the distribution, for people
11401         to put local elisp code in.
11402         * config.emacs: Include it in the default load path.
11403         * README: Document it.
11405 1992-01-30  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11407         * config.emacs: Guess the type of signal handling functions based
11408         on the contents of /usr/include/signal.h.
11410         * config.emacs: Print out progress report messages.
11412         * Makefile (src/paths.h): Don't generically replace
11413         /usr/local/lib/emacs with LIBROOT.  This can hide bugs in the
11414         editing of the other entries, and each entry should be dealt with
11415         explicitly anyway.
11417         * build-install: Converted from C-shell to Bourne shell.
11418         * config.emacs: Edit build-install properly.
11420         * config.emacs: Doc fix.
11422 1992-01-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)
11424         * Makefile (install): Remove `B' from tar xf command.
11426 1992-01-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)
11428         * config.emacs: Removed support for the `maintain-environment'
11429         option; the only important difference between this and its absence
11430         has been removed.
11431         * INSTALL: Removed mention of `maintain-environment'.
11433         * config.emacs: Fix arguments to sed when processing boolean
11434         arguments.
11436 1991-12-05  Jim Blandy  (jimb@pogo.gnu.ai.mit.edu)
11438         * config.emacs: New file, to help automate the installation
11439         process.
11441         * Makefile: Lots of changes to support the separation of etc into
11442         architecture-dependent and -independent files:
11443         (EMACSROOT): New variable, giving the directory under which all of
11444         Emacs's libraries should be installed.  Changed rest of file to
11445         use it.
11446         (LIBDIR): Now denotes only architecture-dependent dir.
11447         (DATADIR): New variable, denoting architecture-independent dir.
11448         (LOCKDIR): New variable, for completeness.
11449         (SUBDIR): No more etc, new lib-src.
11450         (COPYDIR): No more etc, new arch-lib and share-lib.
11451         (src/paths.h): Set PATH_DATA and the LOCK macros too.
11452         (src): Now depends on lib-src, not etc.
11453         * build-install: Changes parallel to the above.
11454         * README: Describe the new arrangement.
11456         * vms: New subdirectory for all the VMS stuff.
11458 1991-12-03  Jim Blandy  (jimb@pogo.gnu.ai.mit.edu)
11460         * Makefile (LISPPATH): New variable.
11461         (src/paths.h): Define PATH_LOADSEARCH according to LISPPATH.
11463 1990-09-28  Richard Stallman  (rms@mole.ai.mit.edu)
11465         * Makefile (install, install.sysv, install.xenix):
11466         Install wakeup instead of loadst.  No need for setuid or setgid.
11468 1990-08-07  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
11470         * Makefile (clean): Clean etc if that's not the installation dir.
11472 1990-04-26  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
11474         * Makefile (paths.h): Make sed alter each name in the path.
11476 1988-08-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
11478         * Makefile (install.sysv): Use cpio, not tar.
11480 1988-08-03  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)
11482         * Makefile (lockdir): Rename `lock' target.
11483         Depend on it from install*, not from `all'.
11485 1988-05-16  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)
11487         * Makefile: Changed LIBDIR and BINDIR back to /usr/local/{emacs,bin}
11488         to match build-install and paths.h.
11490 ;; Local Variables:
11491 ;; coding: utf-8
11492 ;; End:
11494   Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc.
11496   This file is part of GNU Emacs.
11498   GNU Emacs is free software: you can redistribute it and/or modify
11499   it under the terms of the GNU General Public License as published by
11500   the Free Software Foundation, either version 3 of the License, or
11501   (at your option) any later version.
11503   GNU Emacs is distributed in the hope that it will be useful,
11504   but WITHOUT ANY WARRANTY; without even the implied warranty of
11505   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11506   GNU General Public License for more details.
11508   You should have received a copy of the GNU General Public License
11509   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.