Add --with-zlib to 'configure'.
[bpt/emacs.git] / ChangeLog
1 2013-08-11 Paul Eggert <eggert@cs.ucla.edu>
2
3 Add --with-zlib to 'configure'.
4 * configure.ac: Add --with-zlib option to 'configure', so that Emacs
5 can be built without zlib. Don't assume that -lz is needed on
6 non-PNG hosts. Mention zlib configuration status in 'configure' output.
7
8 2013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9
10 * configure.ac: Test for zlib.
11
12 2013-08-10 Eli Zaretskii <eliz@gnu.org>
13
14 * configure.ac: Define and substitute UPDATE_MANIFEST.
15
16 2013-08-04 Stephen Berman <stephen.berman@gmx.net>
17
18 * info/dir: Add todo-mode.
19
20 2013-08-04 Paul Eggert <eggert@cs.ucla.edu>
21
22 Fix some minor races in hosts lacking mkostemp (Bug#15015).
23 Gnulib's emulation of mkostemp doesn't have races that Emacs's does.
24 * configure.ac (mkostemp): Remove check for this function;
25 gnulib does the check now.
26 (mkstemp): Remove check for this no-longer-used function.
27 * lib/mkostemp.c, lib/secure_getenv.c, lib/tempname.c, lib/tempname.h:
28 * m4/mkostemp.m4, m4/secure_getenv.m4, m4/tempname.m4:
29 New files, copied from Gnulib.
30 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
31
32 2013-07-29 Michael Albinus <michael.albinus@gmx.de>
33
34 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add
35 --without-file-notification to --without-all.
36
37 2013-07-29 Xue Fuqiao <xfq.free@gmail.com>
38
39 * INSTALL: Fix description.
40
41 2013-07-27 Glenn Morris <rgm@gnu.org>
42
43 * configure.ac: Extend the --with-sound option to allow
44 specification of OSS or ALSA (see bug#14812#64).
45
46 2013-07-25 Glenn Morris <rgm@gnu.org>
47
48 * info/dir: Add ido.
49
50 * make-dist: Add a --tests option, to include test/.
51
52 2013-07-24 Glenn Morris <rgm@gnu.org>
53
54 * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS.
55
56 2013-07-23 Glenn Morris <rgm@gnu.org>
57
58 * configure.ac (etc, lisp): No need to create specially.
59 Configure already creates lisp, src/Makefile now creates etc.
60
61 2013-07-23 Paul Eggert <eggert@cs.ucla.edu>
62
63 Port to GNU/Linux systems with tinfo but not ncurses.
64 * configure.ac (USE_NCURSES): New symbol.
65
66 2013-07-20 Paul Eggert <eggert@cs.ucla.edu>
67
68 Fix array bounds violation when pty allocation fails.
69 * configure.ac (PTY_TTY_NAME_SPRINTF): Use PTY_NAME_SIZE,
70 not sizeof pty_name, since pty_name is now a pointer to the array.
71
72 2013-07-13 Paul Eggert <eggert@cs.ucla.edu>
73
74 * configure.ac: Simplify --with-file-notification handling.
75
76 2013-07-12 Glenn Morris <rgm@gnu.org>
77
78 * configure.ac: If with-file-notification=yes, if gfile not found,
79 go on to try inotify (not on MS Windows or Nextstep).
80
81 2013-07-12 Paul Eggert <eggert@cs.ucla.edu>
82
83 Fix races with threads and file descriptors.
84 * configure.ac (PTY_TTY_NAME_SPRINTF): Use emacs_close, not close.
85
86 2013-07-10 Paul Eggert <eggert@cs.ucla.edu>
87
88 * Makefile.in (removenullpaths): Remove adjacent null paths (Bug#14835).
89
90 2013-07-09 Peter Rosin <peda@lysator.liu.se> (tiny change>
91
92 * configure.ac (HAVE_W32): Avoid nested functions (the second
93 argument of AC_LANG_PROGRAM is already expanded inside a
94 function). (Bug#14830)
95
96 2013-07-09 Paul Eggert <eggert@cs.ucla.edu>
97
98 Port recent close-on-exec changes to Cygwin (Bug#14821).
99 * lib/binary-io.c, lib/binary-io.h: New files.
100 Merge from gnulib, incorporating:
101 2013-07-09 accept4, dup3, pipe2: port to Cygwin
102 * lib/pipe2.c: Update from gnulib, as part of this merge.
103 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
104
105 Handle errno and exit status a bit more carefully.
106 * lib/ignore-value.h: Remove this gnulib-imported file.
107 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
108
109 2013-07-08 Magnus Henoch <magnus.henoch@gmail.com> (tiny change)
110
111 * configure.ac (HAVE_IMAGEMAGICK): Check on NS also (Bug#14798).
112
113 2013-07-08 Paul Eggert <eggert@cs.ucla.edu>
114
115 Try to fix FreeBSD 9.1 porting problem (Bug#14812).
116 This incorporates the following merge from gnulib:
117 2013-07-07 stdalign, verify: port to FreeBSD 9.1, to C11, and to C++11
118
119 2013-07-07 Paul Eggert <eggert@cs.ucla.edu>
120
121 Port to Ubuntu 10 (Bug#14803).
122 * configure.ac (accept4): New function to check for.
123
124 Make file descriptors close-on-exec when possible (Bug#14803).
125 * configure.ac (mkostemp): New function to check for.
126 (PTY_OPEN): Pass O_CLOEXEC to posix_openpt.
127 * lib/fcntl.c, lib/getdtablesize.c, lib/pipe2.c, m4/fcntl.m4:
128 * m4/getdtablesize.m4, m4/pipe2.m4: New files, taken from gnulib.
129 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
130
131 2013-07-03 Christoph Egger <christoph@debian.org> (tiny change)
132
133 * configure.ac (emacs_broken_SIGIO): Set on gnu-kfreebsd to avoid hang.
134 http://bugs.debian.org/712974
135
136 2013-07-02 Paul Eggert <eggert@cs.ucla.edu>
137
138 Remove some unused macros from 'configure'.
139 * configure.ac (HAVE_SOUNDCARD_H, HAVE_LINUX_VERSION_H, HAVE_SPEED_T)
140 (HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY)
141 (HAVE_GNUTLS_CERTIFICATE_SET_VERIFY_FUNCTION, HAVE_UTIMES)
142 (HAVE_LIBHESIOD, HAVE_LIBRESOLV, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
143 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
144 (HAVE_LIBKRB4, HAVE_LIBKRB, HAVE_DES_H, HAVE_KERBEROSIV_DES_H)
145 (HAVE_DEV_PTMX, DEVICE_SEP, USG5):
146 Remove these macros, as they are not used.
147 (sys_siglist): Remove macro; src/sysdep.c now does this.
148
149 * configure.ac (GTK_COMPILES): Check API a bit more carefully.
150 Also check that it links. Say whether it compiled and linked.
151
152 2013-07-01 Paul Eggert <eggert@cs.ucla.edu>
153
154 Merge from gnulib, incorporating:
155 2013-06-23 ignore-value: port to gcc -pedantic
156 2013-06-21 extern-inline: port to gcc -std=c89
157
158 2013-06-30 Paul Eggert <eggert@cs.ucla.edu>
159
160 Do not use GTK 3 if it exists but cannot be compiled.
161 * configure.ac: Leave GTK_OBJ and term_header alone if GTK 3
162 exists but cannot be compiled.
163
164 2013-06-27 Juanma Barranquero <lekktu@gmail.com>
165
166 * Makefile.in (install-arch-indep): Do not create directories passed
167 with --enable-locallisppath.
168
169 2013-06-24 Glenn Morris <rgm@gnu.org>
170
171 * configure.ac: Include X11/X.h when testing for Xft.h. (Bug#14684)
172
173 2013-06-22 Juanma Barranquero <lekktu@gmail.com>
174
175 * .bzrignore: Add GNU idutils ID database file.
176
177 2013-06-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
178
179 * configure.ac (HAVE_LIBXML2): Try built-in libxml2 on OS X 10.8
180 as a fallback.
181
182 2013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
183
184 * .bzrignore: Don't unignore cl-loaddefs.el.
185
186 2013-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
187
188 * configure.ac (log2): Check for this function.
189
190 2013-06-19 Juanma Barranquero <lekktu@gmail.com>
191
192 * .bzrignore: Add GNU GLOBAL files.
193
194 2013-06-17 Paul Eggert <eggert@cs.ucla.edu>
195
196 Use functions, not macros, for XINT etc. (Bug#11935).
197 * configure.ac (WARN_CFLAGS): Remove -Wbad-function-cast,
198 as it generates bogus warnings about reasonable casts of calls.
199
200 2013-06-16 Paul Eggert <eggert@cs.ucla.edu>
201
202 * configure.ac: Report ACL usage at the end (Bug#14612).
203
204 2013-06-11 Paul Eggert <eggert@cs.ucla.edu>
205
206 --without-all should imply --with-file-notification=no. (Bug#14569)
207 * configure.ac (with_file_notification): Default to $with_features.
208
209 2013-06-09 Paul Eggert <eggert@cs.ucla.edu>
210
211 Merge from gnulib, incorporating:
212 2013-06-02 sig2str: port to C++
213 2013-05-29 c-ctype, regex, verify: port to gcc -std=c90 -pedantic
214
215 2013-06-08 Jan Djärv <jan.h.d@swipnet.se>
216
217 * configure.ac (HAVE_GLIB): Only set XGSELOBJ if HAVE_NS = no.
218 (with_file_notification): Don't set to gfile if with_ns = yes.
219
220 2013-06-07 Richard Copley <rcopley@gmail.com> (tiny change)
221
222 * Makefile.in (msys_to_w32): Modify to support d:\foo file names.
223 (msys_lisppath_to_w32, msys_prefix_subst, msys_sed_sh_escape):
224 New variables.
225 (epaths-force-w32): Use them. (Bug#14513)
226
227 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
228
229 * configure.ac (HAVE_GFILENOTIFY): Check for gio >= 2.24.
230
231 2013-06-03 Eli Zaretskii <eliz@gnu.org>
232
233 * configure.ac (HAVE_GFILENOTIFY): Do not change $LIBS.
234 (GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): Substitute.
235
236 2013-06-03 Jan Djärv <jan.h.d@swipnet.se>
237
238 * configure.ac (HAVE_GLIB): Add GLib check. Set XGSELOBJ if GLib is
239 used. Remove xgselect.o from XOBJ.
240
241 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
242
243 * configure.ac (file-notification): New option, replaces inotify option.
244 (HAVE_W32): Remove w32notify.o.
245 (with_file_notification): Add checks for glib and w32. Adapt check
246 for inotify.
247 (Summary): Add entry for file notification.
248
249 * autogen/config.in: Add entries for HAVE_GFILENOTIFY,
250 HAVE_W32NOTIFY and USE_FILE_NOTIFY.
251
252 2013-06-02 Juanma Barranquero <lekktu@gmail.com>
253
254 * .bzrignore: Ignore dirs libexec/, share/ and var/.
255
256 2013-05-29 Xue Fuqiao <xfq.free@gmail.com>
257
258 * INSTALL: Fix description.
259
260 2013-05-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
261
262 * configure.ac (HAVE_XRANDR): Check availability of
263 XRRGetScreenResources rather than that of XRRQueryExtension.
264
265 2013-05-18 Eli Zaretskii <eliz@gnu.org>
266
267 * make-dist (files): Add nt/msysconfig.sh, nt/mingw-cfg.site,
268 nt/epaths.nt, and nt/INSTALL.MSYS.
269
270 2013-05-18 Paul Eggert <eggert@cs.ucla.edu>
271
272 Port --enable-gcc-warnings to clang.
273 * configure.ac (nw): Remove obsolescent warnings.
274 These aren't needed for clang, or for gcc for that matter.
275 (emacs_cv_clang): New var, which tests for clang.
276 Omit warnings that clang is too picky about.
277 (GLIB_DISABLE_DEPRECATION_WARNINGS): Define this;
278 needed for Ubuntu 13.04 + clang + --enable-gcc-warnings.
279
280 * make-dist (files): Add nt/Makefile.in, nt/gnulib.mk.
281 Otherwise, 'configure; make' fails on non-Windows builds.
282
283 2013-05-16 Eli Zaretskii <eliz@gnu.org>
284
285 * lib/Makefile.am: If building for MS-Windows, include
286 nt/gnulib.mk instead of lib/gnulib.mk.
287
288 * configure.ac: Adapt to MSYS build on MS-Windows.
289
290 * Makefile.in (NTDIR): New variable, for the MSYS build on
291 MS-Windows.
292 (SUBDIR): Add $(NTDIR).
293 (.PHONY): Add epaths-force-w32.
294 (msys_to_w32): New variable.
295 (epaths-force-w32, install-nt, uninstall-nt): New targets.
296 (lib-src src): Add $(NTLIB) to prerequisites.
297 (lib lib-src lisp leim nt): Add 'nt'.
298 (config.status): Use $(CFG).
299 (.PHONY): Add install-$(NTDIR) and uninstall-$(NTDIR).
300 (install, install-arch-dep): Add install-$(NTDIR).
301 (uninstall): Depend on uninstall-$(NTDIR).
302 (mostlyclean, clean, distclean, bootstrap-clean): Add 'nt'.
303
304 * GNUmakefile (CFG): New variable, uses mingw-cfg.site as
305 CONFIG_SITE for the MSYS build on MS-Windows.
306 (Makefile): Use $(CFG).
307
308 * .bzrignore: Ignore *.res, *.tmp, and *.map. Remove
309 src/emacs.res.
310
311 2013-05-16 Paul Eggert <eggert@cs.ucla.edu>
312
313 Merge from gnulib, incorporating:
314 2013-05-15 manywarnings: update for GCC 4.8.0
315 2013-05-15 stdio: use __REDIRECT for fwrite, fwrite_unlocked
316 2013-05-15 sig2str, stdio, warnings: port to clang
317
318 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
319
320 * Makefile.in (install-doc): DOC file is not version specific any more.
321 * .bzrignore: Don't ignore DOC-* any more.
322
323 2013-05-13 Paul Eggert <eggert@cs.ucla.edu>
324
325 * configure.ac (LD_SWITCH_SYSTEM_TEMACS): OpenBSD needs -nopie.
326 Reported privately by Han Boetes <han@boetes.org>.
327
328 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
329
330 * lib/makefile.w32-in (ACL_H): New macro.
331 ($(BLD)/acl-errno-valid.$(O)): Update dependencies.
332
333 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
334
335 Use Gnulib ACL implementation, for benefit of Solaris etc. (Bug#14295)
336 * configure.ac: Remove -with-acl option, since Gnulib does that for
337 us now.
338 (LIBACL_LIBS): Remove; no longer needed.
339 * lib/Makefile.am (CLEANFILES, SUFFIXES): New (empty) macros,
340 for the benefit of the new ACL implementation.
341 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/acl-errno-valid.$(O).
342 ($(BLD)/acl-errno-valid.$(O)): New rule.
343 * lib/acl-errno-valid.c, lib/acl-internal.h, lib/acl.h:
344 * lib/acl_entries.c, lib/errno.in.h, lib/file-has-acl.c:
345 * lib/qcopy-acl.c, lib/qset-acl.c, m4/acl.m4, m4/errno_h.m4:
346 New files, taken from gnulib.
347 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
348
349 2013-05-07 Jan Djärv <jan.h.d@swipnet.se>
350
351 * configure.ac (HAVE_XRANDR, HAVE_XINERAMA): Define if available.
352 (XRANDR_LIBS, XINERAMA_LIBS): New AC_SUBSTs.
353
354 2013-05-06 Paul Eggert <eggert@cs.ucla.edu>
355
356 Merge from gnulib, incorporating:
357 2013-04-30 utimens, utimensat: work around Solaris UTIME_OMIT bug
358
359 2013-05-01 Paul Eggert <eggert@cs.ucla.edu>
360
361 * make-dist: Keep necessary restrictions on file access.
362
363 2013-04-29 Paul Eggert <eggert@cs.ucla.edu>
364
365 Merge from gnulib, incorporating:
366 2013-04-28 extern-inline: work around bug in Sun c99
367
368 2013-04-27 Paul Eggert <eggert@cs.ucla.edu>
369
370 Merge from gnulib, incorporating:
371 2013-04-27 alignof, intprops, malloca: port better to IBM's C compiler
372
373 2013-04-26 Paul Eggert <eggert@cs.ucla.edu>
374
375 Port better to AIX (Bug#14258).
376 * configure.ac (CFLAGS): Append -O if the user did not specify CFLAGS,
377 we did not already infer an optimization option, and -O works.
378 AIX xlc needs -O, otherwise garbage collection doesn't work.
379
380 2013-04-22 Paul Eggert <eggert@cs.ucla.edu>
381
382 * make-dist: Do not distribute admin/unidata/Makefile.
383 It is generated by 'configure'.
384
385 * build-aux/update-subdirs: Don't leave subdirs.el~ behind.
386 It messes up 'make distclean', and contains no useful information
387 because it's a copy of subdirs.el.
388
389 2013-04-18 John Marino <gnugcc@marino.st> (tiny change)
390
391 * configure.ac: Add DragonFly BSD, mostly same as FreeBSD. (Bug#14068)
392
393 2013-04-18 Glenn Morris <rgm@gnu.org>
394
395 * configure.ac (AC_PROG_LN_S): Remove, too restrictive.
396 (LN_S_FILEONLY): New output variable.
397 * Makefile.in (LN_S): Remove.
398 (LN_S_FILEONLY): New, set by configure.
399 (install-arch-dep): Use LN_S_FILEONLY rather than LN_S.
400
401 2013-04-12 Ken Brown <kbrown@cornell.edu>
402
403 * configure.ac (canonical): Adapt to 64-bit Cygwin, for which
404 `canonical' is `x86_64-unknown-cygwin'.
405
406 2013-04-09 Ken Brown <kbrown@cornell.edu>
407
408 * configure.ac (W32_RES_LINK): Remove unneeded linker directive
409 `-Wl,-bpe-i386', which is confusing in the 64-bit case.
410 (Bug#12993)
411
412 2013-04-07 Paul Eggert <eggert@cs.ucla.edu>
413
414 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
415 * configure.ac (LD_SWITCH_SYSTEM_TEMACS): Append -pg if profiling
416 and if not on GNU/Linux or FreeBSD.
417 * lib/Makefile.am (AM_CFLAGS): Add $(PROFILING_CFLAGS), so that
418 lib/*.o is profiled too.
419
420 2013-03-30 Paul Eggert <eggert@cs.ucla.edu>
421
422 Merge from gnulib, incorporating:
423 2013-03-29 stdalign: port to stricter ISO C11
424 This helps to run 'configure' on MS-Windows; see Eli Zaretskii in
425 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00999.html>.
426
427 2013-03-27 Paul Eggert <eggert@cs.ucla.edu>
428
429 * configure.ac (HAVE_XKBGETKEYBOARD): Remove.
430 Subsumed by HAVE_XKB. All uses changed.
431
432 2013-03-25 Jan Djärv <jan.h.d@swipnet.se>
433
434 * configure.ac (HAVE_XKB): Define if Xkb is present.
435
436 2013-03-24 Paul Eggert <eggert@cs.ucla.edu>
437
438 Merge from gnulib, incorporating:
439 2013-03-21 sys_select, sys_time: port 2013-01-30 fix to Cygwin
440
441 2013-03-18 Paul Eggert <eggert@cs.ucla.edu>
442
443 Fix bug when building Emacs with a GNU Make submake (Bug#13962).
444 * Makefile.in (QUIET_SUBMAKE): New macro.
445 (install-info, uninstall): Use it.
446
447 Emacs crashes with ImageMagick 6.8.2-3 through 6.8.3-9 (Bug#13867).
448 * configure.ac (IMAGEMAGICK_MODULE): Reject 6.8.2.
449 We want to reject 6.8.2-3 through 6.8.3-9, but there seems to be
450 no way to do this in pkg-config, so make do with a reasonable
451 approximation.
452
453 Automate the build of ja-dic.el (Bug#13984).
454 * .bzrignore: Add leim/ja-dic/.
455
456 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
457
458 File synchronization fixes (Bug#13944).
459 * configure.ac (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
460 (fsync): Remove check; now done by gnulib.
461 * lib/fdatasync.c, lib/fsync.c, m4/fdatasync.m4, m4/fsync.m4:
462 New files, from gnulib.
463 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
464
465 Merge from gnulib, incorporating:
466 2013-03-13 putenv: port to Solaris 10
467 2013-03-12 mktime: fix configure typo
468 2013-03-11 regex: port to mingw's recent addition of undeclared alarm
469 2013-03-11 putenv: avoid compilation warning on mingw
470 2013-03-11 unistd: don't prevent Tru64 Unix from using gnulib strtod.
471
472 2013-03-11 Glenn Morris <rgm@gnu.org>
473
474 * Merge in all changes up to version 24.3 release.
475
476 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
477
478 * configure.ac (TERM_HEADER): Remove duplicate definition (Bug#13872).
479 It can mess up 'configure' runs.
480
481 2013-03-05 Glenn Morris <rgm@gnu.org>
482
483 * Makefile.in (install-man): Ignore gzip exit status.
484
485 2013-03-03 Glenn Morris <rgm@gnu.org>
486
487 * make-dist: Remove lzma (it's replaced by xz).
488
489 2013-03-01 Paul Eggert <eggert@cs.ucla.edu>
490
491 Merge from gnulib, incorporating:
492 2013-02-21 putenv: port better to native Windows
493 2013-02-18 extern-inline: avoid compilation error with HP-UX cc
494 2013-02-14 putenv: fix heap corruption with mixed putenv/_putenv
495
496 2013-02-28 Ken Brown <kbrown@cornell.edu>
497
498 * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)
499
500 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
501
502 Simplify data_start configuration (Bug#13783).
503 * configure.ac (CRT_DIR, LIB_STANDARD, START_FILES, DATA_START)
504 (LD_FIRSTFLAG, ORDINARY_LINK, LIB_GCC): Remove.
505 (AC_CHECK_HEADERS_ONCE): Remove sys/resource.h, as it's
506 not always needed.
507 (HAVE_DATA_START): New macro.
508
509 2013-02-21 Paul Eggert <eggert@cs.ucla.edu>
510
511 Parallelize documentation builds.
512 This speeds up building of documentation on multiprocessor
513 platforms, and is motivated by Texinfo 5.0, which is much slower.
514 Add a toplevel rule 'make docs' to make all the documentation.
515 * .bzrignore: Add .dvi, .html, .ps.
516 * Makefile.in (DVIS, HTMLS, INFOS, PSS, DOCS): New macros.
517 ($(DOCS), docs, vi, html, pdf, ps): New rules.
518 (info-real): Depend on $(INFOS) rather than doing it sequentially.
519 (dvi): Depend on $(DVIS) rather than doing it sequentially.
520
521 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
522
523 Fix AIX port (Bug#13650).
524 * configure.ac (DATA_START, DATA_SEG_BITS): Set to 0x20000000 on AIX.
525
526 2013-02-12 Eli Zaretskii <eliz@gnu.org>
527
528 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/memrchr.$(O).
529 ($(BLD)/memrchr.$(O)): New dependency.
530
531 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
532
533 Tune by using memchr and memrchr.
534 * .bzrignore: Add string.h.
535 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
536 * lib/memrchr.c, lib/string.in.h, m4/memrchr.m4, m4/string_h.m4:
537 New files, from gnulib.
538
539 Merge from gnulib, incorporating:
540 2013-02-11 unsetenv etc.: port to Solaris 11 + GNU Emacs
541 2013-02-09 secure_getenv: fix C++ declaration typo
542
543 2013-02-11 Glenn Morris <rgm@gnu.org>
544
545 * configure.ac (emacs_config_options): Record some env vars.
546
547 2013-02-10 Glenn Morris <rgm@gnu.org>
548
549 * configure.ac (emacs_config_options): Strip out the (internal)
550 arguments --no-create and --no-recursion.
551
552 2013-02-08 Paul Eggert <eggert@cs.ucla.edu>
553
554 Merge from gnulib, incorporating:
555 2013-02-08 careadlinkat: stop exporting careadlinkatcwd
556 The MS-Windows port can remove careadlinkatcwd at its convenience.
557 2013-02-08 extensions: port better to HP-UX
558 2013-02-06 extensions: port better to MINIX 3, HP-UX, autoheader 2.62
559 2013-02-06 unistd: avoid namespace pollution on non-glibc systems
560 2013-02-04 secure_getenv: new module [module not used by Emacs]
561 2013-01-30 sys_time: port to Solaris 2.6
562
563 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
564
565 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
566 On my host, this speeds up directory-files-and-attributes by a
567 factor of 3, when applied to Emacs's src directory.
568 These functions are standardized by POSIX and are common these
569 days; fall back on a (slower) gnulib implementation if the host
570 is too old to supply them.
571 * .bzrignore: Add lib/dirent.h.
572 * lib/Makefile.am (libgnu_a_SOURCES): Add openat-die.c, save-cwd.c.
573 * lib/careadlinkat.c, lib/careadlinkat.h: Merge from gnulib,
574 incorporating: 2013-01-29 careadlinkat: do not provide careadlinkatcwd.
575 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
576 * lib/dirent.in.h, lib/fdopendir.c, lib/fstatat.c, lib/openat-priv.h:
577 * lib/openat-proc.c, lib/openat.h, m4/dirent_h.m4, m4/fdopendir.m4:
578 * m4/fstatat.m4: New files, from gnulib.
579 * lib/openat-die.c, lib/save-cwd.c, lib/save-cwd.h: New files.
580 These last three are specific to Emacs and are not copied from gnulib.
581 They are simpler than the gnulib versions and are tuned for Emacs.
582
583 2013-02-01 Glenn Morris <rgm@gnu.org>
584
585 * make-dist: Only README files exist in lisp/ now, not README*.
586
587 2013-01-23 Giorgos Keramidas <gkeramidas@gmail.com> (tiny change)
588
589 * .bzrignore: Add lib-src/blessmail.
590
591 2013-01-23 Paul Eggert <eggert@cs.ucla.edu>
592
593 Merge from gnulib, incorporating:
594 2013-01-16 unistd: port to recent mingw
595
596 2013-01-19 Glenn Morris <rgm@gnu.org>
597
598 * Makefile.in (install-arch-indep): Put back a chmod that was
599 removed 2012-05-19. (Bug#13430)
600
601 2013-01-16 Paul Eggert <eggert@cs.ucla.edu>
602
603 Merge from gnulib, incorporating:
604 2013-01-16 largefile: port better to Mac OS X 10.5
605 2013-01-15 stdint: fix build with Android's Bionic fox x86
606
607 2013-01-16 Paul Eggert <eggert@cs.ucla.edu>
608
609 * configure.ac: Document that --enable-gcc-warnings emits errors.
610 (Bug#13448)
611
612 2013-01-13 Glenn Morris <rgm@gnu.org>
613
614 * make-dist: Add options for xz compression and no compression.
615
616 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
617
618 Enable conservative stack scanning for all architectures.
619 Suggested by Stefan Monnier in
620 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00183.html>.
621 * configure.ac (GC_MARK_STACK): Remove.
622
623 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
624
625 * lib/getopt_.h: Remove trailing CRs that crept in.
626
627 2013-01-11 Eli Zaretskii <eliz@gnu.org>
628
629 * lib/getopt_.h: Regenerate.
630
631 2013-01-10 Paul Eggert <eggert@cs.ucla.edu>
632
633 Merge from gnulib, incorporating:
634 2013-01-09 stdlib: port to Solaris 2.6
635
636 2013-01-04 Glenn Morris <rgm@gnu.org>
637
638 * info/dir: Add htmlfontify.
639
640 2013-01-04 Paul Eggert <eggert@cs.ucla.edu>
641
642 Merge from gnulib, incorporating:
643 2013-01-04 stdio: remove now-unnecessary stdio.c
644 2013-01-04 fprintftime: depend on stdio, not ignore-value
645 2013-01-04 fwrite: silence __wur only for older glibc versions
646 2013-01-04 fwrite: silence __wur without using inline
647 * lib/stdio.c: Remove.
648 * lib/stdio.in.h, lib/strftime.c: Update from gnulib.
649 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
650
651 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
652
653 Merge from gnulib, incorporating copyright-date changes and:
654 2012-12-31 dup2: work around cygwin bug
655
656 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
657
658 * configure.ac: Check for GtkHandlebox.
659 Check for GtkTearoffMenuItem.
660 New enable: --enable-gtk-deprecation-warnings, default off.
661 (HAVE_GTK3): If above enable is off, add
662 -DGDK_DISABLE_DEPRECATION_WARNINGS to GTK_CFLAGS.
663
664 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
665
666 * configure.ac (TEMACS_LDFLAGS2): Don't define.
667 (LIBS_GNUSTEP): Set for GNUstep and substitute.
668 (LD_SWITCH_SYSTEM_TEMACS): Don't set for GNUstep.
669
670 2012-12-27 Glenn Morris <rgm@gnu.org>
671
672 * configure.ac (emacs_config_options): New.
673 Use $@ rather than undocumented $ac_configure_args.
674 Replace any embedded double quotes. (Bug#13274)
675
676 2012-12-27 Andreas Schwab <schwab@linux-m68k.org>
677
678 * configure.ac (SIGNALS_VIA_CHARACTERS): Also define for darwin.
679 (Bug#13222)
680
681 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
682
683 Revert static checking of stack smashing.
684 * configure.ac (WARN_CFLAGS): Omit -Wstack-protector when
685 configured with --enable-gcc-warnings. -Wstack-protector causes
686 diagnostics to be issued on Ubuntu 12.10 x86-64.
687
688 2012-12-24 Paul Eggert <eggert@cs.ucla.edu>
689
690 Merge from gnulib, incorporating:
691 2012-12-21 AC_PROG_MKDIR_P: port workaround to pre-2.62 Autoconf
692 2012-12-20 AC_PROG_MKDIR_P: don't workaround if not buggy
693 2012-12-17 filemode, sys_stat: Handle MPX files a la AIX.
694
695 2012-12-21 Akinori MUSHA <knu@iDaemons.org> (tiny change)
696
697 * Makefile.in (install-arch-dep): Ignore chmod errors. (Bug#13233)
698
699 2012-12-16 Romain Francoise <romain@orebokech.com>
700
701 * configure.ac (acl): New option.
702 (HAVE_POSIX_ACL): Test for POSIX ACL support. This is typically
703 provided by libacl on GNU/Linux.
704
705 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
706
707 Fix permissions bugs with setgid directories etc. (Bug#13125)
708 * configure.ac (BSD4_2): Remove; no longer needed.
709
710 2012-12-13 Glenn Morris <rgm@gnu.org>
711
712 * info/dir: Add bovine, srecode, wisent.
713
714 2012-12-13 Andreas Schwab <schwab@suse.de>
715
716 * Makefile.in (install-info): Use `${MAKE} -s' for echo-info.
717 (uninstall): Likewise. (Bug#13143)
718
719 2012-12-11 Paul Eggert <eggert@cs.ucla.edu>
720
721 Merge from gnulib for 'inline' (Bug#13040), incorporating:
722 2012-12-11 extern-inline: avoid incompatibility with Darwin Libc
723 * m4/extern-inline.m4: Update from gnulib.
724
725 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
726
727 * lib/makefile.w32-in (SIG2STR_H): New macro.
728 ($(BLD)/sig2str.$(O)): Update dependencies.
729
730 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
731
732 * configure.ac (HAVE_INOTIFY): Speed up configure-time test.
733 There's no need to test for any of three inotify functions,
734 since we use all three. Check for just the first one.
735
736 2012-12-10 Daniel Colascione <dancol@dancol.org>
737
738 * .bzrignore: Add src/emacs.res.
739
740 * configure.ac (W32_RES, W32_RES_LINK, WINDRES): Teach the cygw32
741 build how to compile Windows resource files; use these variables
742 to tell src/Makefile.in how and whether to compile resources.
743
744 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
745
746 * configure.ac (inotify): New option.
747 (HAVE_INOTIFY): Test for inotify.
748
749 2012-12-09 Andreas Schwab <schwab@linux-m68k.org>
750
751 * configure.ac: Fix source command in .gdbinit.
752 Don't quote $MAKEINFO.
753
754 2012-12-09 Paul Eggert <eggert@cs.ucla.edu>
755
756 Allow spaces in some configuration vars (Bug#13078).
757 * configure.ac (srcdir): Don't assume $PWD lacks spaces.
758 (srcdir, MAKEINFO, PKG_CONFIG, PKG_CONFIG_MIN_VERSION):
759 All uses quoted, to allow spaces in these vars.
760
761 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
762
763 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
764 * lib/putenv.c, lib/unsetenv.c, m4/putenv.m4, m4/setenv.m4:
765 New files, copied automatically from gnulib.
766 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
767
768 2012-12-08 Eli Zaretskii <eliz@gnu.org>
769
770 * lib/makefile.w32-in ($(BLD)/sig2str.$(O)): New dependency.
771 Remove a stray character at the beginning of the file.
772 (Bug#13026)
773
774 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
775
776 Simplify get_lim_data.
777 * configure.ac (ULIMIT_BREAK_VALUE): Remove.
778
779 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
780 * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
781 Use SIGCHLD rather than SIGCLD.
782 * lib/sig2str.c, lib/sig2str.h, m4/sig2str.m4: New files, from gnulib.
783 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
784 * lib/makefile.w32-in (GNULIBOBJS): Add $(BUILD)/sig2str.$(O).
785
786 2012-12-06 Glenn Morris <rgm@gnu.org>
787
788 * configure.ac: Handle info/ files with or without ".info" extension.
789
790 2012-11-30 Paul Eggert <eggert@cs.ucla.edu>
791
792 Merge from gnulib for 'inline' (Bug#13040), incorporating:
793 2012-11-29 snippet/warn-on-use: no 'static inline'
794 2012-11-29 ftruncate, fts, lstat, openat, raise: no 'static inline'
795 2012-11-29 arctwo, md4, md5, sha1, sha256, sha512: no 'static inline'
796 2012-11-29 fflush, stat: no 'static inline'
797 2012-11-29 stdio: better 'inline'
798 2012-11-29 sys_stat: no 'static inline'
799 2012-11-29 unistd: better 'inline'
800 2012-11-29 c-strtod, memcoll, readutmp: no 'static inline'
801 2012-11-29 extern-inline: no 'static inline'
802 2012-11-29 sys_socket: better 'inline'
803 * lib/stdio.c, lib/unistd.c: New files, from gnulib.
804 * build-aux/snippet/warn-on-use.h, lib/gnulib.mk, lib/lstat.c:
805 * lib/md5.c, lib/sha1.c, lib/sha256.c, lib/sha512.c, lib/stat.c:
806 * lib/stdio.in.h, lib/sys_stat.in.h, lib/unistd.in.h, m4/c-strtod.m4:
807 * m4/extern-inline.m4, m4/gnulib-comp.m4, m4/lstat.m4, m4/md5.m4:
808 * m4/sha1.m4, m4/sha256.m4, m4/sha512.m4, m4/stat.m4, m4/stdio_h.m4:
809 * m4/sys_socket_h.m4, m4/sys_stat_h.m4, m4/unistd_h.m4:
810 Update from gnulib.
811
812 2012-11-27 Eli Zaretskii <eliz@gnu.org>
813
814 * make-dist (nt): Adjust to changes in names of the *.manifest files.
815
816 2012-11-24 Ken Brown <kbrown@cornell.edu>
817
818 * configure.ac (HAVE_MOUSE): Remove.
819
820 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
821
822 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
823 * configure.ac: Do not check for dirent.h or closdir.
824
825 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
826
827 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
828 * configure.ac: Do not check for getcwd or getwd.
829
830 2012-11-21 Glenn Morris <rgm@gnu.org>
831
832 * configure.ac (--enable-profiling): Doc fix.
833
834 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
835
836 Improve static checking of integer overflow and stack smashing.
837 * configure.ac (WARN_CFLAGS): Add -Wstack-protector
838 if using GCC 4.7.2 or later on a platform with
839 at least 64-bit long int. This improves static checking on these
840 platforms, when configured with --enable-gcc-warnings.
841
842 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
843
844 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
845 * configure.ac: Do not check for fcntl.h.
846 * lib/gnulib.mk: Regenerate.
847
848 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
849
850 Remove no-longer-used pty_max_bytes variable.
851 * configure.ac (fpathconf): Remove unnecessary check.
852
853 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
854
855 Use faccessat, not access, when checking file permissions (Bug#12632).
856 * .bzrignore: Add lib/fcntl.h.
857 * configure.ac (euidaccess): Remove check; gnulib does this for us now.
858 (gl_FCNTL_O_FLAGS): Define a dummy version.
859 * lib/at-func.c, lib/euidaccess.c, lib/faccessat.c, lib/fcntl.in.h:
860 * lib/getgroups.c, lib/group-member.c, lib/root-uid.h:
861 * lib/xalloc-oversized.h, m4/euidaccess.m4, m4/faccessat.m4:
862 * m4/fcntl_h.m4, m4/getgroups.m4, m4/group-member.m4:
863 New files, from gnulib.
864 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
865
866 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
867
868 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
869 * configure.ac (setpgid, setsid): Assume their existence.
870 (AC_FUNC_GETPGRP, SETPGRP_RELEASES_CTTY): Remove; obsolete.
871
872 Simplify by assuming __fpending.
873 Now that Emacs is using the gnulib fpending module,
874 there's no need for Emacs to have a separate implementation.
875 * configure.ac (stdio_ext.h, __fpending): Remove now-duplicate checks.
876 (PENDING_OUTPUT_COUNT, DISPNEW_NEEDS_STDIO_EXT): Remove.
877
878 2012-11-03 Eli Zaretskii <eliz@gnu.org>
879
880 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/fpending.$(O) and
881 $(BLD)/close-stream.$(O).
882 ($(BLD)/close-stream.$(O)):
883 ($(BLD)/fpending.$(O)): New dependencies.
884
885 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
886
887 Fix data-loss with --batch (Bug#9574).
888 * lib/close-stream.c, lib/close-stream.h, lib/fpending.c
889 * lib/fpending.h, m4/close-stream.m4, m4/fpending.m4:
890 New files, from gnulib.
891 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
892
893 2012-11-03 Eli Zaretskii <eliz@gnu.org>
894
895 * config.bat: Copy lib/execinfo.in.h to lib/execinfo.in-h if needed.
896
897 2012-11-02 Glenn Morris <rgm@gnu.org>
898
899 * Makefile.in (EMACS_ICON): New variable.
900 (install-etc): Use EMACS_ICON to allow choice of icon.
901
902 2012-10-26 Glenn Morris <rgm@gnu.org>
903
904 * Makefile.in (EMACS_NAME): New variable.
905 (EMACS, install-etc, uninstall): Use $EMACS_NAME.
906
907 * Makefile.in (EMACS, EMACSFULL): Transformations should not be
908 applied to $EXEEXT.
909
910 * Makefile.in (uninstall): Don't abort if some directories are missing.
911 Apply transformation rules to manual pages, desktop and icon files.
912 No more emacs22 icons to uninstall.
913
914 2012-10-24 Glenn Morris <rgm@gnu.org>
915
916 * Makefile.in (install-etc, install-man):
917 Don't apply program transform to standard file suffixes.
918
919 2012-10-23 Paul Eggert <eggert@cs.ucla.edu>
920
921 * configure.ac (_FORTIFY_SOURCE): Do not multiply define (Bug#12714).
922 This ports to Gentoo. Problem originally reported against coreutils,
923 but Emacs has it too.
924
925 2012-10-23 Glenn Morris <rgm@gnu.org>
926
927 * Makefile.in (emacs_transform): Remove.
928 (install-man): Revert 2012-10-21 change. (Bug#12713)
929
930 2012-10-21 Glenn Morris <rgm@gnu.org>
931
932 * Makefile.in (install-etc): Don't install emacs22 icons.
933
934 * Makefile.in (emacs_transform): New variable.
935 (install-etc): Prefer a make variable to a shell variable.
936
937 2012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
938
939 * Makefile.in ($(MAKEFILE_NAME)): Depend on src/lisp.mk as well.
940
941 2012-10-15 Glenn Morris <rgm@gnu.org>
942
943 * Makefile.in (install-man, install-etc):
944 Apply $TRANSFORM. (Bug#12536#34)
945 (clean): Delete etc/emacs.tmpdesktop.
946
947 2012-10-11 Kenichi Handa <handa@gnu.org>
948
949 * .bzrignore: Add several files under admin/charsets.
950
951 2012-10-08 Daniel Colascione <dancol@dancol.org>
952
953 * configure.ac: Add --with-w32 as a window system option.
954 Limit it to Cygwin for now. Integrate w32 into the refactored window
955 system configuration and set TERM_HEADER to w32term.h when w32 is
956 configured.
957
958 (CYGWIN_OBJ): Add cygw32.o.
959
960 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
961
962 * configure.ac: Check that OSX is 10.4 or newer.
963
964 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
965
966 Improve sys_siglist detection.
967 * configure.ac (sys_siglist): Look for its decl in <signal.h>.
968 Otherwise, it's not found in either Fedora 17 or Solaris 11.
969
970 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
971
972 Merge from gnulib, incorporating:
973 2012-10-02 pselect: reject invalid file descriptors
974 2012-10-02 ptsname: reject invalid file descriptors
975 2012-10-02 manywarnings: cater to more gcc infelicities
976 2012-09-30 sockets, sys_stat: restore AC_C_INLINE
977 * lib/pselect.c, lib/stdlib.in.h, m4/manywarnings.m4, m4/pselect.m4:
978 * m4/stdlib_h.m4, m4/sys_stat_h.m4: Update from gnulib.
979 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
980
981 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
982
983 Merge from gnulib, incorporating:
984 2012-09-28 extern-inline: provide a -Wundef safe config.h
985
986 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
987
988 Check more robustly for timer_settime.
989 This should fix an OS X build problem reported by Ivan Andrus in
990 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00671.html>.
991 * configure.ac (gl_THREADLIB): Define to empty, since Emacs
992 does threads its own way.
993 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
994
995 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
996
997 * Makefile.in (bootstrap): Set MAKEFILE_NAME when building Makefile,
998 to avoid problems with recursion when using GNU make.
999
1000 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
1001
1002 * Makefile.in (bootstrap): Simplify build procedure.
1003 Suggested by Wolfgang Jenker in
1004 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00456.html>.
1005
1006 Merge from gnulib, incorporating:
1007 2012-09-22 sockets, sys_stat: remove AC_C_INLINE in MSVC-only cases
1008
1009 2012-09-19 Tassilo Horn <tsdh@gnu.org>
1010
1011 * doc/emacs/misc.texi (DocView Slicing): Document new slice from
1012 BoundingBox feature.
1013
1014 2012-09-18 Jan Djärv <jan.h.d@swipnet.se>
1015
1016 * configure.ac (HAVE_GTK): Mention if we use GTK2 or GTK3.
1017
1018 2012-09-17 Andreas Schwab <schwab@linux-m68k.org>
1019
1020 * Makefile.in (bootstrap): Revert last change. Run config.status
1021 after config.status --recheck, run configure from $(srcdir).
1022 (config.status): Run configure from $(srcdir).
1023
1024 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
1025
1026 * Makefile.in: Fix build error on FreeBSD.
1027 ($(MAKEFILE_NAME)): Pass MAKE='$(MAKE)' to config.status's env.
1028 Suggested by Wolfgang Jenker in
1029 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00430.html>.
1030 (MAKE_CONFIG_STATUS): Remove. Remaining use expanded.
1031 This undoes part of the 2012-09-10 patch.
1032 (bootstrap): Run ./configure, rather than trying to run config.status
1033 if it exists. That builds src/epaths.h more reliably.
1034 Run autogen/copy_autogen if autogen.sh fails,
1035 to create 'configure'; problem reported by Andreas Schwab in
1036 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00438.html>.
1037 * autogen.sh: Exit with status 1 when failing due to missing tools,
1038 reverting the 2012-09-10 change to this file.
1039 * autogen/copy_autogen: Fail if one of the subsidiary actions fail.
1040 Use 'cp -f' for the build-aux files, since the destinations are
1041 typically read-only.
1042
1043 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
1044 * configure.ac (ac_cv_func_vfork_works): Default to 'no' on
1045 Solaris 2.4, so that AC_FUNC_VFORK doesn't think vfork works.
1046
1047 2012-09-17 Glenn Morris <rgm@gnu.org>
1048
1049 * configure.ac (copyright): New output variable.
1050 (COPYRIGHT): New AC_DEFINE.
1051
1052 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
1053
1054 Remove configure's --without-sync-input option (Bug#12450).
1055 * configure.ac (SYNC_INPUT, BROKEN_SA_RESTART): Remove.
1056
1057 2012-09-16 Glenn Morris <rgm@gnu.org>
1058
1059 Increase compartmentalization of Nextstep builds rules,
1060 and store Emacs version number in fewer versioned files.
1061 * configure.ac (ns_appsrc): Use relative names.
1062 (ns_frag): Remove.
1063 (Info-gnustep.plist, Emacs.desktop, Info.plist, InfoPlist.strings)
1064 (nextstep/Makefile): Generate these nextstep files.
1065 (SUBDIR_MAKEFILES): Add nextstep.
1066 * Makefile.in (clean, distclean, bootstrap-clean): Add nextstep.
1067 * make-dist (nextstep/templates): Add directory.
1068 (nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj): Remove.
1069 (nextstep/Cocoa/Emacs.base/Contents)
1070 (nextstep, nextstep/GNUstep/Emacs.base/Resources): Update contents.
1071
1072 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
1073
1074 Port better to POSIX hosts lacking _setjmp (Bug#12446).
1075 * configure.ac (HAVE__SETJMP, HAVE_SIGSETJMP): New symbols.
1076 (_setjmp, _longjmp): Remove.
1077
1078 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
1079
1080 * configure.ac (--without-sync-input): Fix typo in usage message.
1081
1082 * configure.ac: Port to hosts lacking gtk.
1083 (PKG_CHECK_MODULES): Capture pkg-config diagnostics
1084 better, in particular, problems in invoking pkg-config itself.
1085 This is useful on hosts that don't have pkg-config.
1086 (GTK_MODULES): Do not exit 'configure' simply because gtk3
1087 and gtk2 are both missing. Problem found on Solaris 8.
1088
1089 2012-09-13 Jan Djärv <jan.h.d@swipnet.se>
1090
1091 * configure.ac: Reorder Xaw3d messages.
1092 Report Gtk+ 3 as GTK.
1093
1094 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
1095
1096 Simplify SIGIO usage (Bug#12408).
1097 * configure.ac (NO_TERMIO, BROKEN_FIONREAD, BROKEN_SIGAIO)
1098 (BROKEN_SIGPOLL, BROKEN_SIGPTY): Remove.
1099 (USABLE_FIONREAD, USABLE_SIGIO): New symbols. All uses of
1100 'defined SIGIO' replaced with 'defined USABLE_SIGIO', with no need
1101 to #undef SIGIO now (which was error-prone). Likewise, all uses
1102 of 'defined FIONREAD' replaced with 'defined USABLE_FIONREAD'.
1103
1104 2012-09-12 Jan Djärv <jan.h.d@swipnet.se>
1105
1106 * configure.ac: No --with-x-toolkit given: Try gtk3 toolkit first
1107 and then gtk2 if not found.
1108 --with-x-toolkit=gtk|yes: As above, but fail if gtk2 or gt3 not found.
1109 --with-x-toolkit=gtk2: Only try gtk2, fail if not found.
1110 --with-x-toolkit=gtk3: Only try gtk3, fail if not found.
1111
1112 2012-09-11 Glenn Morris <rgm@gnu.org>
1113
1114 * Makefile.in (install-arch-dep, install-arch-indep, install-doc):
1115 Be more explicit about dependencies, for parallel `make install'.
1116
1117 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
1118
1119 Simplify, document, and port floating-point (Bug#12381).
1120 * configure.ac (logb, cbrt): Do not check for these functions,
1121 as they are not being used.
1122
1123 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
1124
1125 Improve robustness of 'make bootstrap' (Bug#12376).
1126 Run autogen.sh after bootstrap-clean, to avoid bzr pull issues.
1127 * INSTALL, README: Document autogen.sh.
1128 * Makefile.in (Makefile): Mark it as precious, since it's updated
1129 atomically.
1130 (MAKE_CONFIG_STATUS): New macro.
1131 (config.status, bootstrap): Use it. This causes 'make bootstrap'
1132 to run config.status with the --recheck option, which is more
1133 appropriate for a bootstrap.
1134 (bootstrap): Run autogen.sh right after cleaning. Don't worry
1135 about failures due to missing tools.
1136 * autogen.sh: Exit with status 101 when failing due to missing tools.
1137 * make-dist: Distribute autogen.sh.
1138
1139 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
1140
1141 Assume C89 or later for math functions (Bug#12381).
1142 * configure.ac (frexp, fmod): Remove checks for these functions,
1143 as we now assume them.
1144 (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC, NO_MATHERR)
1145 (HAVE_EXCEPTION):
1146 Remove; no longer needed.
1147
1148 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
1149
1150 More signal-handler cleanup (Bug#12327).
1151 * configure.ac (FLOAT_CHECK_DOMAIN): Comment fix (Bug#12327).
1152
1153 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
1154
1155 Signal-handler cleanup (Bug#12327).
1156 * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
1157 Adjust to syssignal.h changes.
1158 (SIGNAL_H_AB): Remove; no longer needed.
1159
1160 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1161
1162 Simplify redefinition of 'abort' (Bug#12316).
1163 * configure.ac (NO_ABRT): Remove.
1164
1165 * configure.ac (_setjmp, _longjmp): Check by compiling
1166 instead of by guessing. The guesses were wrong for
1167 recent versions of Solaris, such as Solaris 11.
1168
1169 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
1170
1171 * configure.ac (WARN_CFLAGS): Omit -Wjump-misses-init.
1172 It generates false alarms in doc.c, regex.c, xdisp.c. See
1173 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00040.html>.
1174
1175 Merge from gnulib, incorporating:
1176 2012-08-29 stdbool: be more compatible with mixed C/C++ compiles
1177 2011-11-30 manywarnings: update the list of "all" warnings
1178
1179 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
1180
1181 * configure.ac (HAVE_GOBJECT): Check for gobject-2.0 (Bug#12332).
1182
1183 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
1184
1185 * configure.ac (_FORTIFY_SOURCE): Define only when optimizing.
1186 This ports to glibc 2.15 or later, when configured with
1187 --enable-gcc-warnings. See Eric Blake in
1188 <http://lists.gnu.org/archive/html/bug-grep/2012-09/msg00000.html>.
1189
1190 2012-09-01 Daniel Colascione <dan.colascione@gmail.com>
1191
1192 * configure.ac: Introduce term_header variable, which holds the
1193 value which will become TERM_HEADER in code. We effect our choice
1194 of window system by setting term_header and WINDOW_SYSTEM_OBJ
1195 instead of using ad-hoc variables and flags for each window
1196 system.
1197
1198 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
1199
1200 * configure.ac (CFLAGS): Prefer -g3 to -g if -g3 works
1201 and if the user has not specified CFLAGS. -g3 simplifies
1202 debugging, since it makes macros visible to the debugger.
1203
1204 2012-08-25 Juanma Barranquero <lekktu@gmail.com>
1205
1206 * lib/makefile.w32-in ($(BLD)/execinfo.$(O)): Update dependencies.
1207
1208 2012-08-25 Eli Zaretskii <eliz@gnu.org>
1209
1210 * lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
1211 (GNULIBOBJS): Add $(BLD)/execinfo.$(O).
1212
1213 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
1214
1215 On assertion failure, print backtrace if available.
1216 Merge from gnulib, incorporating:
1217 2012-08-24 execinfo: port to FreeBSD
1218 2012-08-22 execinfo: new module
1219 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1220 * lib/execinfo.c, lib/execinfo.in.h, m4/execinfo.m4: New files.
1221
1222 2012-08-22 Glenn Morris <rgm@gnu.org>
1223
1224 * Makefile.in (install-arch-dep): If NO_BIN_LINK is non-null,
1225 do not create the bin/emacs link. (Bug#12011)
1226
1227 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
1228
1229 Merge from gnulib, incorporating:
1230 2012-08-20 extern-inline: support old GCC 'inline'
1231
1232 2012-08-20 Glenn Morris <rgm@gnu.org>
1233
1234 * configure.ac (AC_PROG_LN_S): Test for ln.
1235 * Makefile.in (LN_S): New, set by configure.
1236 (install-arch-dep): Use $LN_S.
1237
1238 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
1239
1240 Merge from gnulib, incorporating:
1241 2012-08-19 ignore-value, stat-time, timespec: omit AC_C_INLINE
1242 2012-08-19 mktime, sys_select: avoid 'static inline'
1243 2012-08-19 gnulib-tool: Fix indentation.
1244
1245 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
1246
1247 * lib/sigprocmask.c, m4/signalblocking.m4: Remove.
1248 These files have been unused since the 2012-06-22 patch that
1249 introduced high-resolution time stamps.
1250
1251 2012-08-17 Jan Beich <jbeich@tormail.org> (tiny change)
1252
1253 * configure.ac (PTY_OPEN): Try posix_openpt on gnu-linux,
1254 gnu-kfreebsd, freebsd, and netbsd. (Bug#12040)
1255
1256 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1257
1258 Merge from gnulib, incorporating:
1259 2012-08-05 extern-inline: also ignore -Wmissing-declarations
1260
1261 2012-08-10 Juanma Barranquero <lekktu@gmail.com>
1262
1263 * lib/makefile.w32-in (STAT_TIME_H): New macro.
1264 (FTOASTR_C, $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O))
1265 ($(BLD)/u64.$(O)): Update dependencies.
1266
1267 2012-08-10 Glenn Morris <rgm@gnu.org>
1268
1269 * configure.ac (DIRECTORY_SEP): Move here from src/lisp.h.
1270
1271 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1272
1273 * configure.ac (--disable-features): Rename to --without-all.
1274 (OPTION_DEFAULT_ON): Change to use with_features.
1275 * INSTALL: Fix description.
1276
1277 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1278
1279 * configure.ac: New option --disable-features.
1280 (OPTION_DEFAULT_ON): Change to use enable_features.
1281 * INSTALL: Explain --disable-features.
1282
1283 2012-08-07 Glenn Morris <rgm@gnu.org>
1284
1285 * configure.ac: Require automake 1.11 (fairly arbitrarily).
1286 * autogen.sh (automake_min): Get it from configure.ac.
1287
1288 2012-08-06 Glenn Morris <rgm@gnu.org>
1289
1290 * configure.ac (BROKEN_GETWD) [unixware]: New define.
1291
1292 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove.
1293 (PENDING_OUTPUT_COUNT): Absorb GNU_LIBRARY_PENDING_OUTPUT_COUNT.
1294 (DISPNEW_NEEDS_STDIO_EXT): New define.
1295
1296 2012-08-05 Michael Albinus <michael.albinus@gmx.de>
1297
1298 * INSTALL: Explain how to completely disable D-Bus. (Bug#12112)
1299
1300 2012-08-05 Ulrich Müller <ulm@gentoo.org>
1301
1302 * configure.ac: Disable paxctl if binaries don't have a
1303 PT_PAX_FLAGS program header. (Bug#11979)
1304
1305 2012-08-03 Eli Zaretskii <eliz@gnu.org>
1306
1307 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O),
1308 $(BLD)/timespec.$(O), and $(BLD)/u64.$(O).
1309 (SHA512_H): Don't mention u64.h twice.
1310 ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)):
1311 New targets.
1312
1313 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
1314
1315 Merge from gnulib, incorporating:
1316 2012-08-02 stat-time, timespec, u64: support naive out-of-dir builds
1317
1318 2012-08-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1319
1320 * lib/Makefile.am (DEFAULT_INCLUDES): Add -I$(top_srcdir)/lib for
1321 out-of-tree build.
1322
1323 2012-08-02 Glenn Morris <rgm@gnu.org>
1324
1325 * make-dist: Remove src/s.
1326
1327 * lib/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
1328
1329 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1330
1331 Merge from gnulib (Bug#12116), incorporating:
1332 2012-08-01 extern-inline: new module
1333 2012-08-01 stat-time, timespec, u64, utimens: use extern-inline
1334 * lib/stat-time.c, lib/timespec.c, lib/u64.c, m4/extern-inline.m4:
1335 New files. The new .c files are for instantiating extern inline
1336 functions.
1337
1338 Port to Solaris 8.
1339 Without this change, 'configure' fails because the recently-added
1340 wait3 prototype in config.h messes up later 'configure' tests.
1341 Fix this problem by droping wait3 and WRETCODE, as they're
1342 no longer needed on hosts that are current porting targets.
1343 * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
1344 All uses changed to waitpid and WEXITSTATUS.
1345
1346 Avoid needless autoheader after autogen.sh.
1347 * src/stamp-h.in: Remove from bzr repository; no longer needed there.
1348 * .bzrignore: Add it.
1349 * autogen.sh: Create it.
1350
1351 2012-08-01 Glenn Morris <rgm@gnu.org>
1352
1353 * configure.ac (DOS_NT, MSDOS): New system type templates.
1354
1355 2012-08-01 Ulrich Müller <ulm@gentoo.org>
1356
1357 * configure.ac (LIB_STANDARD, START_FILES) [FreeBSD]:
1358 Don't include crtbegin.o and crtend.o. (Bug#12047)
1359
1360 2012-08-01 Glenn Morris <rgm@gnu.org>
1361
1362 * configure.ac (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC)
1363 (INTERNAL_TERMINAL): New.
1364
1365 * configure.ac (DEVICE_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP)
1366 (IS_ANY_SEP): Move here from src/lisp.h.
1367
1368 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
1369
1370 * lib/makefile.w32-in (CONFIG_H): Update dependencies.
1371 (CONF_POST_H): New macro.
1372
1373 2012-07-31 Glenn Morris <rgm@gnu.org>
1374
1375 * configure.ac (S_FILE): Remove output variable.
1376
1377 * configure.ac (opsysfile): Use AH_TEMPLATE. Doc fix.
1378
1379 * configure.ac (NULL_DEVICE, SEPCHAR, USER_FULL_NAME):
1380 Move here from src.
1381
1382 * configure.ac (AMPERSAND_FULL_NAME, subprocesses):
1383 Move here from conf_post.h.
1384
1385 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
1386
1387 Improve OpenMotif detection on GNU/Linux systems.
1388 * configure.ac (MOTIF): Check for /usr/include/openmotif
1389 and /usr/(lib|lib64)/openmotif if --with-x-toolkit=motif.
1390
1391 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
1392
1393 * Makefile.in (install-arch-indep): Avoid eval.
1394
1395 2012-07-31 Glenn Morris <rgm@gnu.org>
1396
1397 * configure.ac (opsysfile, S_FILE): Now they are always empty.
1398
1399 * configure.ac (opsysfile): Forgot to set it to empty on sol2-10
1400 when removing src/s/sol2-6.h yesterday.
1401
1402 * configure.ac (USG5_4): Reintroduce this.
1403 (opsysfile): Set to empty on irix6-5, sol2*, and unixware.
1404
1405 * configure.ac (wait3, WRETCODE): Move here from src/s/usg5-4-common.h.
1406
1407 * configure.ac (opsysfile): Set to empty on hpux*, darwin;
1408 and to s/usg5-4-common.h on irix6-5.
1409
1410 2012-07-30 Glenn Morris <rgm@gnu.org>
1411
1412 * configure.ac (AH_BOTTOM): Use an include file, so that the
1413 contents do not get processed by autoheader.
1414
1415 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
1416
1417 Do not overwrite config.status while executing it (Bug#11214).
1418 * Makefile.in (MAKEFILE_NAME): New macro.
1419 ($(MAKEFILE_NAME)): Rename rule from Makefile.
1420 * configure.ac (epaths): Set MAKEFILE_NAME to a bogus value,
1421 so that GNU 'make' isn't tempted to make the Makefile and then
1422 regenerate config.status while config.status is running.
1423
1424 Update .PHONY listings in makefiles.
1425 * Makefile.in (.PHONY): Add all, ${SUBDIR}, blessmail, epath-force,
1426 FRC, install-arch-dep, install-arch-indep, install-doc,
1427 install-info, install-man, install-etc, install-strip, uninstall,
1428 bootstrap-clean, TAGS, tags, info-real, force-info, check-info-dir.
1429 (.RECURSIVE): Remove; hasn't been needed for years.
1430
1431 2012-07-30 Glenn Morris <rgm@gnu.org>
1432
1433 * configure.ac (SIGNAL_H_AHB): New hack macro.
1434 (opsysfile): Set to empty on netbsd, openbsd.
1435 (AH_BOTTOM): Include signal.h if SIGNAL_H_AHB is defined.
1436
1437 * configure.ac (_longjmp, _setjmp, TIOCSIGSEND): Move here from src/s.
1438
1439 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
1440
1441 * Makefile.in (install-arch-indep): Remove sh -x.
1442
1443 2012-07-30 Glenn Morris <rgm@gnu.org>
1444
1445 * configure.ac (opsysfile): Tweak message for null case.
1446
1447 * configure.ac (opsysfile): Set to empty on aix4-2, freebsd,
1448 gnu-linux, gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware.
1449
1450 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
1451
1452 Merge from gnulib, incorporating:
1453 * doc/misc/texinfo.tex: Update to 2012-07-29.17 version.
1454
1455 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
1456
1457 * Makefile.in (install-arch-indep): Handle space in locallisppath.
1458
1459 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
1460
1461 Use Gnulib environ module (Bug#9772).
1462 * m4/environ.m4: New file, from gnulib.
1463 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1464
1465 Use Gnulib stdalign module (Bug#9772, Bug#9960).
1466 This should improve portability of macros like alignof and DECL_ALIGN.
1467 * lib/stdalign.in.h, m4/stdalign.m4: New files, from gnulib.
1468 * .bzrignore: Add lib/stdalign.h.
1469 * config.bat: Do not set NO_DECL_ALIGN; no longer needed.
1470 Copy lib/stdalign.in.h to lib/stdalign.in-h as needed.
1471 * configure.ac (HAVE_ATTRIBUTE_ALIGNED): Remove the code that
1472 fiddles with this, as gnulib now does this for us.
1473
1474 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
1475
1476 Fix toolkit configuration report.
1477 * configure.ac (USE_X_TOOLKIT): Report toolkit as GTK3 if
1478 --with-x-toolkit=gtk3 is used.
1479
1480 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
1481
1482 Fix regression with pthread_sigmask on FreeBSD (Bug#11884).
1483 * configure.ac: Configure gnulib at the end, not before running
1484 pkg-config. This restores the behavior before 2012-06-22, when
1485 higher-resolution time stamps were added, and fixes a bug whereby
1486 LIB_PTHREAD was not used and gnulib's part of 'configure'
1487 therefore incorrectly assumed that pthread_sigmask wasn't working.
1488 Fix the problem with -lrt and clock_gettime a different way.
1489 This should complete the fix for Bug#11884.
1490 (pre_PKG_CONFIG_CFLAGS, pre_PKG_CONFIG_LIBS): New shell vars.
1491
1492 2012-07-15 Paul Eggert <eggert@cs.ucla.edu>
1493
1494 Merge from gnulib, incorporating:
1495 2012-07-15 pthread_sigmask: fix bug on FreeBSD 9 (Bug#11884)
1496 2012-07-11 gettext: do not assume '#define ... defined ...' behavior
1497
1498 2012-07-14 Glenn Morris <rgm@gnu.org>
1499
1500 * configure.ac (GC_SETJMP_WORKS, GC_MARK_STACK): Move here from src/s.
1501 (AH_BOTTOM): Move GC_SETJMP_WORKS GCC fallback to main body.
1502
1503 2012-07-13 Glenn Morris <rgm@gnu.org>
1504
1505 * configure.ac (opsysfile): Set to empty on gnu, cygwin.
1506
1507 * configure.ac (BSD4_2, BSD_SYSTEM, USG, USG5, _AIX, CYGWIN)
1508 (DARWIN_OS, GNU_LINUX, HPUX, IRIX6_5, SOLARIS2):
1509 Move "system type" macros here from src/s.
1510 (BSD_SYSTEM_AHB): New hack macro.
1511 (AH_BOTTOM): Set BSD_SYSTEM, using BSD_SYSTEM_AHB.
1512
1513 * configure.ac (NSIG_MINIMUM, ULIMIT_BREAK_VALUE, SETUP_SLAVE_PTY)
1514 (GC_MARK_SECONDARY_STACK): Move here from src/s.
1515
1516 2012-07-12 Glenn Morris <rgm@gnu.org>
1517
1518 * configure.ac (AH_BOTTOM) [DARWIN_OS]: Move SYSTEM_PURESIZE_EXTRA
1519 setting here from src/s/darwin.h.
1520
1521 * configure.ac (NO_MATHERR): Unconditionally define for Darwin;
1522 as src/s/darwin.h used to.
1523
1524 * configure.ac (NARROWPROTO, NO_ABORT, BROKEN_GET_CURRENT_DIR_NAME)
1525 (BROKEN_FIONREAD, BROKEN_PTY_READ_AFTER_EAGAIN, BROKEN_SIGAIO)
1526 (BROKEN_SIGPOLL, BROKEN_SIGPTY, FIRST_PTY_LETTER, NO_EDITRES)
1527 (G_SLICE_ALWAYS_MALLOC, PREFER_VSUSP, PTY_ITERATION, PTY_OPEN)
1528 (PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF, RUN_TIME_REMAP)
1529 (SETPGRP_RELEASES_CTTY, TAB3, TABDLY, RUN_TIME_REMAP, UNIX98_PTYS)
1530 (XOS_NEEDS_TIME_H): Move here from src/s.
1531
1532 2012-07-11 Glenn Morris <rgm@gnu.org>
1533
1534 * configure.ac (INTERRUPT_INPUT): Move here from src/s.
1535 (HAVE_PTYS, HAVE_SOCKETS): Define unconditionally.
1536
1537 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
1538
1539 * configure.ac (tzset): Remove check that's redundant with gnulib.
1540
1541 2012-07-11 Glenn Morris <rgm@gnu.org>
1542
1543 * configure.ac (CLASH_DETECTION): Define unconditionally.
1544
1545 * configure.ac (opsysfile): Use bsd-common on gnu systems.
1546
1547 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT):
1548 (SIGNALS_VIA_CHARACTERS): Move here from src/s.
1549
1550 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
1551
1552 Assume mkdir, rename, rmdir, strerror.
1553 * configure.ac (mkdir, rename, rmdir, strerror): Remove check.
1554
1555 2012-07-11 Glenn Morris <rgm@gnu.org>
1556
1557 * configure.ac (DONT_REOPEN_PTY): Move here from src/s.
1558
1559 * configure.ac (DEFAULT_SOUND_DEVICE): New definition.
1560
1561 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
1562
1563 Remove "#define unix" that is no longer needed (Bug#11905).
1564 Merge from gnulib to make "#define unix" unnecessary, incorporating:
1565 2012-07-10 getloadavg: clean out old Emacs and Autoconf cruft
1566 2012-07-09 getopt: Simplify after Emacs changed.
1567
1568 2012-07-10 Glenn Morris <rgm@gnu.org>
1569
1570 * configure.ac (DATA_START, DATA_SEG_BITS, PENDING_OUTPUT_COUNT):
1571 Move here from src/s.
1572
1573 2012-07-09 Andreas Schwab <schwab@linux-m68k.org>
1574
1575 * configure.ac (PNG_DEPSTRUCT): Define this instead of
1576 PNG_DEPRECATED.
1577
1578 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
1579
1580 Add GCC-style 'const' attribute to functions that can use it.
1581 * configure.ac (WARN_CFLAGS): Add -Wsuggest-attribute=const.
1582 (ATTRIBUTE_CONST): New macro, in config.h.
1583
1584 2012-07-09 Juanma Barranquero <lekktu@gmail.com>
1585
1586 * lib/makefile.w32-in: Rework dependencies.
1587 (GNU_LIB, NT_INC, C_CTYPE_H, MS_W32_H, CONFIG_H, FILEMODE_H)
1588 (FTOASTR_H, FTOASTR_C, GETOPT_INT_H, MD5_H, SHA1_H, SHA256_H)
1589 (U64_H, SHA512_H): New macros.
1590 (SRC): Redefine to point to src/, not current directory.
1591 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
1592 ($(BLD)/c-strncasecmp.$(O), $(BLD)/dtoastr.$(O))
1593 ($(BLD)/dtotimespec.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
1594 ($(BLD)/gettime.$(O), $(BLD)/strftime.$(O), $(BLD)/time_r.$(O))
1595 ($(BLD)/timespec-add.$(O), $(BLD)/timespec-sub.$(O), $(BLD)/md5.$(O))
1596 ($(BLD)/sha1.$(O), $(BLD)/sha256.$(O), $(BLD)/sha512.$(O))
1597 ($(BLD)/filemode.$(O)): Update dependencies.
1598
1599 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
1600
1601 Merge from gnulib, incorporating:
1602 2012-07-09 timespec: mark functions with const attributes
1603
1604 Rename configure.in to configure.ac (Bug#11603).
1605 The name 'configure.in' has been obsolescent for quite some time,
1606 and the next release of Autoconf will generate warnings for it.
1607 See commit 'v2.69-4-g560f16b' of 2012-05-06, "general: deprecate
1608 'configure.in' as autoconf input" in the Autoconf git repository.
1609 * configure.ac: Rename from configure.in.
1610 * INSTALL, INSTALL.BZR, README, make-dist:
1611 * Makefile.in (AUTOCONF_INPUTS):
1612 * autogen.sh (autoconf_min):
1613 * autogen/update_autogen (sources):
1614 Adjust to reflect new name.
1615
1616 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
1617
1618 Restore deprecation warnings, except for older libpng.
1619 * configure.in (WARN_CFLAGS): Remove -Wno-deprecated-declarations.
1620 (HAVE_LIBPNG_PNG_H): Don't bother checking for this if we have png.h.
1621 (PNG_DEPRECATED): Define when compiling with older PNG versions.
1622
1623 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
1624
1625 * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
1626
1627 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
1628
1629 Improve static checking when configured --with-ns.
1630 See Samuel Bronson's remarks in
1631 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00146.html>.
1632 * configure.in (WARN_CFLAGS): Omit -Wunreachable-code, as it's
1633 a no-op with recent GCC and harmful in earlier ones.
1634 Omit -Wsync-nand, as it's irrelevant to Emacs and provokes a
1635 warning when compiling with ObjC. Always omit
1636 -Wunsafe-loop-optimizations, as we don't mind when optimization is
1637 being done correctly.
1638
1639 2012-07-07 Glenn Morris <rgm@gnu.org>
1640
1641 * configure.in (BROKEN_SA_RESTART): Doc fix.
1642
1643 * configure.in: Rather than checking for things then undef'ing
1644 them on some platforms, simply don't check for them.
1645 (getwd): Don't check for it on unixware.
1646 (random, rint): Don't check for these on hpux.
1647 (res_init, libresolv): Don't check for these on darwin.
1648
1649 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
1650
1651 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O),
1652 $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O).
1653 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
1654 ($(BLD)/c-strncasecmp.$(O)): New dependencies.
1655
1656 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
1657
1658 * configure.in: Document --enable-gcc-warnings better.
1659
1660 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
1661 This is safer than strcasecmp, which has unspecified behavior
1662 outside the POSIX locale and in practice sometimes does not work
1663 in multibyte locales. Similarly for c_strncasecmp and strncasecmp.
1664 * configure.in (strcasecmp, strncasecmp): Remove checks.
1665
1666 * lib/c-ctype.c, lib/c-ctype.h, lib/c-strcase.h, lib/c-strcasecmp.c:
1667 * lib/c-strncasecmp.c: New files, taken from gnulib.
1668 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1669
1670 Merge from gnulib, incorporating:
1671 2012-07-06 timespec-sub: avoid duplicate include
1672 Reported by Juanma Barranquero.
1673
1674 2012-07-06 Glenn Morris <rgm@gnu.org>
1675
1676 * make-dist [update]: Let autoreconf figure out what needs updating.
1677 Use `make info-real'. leim/leim-list.el should always exist.
1678 Check cd return value.
1679
1680 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
1681
1682 Merge from gnulib. This is for OpenBSD 5.1 amd64.
1683 * m4/sys_time_h.m4: New version from gnulib, incorporating:
1684 2012-07-05 sys_time: allow too-wide tv_sec
1685
1686 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
1687
1688 Merge from gnulib.
1689 * lib/alloca.in.h: New version from gnulib, incorporating:
1690 2012-07-03 alloca: add support for HP NonStop TNS/E native
1691
1692 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
1693
1694 * configure.in: If --enable-gcc-warnings, disable
1695 -Wunsafe-loop-optimizations for -O1 optimization level.
1696
1697 2012-06-30 Glenn Morris <rgm@gnu.org>
1698
1699 * configure.in (standardlisppath): New output variable.
1700 (lisppath): Use standardlisppath.
1701 * Makefile.in (standardlisppath): New, set by configure.
1702 (epaths-force): Use standardlisppath and locallisppath rather than
1703 lisppath.
1704
1705 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
1706
1707 * configure.in: Fix previous change. Remove --enable-asserts.
1708 (CPPFLAGS): Remove conditional -DXASSERTS=1.
1709 Add --enable-link-time-optimization.
1710 * INSTALL: Mention this.
1711
1712 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
1713
1714 * configure.in: Add glyphs category to --enable-checking option.
1715 (GLYPH_DEBUG): Define if glyphs debugging is enabled.
1716
1717 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
1718
1719 * configure.in (ENABLE_CHECKING): Update comment.
1720
1721 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
1722
1723 * configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
1724 Emacs proper no longer uses these headers, and can rely on Gnulib
1725 for these checks.
1726
1727 Merge from gnulib.
1728 * m4/getopt.m4: Copy new version from gnulib, incorporating:
1729 getopt-posix: No longer guarantee that option processing is resettable.
1730
1731 2012-06-27 Glenn Morris <rgm@gnu.org>
1732
1733 * configure.in: Only check for paxctl on gnu-linux. (Bug#11398#26)
1734
1735 * INSTALL: Remove references to paths.el.
1736
1737 2012-06-26 Eli Zaretskii <eliz@gnu.org>
1738
1739 * lib/makefile.w32-in ($(GNULIBOBJS)): Depend on stamp_BLD.
1740 This replaces separate dependency for each object file, which required
1741 the same object file to be mentioned twice, causing failures in
1742 parallel builds.
1743
1744 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
1745
1746 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
1747 * lib/makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
1748
1749 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
1750
1751 * configure.in (AC_CHECK_FUNCS): Detect library functions
1752 strcasecmp and strncasecmp.
1753
1754 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
1755
1756 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
1757 We might as well use the spelling standardized by C11,
1758 as in the long run that should simplify maintenance.
1759 * configure.in (NO_RETURN): Remove. All uses replaced by _Noreturn.
1760
1761 2012-06-24 Eli Zaretskii <eliz@gnu.org>
1762
1763 * lib/makefile.w32-in ($(BLD)/dtotimespec.$(O)):
1764 ($(BLD)/timespec-add.$(O)):
1765 ($(BLD)/timespec-sub.$(O)): Don't depend on
1766 $(EMACS_ROOT)/nt/inc/sys/time.h.
1767
1768 * lib/stat-time.h:
1769 * lib/timespec.h:
1770 * lib/utimens.h: Revert last change.
1771
1772 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
1773
1774 Merge from gnulib.
1775 * m4/getopt.m4: Copy new version from gnulib, incorporating:
1776 getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
1777
1778 2012-06-23 Eli Zaretskii <eliz@gnu.org>
1779
1780 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
1781 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/dtotimespec.$(O),
1782 $(BLD)/gettime.$(O), $(BLD)/timespec-add.$(O), and
1783 $(BLD)/timespec-sub.$(O).
1784 ($(BLD)/dtotimespec.$(O)):
1785 ($(BLD)/gettime.$(O)):
1786 ($(BLD)/timespec-add.$(O)):
1787 ($(BLD)/timespec-sub.$(O)): New dependencies.
1788
1789 * lib/stat-time.h:
1790 * lib/timespec.h:
1791 * lib/utimens.h: Include sys/time.h.
1792
1793 2012-06-23 Andreas Schwab <schwab@linux-m68k.org>
1794
1795 * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
1796 the correct CFLAGS and LIBS.
1797
1798 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
1799
1800 Support higher-resolution time stamps (Bug#9000).
1801 * configure.in (gl_ASSERT_NO_GNULIB_POSIXCHECK)
1802 (gl_ASSERT_NO_GNULIB_TESTS, gl_INIT): Move these up earlier, so
1803 that the new clock stuff doesn't clash with RSVG_LIBS.
1804 (AC_CHECK_HEADERS): Don't check for sys/select.h, sys/time.h, utime.h,
1805 as gnulib does that for us now.
1806 (emacs_cv_struct_utimbuf, HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL)
1807 (GETTIMEOFDAY_ONE_ARGUMENT): Remove; gnulib does these now.
1808 (AC_CHECK_FUNCS): Remove utimes; no longer needed.
1809 * lib/dtotimespec.c, lib/gettime.c, lib/gettimeofday.c, lib/pselect.c:
1810 * lib/stat-time.h, lib/sys_select.in.h, lib/sys_time.in.h:
1811 * lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
1812 * lib/utimens.c, lib/utimens.h, m4/clock_time.m4, m4/gettime.m4:
1813 * m4/gettimeofday.m4, m4/pselect.m4, m4/stat-time.m4:
1814 * m4/sys_select_h.m4, m4/sys_socket_h.m4, m4/sys_time_h.m4:
1815 * m4/timespec.m4, m4/utimbuf.m4, m4/utimens.m4, m4/utimes.m4:
1816 New files, copied automatically from gnulib.
1817 * lib/gnulib.mk, m4/gnulib-comp.m4: Merge from gnulib.
1818
1819 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
1820
1821 Merge from gnulib.
1822 * lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
1823 * lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
1824 * m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
1825 * m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
1826 Copy new versions from gnulib, incorporating the following changes:
1827 2012-06-22 time_r: fix typo that always overrode localtime_r decl
1828 2012-06-22 Write "Mac OS X" instead of "MacOS X".
1829 2012-06-21 mktime: fix integer overflow in 'configure'-time test
1830 2012-06-21 nonblocking: Avoid compilation error on mingw64.
1831 2012-06-19 stat, fstat: Avoid warnings on mingw64.
1832 2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
1833
1834 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
1835
1836 * configure.in: Rename --enable-use-lisp-union-type to
1837 --enable-check-lisp-object-type and define CHECK_LISP_OBJECT_TYPE
1838 instead of USE_LISP_UNION_TYPE.
1839
1840 2012-06-12 Glenn Morris <rgm@gnu.org>
1841
1842 * configure.in (HAVE_PROCFS, _STRUCTURED_PROC): New AC_DEFINEs.
1843 (opsysfile): Set specially for sol2-10.
1844
1845 * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
1846 New AC_DEFINEs, for hpux11.
1847 (opsysfile): Set specially for hpux11.
1848
1849 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
1850
1851 * configure.in: Coalesce some function checking.
1852 This makes 'configure' a bit smaller.
1853 Prefer AC_CHECK_FUNCS_ONCE for functions that we always check for.
1854
1855 2012-06-12 Glenn Morris <rgm@gnu.org>
1856
1857 * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
1858
1859 * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
1860
1861 * configure.in: Anticipate platforms with no src/s file.
1862
1863 2012-06-12 Chong Yidong <cyd@gnu.org>
1864
1865 * configure.in: Check for MagickMergeImageLayers (Bug#11678).
1866
1867 2012-06-11 Glenn Morris <rgm@gnu.org>
1868
1869 * configure.in (SYSTEM_TYPE): New AC_DEFINE.
1870
1871 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
1872
1873 * configure.in (dbus_type_is_valid): Check for library function.
1874
1875 2012-06-06 Glenn Morris <rgm@gnu.org>
1876
1877 * INSTALL, make-dist: Remove vcdiff.
1878
1879 2012-06-03 Glenn Morris <rgm@gnu.org>
1880
1881 * INSTALL, make-dist: Remove rcs-checkin.
1882
1883 2012-06-03 Ulrich Müller <ulm@gentoo.org>
1884
1885 * configure.in (PAXCTL): Check for paxctl. (Bug#11398)
1886
1887 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
1888
1889 Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
1890 It is confusingly named and rarely useful. See, for example,
1891 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
1892 * INSTALL.BZR: Don't mention --disable-maintainer-mode.
1893 * Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
1894 * configure.in: Remove --disable-maintainer-mode.
1895 (USE_MAINTAINER_MODE, MAINT): Remove.
1896
1897 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
1898
1899 Make 'configure' a bit smaller and faster.
1900 * configure.in (INSTALL_INFO): Set it with one call to
1901 AC_PATH_PROG, not three.
1902 (PKG_CONFIG): Hoist this out of PKG_CHECK_MODULES, since it's
1903 so likely that it'll be needed.
1904 (AC_CHECK_HEADERS_ONCE): Prefer to AC_CHECK_HEADERS where either works.
1905 (AC_PROG_MAKE_SET): Remove; Automake does this.
1906 (sysinfo): Do not check for this function, as it's never used.
1907 (tzset): Check for this function just once.
1908 * m4/manywarnings.m4: Sync from gnulib, incorporating the following:
1909 2012-05-27 manywarnings: remove duplicate -Wmultichar entry
1910
1911 2012-05-27 Eli Zaretskii <eliz@gnu.org>
1912
1913 * config.bat (lib): Create/update lib/stdalign.in-h and
1914 lib/sys_types.in-h.
1915
1916 * lib/makefile.w32-in ($(BLD)/md5.$(O)):
1917 ($(BLD)/sha1.$(O)):
1918 ($(BLD)/sha256.$(O)):
1919 ($(BLD)/sha512.$(O)): Depend on $(EMACS_ROOT)/nt/inc/stdalign.h.
1920 Suggested by Christoph Scholtes <cschol2112@googlemail.com>.
1921
1922 * lib/getopt_.h: Regenerate.
1923
1924 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
1925
1926 Assume gnulib does largefile.
1927 Gnulib does the largefile configuration anyway, so when configure.in
1928 invokes AC_SYS_LARGEFILE, that bloats 'configure' unnecessarily.
1929 * configure.in (AC_SYS_LARGEFILE): Remove.
1930 * lib/gnulib.mk: Autoupdate.
1931
1932 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
1933
1934 Merge from gnulib. (Bug#11527)
1935
1936 The build procedure now creates <stdalign.h> and <sys/types.h> for
1937 older hosts that lack a working <stdalign.h> or whose
1938 <sys/types.h> does not define pid_t, size_t, ssize_t, mode_t.
1939 New symbols such as WINDOWS_64_BIT_OFF_T may require attention in the
1940 msdos and nt builds.
1941
1942 Here is a precis of gnulib changes that seem relevant; please see
1943 the gnulib ChangeLog for details.
1944
1945 2012-05-18 crypto: fix bug in large buffer handling
1946 2012-05-14 ignore-value.h: remove unused _GL_ATTRIBUTE_DEPRECATED
1947 2012-05-10 _Noreturn: port config.h to gcc -Wundef
1948 2012-05-08 warnings.m4: give a means to specify the program to compile
1949 2012-05-07 stdint: be more consistent with glibc, SunOS libc
1950 2012-04-21 Large File Support for native Windows platforms.
1951 2012-04-14 stat: Bypass buggy override in mingw64.
1952 2012-03-29 stdio: don't assume gets any more
1953 2012-03-24 Enable common subexpression optimization in GCC.
1954 2012-02-09 maint: replace FSF snail-mail addresses with URLs
1955 2012-01-30 sys_stat: Fix support for mingw64 and MSVC.
1956 2012-01-28 strtoimax: eliminate need for stdint.h, inttypes.h checks
1957 2012-01-21 stdint: Add support for Android.
1958 2012-01-15 Improve support for MSVC 9.
1959 2012-01-08 mktime: Avoid compilation error on Solaris 11.
1960 2012-01-05 Use ', not `, for quoting output.
1961 2012-01-05 strtoimax: Don't replace systems where intmax_t is int.
1962 2012-01-05 strtoimax: Work around AIX 5.1 bug.
1963 2012-01-05 inttypes: Modernize.
1964 2011-12-13 inttypes, stdint: add C++11 support
1965 2011-11-26 Fix conflict between two instantiations of module 'unistd'.
1966 2011-11-21 _Noreturn: Check that _MSC_VER is defined
1967 2011-11-10 ptsname_r: Avoid compilation error on OSF/1 5.1.
1968 2011-11-09 raise: fix mingw handling of SIGPIPE
1969 2011-10-27 Add stdalign module and use it in other modules.
1970
1971 * lib/stdalign.in.h, lib/sys_types.in.h, m4/off_t.m4, m4/stdalign.m4:
1972 * m4/sys_types_h.m4:
1973 New files.
1974 * build-aux/move-if-change, build-aux/snippet/_Noreturn.h:
1975 * build-aux/snippet/arg-nonnull.h, build-aux/snippet/c++defs.h:
1976 * build-aux/snippet/warn-on-use.h, doc/misc/texinfo.tex:
1977 * lib/alloca.in.h, lib/allocator.h, lib/careadlinkat.c:
1978 * lib/careadlinkat.h, lib/dosname.h, lib/dup2.c, lib/filemode.c:
1979 * lib/filemode.h, lib/ftoastr.c, lib/ftoastr.h, lib/getloadavg.c:
1980 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
1981 * lib/gettext.h, lib/gnulib.mk, lib/ignore-value.h, lib/intprops.h:
1982 * lib/inttypes.in.h, lib/lstat.c, lib/md5.c, lib/md5.h, lib/mktime.c:
1983 * lib/pathmax.h, lib/pthread_sigmask.c, lib/readlink.c, lib/sha1.c:
1984 * lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
1985 * lib/signal.in.h, lib/sigprocmask.c, lib/stat.c, lib/stdarg.in.h:
1986 * lib/stdbool.in.h, lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h:
1987 * lib/stdlib.in.h, lib/strftime.c, lib/strftime.h, lib/strtoimax.c:
1988 * lib/strtol.c, lib/strtoll.c, lib/strtoul.c, lib/strtoull.c:
1989 * lib/symlink.c, lib/sys_stat.in.h, lib/time.in.h, lib/time_r.c:
1990 * lib/u64.h, lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
1991 * m4/alloca.m4, m4/c-strtod.m4, m4/dup2.m4, m4/extensions.m4:
1992 * m4/filemode.m4, m4/getloadavg.m4, m4/getopt.m4, m4/gl-comp.m4:
1993 * m4/gnulib-common.m4, m4/gnulib-tool.m4, m4/include_next.m4:
1994 * m4/inttypes.m4, m4/largefile.m4, m4/longlong.m4, m4/lstat.m4:
1995 * m4/md5.m4, m4/mktime.m4, m4/multiarch.m4, m4/nocrash.m4:
1996 * m4/pathmax.m4, m4/pthread_sigmask.m4, m4/readlink.m4, m4/sha1.m4:
1997 * m4/sha256.m4, m4/sha512.m4, m4/signal_h.m4, m4/signalblocking.m4:
1998 * m4/socklen.m4, m4/ssize_t.m4, m4/st_dm_mode.m4, m4/stat.m4:
1999 * m4/stdarg.m4, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4:
2000 * m4/stdio_h.m4, m4/stdlib_h.m4, m4/strftime.m4, m4/strtoimax.m4:
2001 * m4/strtoll.m4, m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4:
2002 * m4/sys_stat_h.m4, m4/time_h.m4, m4/time_r.m4, m4/tm_gmtoff.m4:
2003 * m4/unistd_h.m4, m4/warnings.m4, m4/wchar_t.m4:
2004 Update from gnulib.
2005
2006 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
2007
2008 Remove src/m/*.
2009 * configure.in: Remove all mention of src/m/*.
2010 (machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
2011 All uses removed.
2012 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
2013 (BITS_PER_LONG_LONG): Move to src/lisp.h.
2014 * lib/makefile.w32-in: Remove dependencies on
2015 $(EMACS_ROOT)/src/m/intel386.h.
2016 * make-dist: Don't make links to src/m.
2017
2018 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
2019
2020 * Makefile.in (ACLOCAL_INPUTS): Fix up gnulib-comp.m4 name. (Bug#11529)
2021 Without this further fix, aclocal was being invoked unnecessarily.
2022
2023 2012-05-22 Glenn Morris <rgm@gnu.org>
2024
2025 * Makefile.in (blessmail, install-arch-dep, uninstall):
2026 Check cd lib-src works.
2027 (install-arch-dep, uninstall): Remove unneeded subshells.
2028
2029 2012-05-21 Glenn Morris <rgm@gnu.org>
2030
2031 * update-subdirs: Move to build-aux/.
2032 * make-dist, Makefile.in (install-arch-indep): Update for this change.
2033
2034 * Makefile.in (leimdir): New, set by configure.
2035 (COPYDIR, COPYDESTS): Add leim directories.
2036 (install-leim): Remove.
2037 (install-arch-indep): Handle leim installation directly.
2038
2039 * vpath.sed: Remove unused file.
2040 * make-dist: No more vpath.sed.
2041
2042 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
2043
2044 Use full name for m4/gnulib-comp.m4. (Bug#11529)
2045 Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions,
2046 even though the file's name in gnulib is m4/gnulib-comp.m4.
2047 This had a problem when merging from gnulib, as the code temporarily
2048 renamed it to the full name, causing problems when interrupted.
2049 Now the file has its full name, with the idea that we will find
2050 a solution for MS-DOS that does not affect the rest of Emacs.
2051 * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4.
2052
2053 Assume C89 or later.
2054 * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
2055 (POINTER_TYPE, PROTOTYPES): Remove.
2056
2057 Make merging from gnulib a script, not a makefile action.
2058 Putting it in a makefile has some problems with reflection, as
2059 merging from gnulib updates 'configure', which can update the makefile.
2060 Putting it in a standalone script breaks this loop.
2061 * Makefile.in (gnulib_srcdir, $(gnulib_srcdir), DOS_gnulib_comp.m4)
2062 (GNULIB_MODULES, GNULIB_TOOL_FLAGS, sync-from-gnulib):
2063 Remove, moving the actions to the script admin/merge-gnulib.
2064
2065 2012-05-21 Glenn Morris <rgm@gnu.org>
2066
2067 * configure.in (LEIM_INSTALLDIR):
2068 Rename to leimdir, treat like lispdir.
2069
2070 2012-05-21 Glenn Morris <rgm@gnu.org>
2071
2072 * Makefile.in (install-arch-indep, install-doc, install-info)
2073 (uninstall): Scrap superfluous subshells.
2074
2075 2012-05-19 Ulrich Müller <ulm@gentoo.org>
2076
2077 * Makefile.in (install-etc): Respect DESTDIR. (Bug#11518)
2078
2079 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
2080
2081 * configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
2082 getdomainname, mblen (twice), mbrlen (twice), mbsinit, ualarm,
2083 getsockopt, setsockopt, mremap, mempcpy.
2084
2085 * configure.in (machine): Do not set to 'vax', since src/m/vax.h
2086 is being removed.
2087 (AC_CHECK_FUNCS): Remove ftime.
2088
2089 2012-05-19 Glenn Morris <rgm@gnu.org>
2090
2091 * Makefile.in (install-arch-indep): Remove unneeded subshell.
2092
2093 * Makefile.in (install-arch-indep): Remove unneeded chmod.
2094 Set permissions of lisp/subdirs.el.
2095
2096 * Makefile.in (SUBDIR): Add leim. Update users.
2097
2098 * Makefile.in (lib, lib-src, lisp): Check cd return value.
2099
2100 * Makefile.in (leim): No need to set PARALLEL.
2101
2102 2012-05-18 Glenn Morris <rgm@gnu.org>
2103
2104 * Makefile.in (install-arch-indep, install-info, install-man):
2105 Simplify some one-sided ifs.
2106
2107 * Makefile.in: Install only the relevant DOC file.
2108 (install-arch-indep): Delete etc/DOC*.
2109 (install-doc): No more need to delete etc/DOC.
2110
2111 * Makefile.in (install-arch-indep): Split into several rules.
2112 (install-doc, innstall-info, install-man): New rules.
2113
2114 * configure.in (mandir): May as well include it in the NS app bundle.
2115
2116 * configure.in (INSTALL_ARCH_INDEP_EXTRA): New output variable.
2117 * Makefile.in (INSTALL_ARCH_INDEP_EXTRA): New, set by configure.
2118 (install-arch-indep): Don't install-etc for self-contained ns builds.
2119
2120 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
2121 No longer unconditonally add /sw directories. (Bug#2280)
2122
2123 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
2124 (install-arch-indep): Depend on install-leim.
2125 (install): Remove explicit install-leim dependence.
2126
2127 * Makefile.in (install-arch-indep):
2128 Move last element of mkdir rule here.
2129 (mkdir): Remove rule.
2130
2131 * Makefile.in (install-arch-indep): Remove unneeded chmods.
2132 INSTALL_DATA does this for us.
2133
2134 * Makefile.in (install-arch-dep): Ensure bindir exists.
2135 Drop mkdir dependency.
2136 (install-arch-indep): Ensure docdir, infodir, mandir exist.
2137 (install-leim): Drop mkdir dependency.
2138 (mkdir): Remove most directories, now made in relevant rules.
2139
2140 * Makefile.in (install-arch-indep): Combine adjacent loops.
2141
2142 2012-05-17 Glenn Morris <rgm@gnu.org>
2143
2144 * Makefile.in (install-etc, mkdir):
2145 Make relevant directories in install-etc rather than mkdir.
2146
2147 * Makefile.in (write_subdir): Create the directory if needed.
2148 (install-arch-dep, mkdir): No need to make site-lisp directories.
2149
2150 * Makefile.in (write_subdir): New.
2151 (install-arch-indep, install-arch-dep): Use $write_subdir.
2152
2153 * configure.in (docdir, etcdir, infodir, lispdir):
2154 For a self-contained ns build, set these to the appropriate values.
2155 * Makefile.in (install-arch-dep): No need to move info/ any more.
2156
2157 * configure.in (ns_self_contained): New output variable.
2158 * Makefile.in (ns_self_contained): New, set by configure.
2159 (install-arch-dep): For a self-contained ns build,
2160 don't bother installing binaries then immediately deleting them.
2161
2162 * Makefile.in (ns_appbindir, ns_appresdir):
2163 Move them before things that may refer to them.
2164 (install-arch-dep): No need to relocate self-contained ns libexec.
2165
2166 * configure.in (archlibdir): Set it for self-contained ns builds.
2167 (libexecdir): Don't expand it now (this is mainly cosmetic).
2168
2169 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
2170
2171 * configure.in: Simplify by removing CPP etc.
2172 (CPP_TEST_OPTIONS, NON_GNU_CPP, cc_specified, SPECIFIED_CFLAGS)
2173 (SPECIFED_CPP, CPP, NON_GNU_CC, AC_PROG_CPP): Remove; not needed.
2174 In particular we no longer need to fiddle with CPP, since we don't
2175 use CPP specially any more.
2176 (gl_EARLY): Invoke this after adjusting CC, so that it uses the
2177 adjusted compiler.
2178 (AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_RANLIB): Comment out,
2179 since gl_EARLY and/or Autoconf already does these.
2180
2181 2012-05-16 Glenn Morris <rgm@gnu.org>
2182
2183 * configure.in: Try to fix building with gcc >= 4.6 on Darwin.
2184 (CPP): Do not unconditionally set it on Darwin.
2185 Instead, try to test if -no-cpp-precomp is accepted.
2186 (CPP_TEST_OPTIONS, SPECIFIED_CPP): New. (Bug#9755)
2187
2188 2012-05-15 Glenn Morris <rgm@gnu.org>
2189
2190 * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
2191
2192 * Makefile.in (install-arch-dep): Do not hard-code version number.
2193
2194 * Makefile.in (install-arch-dep): NS install no longer needs to
2195 symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change.
2196
2197 2012-05-12 Glenn Morris <rgm@gnu.org>
2198
2199 * configure.in (ns_appbindir): Remove trailing "/".
2200
2201 * configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
2202 (MKDEPDIR): Use $MKDIR_P.
2203 * Makefile.in (MKDIR_P): New, set by configure.
2204 (mkdir): Use $MKDIR_P.
2205
2206 2012-05-11 Glenn Morris <rgm@gnu.org>
2207
2208 * Makefile.in (install-arch-indep): There are no more Makefile.c files.
2209 Use INSTALL_DATA for the DOC file.
2210 Remove dead code for ./lisp that never executes.
2211
2212 2012-05-10 Glenn Morris <rgm@gnu.org>
2213
2214 * configure.in (LEIM_INSTALLDIR): New output variable.
2215
2216 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2217
2218 * .dir-locals.el (log-edit-mode): Enable gnu-style checks.
2219
2220 2012-05-08 Glenn Morris <rgm@gnu.org>
2221
2222 * make-dist: No more doc/lispref/*.el.
2223
2224 2012-05-05 Andreas Schwab <schwab@linux-m68k.org>
2225
2226 * configure.in: Fix quoting bugs.
2227
2228 2012-05-04 Glenn Morris <rgm@gnu.org>
2229
2230 * configure.in (INFO_EXT, INFO_OPTS): New output variables.
2231
2232 2012-05-02 Glenn Morris <rgm@gnu.org>
2233
2234 * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat
2235 the choices made by FreeBSD and NetBSD. (Bug#10313)
2236
2237 * Makefile.in (INFO_FILES): Remove variable.
2238 (INFO_NONMISC): New variable.
2239 (install-arch-indep, uninstall): Don't use $INFO_FILES.
2240
2241 * Makefile.in (uninstall): Remove useless-use-of-for; that for
2242 some reason caused problems on an old Solaris.
2243
2244 * Makefile.in (install-arch-indep, uninstall):
2245 Ensure that INSTALL-type commands are run from top-level.
2246
2247 * info/dir: Make some entries consistent with the source texi files.
2248
2249 * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
2250
2251 2012-05-02 Glenn Morris <rgm@gnu.org>
2252
2253 * Makefile.in (install-arch-indep):
2254 Combine adjacent install-data and install-info loops.
2255
2256 2012-05-01 Glenn Morris <rgm@gnu.org>
2257
2258 * Makefile.in (MAN_PAGES): Remove.
2259 (install-arch-indep, uninstall): Don't use $MAN_PAGES.
2260
2261 * configure.in: Try libtinfo for tputs.
2262 (LIBS_TERMCAP) [gnu*]: Use libtinfo if it was found. (Bug#9741)
2263
2264 * configure.in: Combine adjacent $opsys case blocks.
2265
2266 * configure.in (LIBS_TERMCAP): Remove unreachable branch for sol2.
2267
2268 * configure.in: Invert the TERMINFO logic,
2269 since "yes" is far more common than "no".
2270
2271 * configure.in (HAVE_LIBNCURSES): Remove; it is required to be true.
2272
2273 * configure.in (LD_SWITCH_X_SITE_RPATH):
2274 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
2275
2276 * configure.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
2277
2278 2012-04-26 Glenn Morris <rgm@gnu.org>
2279
2280 * make-dist: No more doc/lispref/tindex.pl.
2281
2282 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
2283
2284 * configure.in (dbus_validate_bus_name, dbus_validate_path)
2285 (dbus_validate_interface, dbus_validate_member): Check also for
2286 these library functions.
2287
2288 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
2289
2290 * configure.in (doug_lea_malloc): Check for __malloc_initialize_hook.
2291 With glibc 2.14 or later, when compiled with GCC 4.7.0's
2292 -Werror=deprecated-declarations flag, use of hooks like
2293 __malloc_initialize_hook causes compilation to fail because these
2294 hooks are deprecated. Modify 'configure' to check for these hooks too.
2295 Simplify the 'configure' code to test for all the hooks at once.
2296 (emacs_cv_var___after_morecore_hook): Remove, replacing with ...
2297 (emacs_cv_var_doug_lea_malloc): ... this new var.
2298
2299 2012-04-21 Paul Eggert <eggert@cs.ucla.edu>
2300
2301 Sync from gnulib version 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc
2302 dated 2011-10-07. Regenerating from current gnulib would be a
2303 pervasive change, and currently the trunk isn't open to such changes.
2304 * configure.in (WARN_CFLAGS): Remove; no longer needed now
2305 that gnulib does it.
2306 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2307
2308 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
2309
2310 * m4/gl-comp.m4: Update. (Bug#11285)
2311
2312 2012-04-20 Ludovic Courtès <ludo@gnu.org>
2313
2314 * configure.in: Don't use the -R option (Bug#11251).
2315
2316 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
2317
2318 configure: new option --enable-gcc-warnings (Bug#11207)
2319 I have been using this change for many months in my private copy
2320 of Emacs, and have used it to find several bugs. It's mature
2321 enough to publish now.
2322 * Makefile.in (GNULIB_MODULES): Add warnings, manywarnings.
2323 * configure.in: Support --enable-gcc-warnings, in the style of
2324 other GNU packages such as coreutils.
2325 (C_WARNINGS_SWITCH): Remove, replacing with...
2326 (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable.
2327 (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I,
2328 when including system files with GCC.
2329 * etc/NEWS: Mention --enable-gcc-warnings.
2330 * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise.
2331 * lib/Makefile.am (AM_CFLAGS): New macro.
2332 * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib.
2333
2334 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
2335
2336 * configure.in (AC_CHECK_FUNCS):
2337 Add getpwent, endpwent, getgrent, endgrent. (Bug#7900)
2338
2339 2012-04-16 Glenn Morris <rgm@gnu.org>
2340
2341 * configure.in (NS_HAVE_NSINTEGER): Remove unnecessary variable.
2342
2343 * configure.in: Remove X libs workaround for old autoconf.
2344
2345 2012-04-12 Ken Brown <kbrown@cornell.edu>
2346
2347 * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398)
2348
2349 2012-04-11 Glenn Morris <rgm@gnu.org>
2350
2351 * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
2352
2353 2012-04-10 Glenn Morris <rgm@gnu.org>
2354
2355 * configure.in: Conditionally generate admin/unidata/Makefile.
2356
2357 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
2358
2359 * info/dir, Makefile.in (INFO_FILES): Add emacs-gnutls manual.
2360
2361 2012-04-09 Glenn Morris <rgm@gnu.org>
2362
2363 * Makefile.in (leim): Check cd return value. Pass fewer variables.
2364 (install-leim): Check cd return value. Pass $MFLAGS.
2365 (install-strip): Pass $MFLAGS.
2366
2367 * configure.in: Require makeinfo >= 4.7. (Bug#10910)
2368 Eg org.texi has been using 4.7 functions for some time.
2369
2370 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
2371
2372 Check pkg-config exit status when configuring (Bug#10626).
2373 * configure.in (PKG_CHECK_MODULES): Do not assume that pkg-config
2374 works; check its exit status. Problem reported by Jordi Gutiérrez
2375 Hermoso in
2376 <http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00787.html>.
2377
2378 2012-04-07 Glenn Morris <rgm@gnu.org>
2379
2380 * README, configure.in (AC_INIT): Bump version to 24.1.50.
2381
2382 2012-04-07 Eli Zaretskii <eliz@gnu.org>
2383
2384 * lib/makefile.w32-in (gnulib, all): Don't depend on stamp_BLD.
2385
2386 2012-03-04 Paul Eggert <eggert@cs.ucla.edu>
2387
2388 configure: fix ncurses 'configure' issue on Solaris 10 (Bug#10677)
2389 * configure.in (LIBS_TERMCAP): Default this to the result of
2390 the tputs library search. Do a run-time test for the linkability
2391 of tputs unless cross-compiling, as that's more reliable if the
2392 link flags and libraries are messed up. Don't change LIBS as
2393 a result of the test, as that may mess up later tests.
2394
2395 2012-02-05 Christoph Scholtes <cschol2112@googlemail.com>
2396
2397 * make-dist (README.W32): Include file in source tarball. (Bug#9750)
2398
2399 * lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
2400 specific makefiles to support getopt_.h generation with MSVC.
2401
2402 2012-02-04 Glenn Morris <rgm@gnu.org>
2403
2404 * Makefile.in (uninstall):
2405 Handle compressed info files and man pages. (Bug#10718)
2406
2407 2012-02-02 Glenn Morris <rgm@gnu.org>
2408
2409 * configure.in [HAVE_NS]:
2410 Error if use --without-toolkit-scroll-bars. (Bug#10673)
2411
2412 2012-02-01 Paul Eggert <eggert@cs.ucla.edu>
2413
2414 Port to older Solaris 10 versions (Bug#10677).
2415 Bug reported by Chong Yidong for SunOS 5.10 Generic_127111-11 sparc.
2416 I cannot reproduce it on SunOS 5.10 Generic_141444-09 sparc but
2417 possibly this is because Sun fixed the 'stat' bug in my version.
2418 * Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid the pathmax module.
2419 * lib/pathmax.h, m4/pathmax.m4: New files, from gnulib.
2420 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2421 These changes are based on gnulib version
2422 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc dated 2011-10-07 20:59:10,
2423 because Emacs is in feature freeze and we do not want to merge any
2424 more-recent changes from gnulib.
2425
2426 2012-01-31 Glenn Morris <rgm@gnu.org>
2427
2428 * configure.in: Throw an explicit error if Motif toolkit was
2429 requested but requirements could not be found.
2430
2431 * configure.in: Allow Emacs to actually be built with xaw scroll-bars.
2432
2433 2012-01-30 Eli Zaretskii <eliz@gnu.org>
2434
2435 * lib/makefile.w32-in ($(BLD)/sha1.$(O) $(BLD)/sha256.$(O)
2436 $(BLD)/sha512.$(O)): Depend on stamp_BLD. Fixes a build failure
2437 with "make -j3".
2438
2439 2012-01-16 Juanma Barranquero <lekktu@gmail.com>
2440
2441 * .bzrignore: Ignore etc/__pycache__.
2442
2443 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
2444
2445 Port HAVE_PTHREAD configuration to MirBSD 10 (Bug#10201).
2446 * configure.in (HAVE_PTHREAD): Check for pthread_atfork if linking
2447 to gmalloc.c. This should prevent a MirBSD 10 build failure reported
2448 by Nelson H. F. Beebe in
2449 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00065.html>.
2450
2451 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
2452
2453 * update-subdirs: Don't set no-byte-compile twice (bug#10260).
2454
2455 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
2456
2457 * configure.in (HAVE_ALSA, HAVE_GSETTINGS): Save and restore LIBS
2458 instead of LDFLAGS (Bug#10230).
2459
2460 2011-12-03 Paul Eggert <eggert@cs.ucla.edu>
2461
2462 * INSTALL.BZR: Mention configure -C, --disable-maintainer-mode.
2463
2464 Propagate configure flags to sub-configures.
2465 * Makefile.in (cache_file, MAINTAINER_MODE_FLAG, CONFIGUREFLAGS):
2466 New macros.
2467 (config.status, bootstrap): Use them to propagate configure flags
2468 to sub-configures.
2469 * configure.in (cache_file): AC_SUBST this, for Makefile.in.
2470
2471 2011-12-03 Paul Eggert <eggert@cs.ucla.edu>
2472
2473 * .bzrignore: Add config.cache.
2474
2475 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
2476
2477 * configure.in: Check for gtk_window_set_has_resize_grip.
2478
2479 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
2480
2481 * configure.in (HAVE_XPM): Fix typo.
2482
2483 2011-11-22 Glenn Morris <rgm@gnu.org>
2484
2485 * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can
2486 have confusing effects on the build. (Bug#6401)
2487
2488 * Makefile.in (install-arch-dep): Tweak previous change.
2489
2490 2011-11-22 Yavor Doganov <yavor@gnu.org>
2491
2492 Do not install arch-dependent files in the app bundle if
2493 --disable-ns-self-contained is requested. (Bug#1335)
2494 * configure.in (exec_prefix, libexecdir): Define relative to
2495 `ns_appbindir' only if configured for a self-contained app.
2496 * Makefile.in (install-arch-dep): Test for the existence of
2497 libexec in the Emacs.app bundle before executing commands.
2498
2499 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
2500
2501 * configure.in: Remove reference to src/m/ibms390.h.
2502
2503 2011-11-13 Glenn Morris <rgm@gnu.org>
2504
2505 * INSTALL: Tiny updates for disk space used during installation.
2506
2507 2011-11-05 Eli Zaretskii <eliz@gnu.org>
2508
2509 * lib/makefile.w32-in (FRC): New dummy target.
2510 (TAGS): Depend on FRC.
2511
2512 2011-11-04 Glenn Morris <rgm@gnu.org>
2513
2514 * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929)
2515 Do not include GnuTLS version info in final summary message.
2516
2517 2011-10-31 Eli Zaretskii <eliz@gnu.org>
2518
2519 * config.bat: Use config.in and Makefile.in from src/ and lib/, if
2520 they exist there, else from autogen/.
2521
2522 * make-dist (msdos): Add depfiles.bat and inttypes.h.
2523
2524 2011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change)
2525
2526 * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
2527
2528 2011-10-24 Paul Eggert <eggert@cs.ucla.edu>
2529
2530 * configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
2531 if the library is found. Otherwise, later configure-time tests,
2532 such as the test for pthread_sigmask, generate the wrong results
2533 on some platforms. Problem reported for FreeBSD by Nali Toja.
2534
2535 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
2536
2537 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
2538 * configure.in (AC_STRUCT_TM, AC_STRUCT_TIMEZONE, HAVE_TM_GMTOFF):
2539 Remove; no longer needed, now that we defer to strftime for time
2540 zone names.
2541
2542 2011-10-18 Jan Djärv <jan.h.d@swipnet.se>
2543
2544 * configure.in (GLIB_REQUIRED, GTK_REQUIRED): Set to 2.10 (Bug#9786).
2545
2546 2011-10-18 Chong Yidong <cyd@gnu.org>
2547
2548 * make-dist: Remove Cocoa/Emacs.xcodeproj from distribution.
2549
2550 2011-10-13 Glenn Morris <rgm@gnu.org>
2551
2552 * configure.in: Also look for tputs in libcurses. (Bug#9736)
2553
2554 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
2555
2556 * configure.in: Remove check for -lintl (Bug#9713).
2557 The check could break 'configure' on GNU/Linux with a (broken) libintl.
2558 The check was helpful but not essential in Solaris 2.6 (1997),
2559 and is no longer needed in Solaris 8 (2000). Solaris 2.6 is
2560 obsolete -- Sun dropped support for it in 2006 -- and without
2561 access to that Silurian platform we can't maintain the code anyway.
2562
2563 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
2564
2565 Merge from gnulib, fixing some 'configure' typos (Bug#9696).
2566 * lib/signal.in.h, lib/sigprocmask.c, m4/gl-comp.m4:
2567 * m4/gnulib-common.m4: Merge from gnulib.
2568 Without this, 'configure' would say "func_gl_gnulib_m4code_pathmax:
2569 command not found" on powerpc-apple-darwin9.8.0.
2570
2571 * configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
2572 This is now done by src/alloc.c.
2573
2574 2011-10-02 Richard Stallman <rms@gnu.org>
2575
2576 * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
2577 and xlinux_second_failure to xgnu_linux_second_failure.
2578
2579 2011-09-29 Eli Zaretskii <eliz@gnu.org>
2580
2581 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
2582 lib/signal.in-h.
2583
2584 * config.bat: Rename GNUmakefile, so it is not run on MS-DOS.
2585 Rename signal.in.h and alloca.in.h.
2586
2587 2011-09-28 Eli Zaretskii <eliz@gnu.org>
2588
2589 * INSTALL: Mention that m17n libraries and libotf are needed for
2590 Arabic shaping.
2591
2592 2011-09-26 Paul Eggert <eggert@cs.ucla.edu>
2593
2594 Merge from gnulib, improving some licensing wording.
2595 This clarifies and fixes some licensing issues raised by Glenn Morris
2596 <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
2597 It also merges the latest version of texinfo.tex and has some
2598 MSVC-related changes that don't affect Emacs.
2599 * Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
2600 pathmax, and raise, since these are needed only to address
2601 MSVC-related issues that Emacs doesn't have.
2602 * doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
2603 * lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
2604 * lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
2605 * m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
2606 * m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
2607 * m4/unistd_h.m4: Merge from gnulib.
2608
2609 2011-09-26 Andreas Schwab <schwab@linux-m68k.org>
2610
2611 * configure.in: Initialize HAVE_LIBXML2.
2612
2613 2011-09-26 Glenn Morris <rgm@gnu.org>
2614
2615 * make-dist: Add lib/makefile.w32-in.
2616
2617 2011-09-24 Glenn Morris <rgm@gnu.org>
2618
2619 * configure.in (CRT_DIR): Fix netbsd/openbsd handling.
2620
2621 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
2622
2623 * .dir-locals.el: Change the debbugs regexp to allow having the
2624 bug number as the first thing on a line.
2625
2626 2011-09-15 Glenn Morris <rgm@gnu.org>
2627
2628 * configure.in: Make configure work with recent GNUsteps.
2629 (_NATIVE_OBJC_EXCEPTIONS): New AC_DEFINE.
2630 (GNU_OBJC_CFLAGS): Add -fobjc-exceptions when needed.
2631 (C_SWITCH_X_SYSTEM): Enable GNUstep to find its headers.
2632
2633 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
2634
2635 Merge from gnulib, porting to Tru64.
2636 * lib/lstat.c, lib/stat.c, m4/include_next.m4, m4/nocrash.m4:
2637 * m4/signal_h.m4, m4/time_h.m4, m4/unistd_h.m4:
2638 Merge from gnulib. This fixes a compilation error on Tru64 UNIX
2639 aka OSF/1 5.1 DTK cc. There is also some mingw stuff here that
2640 doesn't affect Emacs.
2641
2642 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
2643
2644 * configure.in (isnan): Remove now-unnecessary check.
2645
2646 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
2647
2648 Merge from gnulib, using build-aux to remove clutter (Bug#9169).
2649 This is to fix the following problems:
2650 . On FreeBSD 6.4, HP-UX 11.31, and Solaris 9, and when Emacs is
2651 configured not to use gtk or any other thread-using library,
2652 signals aren't blocked correctly.
2653 . On IRIX 6.5 it fixes an unwanted clash between Emacs's
2654 and IRIX's signal handling.
2655 . On Cygwin 1.7.5 it works around an incompatibility with
2656 the system pthread_sigmask.
2657 . On MacOS X 10.5 (32-bit), files whose inode numbers
2658 exceed 2**31 cannot be read or manipulated.
2659 . pthread_sigmask: Actually use results of gl_THREADLIB.
2660 . strtoimax, strtoumax: Avoid link error on OSF/1 with DTK cc.
2661 . find 'ar' program that fits with --host argument.
2662 . Allow the user to override the choice of AR, ARFLAGS, RANLIB.
2663 * autogen/README: Update destination list.
2664 * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
2665 The autogenerated files compile, config.guess,
2666 config.sub, depcomp, install-sh, and missing are now in build-aux.
2667 * m4/largefile.m4: New file, so that Emacs does not mess up when
2668 accessing files with large inode numbers in MacOS X 10.5 and later.
2669 * m4/nocrash.m4: New file, to avoid triggering background debugger
2670 and/or create core dumps during 'configure'.
2671 * build-aux/move-if-change: Renamed from move-if-change.
2672 * build-aux/snippet/arg-nonnull.h: Renamed from arg-nonnull.h.
2673 * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
2674 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
2675 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
2676 * Makefile.in (epaths-force, sync-from-gnulib):
2677 move-if-change is now in build-aux.
2678 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
2679 of gnulib's pthread_sigmask module, but Emacs doesn't need it.
2680 (mkdir): install-sh is now in build-aux.
2681 * config.bat: c++defs.h is now in build-aux/snippets.
2682 * configure.in: Specify AC_CONFIG_AUX_DIR with build-aux (the
2683 usual parameter).
2684 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2685 * lib/makefile.w32-in (ARG_NONNULL_H): arg-nonnull.h moved
2686 to build-aux/snippet.
2687 * lib/pthread_sigmask.c, lib/stdlib.in.h, m4/extensions.m4:
2688 * m4/getopt.m4, m4/gnulib-common.m4, m4/pthread_sigmask.m4:
2689 Merge from gnuilib. This fixes porting bugs on Cygwin, Irix, and
2690 Solaris, enables MacOS extensions, and enables nocrash during
2691 'configure'.
2692 * make-dist: Adjust to new build-aux and build-aux/snippit dirs.
2693
2694 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
2695
2696 * configure.in (snprintf): New check.
2697
2698 2011-08-30 Paul Eggert <eggert@cs.ucla.edu>
2699
2700 * configure.in (opsys): Change pattern to *-*-linux*
2701 to recognize powerpc-gnu-linux-uclibc (Bug#9403).
2702 Remove unreachable pattern hppa*-*-linux-gnu*.
2703 Also, remove ia64*-hp-hpux1[1-9]*, as it also sets machine=hp800,
2704 and that can't possibly work now that src/m/hp800.h no longer exists.
2705
2706 2011-08-26 Jan Djärv <jan.h.d@swipnet.se>
2707
2708 * configure.in: Add -MP to DEPFLAGS (Bug#9372).
2709
2710 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
2711
2712 * configure.in: Add header check: sys/socket.h (Bug#8477),
2713 ifaddrs.h, net/if_dl.h. Check for getifaddrs and freeifaddrs.
2714 Check for sa_len in struct ifreq.ifr_addr (Bug#8477).
2715
2716 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
2717
2718 * configure.in (HAVE_PTHREAD): Add check for -lpthread (Bug#9216).
2719 (HAVE_GTK_AND_PTHREAD): Remove.
2720
2721 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
2722
2723 * configure.in (HAVE_RSVG): Allow use of -lrsvg-2 for any NextStep
2724 build, not just GNUstep (Bug#9177).
2725
2726 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
2727
2728 Assume freestanding C89 headers, string.h, stdlib.h.
2729 Again, this simplifies the code, and all current platforms have these.
2730 * configure.in (AC_CHECK_HEADERS): Don't check for limits.h.
2731 (AC_HEADER_STDC): Remove.
2732 (AC_CHECK_FUNCS): No need to check for strchr, strrchr.
2733 (strchr, strrchr): Remove fallback macros.
2734
2735 Assume support for memcmp, memcpy, memmove, memset.
2736 This simplifies the code a bit. All current platforms have these,
2737 as they are required for C89. If this turns into a problem we
2738 can add the gnulib modules for these (a 1-line change to Makefile.in).
2739 * configure.in: Don't check for memcmp, memcpy, memmove, memset.
2740
2741 2011-07-27 Paul Eggert <eggert@cs.ucla.edu>
2742
2743 * GNUmakefile: New file.
2744 This is for convenience, so that one can run GNU make in an
2745 unconfigured source tree, and get a default build.
2746
2747 2011-07-13 Jan Djärv <jan.h.d@swipnet.se>
2748
2749 * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.
2750
2751 2011-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2752
2753 * configure.in (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie on Darwin
2754 so as to suppress address randomization (Bug#8395).
2755
2756 2011-07-09 Paul Eggert <eggert@cs.ucla.edu>
2757
2758 * lib/stdint.in.h: Merge from gnulib (Bug#9025).
2759 This fixes a build problem on older Mac OS X hosts.
2760
2761 * m4/pthread_sigmask.m4 (gl_FUNC_PTHREAD_SIGMASK): Omit gl_THREADLIB
2762 test, which runs afoul of Automake installations where, for example,
2763 /usr/share/aclocal contains a copy of gl_THREADLIB.
2764 Problem reported by Sven Joachim in
2765 <http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00529.html>.
2766 This is just a quick temporary fix, specific to Emacs; I'll work
2767 with the other gnulib maintainers to get a more-permanent fix.
2768
2769 Add gnulib's strtoimax module, needed on Solaris 8.
2770 * Makefile.in (GNULIB_MODULES): Add strtoimax.
2771 * lib/strtoll.c, m4/strtoimax.m4, m4/strtoll.m4: New files,
2772 automatically imported from gnulib.
2773 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2774
2775 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
2776
2777 Add gnulib support for pthread_sigmask (Bug#9010).
2778 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
2779 * configure.in (AC_TYPE_UID_T): New dummy macro.
2780 Configure gnulib after adjusting LIBS,
2781 so that gnulib can assume the libraries in LIBS.
2782 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
2783 * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
2784 * lib/pthread_sigmask.c:
2785 New files, automatically imported from gnulib.
2786 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
2787 due to the above changes.
2788 * .bzrignore: Add lib/signal.h.
2789
2790 * lib/getopt.c, lib/unistd.in.h, m4/getopt.m4: Merge from gnulib.
2791
2792 2011-07-07 Andreas Schwab <schwab@linux-m68k.org>
2793
2794 * configure.in (maintainer-mode): Reflect default in help string.
2795
2796 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
2797
2798 * configure.in: Remove reference to iris4d.h.
2799
2800 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
2801
2802 * configure.in (HAVE_GCONF): Allow both HAVE_GCONF and HAVE_GSETTINGS.
2803
2804 2011-07-01 Glenn Morris <rgm@gnu.org>
2805
2806 * configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
2807
2808 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2809
2810 * configure.in (HAVE_GSETTINGS): Fix syntax for GSETTINGS tests,
2811 which made ./configure infloop.
2812
2813 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
2814
2815 * configure.in (gsettings): New option and check for GSettings.
2816
2817 2011-06-29 Glenn Morris <rgm@gnu.org>
2818
2819 * configure.in: Try to test for the required crt*.o files.
2820
2821 2011-06-27 Bill Wohler <wohler@newt.com>
2822
2823 * .bzrignore: Add lisp/mh-e/mh-autoloads.el and lisp/mh-e/mh-cus-load.el.
2824
2825 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
2826
2827 Use gnulib's dup2 module instead of rolling our own.
2828 * Makefile.in (GNULIB_MODULES): Add dup2.
2829 * configure.in: Do not check for dup2; gnulib does that now.
2830 * lib/dup2.c, m4/dup2.m4: New files, from gnulib.
2831
2832 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
2833
2834 * lib/getopt.c, lib/stat.c, m4/gl-comp.m4: Merge from gnulib.
2835
2836 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
2837
2838 Use gnulib's alloca-opt module.
2839 * .bzrignore: Add lib/alloca.h.
2840 * Makefile.in (GNULIB_MODULES): Add alloca-opt.
2841 * configure.in (AC_FUNC_ALLOCA): Remove almost all the alloca stuff,
2842 as gnulib now does that for us. Put alloca check in config.h.
2843 Include <alloca.h> before any other include file, for AIX 3.
2844 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2845 * lib/alloca.in.h, m4/alloca.m4: New files, from gnulib.
2846
2847 2011-06-21 Leo Liu <sdl.web@gmail.com>
2848
2849 * m4/sha256.m4:
2850 * m4/sha512.m4:
2851 * m4/gl-comp.m4:
2852 * lib/u64.h:
2853 * lib/sha256.c:
2854 * lib/sha256.h:
2855 * lib/sha512.c:
2856 * lib/sha512.h:
2857 * lib/makefile.w32-in (GNULIBOBJS):
2858 * lib/gnulib.mk:
2859 * Makefile.in (GNULIB_MODULES): Add crypto/sha256 and
2860 crypto/sha512 modules from gnulib.
2861
2862 2011-06-19 Paul Eggert <eggert@cs.ucla.edu>
2863
2864 * lib/unistd.in.h, m4/getloadavg.m4: Merge from gnulib.
2865
2866 2011-06-17 Glenn Morris <rgm@gnu.org>
2867
2868 * configure.in: Restore the behavior of checking crt-dir only
2869 when the user specified it (not all platforms use it).
2870
2871 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
2872
2873 * m4/lstat.m4: Merge from gnulib (Bug#8878).
2874
2875 2011-06-16 Miles Bader <miles@gnu.org>
2876
2877 * configure.in: Try to determine CRT_DIR automatically when
2878 using gcc.
2879
2880 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
2881
2882 * lib/ftoastr.c, lib/stdio.in.h, lib/verify.h:
2883 * lib/gnulib.mk, m4/c-strtod.m4, m4/filemode.m4, m4/getloadavg.m4:
2884 * m4/getopt.m4, m4/gl-comp.m4, m4/lstat.m4, m4/md5.m4, m4/mktime.m4:
2885 * m4/readlink.m4, m4/sha1.m4, m4/stat.m4, m4/strftime.m4:
2886 * m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4, m4/time_r.m4:
2887 Merge from gnulib.
2888
2889 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
2890
2891 * configure.in: Add emacsgtkfixed.o to GTK_OBJ if HAVE_GTK3.
2892
2893 2011-06-08 Paul Eggert <eggert@cs.ucla.edu>
2894
2895 * lib/gnulib.mk, m4/gnulib-common.m4: Merge from gnulib.
2896
2897 2011-06-07 Paul Eggert <eggert@cs.ucla.edu>
2898
2899 * configure.in: Add --with-wide-int.
2900 * INSTALL: Mention this.
2901
2902 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
2903
2904 Merge from gnulib.
2905 * lib/careadlinkat.c, lib/careadlinkat.h, m4/gnulib-common.m4: Merge.
2906
2907 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
2908
2909 * lib/allocator.h, lib/careadlinkat.c: Merge from gnulib.
2910
2911 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
2912
2913 Use 'inline', not 'INLINE'.
2914 * configure.in (INLINE): Remove.
2915
2916 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
2917
2918 Adjust to recent gnulib change for @GUARD_PREFIX@.
2919 * lib/makefile.w32-in (getopt_h): Substitute @GUARD_PREFIX@, too.
2920 All uses of _GL_ for guard prefixes in lib/*.h replaced with
2921 _@GUARD_PREFIX@_.
2922
2923 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
2924
2925 * lib/getopt.c, lib/intprops.h: Merge from gnulib.
2926
2927 2011-05-24 Glenn Morris <rgm@gnu.org>
2928
2929 * Makefile.in (check): Just give a message if no test/ directory.
2930
2931 * configure.in: Avoid using variables inside AC_CONFIG_FILES.
2932
2933 * configure.in (OPT_MAKEFILES_IN): Remove.
2934 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
2935 (SUBDIR_MAKEFILES_IN): New output variable.
2936 * Makefile.in (OPT_MAKEFILES_IN): Remove.
2937 (SUBDIR_MAKEFILES_IN): Let configure set it.
2938
2939 2011-05-24 Leo Liu <sdl.web@gmail.com>
2940
2941 * m4/sha1.m4:
2942 * m4/gl-comp.m4:
2943 * lib/sha1.h:
2944 * lib/sha1.c:
2945 * lib/makefile.w32-in (GNULIBOBJS):
2946 * lib/gnulib.mk:
2947 * Makefile.in (GNULIB_MODULES): Add crypto/sha1 module.
2948
2949 2011-05-24 Glenn Morris <rgm@gnu.org>
2950
2951 * configure.in: Remove test for already configured source directory.
2952 AM_INIT_AUTOMAKE has already done a more stringent test. (Bug#953)
2953
2954 * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
2955
2956 2011-05-24 Glenn Morris <rgm@gnu.org>
2957
2958 * make-dist: Don't distribute test/. (Bug#8107)
2959 * configure.in (OPT_MAKEFILES_IN): New output variable.
2960 (AC_CONFIG_FILES): Conditionally include test/automated/Makefile.
2961 * Makefile.in (OPT_MAKEFILES_IN): New, set by configure.
2962 (SUBDIR_MAKEFILES_IN): Use $OPT_MAKEFILES_IN.
2963 (check): Give an explicit error if test/ is not present.
2964
2965 * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
2966 (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
2967 (Makefile): Use $SUBDIR_MAKEFILES_IN.
2968
2969 2011-05-23 Paul Eggert <eggert@cs.ucla.edu>
2970
2971 * lib/verify.h: Merge from gnulib.
2972
2973 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
2974
2975 * lib/intprops.h, lib/stdint.in.h, m4/mktime.m4, m4/readlink.m4:
2976 Merge from gnulib.
2977
2978 2011-05-21 Andreas Schwab <schwab@linux-m68k.org>
2979
2980 * Makefile.in (AUTOMAKE_INPUTS): Add $(srcdir)/lib/gnulib.mk.
2981
2982 2011-05-20 Eli Zaretskii <eliz@gnu.org>
2983
2984 * .bzrignore: Add lib/stdio.in-h, lib/stdbool.h, and lib/stdint.h.
2985
2986 * config.bat: Concatenate lisp.mk onto the end of src/Makefile.
2987
2988 2011-05-20 Glenn Morris <rgm@gnu.org>
2989
2990 * configure.in (lisp_frag): New output file.
2991
2992 2011-05-19 Glenn Morris <rgm@gnu.org>
2993
2994 * configure.in (NS_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
2995 (WINDOW_SUPPORT): Remove output variables that are no longer used.
2996
2997 2011-05-17 Paul Eggert <eggert@cs.ucla.edu>
2998
2999 * lib/gnulib.mk:
3000 * lib/intprops.h:
3001 * lib/unistd.in.h:
3002 * m4/inttypes.m4:
3003 * m4/stdint.m4:
3004 * m4/unistd_h.m4: Sync from gnulib.
3005
3006 2011-05-14 Glenn Morris <rgm@gnu.org>
3007
3008 * configure.in: Treat failure to find an X toolkit the same way we treat
3009 failure to find X and image support.
3010
3011 2011-05-12 Glenn Morris <rgm@gnu.org>
3012
3013 * Makefile.in (src, install-arch-indep, bootstrap-clean)
3014 (check-declare): Shell portability fixes. (Bug#8642)
3015
3016 2011-05-09 Teodor Zlatanov <tzz@lifelogs.com>
3017
3018 * configure.in: Require GnuTLS 2.6.x or higher.
3019
3020 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
3021
3022 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
3023 * Makefile.in (GNULIB_MODULES): Add stdarg, for va_copy.
3024 * lib/stdarg.in.h, m4/stdarg.m4: New files, from gnulib.
3025
3026 * Makefile.in (GNULIB_TOOL_FLAG): Add --conditional-dependencies.
3027 This new gnulib-tool option saves 'configure' the trouble of
3028 checking for strtoull when strtoumax exists.
3029
3030 * configure.in (BITS_PER_LONG_LONG): New macro.
3031
3032 2011-05-05 Glenn Morris <rgm@gnu.org>
3033
3034 * Makefile.in (bootstrap-clean): Save config.log. (Bug#765)
3035 (top_distclean): Delete config.log~.
3036
3037 2011-04-27 Ben Key <bkey76@gmail.com>
3038
3039 * configure.in: Fixed a bug that caused configure with
3040 --enable-checking=stringoverrun to have no effect.
3041
3042 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
3043
3044 * configure.in: Suppress unnecessary checks for size_t.
3045 (AC_TYPE_SIZE_T): Define an empty macro, to suppress obsolescent test.
3046 (size_t): Do not check for this, and do not typedef. This code
3047 is never exercised now.
3048
3049 * Makefile.in (GNULIB_MODULES): Add strtoumax.
3050 This is needed for the new integer-reading code in lread.c.
3051 It automatically pulls in the following gnulib files, which
3052 are used on old-fashioned platforms that don't have strtoumax:
3053 lib/inttypes.in.h, lib/strtoimax.c, lib/strtol.c, lib/strtoul.c,
3054 lib/strtoull.c, lib/strtoumax.c, lib/verify.h, m4/inttypes.m4,
3055 m4/strtoull.m4, m4/strtoumax.m4.
3056 * .bzrignore: Add lib/inttypes.h.
3057
3058 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
3059
3060 * configure.in: Check for GnuTLS certificate verify callbacks.
3061
3062 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3063
3064 * Makefile.in (config.status): Don't erase in case of error.
3065 In case it disappeared, rebuild it with `configure'.
3066
3067 2011-04-20 Ken Brown <kbrown@cornell.edu>
3068
3069 * configure.in (use_mmap_for_buffers): Set to yes on Cygwin.
3070
3071 2011-04-12 Glenn Morris <rgm@gnu.org>
3072
3073 * configure.in: Require ImageMagick >= 6.2.8. (Bug#7955)
3074
3075 2011-04-09 Paul Eggert <eggert@cs.ucla.edu>
3076
3077 * lib/allocator.c: New file, automatically generated by gnulib.
3078
3079 2011-04-07 Glenn Morris <rgm@gnu.org>
3080
3081 * autogen/update_autogen: Ignore comment diffs in ldefs-boot.el.
3082
3083 2011-04-06 Eli Zaretskii <eliz@gnu.org>
3084
3085 * lib/makefile.w32-in ($(BLD)/careadlinkat.$(O), GNULIBOBJS):
3086 Revert last change.
3087
3088 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
3089
3090 * lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O).
3091 ($(BLD)/careadlinkat.$(O)): New target.
3092 ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
3093 ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)):
3094 Update dependencies.
3095
3096 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
3097
3098 Fix more problems found by GCC 4.6.0's static checks.
3099
3100 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
3101
3102 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
3103 * Makefile.in (GNULIB_MODULES): Add careadlinkat.
3104 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
3105 * m4/ssize_t.m4: New files, automatically generated from gnulib.
3106
3107 2011-04-06 Glenn Morris <rgm@gnu.org>
3108
3109 * autogen/update_autogen: Handle loaddefs-like files as well.
3110 (usage): Add -l, -C.
3111 (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
3112 With -l, check status of lisp/ as well.
3113 With -C, clean before building.
3114 (autoreconf): Only pass -f in the `clean' case.
3115 (commit): New function.
3116
3117 2011-03-28 Glenn Morris <rgm@gnu.org>
3118
3119 * autogen/update_autogen: Pass -f to autoreconf.
3120
3121 * autogen.sh (get_version): Discard "not found" lines.
3122 (check_version): Respect $AUTOCONF etc environment variables.
3123
3124 2011-03-27 Glenn Morris <rgm@gnu.org>
3125
3126 * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
3127 (AH_BOTTOM): Do not define SIGTYPE.
3128
3129 2011-03-26 Glenn Morris <rgm@gnu.org>
3130
3131 * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,
3132 AC_TRY_RUN with AC_COMPILE_IFELSE, AC_LINK_IFELSE, AC_RUN_IFELSE.
3133
3134 2011-03-25 Andreas Schwab <schwab@linux-m68k.org>
3135
3136 * autogen/update_autogen: Remove useless function keyword.
3137
3138 2011-03-25 Eli Zaretskii <eliz@gnu.org>
3139
3140 * config.bat: Generate src/config.h and lib/Makefile from
3141 autogen/config.in and autogen/Makefile.in.
3142
3143 2011-03-25 Glenn Morris <rgm@gnu.org>
3144
3145 * compile, config.guess, config.sub, depcomp, install-sh, missing:
3146 Remove; autoreconf can supply them.
3147 * Makefile.in (sync-from-gnulib): Don't sync config.sub,
3148 config.guess, install-sh. Pass -i to autoreconf.
3149 * autogen/update_autogen (genfiles): Add compile, config.guess,
3150 config.sub, depcomp, install-sh, missing. Pass -i to autoreconf.
3151 Discard non-error output from autoreconf in -q case.
3152 * autogen/compile, autogen/config.guess, autogen/config.sub:
3153 * autogen/depcomp, autogen/install-sh, autogen/missing: New.
3154 * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp,
3155 install-sh, missing.
3156
3157 2011-03-23 Glenn Morris <rgm@gnu.org>
3158
3159 * autogen/update_autogen: Fix typo.
3160 (msg): Remove function; use `exec' instead.
3161
3162 * Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
3163 (sync-from-gnulib): Don't sync mkinstalldirs.
3164 * make-dist: Don't distribute mkinstalldirs.
3165
3166 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
3167
3168 Fix more problems found by GCC 4.5.2's static checks.
3169 * Makefile.in (GNULIB_MODULES): Add socklen.
3170 * configure.in: Do not check for sys/socket.h, since socklen does that.
3171 * m4/socklen.m4: New automatically-generated file, from gnulib.
3172
3173 fakemail: Remove dependency on ignore-value.
3174 * Makefile.in (GNULIB_MODULES): Add stdio.
3175 * lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
3176 imported from gnulib.
3177 * .bzrignore: Add lib/stdio.h.
3178
3179 2011-03-22 Glenn Morris <rgm@gnu.org>
3180
3181 * autogen/copy_autogen: Work from ./ or ../.
3182 Fix time-stamps.
3183 * autogen.sh: Doc fix.
3184
3185 2011-03-20 Glenn Morris <rgm@gnu.org>
3186
3187 * autogen/: New directory, to be excluded from releases.
3188 * autogen/copy_autogen, autogen/update_autogen: New scripts.
3189 * autogen/README: New file.
3190 * autogen/aclocal.m4, autogen/config.in, autogen/configure:
3191 * autogen/Makefile.in: Add auto-updated generated files.
3192 * autogen.sh: No longer a no-op, now it tests for autotools
3193 and runs them as necessary.
3194 * configure.in: Default maintainer-mode to on.
3195 * aclocal.m4, configure, lib/Makefile.in: Remove files.
3196
3197 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
3198
3199 Update for gnulib.
3200 * Makefile.in (GNULIB_MODULES): Add intprops, as Emacs now
3201 includes <intprops.h> directly.
3202 * lib/sys_stat.in.h: New version from Gnulib, which fixes a bug
3203 when building Emacs on Solaris 9 and running it on Solaris 10.
3204
3205 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
3206
3207 * configure.in: Require 3.0 for --with-gtk3. Add HAVE_GTK3.
3208
3209 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
3210
3211 * Version 23.3 released.
3212
3213 2011-03-06 Glenn Morris <rgm@gnu.org>
3214
3215 * configure.in (FREETYPE_LIBS): Actually set it to something.
3216
3217 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
3218
3219 Work around some portability problems with symlinks.
3220
3221 * Makefile.in (GNULIB_MODULES): Add lstat, readlink, symlink.
3222 * configure.in (lstat, HAVE_LSTAT): Remove special hack.
3223 * lib/dosname.h, lib/lstat.c, lib/readlink.c, lib/stat.c:
3224 * lib/symlink.c, m4/lstat.m4, m4/readlink.m4, m4/stat.m4:
3225 * m4/symlink.m4:
3226 New files, automatically generated from gnulib.
3227 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
3228 * m4/gl-comp.m4, src/config.in, config.sub: Regenerate.
3229
3230 2011-02-26 Eli Zaretskii <eliz@gnu.org>
3231
3232 * .bzrignore: Ignore new lib/*.in-h files.
3233
3234 * config.bat: Rename stdint.in.h and sys_stat.in.h.
3235 Call depfiles.bat even if lib/deps already exist.
3236
3237 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
3238
3239 * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk:
3240 * lib/stdlib.in.h, m4/stdlib_h.m4: Regenerate to incorporate
3241 recent changes to configure.in and to gnulib.
3242
3243 2011-02-24 Glenn Morris <rgm@gnu.org>
3244
3245 * configure.in: Replace obsolete AC_OUTPUT() with AC_CONFIG_FILES(),
3246 AC_CONFIG_COMMANDS(), and AC_OUTPUT sans arguments.
3247
3248 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
3249
3250 Assume S_ISLNK etc. work, since gnulib supports this.
3251 * Makefile.in (GNULIB_MODULES): Add sys_stat.
3252 * configure.in: Check for lstat and set HAVE_LSTAT=0 if not.
3253 Pretend to be using the gnulib lstat module for benefit of sys/stat.h.
3254 * configure, lib/Makefile.in, lib/gnulib.mk: Regenerate.
3255
3256 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
3257
3258 * lib/min-max.h: New file, for "min" and "max".
3259
3260 2011-02-21 Christoph Scholtes <cschol2112@gmail.com>
3261
3262 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Add dependency on
3263 $(EMACS_ROOT)/nt/inc/stdint.h.
3264
3265 2011-02-21 Eli Zaretskii <eliz@gnu.org>
3266
3267 * lib/makefile.w32-in ($(BLD)/filemode.$(O)): Move from
3268 src/makefile.w32-in and adapt. Depend on stamp_BLD.
3269 (GNULIBOBJS): Add $(BLD)/filemode.$(O).
3270
3271 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
3272
3273 Import filemode module from gnulib.
3274 * .bzrignore: Add lib/sys/.
3275 * Makefile.in (GNULIB_MODULES): Add filemode.
3276 * lib/Makefile.am (MOSTLYCLEANDIRS): New macro.
3277 * lib/filemode.c: Renamed from src/filemode.c and regenerated
3278 from gnulib. This adds support for some more file types, e.g.,
3279 Cray DMF migrated files.
3280 * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c.
3281 * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4:
3282 * m4/sys_stat_h.m4: New files, generated from gnulib.
3283 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
3284 Regenerate.
3285
3286 2011-02-20 Eli Zaretskii <eliz@gnu.org>
3287
3288 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Don't depend on
3289 $(EMACS_ROOT)/nt/inc/sys/stat.h.
3290
3291 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
3292
3293 * configure.in (C_WARNINGS_SWITCH): Do not prepend -Wno-pointer-sign.
3294 This undoes the 2006-01-02 change. The -Wno-pointer-sign option
3295 is no longer needed, due to the recent SSDATA and related changes.
3296 Perhaps -Wno-pointer-sign should also be removed from
3297 nextstep/Cocoa/Emacs.xcodeproj/project.pbxproj but I have no easy
3298 way to test this so I left it alone.
3299 * configure: Regenerate.
3300
3301 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
3302
3303 * lib/makefile.w32-in ($(BLD)/md5.$(O)): New recipe, moved from
3304 src/makefile.w32-in.
3305
3306 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
3307
3308 Import crypto/md5 and stdint modules from gnulib.
3309 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
3310 Regenerate.
3311 * lib/md5.c, lib/md5.h: Rename from src/md5.h and lib/md5.h.
3312 Import the new versions from gnulib; they assume a C99-style
3313 <stdint.h>, supplied by the stdint module.
3314 * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files,
3315 imported from gnulib.
3316 * Makefile.in (MAKEFILE_MODULES): Add crypto/md5.
3317 * admin/notes/copyright: Remove src/md5.c and src/md5.h as
3318 special cases.
3319
3320 2011-02-19 Eli Zaretskii <eliz@gnu.org>
3321
3322 * .bzrignore: Ignore cxxdefs.h and lib/*.in-h files.
3323 Add lib/deps/.
3324
3325 * config.bat: Configure in `lib'.
3326 Generate *.Po files in lib/deps.
3327
3328 2011-02-18 Paul Eggert <eggert@cs.ucla.edu>
3329
3330 Import IRIX 6.5 getloadavg fixes from gnulib.
3331 * configure, lib/getloadavg.c, m4/getloadavg.m4: Regenerate.
3332
3333 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
3334
3335 Import getloadavg module from gnulib.
3336 * .bzrignore: Add lib/stdlib.h.
3337 * Makefile.in (GNULIB_MODULES): Add getloadavg.
3338 * admin/notes/copyright: Remove src/getloadavg.c as a special case.
3339 * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this.
3340 (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES):
3341 Remove; gnulib does this now.
3342 * lib/getloadavg.c: Rename from src/getloadavg.c, and sync
3343 from gnulib. This adds support for several other systems, such
3344 as Tru64 4.0D, QNX, AIX perfstat, etc. It also fixes a potential
3345 buffer overrun on Linux hosts under very high load, and on hosts
3346 that maintain a channel to the load average file it makes sure
3347 the file descriptor is close-on-exec (on hosts that support this)
3348 and is not stdin, stdout, or stderr.
3349 * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files,
3350 from gnulib.
3351 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
3352 * src/config.in: Regenerate.
3353
3354 2011-02-15 Paul Eggert <eggert@cs.ucla.edu>
3355
3356 Merge from gnulib.
3357
3358 * install-sh: Update to scriptversion 2011-01-19.21.
3359
3360 2011-02-13 Bruno Haible <bruno@clisp.org>
3361
3362 Consistent macro naming for macros that use GCC __attribute__.
3363 * lib/ignore-value.h (_GL_ATTRIBUTE_DEPRECATED): Rename from
3364 ATTRIBUTE_DEPRECATED.
3365
3366 2011-02-12 Bruno Haible <bruno@clisp.org>
3367
3368 setlocale: Prefer gnulib's override over libintl's override.
3369 * lib/gettext.h (setlocale): Redefine to rpl_setlocale if
3370 GNULIB_defined_setlocale is set.
3371
3372 2011-02-13 Glenn Morris <rgm@gnu.org>
3373
3374 * make-dist: Exclude generated file src/globals.h.
3375
3376 2011-02-10 Paul Eggert <eggert@cs.ucla.edu>
3377
3378 * arg-nonnull.h, c++defs.h, warn-on-use.h: Fix licenses.
3379 Sync from gnulib, which has been patched to fix the problem
3380 with the license notices. Problem reported by Glenn Morris in
3381 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00403.html>.
3382
3383 2011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
3384
3385 * .bzrignore: Ignore globals.h and related stamp.
3386
3387 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
3388
3389 * lib/Makefile.in, lib/gnulib.mk: Regenerate.
3390 This merges the following fix from gnulib:
3391
3392 2011-02-08 Bruno Haible <bruno@clisp.org>
3393
3394 Split large sed scripts, for HP-UX sed.
3395
3396 2011-02-08 Tom Tromey <tromey@redhat.com>
3397
3398 * configure: Rebuild.
3399 * configure.in (NS_OBJC_OBJ): New subst.
3400
3401 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
3402
3403 gnulib: allow multiple gnulib generated replacements to coexist
3404 This defines a few preprocessor symbols that should not affect Emacs.
3405 * lib/getopt.in.h, lib/time.in.h, lib/unistd.in.h: Regenerate
3406 via "make sync-from-gnulib".
3407
3408 gnulib: undo previous change
3409 The upstream _HEADERS change was backed out of gnulib (see the
3410 same thread). Stay in sync with gnulib.
3411
3412 gnulib: adjust to upstream _HEADERS change
3413 * lib/Makefile.am (EXTRA_HEADERS, nodist_pkginclude_HEADERS):
3414 New empty macros, to accommodate recent changes to gnulib. See
3415 <http://lists.gnu.org/archive/html/bug-gnulib/2011-02/msg00068.html>.
3416 * c++defs.h, lib/Makefile.in, lib/ftoastr.h, lib/getopt.in.h:
3417 * lib/gnulib.mk, lib/ignore-value.h, lib/stdbool.in.h, lib/stddef.in.h:
3418 * lib/time.in.h, lib/unistd.in.h:
3419 Regenerate.
3420
3421 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
3422
3423 sync from gnulib to remove HAVE_STDBOOL_H
3424 * m4/stdbool.m4 (AC_CHECK_HEADER_STDBOOL): Rename from
3425 AC_HEADER_STDBOOL. All uses changed. Do not define
3426 HAVE_STDBOOL_H, as gnulib does not need this. This change is
3427 imported from the latest Autoconf git. It was motivated by Emacs,
3428 which uses gnulib but does not need HAVE_STDBOOL_H.
3429 * configure, src/config.in: Regenerate.
3430 * config.guess, config.sub: Sync to 2011-02-02 versions (whitespace)
3431
3432 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
3433
3434 allow C code to suppress warnings about ignored return values
3435 * Makefile.in (GNULIB_MODULES): Add ignore-value.
3436 * configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
3437 * lib/ignore-value.h: New file.
3438
3439 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
3440
3441 * configure.in: Test existence of xaw3d library, not just the
3442 header (Bug#7642).
3443
3444 2011-01-31 Eli Zaretskii <eliz@gnu.org>
3445
3446 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and
3447 $(BLD)/time_r.$(O).
3448 ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and
3449 $(EMACS_ROOT)/src/m/intel386.h.
3450 ($(BLD)/strftime.$(O)):
3451 ($(BLD)/time_r.$(O)): Define prerequisites.
3452
3453 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
3454
3455 src/emacs.c now gets version number from configure.in
3456 * configure.in (version): Set this from $PACKAGE_VERSION,
3457 which is set from AC_INIT, rather than scouting through src/emacs.c.
3458 * configure: Regenerate.
3459 * make-dist (version): Get it from configure.in, not src/emacs.c.
3460
3461 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
3462
3463 strftime: import from gnulib
3464 * Makefile.in (GNULIB_MODULES): Add strftime.
3465 * configure.in (AC_FUNC_STRFTIME, my_strftime): Remove; no longer
3466 needed.
3467 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
3468 Regenerate.
3469 * lib/strftime.c, lib/strftime.h, lib/stdbool.in.h: New files,
3470 imported from gnulib.
3471 * m4/strftime.m4, m4/stdbool.m4, m4/tm_gmtoff.m4: Likewise.
3472 This incorporates many changes from gnulib, including simpler
3473 handling of multibyte formats, porting to mingw32 and other
3474 platforms, and support for higher-resolution time stamps.
3475 Emacs does not yet use the higher-resolution interface.
3476
3477 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
3478
3479 gnulib: import mktime and move-if-change fixes from gnulib
3480
3481 * configure: Regenerate from the following.
3482
3483 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
3484
3485 mktime: clarify long_int width checking
3486 * lib/mktime.c (long_int_is_wide_enough): Move this assertion to
3487 the top level, to make it clearer that the assumption about
3488 long_int width is being checked. See
3489 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00554.html>.
3490
3491 2011-01-29 Paul Eggert <eggert@cs.ucla.edu>
3492
3493 TYPE_MAXIMUM: avoid theoretically undefined behavior
3494 * lib/intprops.h (TYPE_MINIMUM, TYPE_MAXIMUM): Do not shift a
3495 negative number, which the C Standard says has undefined behavior.
3496 In practice this is not a problem, but might as well do it by the book.
3497 Reported by Rich Felker and Eric Blake; see
3498 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00493.html>.
3499 * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
3500 * lib/mktime.c (TYPE_MAXIMUM): Redo slightly to match the others.
3501
3502 mktime: #undef mktime before #defining it
3503 * lib/mktime.c (mktime) [DEBUG]: #undef mktime before #defining it.
3504
3505 mktime: systematically normalize tm_isdst comparisons
3506 * lib/mktime.c (isdst_differ): New function.
3507 (__mktime_internal): Use it systematically for all isdst comparisons.
3508 This completes the fix for libc BZ #6723, and removes the need for
3509 normalizing tm_isdst.
3510 See <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>
3511 (not_equal_tm) [DEBUG]: Use isdst_differ here, too.
3512
3513 mktime: fix some integer overflow issues and sidestep the rest
3514
3515 This was prompted by a bug report by Benjamin Lindner for MinGW
3516 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00472.html>.
3517 His bug is due to signed integer overflow (0 - INT_MIN), and I
3518 I scanned through mktime.c looking for other integer overflow
3519 problems, fixing all the bugs I found.
3520
3521 Although the C Standard says the resulting code is still not safe
3522 in the presence of integer overflow, in practice it should be good
3523 enough for all real-world two's-complement implementations, except
3524 for debugging environments that deliberately trap on integer
3525 overflow (e.g., gcc -ftrapv).
3526
3527 * lib/mktime.c (WRAPV): New macro.
3528 (SHR): Also check that long_int and time_t shift right in the
3529 usual way, before using the fast-but-unportable method.
3530 (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove, no longer
3531 used. The code already assumed two's complement, so there's
3532 no need to test for alternatives. All uses removed.
3533 (TYPE_MAXIMUM): Don't rely here on overflow behavior not defined by
3534 the C standard. Problem reported by Rich Felker in
3535 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00488.html>.
3536 (twos_complement_arithmetic): Also check long_int and time_t.
3537 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New functions.
3538 (guess_time_tm, ranged_convert, __mktime_internal): Use them.
3539 (__mktime_internal): Avoid integer overflow with unary subtraction
3540 in two instances where -1 - X is an adequate replacement for -X,
3541 since the calculations are approximate.
3542
3543 2011-01-29 Eric Blake <eblake@redhat.com>
3544
3545 mktime: avoid infinite loop
3546 * m4/mktime.m4 (AC_FUNC_MKTIME): Avoid overflow on possibly-signed
3547 type; behavior is still undefined but portable to all known targets.
3548 Reported by Rich Felker.
3549
3550 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
3551
3552 mktime: avoid problems on NetBSD 5 / i386
3553 * lib/mktime.c (long_int): New type. This works around a problem
3554 on NetBSD 5 / i386, where 'long int' and 'int' are both 32 bits
3555 but time_t is 64 bits, and where I expect the existing code is
3556 wrong in some cases.
3557 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it.
3558 (ydhms_diff): Bring back the compile-time check for wide-enough
3559 year and yday.
3560
3561 mktime: fix misspelling in comment
3562 * lib/mktime.c (__mktime_internal): Fix misspelling in comment.
3563 This merges all recent glibc changes of importance.
3564
3565 2011-01-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3566
3567 move-if-change: cope with concurrent mv of identical file.
3568 * move-if-change (CMPPROG): Accept environment
3569 variable as an override for `cmp'.
3570 (usage): Document CMPPROG.
3571 Adjust comparison to drop stdout. Cope with failure of mv if
3572 the target file exists and is identical to the source, for
3573 parallel builds.
3574 Report from H.J. Lu against binutils in PR binutils/12283.
3575
3576 2011-01-29 Eli Zaretskii <eliz@gnu.org>
3577
3578 * lib/makefile.w32-in:
3579 * lib/getopt_.h: New files.
3580
3581 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
3582
3583 improve fix for MS-DOS file name clash
3584 * Makefile.in (DOS_gnulib_comp.m4): Rename from DOS-gnulib-comp.m4,
3585 for portability to POSIX make. Reported by Bruno Haible.
3586 (sync-from-gnulib): Copy gl-comp.m4 (if present) back to
3587 gnulib-comp.m4 before running gnulib-tool, to prevent old gnulib
3588 files from accumulating as garbage. Also reported by Bruno Haible.
3589
3590 2011-01-27 Paul Eggert <eggert@cs.ucla.edu>
3591
3592 fix two m4/gnulib-*.m4 file names that clashed under MS-DOS
3593 * Makefile.in (DOS-gnulib-comp.m4): New macro.
3594 (sync-from-gnulib): Rename m4/gnulib-comp.m4 to m4/gl-comp.m4 to avoid
3595 problems with MS-DOS 8+3 file name restrictions.
3596 Remove m4/gnulib-cache.m4, as we can live without it. If we kept
3597 it, it would also cause problems when extracting Emacs distribution
3598 tarballs on MS-DOS hosts.
3599 (ACLOCAL_INPUTS): Adjust to file renaming.
3600 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
3601 * config.guess, config.sub: Sync from gnulib.
3602 * m4/gnulib-cache.m4: Remove from repository.
3603 * m4/gl-comp.m4: Rename from m4/gnulib-comp.m4.
3604
3605 2011-01-25 Glenn Morris <rgm@gnu.org>
3606
3607 * README: Add a note about ranges in copyright years.
3608
3609 * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
3610
3611 2011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
3612
3613 * configure.in: Add HP-UX on IA64 (Bug#6811).
3614
3615 2011-01-24 Paul Eggert <eggert@cs.ucla.edu>
3616
3617 Remove HAVE_RAW_DECL_CHOWN etc. from config.h
3618 * Makefile.in (sync-from-gnulib): Remove m4/warn-on-use.m4,
3619 as it is no longer needed.
3620 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
3621 * configure.in: Invoke the new gnulib macro
3622 gl_ASSERT_NO_GNULIB_POSIXCHECK, which removes the need for
3623 warn-on-use.m4 and for the HAVE_RAW_DECL_* symbols in config.h.
3624 * m4/getopt.m4: Sync from gnulib; this removes the need for
3625 HAVE_DECL_OPTRESET and HAVE_DECL_GETOPT_CLIP from config.h.
3626 * m4/gnulib-common.m4 (gl_ASSERT_NO_GNULIB_POSIXCHECK):
3627 New macro, synced from gnulib.
3628 * m4/warn-on-use.m4: Remove.
3629
3630 2011-01-22 Paul Eggert <eggert@cs.ucla.edu>
3631
3632 aclocal.m4: put this file back into repository
3633 This way, we don't have to assume that the maintainer has
3634 the automake package installed. See
3635 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00746.html>.
3636 * .bzrignore: Remove aclocal.m4, undoing the previous change.
3637 * Makefile.in (top_maintainer_clean): Do not remove aclocal.m4,
3638 undoing the previous change.
3639 * aclocal.m4: New file (actually, resurrected).
3640
3641 2011-01-22 Miles Bader <miles@gnu.org>
3642
3643 * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
3644 FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
3645 Emacs directly uses fontconfig, and breaks building when using a
3646 strict linker).
3647
3648 2011-01-21 Paul Eggert <eggert@cs.ucla.edu>
3649
3650 src/config.in: shrink slightly
3651 * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS.
3652 This makes src/config.in a bit smaller, by removing identifiers
3653 like GNULIB_TEST_MKTIME that Emacs does not need.
3654 * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4:
3655 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4:
3656 Sync from gnulib. This removes a few more unnecessary symbols from
3657 src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H.
3658 * configure, src/config.in: Regenerate.
3659
3660 aclocal.m4: tweaks to regenerate more conveniently
3661 This attempts to act better when the source is in a weird state. See
3662 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00734.html>.
3663 * Makefile.in (am--refresh): Add aclocal.m4, configure, config.in.
3664 * .bzrignore: Add aclocal.m4.
3665
3666 2011-01-20 Paul Eggert <eggert@cs.ucla.edu>
3667
3668 aclocal.m4: omit auto-generated file from repository
3669 * Makefile.in (top_maintainer_clean): Remove aclocal.m4; this undoes
3670 the most recent change here.
3671 * aclocal.m4: Remove from bzr repository. This file is
3672 auto-generated and isn't needed to run 'configure'. See
3673 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00698.html>.
3674
3675 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
3676
3677 Minor Makefile.in tweaks to build from gnulib better.
3678 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>
3679 * Makefile.in (sync-from-gnulib): Also run autoreconf -I m4.
3680 (top_maintainer_clean): Don't remove aclocal.m4.
3681
3682 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
3683
3684 Minor cleanups for 'bzr status'
3685 * .bzrignore: Add emacs-*/, the output of make-dist, and stamp-h1,
3686 the output of config.guess.
3687 * Makefile.in (top_distclean): Remove stamp-h1 too.
3688
3689 * configure.in (HAVE_ATTRIBUTE_ALIGNED): Arrange for this to be
3690 defined if the compiler supports GCC-style __attribute__
3691 ((__aligned__ ...)). IBM AIX and Oracle Solaris Studio support
3692 this syntax.
3693
3694 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
3695
3696 Makefile.in: tidy up the building of lib
3697 * Makefile.in (am--refresh): Mark as .PHONY.
3698 (top_maintainer_clean): Don't remove lib/gnulib.mk m4/gnulib-cache.m4,
3699 as they're not rebuilt unless you do a "make sync-from-gnulib"
3700 and the former is needed for "configure".
3701 (maintainer-clean): Don't recurse into lib, as "make bootstrap-clean"
3702 has already removed lib/Makefile.
3703
3704 * Makefile.in (GNULIB_MODULES): Change ftoastr to dtoastr.
3705 This avoids building ftoastr and ldtoastr, which aren't needed. See
3706 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00199.html>.
3707
3708 * .bzrignore: Add .h files that are host-dependent.
3709 Add lib/.deps/, lib/arg-nonnull.h, lib/c++defs.h, lib/getopt.h,
3710 lib/time.h, lib/unistd.h, lib/warn-on-use.h. These are
3711 host-dependent and are built as part of an ordinary 'make', and
3712 should not be checked in.
3713
3714 * lib/Makefile.in: Regenerate.
3715 * lib/COPYING: New file, a copy of COPYING.
3716
3717 * configure: Regenerate.
3718 * configure.in (AC_USE_SYSTEM_EXTENSIONS): Remove: gnulib does this.
3719
3720 Regenerate.
3721 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
3722 * lib/gettext.h, lib/unistd.in.h, m4/unistd_h.m4:
3723 New files, copied from gnulib by gnulib-tool.
3724 * aclocal.m4, configure, lib/Makefile.in, m4/getopt.m4:
3725 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
3726 Regenerate.
3727
3728 Use gnulib's getopt-gnu module.
3729 * Makefile.in (GNULIB_MODULES): Add getopt-gnu.
3730 (AUTOCONF_INPUTS): Remove getopt.m4; aclocal.m4 is a good-enough
3731 representative of the dependencies.
3732 * configure.in: Do not configure getopt, as gnulib does that now.
3733 * make-dist: Do not worry about lib-src/getopt.h, as gnulib handles
3734 getopt now, in lib.
3735
3736 Regenerate.
3737 * arg-nonnull.h, c++defs.h, lib/mktime-internal.h, lib/mktime.c:
3738 * lib/stddef.in.h, lib/time.h, lib/time.in.h, lib/time_r.c:
3739 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4:
3740 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4:
3741 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4, m4/multiarch.m4:
3742 * m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4, m4/warn-on-use.m4:
3743 * m4/wchar_t.m4, warn-on-use.h:
3744 New files, copied from gnulib by gnulib-tool.
3745 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
3746 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
3747 Regenerate.
3748
3749 Use gnulib's mktime module.
3750 * Makefile.in (GNULIB_MODULES): Add mktime.
3751 * configure.in: Remove code no longer needed, as gnulib now does it.
3752 (AC_CHECK_FUNCS): Remove mktime.
3753 (AC_FUNC_MKTIME, BROKEN_MKTIME): Remove.
3754 (__restrict): Remove, as this now gets in the way of the C99
3755 support for 'restrict' pulled in by the gnulib mktime module.
3756 Code should now use 'restrict' and not '__restrict".
3757 (mktime): Remove.
3758 * make-dist: Put gnulib-generated files arg-nonnull.h, c++defs.h,
3759 and warn-on-use.h into the distribution.
3760
3761 Regenerate.
3762 * lib/dtoastr.c, lib/ftoastr.c, lib/ftoastr.h, lib/intprops.h:
3763 * lib/ldtoastr.c, m4/c-strtod.m4:
3764 New files, copied from gnulib by gnulib-tool.
3765 * lib/dummy.c: Remove.
3766 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
3767 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
3768 Regenerate.
3769
3770 Use gnulib's ftoastr module.
3771 * Makefile.in (GNULIB_MODULES): Add ftoastr. Remove dummy.
3772
3773 Regenerate.
3774 * aclocal.m4, compile, depcomp, lib/Makefile.in, lib/dummy.c:
3775 * lib/gnulib.mk, m4/00gnulib.m4, m4/gnulib-cache.m4:
3776 * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing:
3777 New files, generated automatically, with 'make sync-from-gnulib'
3778 followed by 'make'.
3779 * configure, lisp/dired.el, src/config.in: Regenerate.
3780
3781 Automate syncing from gnulib.
3782 * INSTALL, README: Document new subdirectory 'lib'.
3783 * Makefile.in (SUBDIR): Add lib.
3784 (SUBDIR_MAKEFILES): Add lib/Makefile.
3785 (lib-src, src, TAGS, tags): Depend on lib.
3786 (gnulib_srcdir, GNULIB_MODULES, GNULIB_TOOL_FLAGS): New macros.
3787 ($(gnulib_srcdir)): New rule.
3788 (sync-from-gnulib): New rule, which is .PHONY.
3789 (lib): New rule, which is like lib-src.
3790 (Makefile): Depend on lib/Makefile.in.
3791 (AUTOCONF_INPUTS): Depend on aclocal.m4.
3792 (ACLOCAL_INPUTS, AUTOMAKE_INPUTS): New macros.
3793 ($(srcdir)/aclocal.m4, $(srcdir)/lib/Makefile.in): New rules.
3794 (am--refresh): New rule, to pacify Automake.
3795 (mostlyclean, clean, distclean, bootstrap-clean, maintainer-clean):
3796 Clean lib, too.
3797 (top_maintainer_clean): New macro, to remove gnulib-tool and Automake
3798 droppings.
3799 (maintainer-clean, extraclean): Use it.
3800 * configure.in: Initialize for automake and gnulib, by invoking
3801 AM_INIT_AUTOMAKE, AM_PROG_CC_C_O, gl_EARLY, and gl_INIT. Output
3802 lib/Makefile, too. Use automake to build gnulib, as gnulib works
3803 more conveniently with automake.
3804 * lib/Makefile.am: New file.
3805 * make-dist: Also put into the distribution aclocal.m4,
3806 compile, depcomp, missing, and the files under lib/.
3807
3808 2011-01-15 Glenn Morris <rgm@gnu.org>
3809
3810 * Makefile.in (epaths-force): No more arch-tag to edit.
3811
3812 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
3813
3814 * configure.in: Bump min libxml2 version to 2.6.17 (Bug#7603).
3815
3816 2011-01-14 Paul Eggert <eggert@cs.ucla.edu>
3817
3818 * make-dist: Distribute test/ files too.
3819 Distribute every file under test/ that is under version control,
3820 using patterns like *.el to capture files that are added later.
3821 Without this change, "configure" would fail, because it would
3822 attempt to build from a Makefile.in that was not distributed.
3823
3824 2011-01-13 Christian Ohler <ohler@gnu.org>
3825
3826 * Makefile.in (INFO_FILES): Add ERT.
3827
3828 * Makefile.in (check): Run tests in test/automated.
3829
3830 * Makefile.in:
3831 * configure.in: Add test/automated/Makefile.
3832
3833 2011-01-07 Paul Eggert <eggert@cs.ucla.edu>
3834
3835 * install-sh, mkinstalldirs, move-if-change: Update from master
3836 source in gnulib.
3837
3838 * config.guess, config.sub: Updated from master source.
3839
3840 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
3841
3842 * configure.in: Check for __builtin_unwind_init.
3843
3844 2011-01-05 Glenn Morris <rgm@gnu.org>
3845
3846 * configure.in (HAVE_MAKEINFO): New output variable.
3847 (MAKEINFO): Reset to "makeinfo" if not found.
3848 * Makefile.in (install-arch-indep, info):
3849 Replace MAKEINFO = off with HAVE_MAKEINFO = no.
3850
3851 2010-12-29 Ulrich Müller <ulm@gentoo.org>
3852
3853 * configure.in: Make gameuser configurable (Bug#7717).
3854
3855 2010-12-15 Glenn Morris <rgm@gnu.org>
3856
3857 * Makefile.in (install-arch-dep, uninstall): Remove code relating to the
3858 long absent lib-src/fns-*.el.
3859
3860 2010-12-11 Glenn Morris <rgm@gnu.org>
3861
3862 * make-dist: Exclude etc/*.pyc.
3863
3864 2010-12-10 Andreas Schwab <schwab@linux-m68k.org>
3865
3866 * configure.in: Don't double machfile in final message.
3867
3868 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
3869
3870 * configure.in: Fix last change.
3871
3872 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
3873
3874 * configure.in: Remove reference to removed machine description
3875 files and allow $machine and $machfile to be empty.
3876 Substitute M_FILE/S_FILE instead of machfile/opsysfile.
3877
3878 2010-12-03 Glenn Morris <rgm@gnu.org>
3879
3880 * make-dist: Remove EMACS_UNIBYTE unsetting; it does nothing.
3881
3882 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
3883
3884 * configure.in <AC_CHECK_HEADERS>: Remove sys/ioctl.h.
3885 (EXTERNALLY_VISIBLE): New definition.
3886
3887 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
3888
3889 * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
3890
3891 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3892
3893 * configure.in: Do not check for unconditionally included headers.
3894
3895 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3896
3897 * .dir-locals.el (log-edit-mode): Set log-edit-rewrite-fixes.
3898
3899 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
3900
3901 * configure.in: Don't write a warning for D-Bus anymore.
3902
3903 2010-11-06 Andreas Schwab <schwab@linux-m68k.org>
3904
3905 * configure.in: Fix indentation.
3906
3907 2010-10-31 Ken Brown <kbrown@cornell.edu>
3908
3909 * configure.in (checking whether localtime caches TZ):
3910 Use unsetenv instead of modifying environment directly.
3911
3912 2010-10-25 Andreas Schwab <schwab@linux-m68k.org>
3913
3914 * configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
3915 to avoid warning.
3916
3917 2010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3918
3919 * configure.in: Remove the BROKEN annotation from GnuTLS.
3920
3921 2010-10-22 Glenn Morris <rgm@gnu.org>
3922
3923 * make-dist: Avoid listing .el files twice. Don't try to run
3924 autoconf if --no-update.
3925
3926 2010-10-20 Glenn Morris <rgm@gnu.org>
3927
3928 * make-dist: No longer create lisp/MANIFEST.
3929
3930 2010-10-14 Glenn Morris <rgm@gnu.org>
3931
3932 * BUGS, INSTALL.BZR, README: Updates.
3933
3934 2010-10-13 Glenn Morris <rgm@gnu.org>
3935
3936 * make-dist: Remove --compress. Check for the appropriate
3937 gzip-like executable, and if not found, don't compress.
3938 Check version number in README, don't change it.
3939 Use find for nt/inc/*.h.
3940
3941 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
3942
3943 * configure (ns_appdir, OLDXMENU, TOOLTIP_SUPPORT):
3944 Remove trailing / from directory names.
3945
3946 2010-10-12 Glenn Morris <rgm@gnu.org>
3947
3948 * make-dist: Update and simplify.
3949
3950 2010-10-12 Eli Zaretskii <eliz@gnu.org>
3951
3952 * make-dist: Don't distribute src/buildobj.h. (Bug#7167)
3953
3954 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
3955
3956 * configure.in (PROFILING_LDFLAGS): Do not define, remove all uses.
3957
3958 2010-10-09 Glenn Morris <rgm@gnu.org>
3959
3960 * make-dist: No more doc/emacs/*.texi.in.
3961
3962 * configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
3963
3964 2010-10-09 Glenn Morris <rgm@gnu.org>
3965
3966 * configure.in: Combine some conditionals.
3967
3968 * configure.in (AC_OUTPUT): Add doc/emacs/emacsver.texi.
3969 * make-dist: Include doc/emacs/*.texi.in.
3970
3971 * INSTALL, make-dist: Remove references to b2m.
3972 * Makefile.in (MAN_PAGES): Remove b2m.1.
3973
3974 2010-10-05 Glenn Morris <rgm@gnu.org>
3975
3976 * .dir-locals.el: The Emacs convention is sentence-end-double-space.
3977
3978 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
3979
3980 * configure.in (NO_INLINE, noinline): Move here from src/xterm.c.
3981
3982 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
3983
3984 * configure.in: Include stdlib.h and string.h unconditionally.
3985
3986 2010-09-29 Romain Francoise <romain@orebokech.com>
3987
3988 * configure.in: Don't enable ImageMagick unless HAVE_X11.
3989
3990 2010-09-28 Glenn Morris <rgm@gnu.org>
3991
3992 * configure.in (HAVE_GNUTLS): Add a description to make autoheader
3993 happy.
3994
3995 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
3996
3997 * configure.in: Enable imagemagick by default.
3998
3999 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4000
4001 * configure.in (HAVE_GNUTLS): Don't break if we don't have the
4002 GnuTLS libraries.
4003
4004 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4005
4006 * configure.in: Set up GnuTLS.
4007
4008 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
4009
4010 * configure.in: Announce whether libxml2 is linked to.
4011
4012 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
4013
4014 * configure.in (LINKER): Rename to LD_FIRSTFLAG, do not include $(CC).
4015
4016 2010-09-18 Eli Zaretskii <eliz@gnu.org>
4017
4018 * config.bat: Detect that libxml2 is installed and if so, build
4019 with it.
4020
4021 2010-09-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4022
4023 * configure.in (HAVE_LIBXML2): Check that the libxml2 we found can
4024 be used. This fixes a conf problem on Mac OS X.
4025
4026 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4027
4028 * configure.in: Check for libxml2.
4029
4030 2010-09-09 Glenn Morris <rgm@gnu.org>
4031
4032 * make-dist: No more TODO files under lisp/.
4033
4034 2010-09-04 Eli Zaretskii <eliz@gnu.org>
4035
4036 * config.bat: Produce lisp/gnus/_dir-locals.el from
4037 lisp/gnus/.dir-locals.el.
4038
4039 2010-08-23 Andreas Schwab <schwab@linux-m68k.org>
4040
4041 * configure.in: Fix check for librsvg, imagemagick and
4042 MagickExportImagePixels.
4043
4044 2010-08-18 Joakim Verona <joakim@verona.se>
4045
4046 * Makefile.in, configure.in: Checks for ImageMagick.
4047
4048 2010-08-10 Dan Nicolaescu <dann@ics.uci.edu>
4049
4050 * configure.in (AC_PREREQ): Require autoconf 2.65.
4051
4052 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4053
4054 * configure.in (AC_PREREQ): Require autoconf 2.66 to stop version churn.
4055
4056 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
4057
4058 * configure.in: Add AC_C_BIGENDIAN.
4059
4060 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4061
4062 * configure.in (ORDINARY_LINK): Use on hpux* too.
4063
4064 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
4065
4066 * configure.in: Check for util.h.
4067 Use -Wimplicit-function-declaration if compiler supports it.
4068
4069 2010-08-05 Eli Zaretskii <eliz@gnu.org>
4070
4071 * configure.in (UNEXEC_OBJ): Rename unexec.o => unexcoff.o.
4072
4073 2010-08-04 Andreas Schwab <schwab@linux-m68k.org>
4074
4075 * configure.in: Restore accidentally removed use of
4076 GCC_TEST_OPTIONS/NON_GCC_TEST_OPTIONS.
4077
4078 2010-07-29 Chad Brown <yandros@mit.edu>
4079
4080 * configure.in: Check for dirent.h.
4081
4082 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4083
4084 * configure.in: Remove reference to usg5-4, unused.
4085
4086 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
4087
4088 * configure.in: Check for __executable_start.
4089
4090 2010-07-24 Ken Brown <kbrown@cornell.edu>
4091
4092 * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715)
4093
4094 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
4095
4096 * .bzrignore, .gitignore: Ignore README.W32 on the root directory.
4097
4098 2010-07-24 Ken Brown <kbrown@cornell.edu> (tiny change)
4099
4100 * configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
4101
4102 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4103
4104 * configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
4105 (PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
4106 (C_OPTIMIZE_SWITCH): Remove.
4107 (TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
4108
4109 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
4110
4111 * configure.in: Don't check for index and rindex, check for strchr
4112 and strrchr. Define strchr and strrchr as index and rindex,
4113 resp., in src/config.h if not available.
4114
4115 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
4116
4117 * configure.in: Use -Wold-style-definition if available.
4118 This helps with the transition to standard C code, it can be
4119 removed when done.
4120
4121 * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
4122
4123 * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
4124 and MSWindows.
4125
4126 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
4127
4128 * configure.in: Don't check for bcopy, bcmp, bzero. Don't include
4129 <strings.h> and don't define bcopy, bzero, BCMP in config.h.
4130
4131 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
4132
4133 * configure.in (getenv): Remove K&R declaration.
4134
4135 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
4136
4137 * configure.in: Remove define __P.
4138
4139 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
4140
4141 * configure.in (--enable-use-lisp-union-type): New flag.
4142
4143 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
4144
4145 Fix CFLAGS for non-GCC compilers.
4146 * configure.in (CFLAGS): Always use -g like it was done before the
4147 2010-03-30 change.
4148 (REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
4149 (Bug#6538)
4150
4151 2010-06-30 Glenn Morris <rgm@gnu.org>
4152
4153 * configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
4154 Set with AC_DEFINE rather than AH_BOTTOM.
4155
4156 * configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
4157 (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
4158 Set with shell, not cpp.
4159 (LIBX): Remove, just use -lX11 in the one place this was used.
4160 (cannot_dump): Replace with CANNOT_DUMP.
4161
4162 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
4163
4164 * configure.in: Add --with-x-toolkit=gtk3. Remove HAVE_GTK_MULTIDISPLAY,
4165 check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
4166 by minimum required Gtk+ 2.6). Add checks for functions introduced
4167 in Gtk+ 2.14 or newer (bug#6505).
4168
4169 2010-06-26 Eli Zaretskii <eliz@gnu.org>
4170
4171 * config.bat: Remove white space around "+" in COPY commands.
4172
4173 2010-06-23 Glenn Morris <rgm@gnu.org>
4174
4175 * info/dir: Start descriptions in column 32, per Texinfo convention.
4176
4177 2010-06-16 Chong Yidong <cyd@stupidchicken.com>
4178
4179 * INSTALL: Update font information (Bug#6389).
4180
4181 2010-06-16 Glenn Morris <rgm@gnu.org>
4182
4183 * INSTALL: General update.
4184
4185 2010-06-12 Glenn Morris <rgm@gnu.org>
4186
4187 * Makefile.in (install-arch-indep): Delete any old info .gz files first.
4188
4189 2010-06-11 Glenn Morris <rgm@gnu.org>
4190
4191 * configure.in (--without-compress-info): New option.
4192 (GZIP_INFO): New output variable.
4193
4194 * Makefile.in (GZIP_INFO): New, set by configure.
4195 (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
4196 Handle man pages in the same way.
4197
4198 2010-06-10 Glenn Morris <rgm@gnu.org>
4199
4200 * Makefile.in (install-arch-indep): Gzip the info files too.
4201
4202 * make-dist: Remove references to non-existent directories and files.
4203
4204 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
4205
4206 * configure.in: Include <strings.h> and <string.h> instead of
4207 "strings.h" and "string.h".
4208
4209 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
4210
4211 * configure.in: Remove code dealing with BSTRING.
4212
4213 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
4214
4215 * configure.in (AC_PREREQ): Require autoconf 2.65.
4216
4217 * configure.in (unxec): Do not define and substitute.
4218 (UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
4219
4220 2010-06-03 Glenn Morris <rgm@gnu.org>
4221
4222 * configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
4223
4224 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
4225
4226 Fix alloca definition when using gcc on non-gnu systems.
4227 * configure.in: Use the code sequence indicated by "info autoconf"
4228 for alloca (bug#6170).
4229
4230 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4231
4232 * .bzrignore: Ignore new files from trunk, which appear if you use
4233 colocated branches (i.e. "bzr switch").
4234
4235 2010-05-28 Glenn Morris <rgm@gnu.org>
4236
4237 * configure.in: Simplify some of the $canonical tests.
4238
4239 2010-05-27 Glenn Morris <rgm@gnu.org>
4240
4241 * config.bat: Do not preprocess src/Makefile.in.
4242
4243 * configure.in: Do not preprocess src/Makefile.in.
4244 (cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
4245 (AC_EGREP_CPP): Test no longer needed.
4246
4247 * make-dist: No more Makefile.c files.
4248
4249 2010-05-26 Glenn Morris <rgm@gnu.org>
4250
4251 * configure.in (YMF_PASS_LDFLAGS): Remove.
4252 (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
4253
4254 * configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
4255 Add $GNUSTEP_LOCAL_HEADERS.
4256 (LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
4257
4258 * configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
4259 (GNUSTEP_MAKEFILES): Remove.
4260 (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
4261 stuff to here.
4262
4263 2010-05-25 Glenn Morris <rgm@gnu.org>
4264
4265 * configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
4266 (LD_SWITCH_SYSTEM_TEMACS): ... to here.
4267
4268 * configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
4269 (LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
4270 here instead.
4271
4272 2010-05-24 Romain Francoise <romain@orebokech.com>
4273
4274 * make-dist: Look for version in src/emacs.c.
4275 Use lisp/subr.el rather than lisp/version.el for location check.
4276
4277 2010-05-21 Glenn Morris <rgm@gnu.org>
4278
4279 * configure.in (MKDEPDIR): Parallel build tweak.
4280
4281 * configure.in (ns_frag): New output file.
4282
4283 * configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
4284 (OLDXMENU_TARGET): Set to empty if USE_GTK.
4285
4286 * configure.in (cannot_dump): New output variable.
4287
4288 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
4289
4290 * configure.in: On NetBSD, if terminfo is found, use it in
4291 preference to termcap. (Bug#6190)
4292
4293 2010-05-20 Glenn Morris <rgm@gnu.org>
4294
4295 * make-dist (src): Include *.mk.
4296 * config.bat: Concatenate deps.mk onto the end of src/Makefile.
4297 * configure.in (DEPFLAGS, MKDEPDIR): New output variables.
4298 (deps_frag): New output file.
4299 (AUTO_DEPEND): Remove this definition.
4300
4301 * configure.in (--with-gtk, --with-gcc): Remove option stubs.
4302
4303 2010-05-19 Glenn Morris <rgm@gnu.org>
4304
4305 * configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
4306 (ORDINARY_LINK): New AC_DEFINE.
4307 (LIB_GCC): No need to set if ORDINARY_LINK.
4308
4309 2010-05-18 Glenn Morris <rgm@gnu.org>
4310
4311 * configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
4312 (POST_ALLOC_OBJ) [!cygwin]: Set to empty.
4313
4314 * config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
4315 * configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
4316 (RALLOC_OBJ): New output variable.
4317
4318 * config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
4319 * configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
4320
4321 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4322
4323 * Makefile.in (src): Provide the name of the VCS file that witnesses
4324 a pull.
4325 ($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
4326
4327 2010-05-17 Glenn Morris <rgm@gnu.org>
4328
4329 * configure.in (OLDXMENU_DEPS): New output variable.
4330
4331 2010-05-16 Glenn Morris <rgm@gnu.org>
4332
4333 * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
4334
4335 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
4336 * Makefile.in (install-arch-dep): Update for above change.
4337
4338 * Makefile.in (ns_appdir): Remove.
4339 (install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
4340
4341 * configure.in (TEMACS_LDFLAGS2): New output variable.
4342
4343 * configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
4344 (START_FILES): Set to empty if NS_IMPL_GNUSTEP.
4345 (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
4346 nothing uses.
4347
4348 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
4349
4350 * configure.in: Remove references to usg5-4 and bsd-common, $opsys
4351 does not use them.
4352 (X11R5_INHIBIT_I18N): Remove, unused.
4353
4354 2010-05-15 Glenn Morris <rgm@gnu.org>
4355
4356 * configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
4357
4358 * configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
4359
4360 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
4361
4362 * configure.in: Look for version string in its new location.
4363
4364 2010-05-15 Eli Zaretskii <eliz@gnu.org>
4365
4366 * config.bat: Remove support for DJGPP v1.x.
4367
4368 2010-05-15 Glenn Morris <rgm@gnu.org>
4369
4370 * configure.in (OLDXMENU_TARGET): New output variable.
4371
4372 * Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
4373
4374 * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
4375 and other files that no longer exist.
4376
4377 2010-05-14 Glenn Morris <rgm@gnu.org>
4378
4379 * configure.in (cpp_undefs): Add mktime, register, X11.
4380
4381 * configure.in (GPM_MOUSE_SUPPORT): Remove.
4382 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
4383 (HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
4384
4385 * configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
4386 (GNUSTEP_MAKEFILES): Do not output.
4387
4388 2010-05-13 Glenn Morris <rgm@gnu.org>
4389
4390 * configure.in: Fix some paren typos.
4391
4392 * configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
4393
4394 * configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
4395
4396 2010-05-12 Glenn Morris <rgm@gnu.org>
4397
4398 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
4399
4400 * configure.in (LIB_GCC): New output variable.
4401
4402 2010-05-11 Glenn Morris <rgm@gnu.org>
4403
4404 * make-dist (msdos): No more mainmake.
4405
4406 * configure.in: Generate lib-src/Makefile directly, do not run cpp.
4407 * config.bat: Do not run cpp on lib-src/Makefile.in.
4408
4409 * config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
4410
4411 2010-05-10 Glenn Morris <rgm@gnu.org>
4412
4413 * configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
4414
4415 * configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
4416 (BLESSMAIL_TARGET): New output variable.
4417
4418 2010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
4419
4420 * INSTALL: Fix typos.
4421
4422 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
4423
4424 * configure.in: Add check for buggy version of GCC (Bug#6031).
4425
4426 2010-05-08 Glenn Morris <rgm@gnu.org>
4427
4428 * configure.in (HAVE_LIBNCURSES): New local variable.
4429 (TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
4430 replacing cpp in src/s/*.h and src/Makefile.in.
4431
4432 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
4433
4434 * Version 23.2 released.
4435
4436 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
4437
4438 * configure.in: Add tests for `isnan' and `copysign'.
4439
4440 2010-05-07 Eli Zaretskii <eliz@gnu.org>
4441
4442 * config.bat: Allow for 2 leading `#'s in comments in
4443 src/Makefile.in.
4444
4445 2010-05-07 Glenn Morris <rgm@gnu.org>
4446
4447 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
4448 Merges logic from src/s/* and src/Makefile.in.
4449 (LD_SWITCH_SYSTEM_TEMACS): New output variable.
4450
4451 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
4452
4453 Define START_FILES and LIB_STANDARD using autoconf.
4454 * configure.in (START_FILES, LIB_STANDARD): New definitions, moved
4455 here from src/s/*.h.
4456 (HAVE_CRTIN): Remove, inline logic in the netbsd
4457 START_FILES/LIB_STANDARD computation.
4458
4459 2010-05-06 Glenn Morris <rgm@gnu.org>
4460
4461 * configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
4462
4463 * Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
4464 (LD_SWITCH_X_SITE): Remove unused variables.
4465
4466 2010-05-04 Glenn Morris <rgm@gnu.org>
4467
4468 * configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
4469 as well.
4470 (LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
4471
4472 * configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
4473
4474 * configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
4475 variables, replacing c_switch_machine, c_switch_system.
4476 * Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
4477 @c_switch_system@.
4478
4479 2010-05-03 Glenn Morris <rgm@gnu.org>
4480
4481 * configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
4482
4483 * make-dist: There are no more src/m/*.inp files.
4484
4485 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
4486
4487 * configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
4488 (ac_link): Do not use ld_switch_machine.
4489
4490 2010-05-01 Glenn Morris <rgm@gnu.org>
4491
4492 * configure.in (OTHER_OBJ): Remove.
4493 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
4494
4495 2010-04-30 Glenn Morris <rgm@gnu.org>
4496
4497 * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
4498 Elsewhere, maybe include it.
4499
4500 * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
4501 (OLDXMENU, LIBXMENU): New output variables.
4502
4503 * configure.in (OTHER_OBJ): New output variable.
4504
4505 2010-04-28 Glenn Morris <rgm@gnu.org>
4506
4507 * configure.in (CYGWIN_OBJ): New output variable.
4508
4509 * configure.in (GPM_MOUSE_SUPPORT): New output variable.
4510
4511 * configure.in (FONT_OBJ): New output variable.
4512
4513 * configure.in (LIBXMU): New output variable.
4514
4515 * configure.in (NS_OBJ, NS_SUPPORT): New output variables.
4516
4517 * configure.in (machine, canonical): On amdx86-64, check for a 32-bit
4518 userland and maybe change values to i386 (move test from s/amdx86-64.h).
4519
4520 2010-04-27 Glenn Morris <rgm@gnu.org>
4521
4522 * configure.in (LIBXTR6): New output variable. Move unixware special
4523 case here from src/s/unixware.h.
4524
4525 * configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
4526 in Makefiles.
4527 (TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
4528
4529 * configure.in (HAVE_MOTIF_2_1): Remove unused variable.
4530 (LIBXP): No longer substitute in Makefiles.
4531 (MOTIF_LIBW): New output variable. Move system-specific settings here
4532 from src/s files.
4533
4534 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
4535
4536 Reduce CPP usage.
4537 * configure.in (LIB_X11_LIB): Remove, inline in the only user.
4538 (unexec): Define unconditionally, all platforms define
4539 UNEXEC. AC_SUBST it.
4540 (UNEXEC_SRC): Remove, unused.
4541 (C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
4542
4543 2010-04-27 Glenn Morris <rgm@gnu.org>
4544
4545 * configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
4546 replaced by LIBXP.
4547
4548 * configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
4549 (CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
4550 On hpux10-20, default to /lib.
4551
4552 * configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
4553
4554 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
4555
4556 * configure.in (LIBS_MACHINE): Remove, unused.
4557
4558 * configure.in (LIB_MATH): New output variable. Set it for some systems.
4559
4560 2010-04-24 Glenn Morris <rgm@gnu.org>
4561
4562 * configure.in (CRT_DIR): New output variable.
4563 (--with-crt-dir): New option. (Bug#5655)
4564 (HAVE_LIB64_DIR): Remove.
4565
4566 2010-04-22 Dan Nicolaescu <dann@ics.uci.edu>
4567
4568 * configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
4569
4570 2010-04-22 Miles Bader <miles@gnu.org>
4571
4572 * configure.in: Get rid of "unix" pre-defined macro when
4573 preprocessing Makefile. (Bug#5857)
4574
4575 2010-04-21 Andreas Schwab <schwab@linux-m68k.org>
4576
4577 Avoid non-portable shell command negation
4578 * configure.in: Revert last change.
4579
4580 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
4581
4582 * configure.in: Change "if test ! -f" to "if ! test -f".
4583
4584 2010-04-21 Glenn Morris <rgm@gnu.org>
4585
4586 * configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
4587 (GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
4588
4589 2010-04-21 Karel Klíč <kklic@redhat.com>
4590
4591 * configure.in: New option: --with(out)-selinux, on by default.
4592 Set HAVE_LIBSELINUX if we find libselinux, and substitute
4593 LIBSELINUX_LIBS in Makefiles.
4594
4595 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
4596
4597 * configure.in: Remove all references to LIBX11_SYSTEM.
4598
4599 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
4600
4601 * configure.in: Remove all references to C_DEBUG_SWITCH.
4602
4603 2010-03-27 Eli Zaretskii <eliz@gnu.org>
4604
4605 * config.bat <lib-src>: Edit out lines that begin with several #
4606 characters.
4607
4608 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
4609
4610 * configure.in: Remove support for old UNIX System V systems and
4611 for Unixware on non-x86 machines.
4612
4613 * configure.in: Remove support for Solaris on PPC and for old versions.
4614
4615 * configure.in: Remove non-working lynxos port.
4616
4617 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
4618
4619 * .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
4620
4621 2010-03-19 Glenn Morris <rgm@gnu.org>
4622
4623 * configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
4624 happy.
4625
4626 2010-03-18 Jan Djärv <jan.h.d@swipnet.se>
4627
4628 * configure.in: Check for tputs and friends, abort if not
4629 found (bug#5735).
4630
4631 2010-03-18 Glenn Morris <rgm@gnu.org>
4632
4633 * configure.in (--with-x-toolkit): In the help text, say which options
4634 are synonyms.
4635
4636 * configure.in (--with-mmdf, --with-mail-unlink):
4637 New options, off by default.
4638 (--with-mailhost): New option to set default POP host.
4639 (LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
4640 (LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
4641 New variables, substituted in Makefiles.
4642 (try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
4643 (LIBGIF): Use AC_SUBST rather than AC_DEFINE.
4644 (HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
4645 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
4646 (HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
4647
4648 2010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
4649
4650 * Makefile.in (uninstall): Handle the case where archlibdir does not
4651 exist. (Bug#5720)
4652
4653 2010-03-12 Eli Zaretskii <eliz@gnu.org>
4654
4655 These changes remove termcap.c from the build on POSIX platforms.
4656 * configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
4657
4658 * configure: Regenerated.
4659
4660 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
4661
4662 * Branch for 23.2.
4663
4664 2010-01-31 Juri Linkov <juri@jurta.org>
4665
4666 * .bzrignore: Add TAGS-LISP.
4667
4668 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4669
4670 * configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
4671 this header file).
4672
4673 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
4674
4675 * .bzrignore: Ignore all .exe, instead of individual files.
4676
4677 2010-01-12 Chong Yidong <cyd@stupidchicken.com>
4678
4679 * configure.in: Explicitly check for and link to -lXrender.
4680
4681 2010-01-12 Glenn Morris <rgm@gnu.org>
4682
4683 * INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
4684 for bug reports for development versions.
4685
4686 2010-01-02 Eli Zaretskii <eliz@gnu.org>
4687
4688 * .bzrignore: Add more ignored patterns, including for the MS-DOS
4689 build.
4690
4691 2009-12-27 Karl Fogel <kfogel@red-bean>
4692
4693 * INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
4694 * INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
4695
4696 2009-12-17 Glenn Morris <rgm@gnu.org>
4697
4698 * .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
4699
4700 2009-12-15 Glenn Morris <rgm@gnu.org>
4701
4702 * info/dir: Add EDT entry.
4703 * Makefile.in (INFO_FILES): Add edt.
4704
4705 2009-12-10 Jan Djärv <jan.h.d@swipnet.se>
4706
4707 * configure.in: Check for RSVG if GNUstep is used.
4708
4709 2009-12-09 Jan Djärv <jan.h.d@swipnet.se>
4710
4711 * configure.in: Don't check for RSVG or GConf unless X11 is used.
4712
4713 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
4714
4715 * configure.in: Allow compiling Emacs with GTK on Cygwin.
4716
4717 2009-12-01 Glenn Morris <rgm@gnu.org>
4718
4719 * make-dist: Add etc/images/mpc directory.
4720
4721 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
4722
4723 * configure.in: Don't check for GConf unless X is used.
4724
4725 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
4726
4727 * configure.in: Use -Wdeclaration-after-statement if available.
4728
4729 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
4730
4731 * configure.in: New option: --with(out)-gconf.
4732 Set HAVE_GCONF if we find gconf.
4733
4734 2009-11-17 Glenn Morris <rgm@gnu.org>
4735
4736 * Makefile.in (INFO_FILES): Add semantic.
4737
4738 2009-11-16 Chong Yidong <cyd@stupidchicken.com>
4739
4740 * info/dir: Add Semantic.
4741
4742 2009-11-16 Glenn Morris <rgm@gnu.org>
4743
4744 * Makefile.in (install-arch-indep): Use a more restrictive Makefile
4745 pattern, so as not to exclude makefile*.el. (Bug#4912)
4746
4747 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
4748
4749 * configure.in: --enable-autodepend is new. Check for GNU Make
4750 and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
4751 gcc and GNU make to generate dependencies.
4752
4753 2009-10-27 Glenn Morris <rgm@gnu.org>
4754
4755 * make-dist: Make links to doc/lispintro/*.pdf.
4756
4757 2009-10-23 Jim Meyering <meyering@redhat.com>
4758
4759 * configure.in: Invoke $CPP with -P when creating Makefile and
4760 src/Makefile. Without this, gcc 4.4.2 converts each
4761 backslash-newline pair in the input to a bare newline, yielding
4762 invalid Makefiles.
4763
4764 * configure: Regenerate.
4765
4766 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
4767
4768 * configure.in (vax-dec-vms): Remove, not supported anymore.
4769
4770 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
4771
4772 * configure.in (NS_HAVE_NSINTEGER): Back out previous change.
4773 (*-apple-darwin*): Add x86_64 architecture.
4774
4775 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
4776
4777 * config.guess, config.sub: Updated from master source.
4778
4779 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
4780
4781 * configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
4782
4783 2009-10-07 Edward Trumbo <etrumbo@comcast.net> (tiny change)
4784
4785 * Makefile.in (INFO_FILES): Add EDE and EIEIO.
4786
4787 2009-09-29 Glenn Morris <rgm@gnu.org>
4788
4789 * make-dist (check): Update for two new levels of subdirectory in lisp/.
4790
4791 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
4792
4793 * config.guess, config.sub: Updated from master source.
4794
4795 * configure.in (OTHER_FILES): Define using autoconf not cpp.
4796
4797 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
4798
4799 * .dir-locals.el (change-log-mode): Restore bug-reference-mode.
4800
4801 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
4802
4803 * INSTALL: Update URL for GNU FreeFont.
4804
4805 2009-09-09 Glenn Morris <rgm@gnu.org>
4806
4807 * Makefile.in (install-arch-indep): Don't recursively change perms of
4808 site-lisp and infodir. There may be non-Emacs files in here, and the
4809 files supplied by Emacs are all handled explicitly already. (Bug#3800)
4810 (mkdir): Set umask to world-readable before creating directories.
4811 mkinstalldirs already checks if dirs exist, don't duplicate this test.
4812
4813 2009-08-29 Glenn Morris <rgm@gnu.org>
4814
4815 * Makefile.in (info-real): Don't ignore errors from doc Makefiles.
4816 (info): Don't give an error in the absence of makeinfo - let the doc
4817 Makefiles do that, if the info files need rebuilding. (Bug#3982)
4818
4819 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
4820
4821 * Makefile.in (install-arch-indep): If the versioned DOC-####
4822 generated during loadup+dump isn't found, install the plain DOC
4823 file that always gets generated, in case CANNOT_DUMP is set.
4824
4825 * configure.in: Warn if package version specified here doesn't
4826 match the version in version.el.
4827 * configure: Regenerate.
4828
4829 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
4830
4831 * configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
4832
4833 * configure: Regenerate.
4834
4835 2009-08-19 Glenn Morris <rgm@gnu.org>
4836
4837 * INSTALL: Remove reference to cvtmail.
4838
4839 2009-08-15 CHENG Gao <chenggao@gmail.com>
4840
4841 * Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
4842
4843 2009-08-02 Kevin Ryde <user42@zip.com.au>
4844
4845 * INSTALL: Fix free fonts URL.
4846
4847 2009-07-22 Glenn Morris <rgm@gnu.org>
4848
4849 * configure.in (AC_PREREQ): Require autoconf 2.62.
4850
4851 2009-07-04 Andreas Schwab <schwab@linux-m68k.org>
4852
4853 * configure.in (--enable-checking, --enable-profiling):
4854 Use AS_HELP_STRING.
4855
4856 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
4857
4858 * configure.in (--enable-profiling): New option.
4859 (mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
4860
4861 2009-06-27 Glenn Morris <rgm@gnu.org>
4862
4863 * configure.in: Restore netbsd on mips, mipsel, mipseb.
4864
4865 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
4866
4867 * configure.in (--enable-checking): New option.
4868
4869 2009-06-24 Glenn Morris <rgm@gnu.org>
4870
4871 * make-dist: Warn if subdir does not exist in source.
4872 (nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
4873 (nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
4874 No longer make links.
4875
4876 2009-06-24 Yavor Doganov <yavor@gnu.org>
4877
4878 * make-dist (tempdir): Don't create directories preferences.gorm
4879 and preferences.nib, they are no longer required.
4880
4881 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
4882
4883 * Branch for 23.1.
4884
4885 2009-06-12 Chong Yidong <cyd@stupidchicken.com>
4886
4887 * configure.in: Delete mac-fix-env target, which has been
4888 removed (Bug#3531).
4889
4890 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
4891
4892 * configure.in: Don't define CANNOT_DUMP for GNUstep any more.
4893
4894 2009-05-05 Per Starbäck <per@starback.se> (tiny change)
4895
4896 * BUGS: Use new binding of view-emacs-problems.
4897
4898 2009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
4899
4900 * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
4901 for Solaris compatibility.
4902
4903 2009-04-25 Chong Yidong <cyd@stupidchicken.com>
4904
4905 * configure: Regenerate.
4906
4907 * configure.in: Disable use of FreeType without libXft.
4908
4909 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
4910
4911 * configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
4912 Check if it is declared in gtk.h.
4913
4914 2009-04-12 Andreas Schwab <schwab@linux-m68k.org>
4915
4916 * Makefile.in (install-arch-indep): Remove .gitignore files.
4917
4918 2009-04-03 Kenichi Handa <handa@m17n.org>
4919
4920 * INSTALL: Make the section "Complex Text Layout support
4921 libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
4922
4923 2009-03-06 Dan Nicolaescu <dann@ics.uci.edu>
4924
4925 * configure.in (rs6000-ibm-aix6*): Fix typo.
4926
4927 2009-03-04 Glenn Morris <rgm@gnu.org>
4928
4929 * Makefile.in (INFO_FILES): Add auth.
4930
4931 2009-03-03 Glenn Morris <rgm@gnu.org>
4932
4933 * info/dir: Add Auth-source.
4934
4935 2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
4936
4937 * Makefile.in (src): Fix last change so the first `cd' doesn't affect
4938 the second.
4939
4940 2009-02-28 Eli Zaretskii <eliz@gnu.org>
4941
4942 * config.bat: Copy .dbxinit to _dbxinit.
4943
4944 * make-dist (Making links to `info'): Remove .gitignore.
4945
4946 2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
4947
4948 * Makefile.in (lib-src, lisp): Use simpler rule.
4949 (src): Be more specific to avoid recompiling all the .elc files just
4950 because the bootstrap-emacs is missing.
4951
4952 2009-02-26 Chong Yidong <cyd@stupidchicken.com>
4953
4954 * configure.in: Require librsvg >= 2.11.
4955
4956 2009-02-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4957
4958 * configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
4959 (HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
4960
4961 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4962
4963 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
4964
4965 2009-02-03 Glenn Morris <rgm@gnu.org>
4966
4967 * make-dist: Add some missing files, remove some that are no longer
4968 present.
4969
4970 2009-02-02 Glenn Morris <rgm@gnu.org>
4971
4972 * make-dist: Add some missing nextstep/ files.
4973
4974 2009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
4975
4976 * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
4977
4978 2009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
4979
4980 * configure.in: Add support for m68k-*-netbsd.
4981
4982 2009-01-14 Juri Linkov <juri@jurta.org>
4983
4984 * .dir-locals.el (change-log-mode): Remove bug-reference-mode.
4985
4986 * .dir-locals.el (change-log-mode): Add bug-reference-url-format
4987 and bug-reference-mode.
4988
4989 2009-01-11 Juri Linkov <juri@jurta.org>
4990
4991 * INSTALL.CVS: Move configuration explicitly to the first step.
4992
4993 2009-01-09 Glenn Morris <rgm@gnu.org>
4994
4995 * .dir-locals.el: Don't set indent-tabs-mode.
4996
4997 2008-12-30 Kenichi Handa <handa@m17n.org>
4998
4999 * configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
5000 the function OTF_get_variation_glyphs.
5001
5002 2008-12-30 Jan Djärv <jan.h.d@swipnet.se>
5003
5004 * Makefile.in (install-arch-dep): Remove old directories in
5005 ns_app* before moving new directories there.
5006
5007 2008-12-27 Dan Nicolaescu <dann@ics.uci.edu>
5008
5009 * .dir-locals.el: Remove non-working entry for pmail.
5010 (fill-column): Fix typo.
5011 (change-log-mode): Add fill column.
5012
5013 2008-12-26 Eli Zaretskii <eliz@gnu.org>
5014
5015 * config.bat: Produce _dir-locals.el from .dir-locals.el.
5016
5017 2008-12-23 Dan Nicolaescu <dann@ics.uci.edu>
5018
5019 * make-dist (tempdir): Distribute .dir-locals.el.
5020
5021 * .dir-locals.el: New file.
5022
5023 2008-12-19 Eli Zaretskii <eliz@gnu.org>
5024
5025 * config.bat (--with-system-malloc): New option; see msdos/INSTALL
5026 for rationale.
5027
5028 2008-12-13 Glenn Morris <rgm@gnu.org>
5029
5030 * Makefile.in (install-arch-indep): Add new man-pages.
5031 (manext): Remove variable.
5032 (MAN_PAGES): New variable.
5033 (install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
5034 and remove.
5035 (uninstall): Remove desktop file and icons, game scores if empty.
5036
5037 2008-12-11 Dan Nicolaescu <dann@ics.uci.edu>
5038
5039 * config.guess, config.sub: Updated from master source.
5040
5041 2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
5042
5043 * Makefile.in (install-arch-indep): Install ebrowse.1.
5044
5045 2008-12-09 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
5046
5047 * configure.in: Add Solaris on x86_64.
5048
5049 2008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
5050
5051 * config.guess, config.sub: Updated from master source.
5052
5053 2008-12-08 Eli Zaretskii <eliz@gnu.org>
5054
5055 * info/dir: Fix last change.
5056
5057 2008-12-07 Eli Zaretskii <eliz@gnu.org>
5058
5059 * info/dir: Untabify.
5060
5061 2008-11-28 Ulrich Müller <ulm@gentoo.org>
5062
5063 * configure.in: Fix last change.
5064
5065 2008-11-28 Richard M Stallman <rms@gnu.org>
5066
5067 * configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
5068 New configurations.
5069
5070 2008-11-20 Josh Elsasser <josh@elsasser.org> (tiny change)
5071
5072 * configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
5073 removed while misclassified as now unsupported hp9000s300. (Bug#1365)
5074
5075 2008-11-15 Eli Zaretskii <eliz@gnu.org>
5076
5077 * Makefile.in (INFO_FILES): Remove ns-emacs.
5078
5079 * info/dir (NS-Emacs): Remove entry.
5080
5081 2008-11-08 Eli Zaretskii <eliz@gnu.org>
5082
5083 * INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
5084
5085 2008-11-07 Glenn Morris <rgm@gnu.org>
5086
5087 * configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
5088
5089 2008-10-31 Eli Zaretskii <eliz@gnu.org>
5090
5091 * config.bat: Tell user to expect one "File not found" message
5092 while the `doc' directory is being configured.
5093
5094 2008-10-30 Chong Yidong <cyd@stupidchicken.com>
5095
5096 * update-subdirs: Put obsolete directory last.
5097
5098 2008-10-30 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
5099
5100 * configure.in: Check fontconfig always.
5101
5102 2008-10-30 Dan Nicolaescu <dann@ics.uci.edu>
5103
5104 * configure (*-solaris2.[7-9]*): Fix typo.
5105
5106 2008-10-24 Glenn Morris <rgm@gnu.org>
5107
5108 * configure.in (--without-sync-input, --with-pkg-config-prog):
5109 Help strings start with lower case.
5110 (--with-gnustep-conf): New option.
5111 (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
5112
5113 2008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
5114
5115 * configure.in: Use `.' instead of `source' to source GNUstep.conf.
5116 Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
5117 is not found. (Bug#1230)
5118
5119 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
5120
5121 * configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
5122 Use sol2-6.h for Solaris 7-9.
5123
5124 2008-10-18 Ulrich Müller <ulm@gentoo.org>
5125
5126 * configure.in: Add support for GNU/Linux on SuperH.
5127
5128 2008-10-12 Andreas Schwab <schwab@suse.de>
5129
5130 * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
5131
5132 2008-10-03 Adrian Robert <Adrian.B.Robert@gmail.com>
5133
5134 * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
5135 "X") to avoid confusion.
5136
5137 * configure: Regenerate.
5138
5139 2008-09-07 Romain Francoise <romain@orebokech.com>
5140
5141 * make-dist: Distribute doc/man/ChangeLog.
5142
5143 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
5144
5145 * configure.in: Disable XFT and Freetype when without X.
5146
5147 * configure: Regenerate.
5148
5149 2008-08-24 Dan Nicolaescu <dann@ics.uci.edu>
5150
5151 * configure.in (NS_IMPL_GNUSTEP): Increase pure size.
5152
5153 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
5154
5155 * configure.in (GNUSTEP_SYSTEM_HEADERS):
5156 Define GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
5157
5158 * configure: Regenerate.
5159
5160 2008-08-20 Eli Zaretskii <eliz@gnu.org>
5161
5162 * configure.in: Move "#define subprocesses" before
5163 config_opsysfile is included.
5164
5165 2008-08-19 Kenichi Handa <handa@m17n.org>
5166
5167 * INSTALL (Extra fonts): Mention local fonts, don't mention
5168 mule-unicode.
5169
5170 2008-08-16 Chong Yidong <cyd@stupidchicken.com>
5171
5172 * make-dist: Omit info/.arch-inventory.
5173
5174 2008-08-16 Jason Rumney <jasonr@gnu.org>
5175
5176 * make-dist (tempdir/nt): Link emacsclient.rc.
5177
5178 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
5179
5180 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
5181 AC_SUBST it.
5182 (GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
5183 AC_SUBST it.
5184 (OTHER_FILES): Always define for HAVE_NS.
5185 (C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
5186 * configure: Regenerate.
5187
5188 2008-08-07 Andreas Schwab <schwab@suse.de>
5189
5190 * configure.in: Correctly handle
5191 --enable-cocoa-experimental-ctrl-g=no and
5192 --enable-ns-self-contained=yes.
5193
5194 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
5195
5196 * configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
5197 (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep.
5198 Don't bother undef'ing since won't have desired effect.
5199
5200 2008-08-06 Andreas Schwab <schwab@suse.de>
5201
5202 * configure.in: Fix quoting.
5203
5204 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
5205
5206 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
5207
5208 2008-08-05 Ulrich Müller <ulm@gentoo.org>
5209
5210 * configure.in: Add checks for krb5_error.text and
5211 krb5_error.e_text struct members.
5212
5213 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
5214
5215 * configure.in: Test for existence of NSInteger.
5216 Suggested by Yavor Doganov.
5217
5218 2008-08-02 Romain Francoise <romain@orebokech.com>
5219
5220 * Makefile.in (INFO_FILES): Add mairix-el.
5221
5222 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
5223
5224 * make-dist:
5225 * README: Remove VMS support.
5226 * vms: Remove directory.
5227
5228 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
5229
5230 * configure.in (MULTI_KBOARD): Remove.
5231
5232 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
5233
5234 * configure.in (DO_BLOCK_INPUT): Remove, unused.
5235
5236 2008-07-29 Chong Yidong <cyd@stupidchicken.com>
5237
5238 * info/dir (File): Add mairix-el.
5239
5240 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
5241
5242 Remove support for Mac Carbon.
5243 * mac: Remove directory.
5244 * make-dist:
5245 * configure.in:
5246 * README:
5247 * Makefile.in:
5248 * INSTALL: Remove code for Carbon.
5249 * configure: Regenerate.
5250
5251 2008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
5252
5253 * Makefile.in (install-arch-dep): Fix typo in NS installation commands.
5254
5255 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
5256
5257 * configure.in: Check for getrlimit.
5258
5259 * configure: Regenerate.
5260
5261 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
5262
5263 * configure.in (LD_SWITCH_SITE): Remove, set the values directly
5264 in src/Makefile.in.
5265 (static): Remove, autoconf would always comment it out anyway.
5266 (subprocesses): Define unconditionally.
5267
5268 2008-07-19 Yavor Doganov <yavor@gnu.org> (tiny change)
5269
5270 * configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
5271 compilation under GNUstep.
5272
5273 2008-07-18 Kenichi Handa <handa@m17n.org>
5274
5275 * INSTALL (Complex Text Layout support libraries): Delete the
5276 paragraph about --enable-font-backend.
5277
5278 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
5279
5280 * configure.in: Print out some info to user for NeXTstep builds.
5281 (ns-app): Remove enable option.
5282 (ns-self-contained): Add enable option.
5283 (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
5284 GNUstep, use to set install prefixes, and substitute in Makefiles.
5285 * configure: Regenerate.
5286 * Makefile.in (install-arch-dep): Perform post-install cleanup inside
5287 NS app bundle.
5288
5289 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5290
5291 * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
5292
5293 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
5294
5295 * configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
5296 NS_IMPL_COCOA.
5297
5298 2008-07-16 Glenn Morris <rgm@gnu.org>
5299
5300 * configure.in (with_kerberos, with_kerberos5, with_hesiod):
5301 Fix tests for OPTION_DEFAULT_OFF (variables never unset).
5302 (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
5303 never unset.
5304
5305 * make-dist: Add nextstep/ directories.
5306 (src, lib-src): Add .m files.
5307
5308 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
5309
5310 * configure.in (freebsd, kfreebsd): Undo part of previous change.
5311 (USER_FULL_NAME): Remove, not used anymore.
5312 * configure: Regenerate.
5313
5314 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5315
5316 Changes and additions for NeXTstep windowing system (Cocoa and
5317 GNUstep) support.
5318
5319 * configure.in: Add support for NS window system: --with-ns (default
5320 off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
5321 sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
5322 disable font backend if window system is "none", not if !HAVE_X11.
5323 * Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
5324 (install-arch-dep): Add commands to assemble NS .app package.
5325
5326 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
5327
5328 * configure.in: Use macppc for Darwin. Remove references to
5329 desupported systems.
5330 * configure: Regenerate.
5331
5332 2008-07-05 Glenn Morris <rgm@gnu.org>
5333
5334 * make-dist (EMACS): Doc fix.
5335 (lisp): There are no *.dat or image files here any more.
5336 (src): There are no *.s files here any more.
5337 (etc/images, etc/images/*): Link to most regular files.
5338
5339 2008-07-04 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5340
5341 * configure.in: Remove reference to deleted $USE_FONT_BACKEND.
5342
5343 2008-07-01 Glenn Morris <rgm@gnu.org>
5344
5345 * configure.in (cpp_undefs): Rename from `undefs', update uses.
5346 Use $srcdir rather than $top_srcdir. Set before calling AC_OUTPUT,
5347 and explicitly export there. (Bug#507.)
5348
5349 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
5350
5351 * configure.in:
5352 * configure: Remove references to obsolete systems.
5353
5354 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
5355
5356 * Makefile.in (Makefile): Use it for its timestamp value as well, and
5357 make it depend on all other */.in files.
5358 (src/Makefile, src/config.stamp, lib-src/Makefile)
5359 (doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
5360 (doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
5361 (leim/Makefile, lisp/Makefile): Remove those overlapping targets.
5362 (leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
5363
5364 * configure.in: Don't create src/config.stamp any more.
5365
5366 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
5367
5368 * Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
5369
5370 2008-06-22 Glenn Morris <rgm@gnu.org>
5371
5372 * Makefile.in (top_bootclean): Remove obsolete references to lock/.
5373
5374 2008-06-21 Romain Francoise <romain@orebokech.com>
5375
5376 * Makefile.in (INFO_FILES): Add sasl.
5377
5378 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
5379
5380 * Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
5381 (bootstrap-build): Remove.
5382 (top_bootclean): New var.
5383 (top_distclean, bootstrap-clean): Use it.
5384 (bootstrap): Don't recheck config. Make normally.
5385
5386 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
5387
5388 * Makefile.in (SUBDIR): Include `lisp'.
5389 (lisp): Depend on `src'.
5390 (top_distclean): Don't remove config.status.
5391 (bootstrap-clean): New target.
5392 (maintainer-clean): Use it.
5393 (bootstrap): Use bootstrap-clean. Re-run config.status.
5394 (src/bootstrap-emacs${EXEEXT}): New target.
5395 (bootstrap-build): Use it. Don't use bootstrap-prepare because
5396 src/Makefile now takes care of it.
5397 (bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
5398
5399 2008-06-15 Glenn Morris <rgm@gnu.org>
5400
5401 * info/dir: Add sasl.
5402
5403 2008-06-09 Alan Mackenzie <acm@muc.de>
5404
5405 * INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
5406
5407 2008-06-08 Eric S. Raymond <esr@snark.thyrsus.com>
5408
5409 * INSTALL.CVS: Indicate when "cvs update -d" may be needed.
5410
5411 2008-06-07 Glenn Morris <rgm@gnu.org>
5412
5413 * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
5414 serve no purpose.
5415
5416 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
5417
5418 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
5419 * configure: Regenerate.
5420
5421 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
5422
5423 * update-subdirs: Don't touch subdirs.el if it is unchanged.
5424
5425 2008-05-14 Kenichi Handa <handa@m17n.org>
5426
5427 * configure: Regenerate.
5428
5429 * configure.in: Don't handle --disable-font-backend. Don't print
5430 a message about a font backend.
5431
5432 2008-05-09 Glenn Morris <rgm@gnu.org>
5433
5434 * configure.in: Make absence of makeinfo a fatal error only if the info
5435 files don't exist.
5436 * Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
5437
5438 2008-05-07 Eli Zaretskii <eliz@gnu.org>
5439
5440 * config.bat: Fix last change: don't use < and > in "rem" lines,
5441 they are interpreted as redirection by DOS shells.
5442
5443 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5444
5445 * configure.in: Check availability of AvailabilityMacros.h
5446 if HAVE_CARBON.
5447
5448 * configure: Regenerate.
5449
5450 2008-05-03 Glenn Morris <rgm@gnu.org>
5451
5452 * configure.in (x_libraries): Remove standard 64-bit directories -
5453 experimental workaround for minor autoconf bug.
5454
5455 * configure.in (--without-makeinfo): New option. If set,
5456 absence of suitable makeinfo is not a fatal error.
5457 * Makefile.in (MAKEINFO): New, set by configure.
5458 (install-arch-indep): Without makeinfo, ignore any missing manuals.
5459 (info-real): New target.
5460 (info): Without makeinfo, do nothing, else call `info-real'.
5461
5462 2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
5463
5464 * configure.in: Remove hpux10.20 from the desupported list.
5465
5466 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
5467
5468 * configure.in: Define USE_LUCID/USE_MOTIF in config.h.
5469
5470 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
5471
5472 * configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
5473 rather than change CPPFLAGS.
5474 (HAVE_GTK): Rename to USE_GTK.
5475
5476 2008-04-16 Yavor Doganov <yavor@gnu.org> (tiny change)
5477
5478 * configure.in: Replace the obsolete macros AC_AIX and
5479 AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
5480
5481 2008-04-05 Andreas Schwab <schwab@suse.de>
5482
5483 * configure.in: No longer create admin/unidata/Makefile.
5484
5485 2008-03-28 Andreas Schwab <schwab@suse.de>
5486
5487 * Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
5488 (lisp/Makefile): New rule.
5489
5490 2008-03-13 Glenn Morris <rgm@gnu.org>
5491
5492 * configure.in (AC_INIT): Fix version number.
5493 (sync-input): Reword the option, since it's on by default.
5494
5495 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
5496
5497 * configure.in: Add --enable-sync-input, default yes.
5498
5499 2008-03-11 Glenn Morris <rgm@gnu.org>
5500
5501 * Makefile.in (install-etc, mkdir): Handle directory
5502 etc/images/icons/hicolor/*/mimetypes/.
5503
5504 * make-dist: Handle icons/hicolor/scalable directory.
5505
5506 2008-03-05 Glenn Morris <rgm@gnu.org>
5507
5508 * configure.in: Enable font-backend by default.
5509 (USE_FONT_BACKEND): Set to "no" in absence of X.
5510 (PKG_CONFIG): Don't set multiple times, once is enough.
5511 (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
5512
5513 2008-03-03 Glenn Morris <rgm@gnu.org>
5514
5515 * Makefile.in (iconsrcdir): New variable.
5516 (install-etc, mkdir): Use $iconsrcdir. Handle the `scalable' icon
5517 directory.
5518
5519 2008-02-29 Glenn Morris <rgm@gnu.org>
5520
5521 * test/: New directory.
5522
5523 2008-02-27 Jan Djärv <jan.h.d@swipnet.se>
5524
5525 * configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
5526
5527 2008-02-25 Dan Nicolaescu <dann@ics.uci.edu>
5528
5529 * configure.in: Print an error for systems that we think are obsolete
5530 and are proposed to be removed. Remove some more unused systems.
5531 Add support for powerpc-ibm-aix6*.
5532
5533 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
5534
5535 * configure.in: Remove references to obsolete variables and systems.
5536
5537 2008-02-21 Glenn Morris <rgm@gnu.org>
5538
5539 * Makefile.in (set_installuser): New.
5540 (install-arch-indep): Use set_installuser to avoid duplicate code.
5541
5542 * README.unicode: Split into admin/notes/unicode,font-backend and
5543 remove.
5544
5545 2008-02-10 Matthew Luckie <mjl@luckie.org.nz> (tiny change)
5546
5547 * configure.in (arm*-*-freebsd*): Add.
5548
5549 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
5550
5551 * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
5552 dealing with obsolete variables.
5553
5554 2008-02-08 Glenn Morris <rgm@gnu.org>
5555
5556 * Makefile.in (check-info-dir): New target.
5557
5558 2008-02-08 Michael Olson <mwolson@gnu.org>
5559
5560 * Makefile.in (INFO_FILES): Add epa.
5561
5562 * info/dir: Add EasyPG Assistant manual to the "Emacs misc
5563 features" section.
5564
5565 2008-02-06 Glenn Morris <rgm@gnu.org>
5566
5567 * configure.in (--with-gcc): Give an error saying this option has
5568 been removed.
5569 (--with-gtk): Remove this option.
5570
5571 2008-02-06 Tom Tromey <tromey@redhat.com>
5572
5573 * configure.in (--with-gcc): Remove.
5574 * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
5575
5576 2008-02-05 Ulrich Müller <ulm@gentoo.org>
5577
5578 * INSTALL: Recommend giflib, not libungif.
5579
5580 2008-02-05 Tom Tromey <tromey@redhat.com>
5581
5582 * configure.in (--with-dbus): Default to enabled.
5583
5584 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
5585
5586 * INSTALL (Complex Text Layout support libraries): New section.
5587
5588 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
5589
5590 * make-dist: Remove references to files in mac/ that have been
5591 deleted.
5592
5593 2008-02-02 Thien-Thi Nguyen <ttn@gnuvola.org>
5594
5595 * configure.in: For libotf and m17n-flt checks, set shell vars
5596 HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
5597 pkg_check_m17n_flt, respectively, for the sake of the summary output.
5598 Reported by Ulrich Müller.
5599
5600 2008-02-02 Eli Zaretskii <eliz@gnu.org>
5601
5602 * configure.in: If admin/unidata/UnicodeData.txt is present, copy
5603 admin/unidata/Makefile.in to Makefile.
5604
5605 2008-02-02 Glenn Morris <rgm@gnu.org>
5606
5607 * configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
5608 (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
5609 (HAVE_XFT): Add "Does Emacs use..." messages at end.
5610
5611 2008-02-01 Miles Bader <miles@gnu.org>
5612
5613 * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
5614 [libotf], and [m17n-flt] options.
5615
5616 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
5617
5618 * configure.in: Add EMACS_ARG_N([libotf]...), and
5619 EMACS_ARG_N([m17n-flt]. Set back OLD_CPPFLAGS to CPPFLAGS (not
5620 CFLAGS) in XFT checking part. Don't alter C_SWITCH_X_SITE,
5621 CFLAGS, and LIBS in checking of m17n-flt.
5622
5623 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
5624
5625 * configure.in: Check the availability of m17n-flt library.
5626
5627 2008-02-01 Kenichi Handa <handa@m17n.org>
5628
5629 * configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
5630 not available.
5631
5632 2008-02-01 Kenichi Handa <handa@m17n.org>
5633
5634 * configure.in: New args --enable-font-backend, --with-xft,
5635 --with-freetyp. New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
5636 HAVE_FREETYPE, HAVE_LIBOTF. New AC_SUBSTs XFT_LIBS,
5637 FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
5638 FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
5639
5640 2008-02-01 Kenichi Handa <handa@m17n.org>
5641
5642 * make-dist: Include etc/charsets in tarball.
5643
5644 2008-02-01 Kenichi Handa <handa@m17n.org>
5645
5646 * configure.in: While running cpp on junk.c, include
5647 -DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
5648 exists.
5649
5650 2008-01-29 Dan Nicolaescu <dann@ics.uci.edu>
5651
5652 * configure.in (xtensa): Match more configurations.
5653
5654 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
5655
5656 * configure.in: Update comment.
5657
5658 2008-01-26 Glenn Morris <rgm@gnu.org>
5659
5660 * configure.in (--without-gcc): By default, neither off nor on.
5661 (--with-carbon): Tone down rhetoric in help text.
5662
5663 2008-01-25 Glenn Morris <rgm@gnu.org>
5664
5665 * configure.in: Correct usage of OPTION_DEFAULT_ON,
5666 OPTION_DEFAULT_OFF so that the defaults are as they used to be.
5667 Default `Carbon' to off (it's unsupported).
5668
5669 2008-01-24 Glenn Morris <rgm@gnu.org>
5670
5671 * configure.in: Standardize dbus-related messages.
5672
5673 2008-01-23 Michael Olson <mwolson@gnu.org>
5674
5675 * configure.in (pkg-config-prog): Remove initial whitespace.
5676
5677 2008-01-23 Tom Tromey <tromey@redhat.com>
5678
5679 * configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
5680 (EMACS_ARG_Y, EMACS_ARG_N): Remove.
5681 Update all users.
5682
5683 2008-01-21 Dan Nicolaescu <dann@ics.uci.edu>
5684
5685 * config.guess, config.sub: Updated from master source.
5686
5687 2008-01-17 Andreas Schwab <schwab@suse.de>
5688
5689 * configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
5690
5691 2008-01-17 Glenn Morris <rgm@gnu.org>
5692
5693 * configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
5694
5695 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
5696
5697 * configure.in: Remove more references to unsupported systems.
5698
5699 2008-01-16 Sven Joachim <svenjoac@gmx.de>
5700
5701 * make-dist: Add --lzma.
5702
5703 2008-01-16 Glenn Morris <rgm@gnu.org>
5704
5705 * Makefile.in (maybe_bootstrap): Remove texinfo message, since
5706 configure checks for this.
5707
5708 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
5709
5710 * configure.in: Remove more references to unsupported systems.
5711
5712 2008-01-06 Romain Francoise <romain@orebokech.com>
5713
5714 * configure.in: Delete extra semicolons.
5715
5716 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
5717
5718 * configure.in: Remove references to unsupported systems.
5719
5720 2008-01-05 Romain Francoise <romain@orebokech.com>
5721
5722 * make-dist: Add --bzip2. Update copyright.
5723
5724 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
5725
5726 * configure.in: Remove support for Masscomp.
5727
5728 2008-01-05 Glenn Morris <rgm@gnu.org>
5729
5730 * Makefile.in (desktopdir, icondir): New variables.
5731 (install-arch-indep): Also depend on `install-etc'.
5732 (install-etc): New target.
5733 (mkdir): Also create the `applications' and `icons' directories.
5734
5735 2008-01-04 Glenn Morris <rgm@gnu.org>
5736
5737 * make-dist: Update for new etc/images/icons/hicolor directory.
5738
5739 2007-12-09 Andreas Schwab <schwab@suse.de>
5740
5741 * configure.in: D-Bus is not enabled by default.
5742
5743 2007-12-06 Jan Djärv <jan.h.d@swipnet.se>
5744
5745 * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
5746 change.
5747
5748 2007-12-04 Jan Djärv <jan.h.d@swipnet.se>
5749
5750 * configure.in: Give package name and version to AC_INIT.
5751
5752 2007-12-03 Magnus Henoch <mange@freemail.hu>
5753
5754 * configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
5755
5756 2007-12-03 Michael Albinus <michael.albinus@gmx.de>
5757
5758 * configure.in: No need for DBUS_INFO anymore.
5759
5760 * Makefile.in (INFO_FILES): Use dbus unconditionally.
5761
5762 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
5763
5764 * configure.in: Add D-Bus checks. D-Bus is disabled by default.
5765
5766 * Makefile.in (INFO_FILES): Add dbus.
5767
5768 2007-12-02 Romain Francoise <romain@orebokech.com>
5769
5770 * make-dist: Fix last change.
5771
5772 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
5773
5774 * configure.in: Add support for gnu-kfreebsd.
5775
5776 2007-11-28 Glenn Morris <rgm@gnu.org>
5777
5778 * make-dist: Add etc/nxml.
5779
5780 2007-11-24 Romain Francoise <romain@orebokech.com>
5781
5782 * Makefile.in (INFO_FILES): Add nxml-mode.
5783
5784 2007-11-23 Romain Francoise <romain@orebokech.com>
5785
5786 * make-dist: Include nXML. Don't try to copy FTP, it was removed on
5787 2007/10/17. Don't special-case alloca.c which is no longer in CVS.
5788
5789 2007-11-20 Andreas Schwab <schwab@suse.de>
5790
5791 * configure.in: Always include <resolv.h> when checking for res_init.
5792
5793 2007-11-17 Andreas Schwab <schwab@suse.de>
5794
5795 * update-subdirs: Atomically update subdirs.el.
5796
5797 2007-11-17 Glenn Morris <rgm@gnu.org>
5798
5799 * Makefile.in (check-declare): New target.
5800
5801 2007-11-07 Glenn Morris <rgm@gnu.org>
5802
5803 * configure.in: Deprecate Mac Carbon port.
5804
5805 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
5806
5807 * configure.in: Remove HAVE_X11R5 check.
5808
5809 2007-10-31 Glenn Morris <rgm@gnu.org>
5810
5811 * Makefile.in (install-arch-indep): Fallback to $USER and `id -un'
5812 when changing ownership of installed files.
5813
5814 2007-10-30 Glenn Morris <rgm@gnu.org>
5815
5816 * make-dist: Add new directory etc/gnus.
5817
5818 2007-10-30 Michael Olson <mwolson@gnu.org>
5819
5820 * Makefile.in (INFO_FILES): Alphabetize. Add remember.
5821
5822 2007-10-29 Glenn Morris <rgm@gnu.org>
5823
5824 * make-dist: Add new directories etc/images/smilies/grayscale,medium.
5825
5826 2007-10-23 Glenn Morris <rgm@gnu.org>
5827
5828 * MAINTAINERS: Move to admin/.
5829
5830 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
5831
5832 * configure.in (HAVE_RES_INIT): Define if res_init() exists.
5833 (HAVE_LIBRESOLV): Also define if we are using res_init().
5834
5835 2007-10-17 Glenn Morris <rgm@gnu.org>
5836
5837 * FTP: Remove file, since it's just a duplicate of one in etc/.
5838
5839 2007-10-05 Eli Zaretskii <eliz@gnu.org>
5840
5841 * config.bat: Fix configuring `doc' due to changes in the
5842 directory structure.
5843
5844 2007-09-16 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
5845
5846 * configure.in: Don't use -lpthread on HP-UX.
5847
5848 2007-09-16 Glenn Morris <rgm@gnu.org>
5849
5850 * make-dist: File gfdl.1 has been removed.
5851
5852 2007-09-15 Glenn Morris <rgm@gnu.org>
5853
5854 * configure.in: Fix makeinfo version regexp.
5855
5856 2007-09-12 Glenn Morris <rgm@gnu.org>
5857
5858 * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
5859 implementation of alloca is not found.
5860
5861 * Makefile.in (SOURCES, unlock, relock): Delete.
5862 (install-arch-indep): Do not exclude the etc/ Makefiles.
5863
5864 2007-09-09 Juri Linkov <juri@jurta.org>
5865
5866 * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc).
5867
5868 * README: Add doc/ to documentation directories.
5869
5870 2007-09-08 Michael Olson <mwolson@gnu.org>
5871
5872 * MAINTAINERS: Add myself for ERC and tq.el.
5873 Update for new doc/ directory layout.
5874
5875 2007-09-06 Romain Francoise <romain@orebokech.com>
5876
5877 * make-dist: Update for new doc/ directory layout.
5878
5879 2007-09-06 Glenn Morris <rgm@gnu.org>
5880
5881 * Makefile.in (mansrcdir): New variable.
5882 (SUBDIR_MAKEFILES): Update for new doc/ directory layout.
5883 (man/Makefile, lispref/Makefile, lispintro/Makefile): Rename and
5884 update these targets for new doc/ directory layout.
5885 (doc/misc/Makefile): New target.
5886 (install-arch-indep): Use mansrcdir for new location of manpages.
5887 (mostlyclean, clean, distclean, maintainer-clean, unlock)
5888 (relock, info, dvi): Update targets for new doc/ directory layout.
5889
5890 * configure.in (AC_OUTPUT): Update names of generated Makefiles
5891 for new doc/ directory layout.
5892
5893 2007-09-02 Andreas Schwab <schwab@suse.de>
5894
5895 * configure.in: Use AS_HELP_STRING throughout.
5896 * configure: Regenerate.
5897
5898 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
5899
5900 * configure.in: Require Gtk/Glib 2.6.
5901
5902 2007-09-02 Thien-Thi Nguyen <ttn@gnuvola.org>
5903
5904 * configure.in (EMACS_ARG_Y, EMACS_ARG_N): New AC_DEFUNs.
5905 Use them throughout in place of AC_ARG_WITH calls.
5906 * configure: Regenerate.
5907
5908 2007-09-01 Andreas Schwab <schwab@suse.de>
5909
5910 * configure.in: Put quotes around nested macro calls.
5911
5912 2007-08-31 Ulrich Müller <ulm@gentoo.org> (tiny change)
5913
5914 * configure.in: Fix typo.
5915 * configure: Regenerate.
5916
5917 2007-08-30 Glenn Morris <rgm@gnu.org>
5918
5919 * configure.in (AH_BOTTOM): Copy some manual changes made to
5920 src/config.in here so they are not lost when it regenerates.
5921
5922 * README.multi-tty: Move to admin/notes/multi-tty, with some edits.
5923
5924 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
5925
5926 * README.multi-tty: New file.
5927
5928 2007-08-29 Glenn Morris <rgm@gnu.org>
5929
5930 * README: Increase version to 23.0.50.
5931
5932 2007-08-29 Jan Djärv <jan.h.d@swipnet.se>
5933
5934 * configure.in: New option: --without-xaw3d.
5935
5936 2007-08-24 Glenn Morris <rgm@gnu.org>
5937
5938 * configure.in: Check for a suitably recent makeinfo.
5939
5940 2007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
5941
5942 * configure.in (Check for required libraries): Typo.
5943
5944 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5945
5946 * configure.in: Check librsvg2 also for Mac Carbon.
5947
5948 2007-08-22 Romain Francoise <romain@orebokech.com>
5949
5950 * make-dist: Follow reorganization of files in etc/.
5951
5952 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
5953
5954 * configure.in: Add support for SVG images through librsvg2.
5955
5956 2007-07-28 Eli Zaretskii <eliz@gnu.org>
5957
5958 * Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
5959 to avoid an error message if there is no DOC there.
5960
5961 2007-07-25 Glenn Morris <rgm@gnu.org>
5962
5963 * Relicense all FSF files to GPLv3 or later.
5964
5965 * COPYING, info/COPYING: Switch to GPLv3.
5966
5967 2007-06-20 Jan Djärv <jan.h.d@swipnet.se>
5968
5969 * configure.in: Complain if X seems to be installed but no
5970 development files were found.
5971
5972 2007-06-20 Glenn Morris <rgm@gnu.org>
5973
5974 * configure.in: Prefer libgif over libungif.
5975
5976 2007-06-14 Jan Djärv <jan.h.d@swipnet.se>
5977
5978 * configure.in: Check for all image libraries before exiting.
5979
5980 2007-06-13 Jan Djärv <jan.h.d@swipnet.se>
5981
5982 * configure.in: Exit with error if image libraries aren't found.
5983
5984 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
5985
5986 * configure.in: Merge xaw3d and libXaw checks. Check xaw3d even
5987 when compiling without scrollbars.
5988
5989 2007-06-12 Glenn Morris <rgm@gnu.org>
5990
5991 * configure.in (HAVE_GIF): If -lungif fails, try -lgif.
5992
5993 2007-06-11 Jan Djärv <jan.h.d@swipnet.se>
5994
5995 * configure.in: Change wording about yes/gtk and lucid/athena
5996 being synonyms.
5997
5998 2007-06-08 Glenn Morris <rgm@gnu.org>
5999
6000 * configure.in: Make gtk the default toolkit.
6001
6002 2007-06-07 Glenn Morris <rgm@gnu.org>
6003
6004 * configure.in (NON_GNU_CPP): On Solaris, set using a proper check
6005 for a Sun C compiler.
6006
6007 * Makefile.in (install-arch-indep): Install only the DOC- file
6008 specific to the build, if possible, rather than DOC-*.
6009
6010 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
6011
6012 * Version 22.1 released.
6013
6014 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
6015
6016 * mkinstalldirs: Sync to version in automake CVS.
6017
6018 2007-05-22 Andreas Schwab <schwab@suse.de>
6019
6020 * configure.in: Prefer build_alias over host when host_alias is not set.
6021 * configure: Regenerate.
6022
6023 2007-05-20 Andreas Schwab <schwab@suse.de>
6024
6025 * configure.in: Remove empty AC_SUBST.
6026 * configure: Regenerate.
6027
6028 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
6029
6030 * configure.in: Use HAVE_GPM instead of HAVE_GPM_H and implement
6031 it like others.
6032 * configure: Regenerate.
6033
6034 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
6035
6036 * configure.in (AC_CHECK_HEADERS): Add gpm.h.
6037 (AC_CHECK_LIB): Add -lgpm.
6038 * configure: Regenerate.
6039
6040 2007-05-03 Glenn Morris <rgm@gnu.org>
6041
6042 * configure: Tweak message about the absence of shell functions.
6043
6044 2007-04-27 Andreas Schwab <schwab@suse.de>
6045
6046 * Makefile.in (config.status): Depend on ${srcdir}/lisp/version.el.
6047
6048 2007-04-26 Glenn Morris <rgm@gnu.org>
6049
6050 * README: Increase version to 22.1.50.
6051
6052 2007-04-24 Juanma Barranquero <lekktu@gmail.com>
6053
6054 * INSTALL (DETAILED BUILDING AND INSTALLATION): Fix typo.
6055
6056 2007-04-19 Glenn Morris <rgm@gnu.org>
6057
6058 * configure.in: Signal error if Xaw libs are missing in a Lucid build.
6059
6060 2007-04-18 Glenn Morris <rgm@gnu.org>
6061
6062 * INSTALL: Mention CPP.
6063
6064 2007-04-15 Glenn Morris <rgm@gnu.org>
6065
6066 * FTP: Replace with a pointer to the web version.
6067
6068 2007-04-13 Glenn Morris <rgm@gnu.org>
6069
6070 * INSTALL: In lib-src, timer, wakeup, yow are removed.
6071
6072 2007-04-04 Glenn Morris <rgm@gnu.org>
6073
6074 * configure.in (NON_GNU_CPP): Use associated preprocessor when
6075 compiling with Sun Studio on Solaris.
6076
6077 2007-03-23 Glenn Morris <rgm@gnu.org>
6078
6079 * configure.in: Restore support for hp800 (removed 2007-01-27)
6080 following clarification of legal status.
6081
6082 2007-03-22 Joe Buehler <jbuehler@spirentcom.com> (tiny change)
6083
6084 * configure.in: Add support for AIX4.3 on IBM RS6000.
6085
6086 * configure: Regenerate.
6087
6088 2007-03-20 Richard Stallman <rms@gnu.org>
6089
6090 * configure.in: Fix previous change.
6091
6092 2007-03-19 Deanna Phillips <deanna@sixbit.org> (tiny change)
6093
6094 * configure.in (arm-*-openbsd*, hppa-*-openbsd*)
6095 (m88k-*-openbsd*, mips64-*-openbsd*, sh-*-openbsd*): Add.
6096 (ns32k-*-openbsd*, ns32k-*-openbsd*): Delete.
6097
6098 2007-03-19 Chong Yidong <cyd@stupidchicken.com>
6099
6100 * configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
6101 user specifies "without".
6102
6103 * configure: Regenerate.
6104
6105 2007-03-18 Jan Djärv <jan.h.d@swipnet.se>
6106
6107 * configure.in: Warning for Gtk+ and Cygwin added.
6108 (HAVE_XFT): OLD_CFLAGS changed to OLD_CPPFLAGS.
6109
6110 2007-02-27 Glenn Morris <rgm@gnu.org>
6111
6112 * make-dist (oldXMenu): Remove Imakefile.
6113 (etc/images): Add README.
6114
6115 2007-02-25 Dan Nicolaescu <dann@ics.uci.edu>
6116
6117 * configure.in (xtensa-*-linux-gnu*): New configuration.
6118
6119 * configure: Regenerate.
6120
6121 2007-02-22 Dan Nicolaescu <dann@ics.uci.edu>
6122
6123 * config.guess, config.sub: Updated from master source.
6124
6125 2007-01-31 Sascha Wilde <wilde@sha-bang.de> (tiny change)
6126
6127 * configure.in (PKG_CHECK_MODULES): Change ///* to / in cflags and libs.
6128
6129 2007-01-29 Chong Yidong <cyd@stupidchicken.com>
6130
6131 * configure.in: Restore support for hp800's not running HP-UX.
6132
6133 * configure: Regenerate.
6134
6135 2007-01-27 Chong Yidong <cyd@stupidchicken.com>
6136
6137 * configure.in: Remove support for hp800 and sr2k machine types.
6138
6139 * configure: Regenerate.
6140
6141 2007-01-26 Jan Djärv <jan.h.d@swipnet.se>
6142
6143 * configure.in: Add check for libXft.
6144
6145 2007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
6146
6147 * INSTALL: Info files moved to share/info.
6148
6149 2007-01-02 Stephen C. Gilardi <scgilardi@gmail.com> (tiny change)
6150
6151 * configure.in: Detect and use fink-installed in intel-based Mac
6152 builds; change Apple Darwin section to support both PowerPC and
6153 Intel-based Macs.
6154
6155 2006-12-26 Andreas Schwab <schwab@suse.de>
6156
6157 * Makefile.in (datarootdir): Define.
6158
6159 2006-12-24 Richard Stallman <rms@gnu.org>
6160
6161 * configure.in: Require Autoconf 2.61.
6162
6163 2006-12-22 Mark Davies <mark@mcs.vuw.ac.nz>
6164
6165 * configure.in: Add support for NetBSD on x86-64, hp800 and sh3el.
6166 Remove redundant entry for powerpc-apple-netbsd.
6167
6168 * configure: Regenerate.
6169
6170 2006-12-22 Chong Yidong <cyd@stupidchicken.com>
6171
6172 * configure: Regenerate with autoconf 2.61.
6173
6174 2006-12-20 Jan Djärv <jan.h.d@swipnet.se>
6175
6176 * configure.in: Detect alsa/asoundlib.h also.
6177 * configure: Regenerate.
6178
6179 2006-12-19 Jan Djärv <jan.h.d@swipnet.se>
6180
6181 * configure.in: Check if GTK+ compiles at all.
6182
6183 2006-12-10 Andreas Schwab <schwab@suse.de>
6184
6185 * configure.in: Remove check for struct timezone, its result is
6186 never used.
6187
6188 2006-12-08 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
6189
6190 * configure.in: Add support for Solaris 10 on x86-64.
6191
6192 2006-12-08 Jan Djärv <jan.h.d@swipnet.se>
6193
6194 * INSTALL (DETAILED BUILDING AND INSTALLATION): Document usage
6195 of PKG_CONFIG_PATH.
6196
6197 2006-12-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6198
6199 * configure.in (HAVE_SYNC): New test.
6200
6201 2006-12-03 Glenn Morris <rgm@gnu.org>
6202
6203 * Makefile.in: Fix Copyright format.
6204
6205 * configure.in (AH_TOP): Add missing Copyright year.
6206
6207 * update-subdirs: Add missing Copyright years.
6208
6209 2006-11-27 Chris Moore <christopher.ian.moore@gmail.com>
6210
6211 * Makefile.in: Touch only the parts of the share/emacs directory
6212 specific to this version.
6213
6214 2006-11-26 Chong Yidong <cyd@stupidchicken.com>
6215
6216 * configure.in (HAVE_X86_64_LIB64_DIR): New test.
6217
6218 2006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6219
6220 * configure.in (HAVE_CANCELMENUTRACKING): Remove test.
6221
6222 2006-11-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6223
6224 * configure.in: Prefer X11 to Carbon only when some X-specific
6225 option is specified (Thanks to Jan Djärv and Andreas Schwab).
6226
6227 2006-11-04 Romain Francoise <romain@orebokech.com>
6228
6229 * Makefile.in (bootstrap-clean-before): Fix typo.
6230 Use new target `bootstrap-clean' in the leim subdirectory.
6231
6232 2006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6233
6234 * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
6235
6236 2006-10-30 Chong Yidong <cyd@stupidchicken.com>
6237
6238 * make-dist: Add makefile.w32-in to the man, lispref and lispintro
6239 directories.
6240
6241 2006-10-29 Jeramey Crawford <jeramey@jeramey.com>
6242
6243 * configure.in: Enable x86-64 OpenBSD compilation.
6244
6245 2006-10-28 Glenn Morris <rgm@gnu.org>
6246
6247 * AUTHORS: Add cal-html.el author.
6248
6249 2006-10-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6250
6251 * make-dist: Make links to mac/make-package and
6252 mac/Emacs.app/Contents/Resources/Emacs.icns.
6253
6254 2006-10-27 Chong Yidong <cyd@stupidchicken.com>
6255
6256 * README: Bump version number to 22.0.90.
6257
6258 2006-10-23 Andreas Schwab <schwab@suse.de>
6259
6260 * configure.in: Make sure x_default_search_path is always set even
6261 when x_libraries is empty, and look in .../share as well for each
6262 library directory.
6263
6264 2006-09-28 Kenichi Handa <handa@m17n.org>
6265
6266 * configure.in (locallisppath): Don't include leim dir.
6267 (lisppath): Include leim dir.
6268
6269 2006-09-15 Jay Belanger <belanger@truman.edu>
6270
6271 * COPYING: Replace "Library Public License" by "Lesser Public
6272 License" throughout.
6273
6274 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6275
6276 * make-dist (EMACS): Exit and fail if the EMACS environment
6277 variable is set to something other than an absolute file name.
6278
6279 2006-08-16 Andreas Schwab <schwab@suse.de>
6280
6281 * configure.in (PKG_CHECK_MODULES): Use AS_MESSAGE_LOG_FD instead
6282 of hardcoding it.
6283
6284 2006-08-16 Richard Stallman <rms@gnu.org>
6285
6286 * INSTALL.CVS: Clean up wording.
6287
6288 2006-07-14 Eli Zaretskii <eliz@gnu.org>
6289
6290 * configure.in (PKG_CHECK_MODULES): Redirect the output of
6291 $PKG_CONFIG --exists "$2" to config.log.
6292 * configure: Regenerate.
6293
6294 2006-07-09 Richard Stallman <rms@gnu.org>
6295
6296 * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections.
6297
6298 2006-07-09 Kim F. Storm <storm@cua.dk>
6299
6300 * CONTRIBUTE: Use outline format.
6301 Add section on copyright years (from admin/notes/years).
6302
6303 2006-07-08 Eli Zaretskii <eliz@gnu.org>
6304
6305 * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config
6306 to /dev/null, since we don't need the error message, just the
6307 exit status.
6308
6309 2006-07-07 Eli Zaretskii <eliz@gnu.org>
6310
6311 * CONTRIBUTE: Slight formatting changes and typo fixes.
6312 Add description of NEWS markings.
6313
6314 2006-07-07 Kim F. Storm <storm@cua.dk>
6315
6316 * CONTRIBUTE: Mention INSTALL.CVS.
6317
6318 2006-07-05 Romain Francoise <romain@orebokech.com>
6319
6320 * make-dist (top-level): Add CONTRIBUTE.
6321
6322 2006-07-04 Richard Stallman <rms@gnu.org>
6323
6324 * CONTRIBUTE: Much rewrite.
6325
6326 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
6327
6328 * CONTRIBUTE: New file.
6329
6330 2006-06-24 Eli Zaretskii <eliz@gnu.org>
6331
6332 * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.
6333
6334 2006-05-18 Jan Djärv <jan.h.d@swipnet.se>
6335
6336 * configure.in: Add check for ALSA.
6337
6338 2006-05-06 Eli Zaretskii <eliz@gnu.org>
6339
6340 * Makefile.in (INFO_FILES): Remove emacs-xtra.
6341
6342 * info/dir: Remove the Emacs-Xtra entry.
6343
6344 2006-04-20 Ramprasad B <ramprasad_i82@yahoo.com>
6345
6346 Update copyright year(s) in many files.
6347
6348 2006-04-01 Eli Zaretskii <eliz@gnu.org>
6349
6350 * configure: Regenerated.
6351
6352 2006-04-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
6353
6354 * configure.in (HAVE_XAW3D): Disable Xaw3d check if
6355 --without-toolkit-scroll-bars was specified.
6356
6357 2006-04-01 Christoph Bauer <Christoph.Bauer@lms-gmbh.de> (tiny change)
6358
6359 * configure.in (hppa*-hp-hpux1[1-9]*): Add -D_INCLUDE__STDC_A1_SOURCE
6360 to CFLAGS. Update Copyright years written to src/config.in.
6361
6362 2006-03-18 Claudio Fontana <claudio@gnu.org>
6363
6364 * Makefile.in (INFO_FILES): New variable, contains all Info file names.
6365 (install-arch-indep, uninstall): Use $(INFO_FILES) to specify files
6366 to be installed/uninstalled.
6367 (uninstall): Invoke "$(INSTALL_INFO) --remove" to remove references
6368 to Info files installed by Emacs.
6369
6370 2006-03-03 Claudio Fontana <claudio@gnu.org>
6371
6372 * Makefile.in (install, uninstall): Add DESTDIR variable to
6373 support staged installations.
6374
6375 2006-02-14 Richard M. Stallman <rms@gnu.org>
6376
6377 * configure.in (s390x-*-linux-gnu*): New configuration.
6378
6379 2006-01-31 Jan Djärv <jan.h.d@swipnet.se>
6380
6381 * configure.in: Require GTK 2.4 or newer.
6382
6383 2006-01-29 Michael Olson <mwolson@gnu.org>
6384
6385 * Makefile.in (install-arch-indep, uninstall): Add ERC.
6386 * info/dir (ERC): New entry.
6387
6388 2006-01-29 Eli Zaretskii <eliz@gnu.org>
6389
6390 * info/dir: Fix last change.
6391
6392 2006-01-28 Luc Teirlinck <teirllm@auburn.edu>
6393
6394 * Makefile.in (install-arch-indep, uninstall): Add rcirc.
6395
6396 2006-01-27 Eli Zaretskii <eliz@gnu.org>
6397
6398 * info/dir: Untabify the whole file.
6399 (Rcirc): New entry.
6400
6401 2006-01-12 Andreas Schwab <schwab@suse.de>
6402
6403 * configure.in: Move AC_AIX and AC_GNU_SOURCE before first compile
6404 check.
6405
6406 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
6407
6408 * configure.in: Use -Wno-pointer-sign if available.
6409
6410 2005-12-29 Andreas Schwab <schwab@suse.de>
6411
6412 * config.guess, config.sub: Updated from master source.
6413
6414 2005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6415
6416 * configure.in: Use amdx86-64 for freebsd on x86_64.
6417
6418 2005-11-22 Romain Francoise <romain@orebokech.com>
6419
6420 * make-dist: Add etc/images/icons.
6421
6422 2005-11-03 Andreas Schwab <schwab@suse.de>
6423
6424 * configure.in: Use GZIP_PROG instead of GZIP.
6425
6426 * Makefile.in (GZIP_PROG): Rename from GZIP.
6427 (install-arch-indep): Adjust.
6428
6429 2005-11-01 Andreas Schwab <schwab@suse.de>
6430
6431 * Makefile.in (bootstrap): Fix dependencies for parallel build.
6432 (bootfast): Likewise.
6433
6434 2005-11-01 Romain Francoise <romain@orebokech.com>
6435
6436 * configure.in: Check for gzip.
6437
6438 * Makefile.in (install): Compress source files.
6439
6440 2005-10-24 Steven Tamm <steventamm@mac.com>
6441
6442 * configure.in: Fix darwin386 configuration issue.
6443
6444 2005-10-22 Eli Zaretskii <eliz@gnu.org>
6445
6446 * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure.
6447
6448 2005-10-17 Bill Wohler <wohler@newt.com>
6449
6450 * make-dist: Create and populate etc/images/low-color.
6451
6452 2005-10-15 Bill Wohler <wohler@newt.com>
6453
6454 * make-dist: Create and populate etc/images/gud.
6455
6456 2005-10-08 Richard M. Stallman <rms@gnu.org>
6457
6458 * make-dist (tempparent): Don't check for 14-char file name limit.
6459
6460 2005-10-07 Romain Francoise <romain@orebokech.com>
6461
6462 * make-dist: Add etc/images/ezimage and etc/images/mail
6463 directories. Install images in etc/images.
6464
6465 2005-10-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6466
6467 * configure.in: Prefer Carbon if --enable-carbon-app or
6468 --with-carbon is explicitly specified even when X11 is detected.
6469
6470 2005-09-15 Ulf Jasper <ulf.jasper@web.de>
6471
6472 * Makefile.in (install-arch-indep, uninstall):
6473 Handle newsticker manual.
6474 (info): Add - to commands.
6475
6476 2005-09-10 Giuseppe Scrivano <gscrivano@gmail.com>
6477
6478 Remove the MAXPATHLEN limitations:
6479
6480 * configure.in (AC_CHECK_FUNCS): Check for get_current_dir_name.
6481
6482 2005-09-09 Eli Zaretskii <eliz@gnu.org>
6483
6484 * configure.in <lynxsos*>: Support for LynxOS on PPC.
6485 * configure: Regenerate.
6486
6487 2005-09-05 Paul Eggert <eggert@cs.ucla.edu>
6488
6489 * config.guess, config.sub: Updated from master source.
6490
6491 2005-08-03 Juanma Barranquero <lekktu@gmail.com>
6492
6493 * .cvsignore: Add `lock'.
6494
6495 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
6496
6497 * .cvsignore: Add `data' and `site-lisp' (for in-place installs).
6498
6499 2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
6500
6501 Merge gnulib getopt implementation into Emacs.
6502
6503 * Makefile.in (AUTOCONF_INPUTS): New macro.
6504 ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
6505 so that these files also depend on m4/getopt.m4.
6506 * configure.in: Configure getopt by including m4/getopt.m4,
6507 and configuring a getopt replacement if necessary.
6508 * make-dist: Add m4 subdirectory. Unlink lib-src/getopt.h.
6509 * m4/getopt.m4: New file.
6510
6511 2005-07-06 Lute Kamstra <lute@gnu.org>
6512
6513 * configure.in: Fix capitalization.
6514
6515 2005-07-04 Lute Kamstra <lute@gnu.org>
6516
6517 Update FSF's address in GPL notices.
6518
6519 2005-06-19 Jérôme Marant <jerome@marant.org>
6520
6521 * Makefile.in (epaths-force): Protect both lisppath and
6522 buildlisppath from whitespace.
6523
6524 2005-06-08 Steven Tamm <steventamm@mac.com>
6525
6526 * configure.in: Support Darwin/MacOSX on Intel.
6527
6528 2005-06-06 Jan Djärv <jan.h.d@swipnet.se>
6529
6530 * configure.in (HAVE_CANCELMENUTRACKING): New test.
6531
6532 2005-05-19 Jérôme Marant <jmarant@marant.org>
6533
6534 * configure.in: Add --enable-locallisppath.
6535
6536 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6537
6538 * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
6539 Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS.
6540 Define USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
6541
6542 2005-05-07 Jérôme Marant <jerome@marant.org>
6543
6544 * make-dist: Remove references to makefile.nt and makefile.def.
6545 Include widgets and images subdirectories of etc. Do not exclude
6546 ldefs-boot.el.
6547
6548 2005-04-23 Andreas Schwab <schwab@suse.de>
6549
6550 * configure.in: Remove duplicate match for powerpc configuration.
6551
6552 2005-04-20 Thien-Thi Nguyen <ttn@gnu.org>
6553
6554 * configure.in: Check for <pwd.h>.
6555
6556 2005-04-14 Lute Kamstra <lute@gnu.org>
6557
6558 * make-dist: Distribute all ChangeLog files in lisp/.
6559 Don't distribute ldefs-boot.el.
6560 lisp/makefile.nt no longer exists.
6561
6562 2005-04-13 Lute Kamstra <lute@gnu.org>
6563
6564 * make-dist: Don't use DONTCOMPILE from lisp/Makefile.in; check
6565 for "no-byte-compile: t" in the file instead.
6566
6567 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
6568
6569 * configure.in <Motif>: Don't let a special LessTif/Motif1.2 install
6570 shadow the main Lesstif/Motif-2.1 libs and includes.
6571
6572 2005-03-10 Jan Djärv <jan.h.d@swipnet.se>
6573
6574 * configure.in: Only add XASSERTS to cppflags.
6575
6576 2005-03-04 Jan Djärv <jan.h.d@swipnet.se>
6577
6578 * configure.in: Added --enable-asserts.
6579
6580 2005-02-09 Kim F. Storm <storm@cua.dk>
6581
6582 Change release version from 21.4 to 22.1 throughout.
6583 Change development version from 21.3.50 to 22.0.50.
6584
6585 2005-01-19 Steven Tamm <steventamm@mac.com>
6586
6587 * configure.in: Check for <sys/utsname.h>.
6588
6589 2004-12-11 Kim F. Storm <storm@cua.dk>
6590
6591 * Makefile.in (info): Undo 2004-12-05 change.
6592
6593 2004-12-08 Luc Teirlinck <teirllm@auburn.edu>
6594
6595 * info/dir (File): Add URL and Org Mode manuals.
6596 * Makefile.in (install-arch-indep, uninstall): Add url and org
6597 manuals.
6598
6599 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
6600
6601 * configure.in (INLINE, RE_TRANSLATE_P): Move patches mistakenly
6602 committed to src/config.in.
6603
6604 2004-12-07 Jan Djärv <jan.h.d@swipnet.se>
6605
6606 * configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
6607 pthreads and define HAVE_GTK_AND_PTHREAD.
6608
6609 2004-12-05 Richard M. Stallman <rms@gnu.org>
6610
6611 * Makefile.in (info): Ignore errors building info files.
6612
6613 2004-11-27 Eli Zaretskii <eliz@gnu.org>
6614
6615 * config.bat: If 8-byte alignment is not supported, define
6616 NO_DECL_ALIGN in src/config.h, instead of trivially defining
6617 DECL_ALIGN. Protect & with "" because & is special for cmd.exe;
6618 filter through Sed to remove the quotes.
6619
6620 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
6621
6622 * info/.cvsignore: Ignore everything. It's OK since .cvsignore does
6623 not apply to files explicitly `cvs add'ed.
6624
6625 2004-11-12 Eli Zaretskii <eliz@gnu.org>
6626
6627 * config.bat: Don't require djecho.exe for the v1.x build.
6628 Add a test for DECL_ALIGN support, and add a trivial definition to
6629 src/config.h if 8-byte alignment is not supported.
6630
6631 2004-11-08 Kim F. Storm <storm@cua.dk>
6632
6633 * Makefile.in (bootstrap, bootstrap-clean-before): Remove .elc
6634 files before building.
6635 (bootfast, bootstrap-clean-before-fast): New targets, like
6636 bootstrap but don't remove .elc files.
6637
6638 2004-11-06 Lars Brinkhoff <lars@nocrew.org>
6639
6640 * configure.in: Add check for getrusage.
6641
6642 2004-11-02 Jan Djärv <jan.h.d@swipnet.se>
6643
6644 * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION):
6645 New tests for new and old GTK file dialogs.
6646 (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set
6647 to no.
6648
6649 2004-10-20 Jan Djärv <jan.h.d@swipnet.se>
6650
6651 * configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
6652 can be set. Remove SETARCH test.
6653
6654 2004-10-08 Steven Tamm <steventamm@mac.com>
6655
6656 * configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h.
6657
6658 2004-10-06 Jan Djärv <jan.h.d@swipnet.se>
6659
6660 * configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
6661 AC_MSG_WARN. Move output of warning message to end of configure run.
6662
6663 2004-10-05 Jan Djärv <jan.h.d@swipnet.se>
6664
6665 * configure.in (HAVE_RANDOM_HEAPSTART): Rename HAVE_EXECSHIELD.
6666 Run test to see if heap start address is random.
6667
6668 2004-09-29 Miles Bader <miles@gnu.org>
6669
6670 * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
6671 if setarch is present.
6672
6673 2004-09-25 Jan Djärv <jan.h.d@swipnet.se>
6674
6675 * configure.in (HAVE_EXECSHIELD): Only define on x86.
6676
6677 2004-09-24 Jan Djärv <jan.h.d@swipnet.se>
6678
6679 * configure.in: Check for exec-shield.
6680
6681 2004-09-04 Reiner Steib <Reiner.Steib@gmx.de>
6682
6683 * Makefile.in (install-arch-indep): Add pgg and sieve.
6684
6685 * info/.cvsignore: Added pgg and sieve.
6686
6687 2004-08-06 Andreas Schwab <schwab@suse.de>
6688
6689 * Makefile.in (install-arch-indep, uninstall): Add flymake.
6690
6691 2004-07-31 Eli Zaretskii <eliz@gnu.org>
6692
6693 * config.bat: Update URLs in the comments.
6694
6695 2004-07-05 Andreas Schwab <schwab@suse.de>
6696
6697 * Makefile.in (install-arch-indep): Remove .arch-inventory files.
6698
6699 2004-06-21 Kenichi Handa <handa@m17n.org>
6700
6701 * make-dist: Link leim-ext.el into tempdir.
6702
6703 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
6704
6705 * info/dir (File): Add emacs-xtra.
6706 * Makefile.in (install-arch-indep, uninstall): Add emacs-xtra.
6707
6708 2004-06-12 Juri Linkov <juri@jurta.org>
6709
6710 * info/dir: Move menu help lines from `* Menu:' to file header.
6711 Describe the purpose of a red *.
6712
6713 2004-05-04 Dave Love <fx@gnu.org>
6714
6715 * configure.in: Don't use `extrasub'.
6716
6717 2004-04-29 Dave Love <fx@gnu.org>
6718
6719 * configure.in: Don't forget to quote args to `test'.
6720
6721 2004-04-24 Thien-Thi Nguyen <ttn@gnu.org>
6722
6723 * autogen.sh: Update filename in "please read" message.
6724
6725 2004-04-17 Richard M. Stallman <rms@gnu.org>
6726
6727 * INSTALL: Move the info about site-lisp dirs,
6728 and say uninstalled Emacs looks there too.
6729
6730 2004-04-04 Eli Zaretskii <eliz@gnu.org>
6731
6732 * config.bat (lib-src): Recognize comment lines in Makefile.in
6733 that have a TAB after the #, to avoid errors in preprocessing with
6734 GCC 3.3.3.
6735
6736 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
6737
6738 * Makefile.in: Mention in comment that `make maintainer-clean'
6739 deletes .elc files.
6740
6741 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
6742
6743 * update-subdirs: Add local variables to prevent byte-compiling.
6744
6745 2004-03-21 Dave Love <fx@gnu.org>
6746
6747 * configure.in: Fix previous change.
6748
6749 2004-03-18 Dave Love <fx@gnu.org>
6750
6751 * configure.in: Add -znocombreloc to LDFLAGS if compiler supports it.
6752
6753 2004-03-15 Luc Teirlinck <teirllm@auburn.edu>
6754
6755 * info/dir (File): Add SMTP and SES.
6756
6757 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
6758
6759 * Makefile.in (maintainer-clean): Clean in the lisp dir as well.
6760 (bootstrap): Use the new bootstrap-prepare target in lisp.
6761
6762 2004-02-18 Kim F. Storm <storm@cua.dk>
6763
6764 * INSTALL.CVS: Add info about ssh/cvs related problems and work-around.
6765
6766 2004-02-16 Eli Zaretskii <eliz@gnu.org>
6767
6768 * make-dist: Don't link index.*perm and permute-index into tempdir.
6769
6770 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
6771
6772 * AUTHORS (JonathanYavner): Rename testcover-*.el to tcover-*.el
6773 to match previous changes by Eli Zaretskii.
6774
6775 2004-02-09 Luc Teirlinck <teirllm@auburn.edu>
6776
6777 * Makefile.in: Set CDPATH to an empty string.
6778
6779 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
6780
6781 * configure.in <darwin>: Use fink packages if available.
6782
6783 2004-01-25 Jérôme Marant <jmarant@free.fr> (tiny change)
6784
6785 * make-dist (lispref): Do include lispref/index.texi.
6786
6787 2004-01-06 Eric Hanchrow <offby1@blarg.net>
6788
6789 * make-dist (tempdir): Include cursors in nt/icons.
6790
6791 2003-12-30 Eli Zaretskii <eliz@gnu.org>
6792
6793 * INSTALL.CVS: Renamed from INSTALL-CVS to avoid file-name
6794 clashes with install-sh on 8+3 filesystems.
6795
6796 2003-12-24 Miles Bader <miles@gnu.org>
6797
6798 * .cvsignore: Add .arch-inventory.
6799
6800 2003-12-24 Andreas Schwab <schwab@suse.de>
6801
6802 * configure.in: Check for <sys/socket.h>. Include it before
6803 including <net/if.h>. Move check for <net/if.h> before its use.
6804
6805 2003-12-24 Jan Djärv <jan.h.d@swipnet.se>
6806
6807 * Makefile.in (install-arch-dep): Don't let cd output go into
6808 pipe for carbon_appdir.
6809
6810 2003-12-24 Andreas Schwab <schwab@suse.de>
6811
6812 * configure.in (PKG_CHECK_MODULES): Fix quoting.
6813
6814 2003-12-01 Andreas Schwab <schwab@suse.de>
6815
6816 * configure.in (powerpc-apple-darwin*): Use ${CC-cc} instead of
6817 hardcoding gcc.
6818
6819 2003-11-16 Jan Djärv <jan.h.d@swipnet.se>
6820
6821 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
6822 multiple displays.
6823 Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
6824
6825 2003-09-23 Dave Love <fx@gnu.org>
6826
6827 * configure.in: Check members of struct ifreq.
6828
6829 2003-09-14 Kim F. Storm <storm@cua.dk>
6830
6831 * configure.in: Add checks for sys/ioctl.h and net/if.h.
6832
6833 2003-09-12 Luc Teirlinck <teirllm@mail.auburn.edu>
6834
6835 * Makefile.in (install-arch-indep, uninstall): Add SES manual.
6836
6837 2003-08-18 Lute Kamstra <lute@gnu.org>
6838
6839 * configure.in: Revert the change of 2003-07-29 as GTK+ 2.2 is not
6840 required anymore.
6841
6842 2003-08-07 Andrew Choi <akochoi@shaw.ca>
6843
6844 * configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
6845 option instead of -traditional-cpp for CPP.
6846
6847 2003-07-29 Richard M. Stallman <rms@gnu.org>
6848
6849 * configure.in (HAVE_XIM): Define if XIM is available.
6850
6851 2003-07-29 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
6852
6853 * configure.in: The function gtk_window_set_icon_from_file was
6854 introduced in GTK+ 2.2, so check for that release.
6855
6856 2003-07-23 Andreas Schwab <schwab@suse.de>
6857
6858 * configure.in: Add --enable-maintainer-mode, substitute MAINT.
6859
6860 * Makefile.in (YACC): Remove, not used.
6861 (MAINT): Don't set.
6862 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
6863 disable dependency on ${srcdir}/configure.in when maintainer mode
6864 is disabled.
6865
6866 2003-07-22 Dave Love <fx@gnu.org>
6867
6868 * configure.in: Make XRegisterIMInstantiateCallback test depend on
6869 HAVE_X11, not with_xim.
6870 (HAVE_CRTIN): Provide template.
6871 <with_png>: Test for png.h and libpng/png.h.
6872
6873 2003-07-15 Andreas Schwab <schwab@suse.de>
6874
6875 * configure.in: Temporarily leave quoting for AC_DEFINE.
6876
6877 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
6878
6879 * configure.in: Check for posix_memalign.
6880
6881 2003-07-12 Richard M. Stallman <rms@gnu.org>
6882
6883 * configure.in [netbsd systems]: Define HAVE_CRTIN properly.
6884
6885 2003-07-09 Kim F. Storm <storm@cua.dk>
6886
6887 * INSTALL (DETAILED BUILDING AND INSTALLATION): Describe new
6888 functionality of --without-xim.
6889
6890 2003-06-29 Dave Love <fx@gnu.org>
6891
6892 * configure.in: Fix XRegisterIMInstantiateCallback check for gcc.
6893
6894 2003-06-23 Dave Love <fx@gnu.org>
6895
6896 * configure.in: Check for sys/_mbstate_t.h.
6897 Test XRegisterIMInstantiateCallback prototype.
6898 (AH_BOTTOM): Define DO_BLOCK_INPUT, my_strftime.
6899
6900 2003-06-06 Dave Love <fx@gnu.org>
6901
6902 * configure.in: Check for locale.h.
6903
6904 2003-06-05 Dave Love <fx@gnu.org>
6905
6906 * configure.in: Check for memcpy, mempcpy, mblen, mbrlen.
6907 Use AC_FUNC_STRFTIME, AC_STRUCT_TIMEZONE, AC_TYPE_MBSTATE_T.
6908 (NLIST_STRUCT): Don't define.
6909 (AH_BOTTOM): Define my_strftime.
6910
6911 2003-06-02 Richard M. Stallman <rms@gnu.org>
6912
6913 * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
6914
6915 2003-05-24 Andreas Schwab <schwab@suse.de>
6916
6917 * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
6918 bzero, and bcmp.
6919
6920 2003-05-22 Dave Love <fx@gnu.org>
6921
6922 * configure.in: Remove redundant test for term.h. Test for difftime.
6923
6924 2003-05-20 Dave Love <fx@gnu.org>
6925
6926 * configure.in: Append * to s390-*-linux-gnu case.
6927 (LIBMAIL) <lockfile>: Don't define.
6928
6929 2003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
6930
6931 * INSTALL (* GNU/Linux development packages): Mention Debian and
6932 RedHat package names.
6933
6934 2003-04-30 Boyd Lynn Gerber <gerberb@zenez.com>
6935
6936 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
6937
6938 2003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
6939
6940 * INSTALL (* GNU/Linux development packages): Tell people to
6941 install additional packages for compiling Emacs.
6942
6943 2003-04-30 Richard M. Stallman <rms@gnu.org>
6944
6945 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
6946
6947 2003-04-28 Francesco Potortì <pot@gnu.org>
6948
6949 * configure.in: Undo last (RMS') change, as it is useless, per
6950 Dave Love.
6951
6952 2003-04-08 Richard M. Stallman <rms@gnu.org>
6953
6954 * configure.in: Put #include of jpeglib.h at start of line.
6955
6956 2003-04-06 Francesco Potortì <pot@gnu.org>
6957
6958 * configure.in: Use the same configuration for all aix5, not just
6959 aix5.1.
6960
6961 2003-03-16 Nelson H. F. Beebe <beebe@math.utah.edu> (tiny change)
6962
6963 * configure.in: Check for need for bigtoc support on IBM AIX for
6964 solving a linker table overflow problem.
6965
6966 2003-03-03 Rob Browning <rlb@defaultvalue.org>
6967
6968 * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
6969 (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
6970 over bzero, bcmp, and bcopy.
6971
6972 2003-02-23 Simon Josefsson <jas@extundo.com>
6973
6974 * Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
6975
6976 2003-02-21 Klaus Zeitler <kzeitler@lucent.com>
6977
6978 * configure.in: Set new hpux10-20.h as "major" include for 10.20.
6979
6980 2003-02-13 Robert J. Chassell <bob@rattlesnake.com> (tiny change)
6981
6982 * INSTALL (* Extra fonts): Say that Emacs doesn't include fonts.
6983
6984 2003-02-08 Andreas Schwab <schwab@suse.de>
6985
6986 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
6987 instead of the substitution.
6988
6989 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
6990
6991 * Makefile.in: Use @EXEEXT@ for Cygwin.
6992 Use USERNAME if LOGNAME is not set (for Cygwin).
6993
6994 * configure.in: Add opsys=cygwin.
6995
6996 2003-01-22 Andreas Schwab <schwab@suse.de>
6997
6998 * configure.in: Set HAVE_MENUS=yes when HAVE_CARBON=yes instead of
6999 redefining it explicitly in src/config.in.
7000
7001 2003-01-22 Markus Rost <rost@math.ohio-state.edu>
7002
7003 * Makefile.in (bootstrap): Make bootstrap-after.
7004
7005 2003-01-20 Jan Djärv <jan.h.d@swipnet.se>
7006
7007 * configure.in: Fix --with-gtk.
7008
7009 2003-01-19 Jan Djärv <jan.h.d@swipnet.se>
7010
7011 * configure.in: Add --with-gtk, --with-x-toolkit=gtk.
7012
7013 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add text about GTK.
7014
7015 2003-01-14 Francesco Potortì <pot@gnu.org>
7016
7017 * configure.in (m68k-motorola-sysv): Remove (obsolete).
7018
7019 2003-01-07 Steven Tamm <steventamm@mac.com>
7020
7021 * configure.in: New option, --enable-carbon-app, to specify
7022 that the application should be installed
7023 * Makefile.in (install-arch-dep): On Mac OS X, install the
7024 Emacs.app application if carbon-app is enabled.
7025
7026 2003-01-06 Dave Love <fx@gnu.org>
7027
7028 * configure.in: Check for nl_langinfo.
7029 [!HAVE_SIZE_T]: Fix typedef.
7030
7031 2003-01-06 David Kastrup <dak@gnu.org>
7032
7033 * Makefile.in (INSTALL_INFO): Get install-info command from configure.
7034
7035 * configure.in: Add tests for install-info.
7036
7037 2002-12-09 Markus Rost <rost@math.ohio-state.edu>
7038
7039 * configure.in (*-sunos5*, *-solaris*): Revert previous change -
7040 use again sol2-6 instead of sol2-8.
7041
7042 2002-12-09 Dave Love <fx@gnu.org>
7043
7044 * configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
7045
7046 2002-12-08 Andreas Schwab <schwab@suse.de>
7047
7048 * Makefile.in (install-arch-indep): Revert last change.
7049
7050 2002-11-27 Dave Love <fx@gnu.org>
7051
7052 * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST.
7053 Check for __sys_siglist too. Check for memset.
7054 Use AC_FUNC_GETPGRP. Add mipsel-*-linux-gnu* target.
7055
7056 2002-11-22 Juanma Barranquero <lektu@terra.es>
7057
7058 * config.guess, config.sub: Updated from master source.
7059
7060 2002-11-19 Karl Fogel <kfogel@red-bean.com>
7061
7062 * autogen.sh: New file.
7063
7064 2002-11-18 Dave Love <fx@gnu.org>
7065
7066 * configure.in: Tidy up various quoting issues throughout.
7067 Use AC_GNU_SOURCE.
7068 (AH_BOTTOM): Fix #endif protecting config.h. Maybe include
7069 alloca.h. Define GC_SETJMP_WORKS, GC_LISP_OBJECT_ALIGNMENT.
7070 Maybe define bcopy, bzero, bcmp.
7071 (powerpcle-*-solaris2.5*, powerpcle-*-solaris2*): Remove (use
7072 non-existent machine file).
7073 (sys/vlimit.h, sys/resource.h, fsync, __restrict): Test for.
7074 (term.h, X11/Xaw3d/Scrollbar.h): Avoid warning from test.
7075 (nlist.h): Move test up.
7076
7077 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
7078
7079 * configure.in (*-sunos5*, *-solaris*): Use sol2-8.
7080
7081 2002-11-14 Francesco Potortì <pot@gnu.org>
7082
7083 * configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
7084
7085 2002-11-11 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
7086
7087 * Makefile.in (install-arch-indep): Prepend $(srcdir)/ to lisp.
7088
7089 2002-11-08 Dave Love <fx@gnu.org>
7090
7091 * configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf 2.54.
7092 (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
7093
7094 2002-11-07 Miles Bader <miles@gnu.org>
7095
7096 * Makefile.in (maybe_bootstrap): Fix shell variable usage.
7097 Handle separate-build-dir case.
7098
7099 2002-11-06 Richard M. Stallman <rms@gnu.org>
7100
7101 * Makefile.in (maybe_bootstrap): Add doublequotes to make it
7102 bulletproof. $bar may be empty when there are no .elc files.
7103
7104 2002-10-30 Dave Love <fx@gnu.org>
7105
7106 * configure.in: Require autoconf 2.53. Test for pty.h,
7107 sys/mman.h, sys/param.h, mremap, memmove.
7108 (AH_BOTTOM): Maybe include strings.h. Add local variables for mode.
7109 (AC_PROG_YACC): Delete.
7110 (size_t): Use AC_CHECK_TYPES.
7111 (AH_TOP): Up-date copyright.
7112
7113 2002-10-01 Juanma Barranquero <lektu@terra.es>
7114
7115 * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
7116
7117 2002-09-19 Richard M. Stallman <rms@gnu.org>
7118
7119 * configure.in: Fix the LessTif-directory-finder for real.
7120
7121 2002-09-14 Richard M. Stallman <rms@gnu.org>
7122
7123 * Makefile.in (maybe_bootstrap): Test for complete absence
7124 of compiled Lisp files.
7125
7126 2002-09-11 Stefan Monnier <monnier@cs.yale.edu>
7127
7128 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
7129 (bootstrap-clean-after): Delete.
7130 (bootstrap): Make the sequencing explicit.
7131
7132 2002-09-10 Richard M. Stallman <rms@gnu.org>
7133
7134 * configure.in: Fix previous LessTif change.
7135
7136 2002-09-09 Richard M. Stallman <rms@gnu.org>
7137
7138 * configure.in (powerpcle-*-solaris2.5*): New configuration.
7139 (powerpcle-*-solaris*): Use version 2.6 as default.
7140 (*-sunos5.6*, *-solaris2.6*): New alternative.
7141 (*-sunos5*): Use version 2.6 as default.
7142
7143 2002-09-06 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7144
7145 * configure.in: Fix typo.
7146
7147 2002-09-05 Richard M. Stallman <rms@gnu.org>
7148
7149 * configure.in: Look for LessTif in /usr/X11R6/LessTif/ before Motif.
7150
7151 * configure.in: Handle $GCC_LINK_TEST_OPTIONS and
7152 $NON_GCC_LINK_TEST_OPTIONS after the AC_PROG_... macros.
7153
7154 2002-08-26 Kim F. Storm <storm@cua.dk>
7155
7156 * Makefile.in (install-arch-indep): Do not remove DOC file
7157 when it is the only DOC file installed; this is the case when
7158 CANNOT_DUMP is defined. From Joe Buehler (tiny change).
7159
7160 2002-07-24 Markus Rost <rost@math.ohio-state.edu>
7161
7162 * configure.in: Fix typo.
7163
7164 2002-07-24 Richard M. Stallman <rms@gnu.org>
7165
7166 * configure.in: Don't print anything special about gamedir.
7167
7168 * configure.in: Delete nonstandard --with-game-user option.
7169
7170 2002-07-21 Richard M. Stallman <rms@gnu.org>
7171
7172 * Makefile.in (gamedir, localstatedir): New variables.
7173 (epaths-force): Insert value of gamedir into PATH_GAME.
7174
7175 * configure.in (gamedir): Handle it like lispdir.
7176 (--with-game-dir option): Delete.
7177
7178 2002-06-21 Pavel Janík <Pavel@Janik.cz>
7179
7180 * configure.in: Add support for mipseb-*-netbsd* machines.
7181
7182 2002-06-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7183
7184 * Makefile.in (install-arch-indep, uninstall): Add Tramp.
7185
7186 2002-06-17 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7187
7188 * info/dir (File): Add an entry for Tramp.
7189
7190 2002-06-17 Eli Zaretskii <eliz@is.elta.co.il>
7191
7192 * INSTALL-CVS: New file.
7193
7194 2002-06-07 Andreas Schwab <schwab@suse.de>
7195
7196 * configure.in (x86_64-*-linux-gnu*): New system.
7197
7198 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
7199
7200 * config.bat: Handle the case when lispintro is truncated to lispintr.
7201
7202 2002-05-26 Paul Eggert <eggert@twinsun.com>
7203
7204 * config.guess, config.sub: Updated from master source.
7205
7206 2002-05-09 Richard M. Stallman <rms@gnu.org>
7207
7208 * configure.in (emacs_cv_speed_t): Add square brackets for clarity.
7209
7210 2002-05-04 Pavel Janík <Pavel@Janik.cz>
7211
7212 * make-dist: Do not distribute lock/ directory.
7213
7214 2002-04-30 Andrew Choi <akochoi@shaw.ca>
7215
7216 * configure.in: Provide documentation string when defining
7217 variable HAVE_CARBON. Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
7218 and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
7219
7220 2002-04-29 Colin Walters <walters@verbum.org>
7221
7222 * configure.in: Delete configure check for access to the game user.
7223
7224 2002-04-29 Pavel Janík <Pavel@Janik.cz>
7225
7226 * make-dist: lwlib/Imakefile is removed.
7227
7228 2002-04-26 Andrew Choi <akochoi@shaw.ca>
7229
7230 * configure.in: Add support for powerpc-apple-darwin*.
7231 (HAVE_CARBON): Add.
7232
7233 * make-dist: Create directories in mac/Emacs.app.
7234
7235 2002-04-25 Pavel Janík <Pavel@Janik.cz>
7236
7237 * make-dist: lwlib-Xol* are removed.
7238
7239 2002-04-23 Andreas Schwab <schwab@suse.de>
7240
7241 * Makefile.in (MAINT): New variable.
7242 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
7243 instead of configure.in, to avoid running autoconf and autoheader
7244 unless explicitly requested.
7245
7246 2002-04-16 Eli Zaretskii <eliz@gnu.org>
7247
7248 * config.bat: Update for msdos/sed2v2.inp.
7249
7250 2002-04-15 Andreas Schwab <schwab@suse.de>
7251
7252 * Makefile.in ($(srcdir)/src/config.in): Generate using autoheader.
7253 * configure.in: Add config header templates to all AC_DEFINE and
7254 AC_DEFINE_UNQUOTED symbols.
7255 * make-dist: Run autoheader if necessary.
7256
7257 2002-04-10 Colin Walters <walters@verbum.org>
7258
7259 * configure.in: Add --game-dir, --game-user. Test to see if we
7260 can use them.
7261
7262 2002-04-08 Pavel Janík <Pavel@Janik.cz>
7263
7264 * configure.in: Add --with-sound.
7265
7266 2002-03-18 Kim F. Storm <storm@cua.dk>
7267
7268 * configure.in: Test for sendto, recvfrom, getsockopt, setsockopt,
7269 and getsockname functions. Test for sys/un.h include file.
7270
7271 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
7272
7273 * configure.in: Support AIX 5.1.
7274
7275 2002-03-10 Jan Djärv <jan.h.d@swipnet.se>
7276
7277 * configure.in: Added test for X Session Management (HAVE_X_SM).
7278
7279 2002-03-03 Richard M. Stallman <rms@gnu.org>
7280
7281 * Makefile.in (install-arch-indep): Use umask 022 for DOC* and lisp/.
7282 Run chown $${LOGNAME} on files installed by tar xvf.
7283
7284 2002-03-03 Kim F. Storm <storm@cua.dk>
7285
7286 * configure.in: Test for getpeername.
7287
7288 2002-03-01 Richard M. Stallman <rms@gnu.org>
7289
7290 * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b.
7291 (HAVE_GIF): Don't use old libungif versions that crash.
7292
7293 2002-02-26 Richard M. Stallman <rms@gnu.org>
7294
7295 * configure.in <making srcdir absolute>: Verify that PWD is correct,
7296 not just well-formed and valid.
7297 (mips-compaq-nonstopux*): New configuration.
7298
7299 2002-02-18 Paul Eggert <eggert@twinsun.com>
7300
7301 * make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
7302 "sed q" is a portable equivalent to plain "head -1".
7303
7304 2002-02-13 Richard M. Stallman <rms@gnu.org>
7305
7306 * Makefile.in (maybe_bootstrap): Do `exit 1'.
7307 (all): Don't depend on maybe_bootstrap here.
7308 (${SUBDIR}): Depend on it here instead.
7309
7310 2002-02-08 Richard M. Stallman <rms@gnu.org>
7311
7312 * Makefile.in (maybe_bootstrap): Add an infinite sleep-loop.
7313
7314 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
7315
7316 * configure.in: Recognize BSD/OS 5.0.
7317
7318 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
7319
7320 * make-dist: Make version checking in emacs.texi consistent with
7321 how we set it there.
7322
7323 2001-12-29 Kim F. Storm <storm@cua.dk>
7324
7325 * INSTALL: <CONFIGURATION BY HAND> Now requires autoconf 2.51.
7326
7327 2001-12-28 Richard M. Stallman <rms@gnu.org>
7328
7329 * configure.in: Test for mbsinit.
7330
7331 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
7332
7333 These changes make Leim part of the standard distribution:
7334
7335 * README: Add info about the `leim' directory.
7336
7337 * INSTALL: Remove text that describes Leim as a separate package.
7338
7339 * noleim-Makefile.in: File removed.
7340
7341 * make-dist: Don't copy noleim-Makefile.in to the leim subdirectory.
7342 Link Leim files to ${tempdir}/leim, not to real-leim. Don't move
7343 Leim files out of the Emacs tree. Don't prepare a separate tarball
7344 for Leim.
7345
7346 2001-12-11 Richard M. Stallman <rms@gnu.org>
7347
7348 * configure.in (hppa*-*-linux-gnu*): New alternative.
7349
7350 2001-12-08 Pavel Janík <Pavel@Janik.cz>
7351
7352 * make-dist: Copy COPYING to leim/, lwlib/, mac/ and nt/ when
7353 creating distribution.
7354
7355 2001-12-06 Paul Eggert <eggert@twinsun.com>
7356
7357 * configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
7358 (AC_FUNC_VFORK): Remove.
7359 (AC_FUNC_FORK): Add.
7360 (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
7361 this is required by recent Autoconf versions.
7362
7363 2001-12-02 Pavel Janík <Pavel@Janik.cz>
7364
7365 * make-dist: Do not try to link removed files (aclocal.m4, _emacs,
7366 TODO, vms-pp.trans and others).
7367
7368 2001-11-29 Pavel Janík <Pavel@Janik.cz>
7369
7370 * make-dist: Use COPYING from the top-level directory.
7371
7372 2001-11-29 Gerd Moellmann <gerd@gnu.org>
7373
7374 * configure.in: Add support for FreeBSD/Alpha.
7375
7376 2001-11-29 Pavel Janík <Pavel@Janik.cz>
7377
7378 * make-dist: Add COPYING to the top-level directory of the
7379 distribution. Simplify the logic behind copying.
7380
7381 * Makefile.in (maybe_bootstrap): Fix previous change.
7382
7383 2001-11-28 Richard M. Stallman <rms@gnu.org>
7384
7385 * Makefile.in (maybe_bootstrap): Don't bootstrap, just suggest it.
7386
7387 2001-11-26 Richard M. Stallman <rms@gnu.org>
7388
7389 * Makefile.in: bootstrap should not delete dumped executables.
7390 (bootstrap-clean-before): New target.
7391 (bootstrap): Use bootstrap-clean-before instead of clean.
7392 (bootstrap-clean-after): Rename from bootstrap-clean. Calls changed.
7393
7394 2001-11-24 Eli Zaretskii <eliz@is.elta.co.il>
7395
7396 These changes add the Emacs Lisp Introduction manual to the
7397 distribution:
7398
7399 * Makefile.in (install-arch-indep, uninstall): Add ELisp Intro files.
7400
7401 * make-dist: Copy the files in lispintro directory.
7402
7403 * config.bat: Configure in the lispintro directory.
7404
7405 * configure.in (AC_OUTPUT): Add lispintro/Makefile.
7406
7407 * Makefile.in (SUBDIR_MAKEFILES): Add lispintro.
7408 (lispintro/Makefile): New target.
7409 (mostlyclean, clean, distclean, maintainer-clean): Add lispintro.
7410 (unlock, relock, info, dvi): Ditto.
7411
7412 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
7413
7414 * Makefile.in (uninstall, install-arch-indep): Don't install gfdl.1.
7415
7416 * make-dist (etc): Don't distribute gfdl.1.
7417
7418 2001-11-22 Colin Walters <walters@debian.org>
7419
7420 * Makefile.in (install-arch-indep): Install the calc .info files.
7421 (uninstall): Handle deletion of calc .info files (thanks Pavel Janík).
7422
7423 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
7424
7425 * make-dist (lispref): Add *.txt, *.el, permute-index, and
7426 tindex.pl to the list of those being put into the distribution.
7427
7428 2001-11-16 Eli Zaretskii <eliz@gnu.org>
7429
7430 * configure.in: Add coff.h to the list in AC_CHECK_HEADERS.
7431
7432 2001-11-15 Pavel Janík <Pavel@Janik.cz>
7433
7434 * Makefile.in (uninstall): Fix previous change.
7435
7436 * configure.in, Makefile.in: Add support for --program-prefix,
7437 --program-suffix and --program-transform-name options.
7438
7439 2001-11-13 Pavel Janík <Pavel@Janik.cz>
7440
7441 * Makefile.in (install-arch-indep): Use `${manext}' instead of `.1'.
7442 (install-arch-indep): Install emacsclient manual page.
7443 (uninstall): Uninstall emacsclient manual page.
7444
7445 2001-11-12 Eli Zaretskii <eliz@is.elta.co.il>
7446
7447 * make-dist: Add lispref/index.*perm files to the distribution.
7448 From Pavel Janík <Pavel@Janik.cz>.
7449
7450 2001-11-12 Pavel Janík <Pavel@Janik.cz>
7451
7452 * Makefile.in (uninstall): Remove gfdl.1 when uninstalling.
7453
7454 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
7455
7456 * configure.in: AC_OUTPUT lispref/Makefile.
7457
7458 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
7459
7460 The following changes add the ELisp reference manual to the
7461 distribution.
7462
7463 * make-dist: Add the lispref directory to the distribution.
7464
7465 * Makefile.in (install-arch-indep): Add elisp* to the list of
7466 installed Info files.
7467 (SUBDIR_MAKEFILES): Add lispref/Makefile.
7468 (lispref/Makefile): New target.
7469 (mostlyclean, clean, distclean, maintainer-clean, unlock, relock):
7470 Add commands for the lispref directory.
7471 (info, dvi): Ditto.
7472
7473 * config.bat: Configure in `lispref'.
7474
7475 2001-11-09 Richard M. Stallman <rms@gnu.org>
7476
7477 * Makefile.in (bootstrap-lisp): Don't suppress error messages.
7478
7479 2001-11-07 Eli Zaretskii <eliz@is.elta.co.il>
7480
7481 * make-dist (tempdir): Copy AUTHORS as well.
7482
7483 2001-11-06 Sam Steingold <sds@gnu.org>
7484
7485 * configure.in: Added a check for <nlist.h>.
7486
7487 2001-11-01 Pavel Janík <Pavel@Janik.cz>
7488
7489 * configure.in: Reindent --help output.
7490 From Per Starbäck (starback@ling.uu.se).
7491
7492 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
7493
7494 * configure.in: New entry for HP/UX-11.
7495
7496 * Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
7497 From Eric S. Raymond <esr@golux.thyrsus.com>.
7498
7499 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
7500
7501 * configure.in (s390-*-linux-gnu): New system. From Adam Thornton
7502 <athornton@sinenomine.net>.
7503
7504 2001-10-25 Gerd Moellmann <gerd@gnu.org>
7505
7506 * Makefile.in (maybe_bootstrap): New target.
7507 (all): Add to prerequisites to bootstrap if abbrev.elc doesn't exist.
7508
7509 2001-10-24 Ken Raeburn <raeburn@gnu.org>
7510
7511 * configure.in: If --with-hesiod is given, look for
7512 hes_getmailhost and res_send or __res_send; check hesiod and
7513 resolv libraries respectively if system libraries don't supply them.
7514
7515 2001-10-24 Gerd Moellmann <gerd@gnu.org>
7516
7517 * configure.in: Use $MAKE for `make' if set.
7518
7519 2001-10-22 Gerd Moellmann <gerd@gnu.org>
7520
7521 * Makefile.in (install-arch-indep): Add -h (follow symlinks)
7522 to tar options.
7523
7524 2001-10-20 Gerd Moellmann <gerd@gnu.org>
7525
7526 * (Version 21.1 released).
7527
7528 2001-10-20 Miles Bader <miles@gnu.org>
7529
7530 * configure.in (configuration): Set from `host' if `host_alias'
7531 isn't defined.
7532
7533 2001-10-19 Andreas Schwab <schwab@suse.de>
7534
7535 * configure.in: Make ready for autoconf 2.5x.
7536 (AC_PREREQ): Require autoconf 2.50.
7537 * aclocal.m4: Removed.
7538 * Makefile.in (${srcdir}/configure): Don't depend on aclocal.m4.
7539
7540 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
7541
7542 * README: Bump Emacs version to 21.1.50.
7543
7544 2001-10-05 Gerd Moellmann <gerd@gnu.org>
7545
7546 * Branch for 21.1.
7547
7548 2001-09-05 Gerd Moellmann <gerd@gnu.org>
7549
7550 * configure.in: Avoid `$@' which is handled specially in
7551 Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
7552
7553 2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
7554
7555 * make-dist (nt): Add subdirs.el to the list of distributed files.
7556
7557 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
7558
7559 * configure.in (machine): Add an entry for
7560 hppa1.1-hitachi-hiuxwe2*.
7561
7562 2001-05-28 Gerd Moellmann <gerd@gnu.org>
7563
7564 * make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
7565 LC_MESSAGES and LANG. From Karl Eichwalder <keichwa@gmx.net>.
7566
7567 2001-05-14 Gerd Moellmann <gerd@gnu.org>
7568
7569 * make-dist: Copy texinfo.tex unconditionally.
7570
7571 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
7572
7573 * Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
7574 that are installed.
7575
7576 2001-04-06 Gerd Moellmann <gerd@gnu.org>
7577
7578 * make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
7579 Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
7580
7581 * make-dist: Handle leim/MISC-DIC. Only include
7582 `[a-zA-Z]*.{el,elc}' from leim/quail.
7583
7584 2001-04-05 Gerd Moellmann <gerd@gnu.org>
7585
7586 * Makefile.in (install-arch-indep): Remove .cvsignore files.
7587
7588 2001-03-30 Gerd Moellmann <gerd@gnu.org>
7589
7590 * Makefile.in (.PHONY): Add for bootstrap targets.
7591 (bootstrap-clean): New target.
7592 (bootstrap): Use it instead of `clean'.
7593
7594 2001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
7595
7596 * Makefile.in (SUBDIR): Remove leim.
7597 (all, .RECURSIVE, extraclean): Add leim explicitly.
7598 (leim): Provide separate rule which exports PARALLEL=0 into the
7599 environment.
7600
7601 2001-03-20 Gerd Moellmann <gerd@gnu.org>
7602
7603 * configure.in (HAVE_XPM): Don't print the result of the check for
7604 XpmReturnAllocPixels if we don't have an xpm.h.
7605
7606 2001-03-05 Gerd Moellmann <gerd@gnu.org>
7607
7608 * COPYING: New file.
7609
7610 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
7611
7612 * config.bat: Update the copyright.
7613
7614 2001-02-23 Kenichi Handa <handa@etl.go.jp>
7615
7616 * configure.in: Use AC_EGREP_CPP to check if the C preprocessor
7617 converts `..' to `. .'. If it converts, set CPP_NEED_TRADITIONAL
7618 to `yes'. Later in AC_OUTPUT, check this variable.
7619
7620 2001-02-09 Dave Love <fx@gnu.org>
7621
7622 * AUTHORS: Updated.
7623
7624 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
7625
7626 * info/dir (Ebrowse): Fix the entry (was missing a dot).
7627
7628 2001-02-02 Gerd Moellmann <gerd@gnu.org>
7629
7630 * mkinstalldirs (errstatus): Chmod a+rx directories we create.
7631
7632 * Makefile.in (uninstall): Ignore exit code of `rm'.
7633
7634 * Makefile.in (uninstall): Remove more info files.
7635 Remove ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
7636
7637 2001-01-31 Gerd Moellmann <gerd@gnu.org>
7638
7639 * noleim-Makefile.in (extraclean): Add.
7640
7641 2001-01-28 Gerd Moellmann <gerd@gnu.org>
7642
7643 * Makefile.in (extraclean): Add -f to -rm config-tmp-* to keep
7644 it quiet.
7645
7646 2001-01-24 Colin Walters <walters@cis.ohio-state.edu>
7647
7648 * Makefile.in (tags): Fix typo.
7649
7650 2001-01-13 Kenichi Handa <handa@etl.go.jp>
7651
7652 * configure.in: Fix typo in the code setting x_search_path.
7653
7654 2001-01-10 Dave Love <fx@gnu.org>
7655
7656 * configure.in: Don't reset LIBS at end of -lXmu test. Test for
7657 -lXext.
7658 (HAVE_XKBGETKEYBOARD): Fix reporting of result.
7659 (HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
7660 (HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
7661 Don't frob CFLAGS. Remove extra X libs from AC_CHECK_LIB
7662 (now in $LIBS).
7663
7664 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
7665
7666 * config.bat: Run the preprocessor with -traditional.
7667
7668 2001-01-01 Eli Zaretskii <eliz@is.elta.co.il>
7669
7670 * INSTALL: Move copying conditions to end of file.
7671
7672 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
7673
7674 * INSTALL: Add basic installation procedure which assumes
7675 `configure' does its job. Elaborate on image support libraries.
7676 Add a pointer to Xaw3d library. Add advice about solving
7677 configure-time problems by looking in config.log and setting
7678 variables in the environment.
7679
7680 2000-12-27 Gerd Moellmann <gerd@gnu.org>
7681
7682 * Makefile.in (install-arch-indep): If tar fails, exit with
7683 exit code 1.
7684
7685 2000-12-19 Gerd Moellmann <gerd@gnu.org>
7686
7687 * configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
7688 source file includes XKBlib.h. On some broken Solaris systems,
7689 there is an XKBlib.h, reportedly, but header files included by
7690 XKBlib.h are missing.
7691
7692 2000-12-14 Gerd Moellmann <gerd@gnu.org>
7693
7694 * configure.in: AC_CHECK_FUNC XkbGetKeyboard.
7695
7696 2000-12-11 Dave Love <fx@gnu.org>
7697
7698 * configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
7699
7700 2000-12-11 Paul Eggert <eggert@twinsun.com>
7701
7702 * aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
7703 Merge fixes from latest GNU tar version. These macros no longer
7704 futz with _XOPEN_SOURCE, as that was not portable in practice.
7705 (AC_FUNC_FSEEKO): New macro.
7706
7707 * configure.in: Use it instead of invoking AC_CHECK_FUNCS on
7708 ftello.
7709
7710 2000-12-05 Dave Love <fx@gnu.org>
7711
7712 * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
7713
7714 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
7715
7716 * info/dir: Change the category to "Emacs".
7717
7718 2000-12-01 Gerd Moellmann <gerd@gnu.org>
7719
7720 * make-dist (tempdir): Remove epaths.h from the distribution
7721 instead of paths.h.
7722
7723 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
7724
7725 * config.bat: Check for existence of djecho.exe, and print an
7726 error message if it is not available.
7727
7728 * INSTALL: Describe possible problem with djecho.exe in old
7729 versions of DJGPP v2.x.
7730
7731 2000-11-23 Gerd Moellmann <gerd@gnu.org>
7732
7733 * configure.in: Initialize HAVE_LIBXP to no.
7734
7735 2000-11-22 Gerd Moellmann <gerd@gnu.org>
7736
7737 * configure.in: Use m/macppc.h instead of the non-existent
7738 m/powerpc.h.
7739
7740 2000-11-21 Gerd Moellmann <gerd@gnu.org>
7741
7742 * Makefile.in (install-arch-indep): Also install info/eshell*
7743 and info/speedbar*.
7744
7745 * configure.in (HAVE_PNG): Check for the presence of
7746 png_get_channels to rule out older PNG libs.
7747
7748 * configure.in (AC_OUTPUT): Arrange to emit definitions of
7749 GCC and NON_GNU_CPP into config.status.
7750
7751 2000-11-20 Dave Love <fx@gnu.org>
7752
7753 * configure.in: Fix last change.
7754
7755 * GETTING.GNU.SOFTWARE: Deleted.
7756 * FTP: New file to replace it.
7757 * make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
7758
7759 2000-11-20 Gerd Moellmann <gerd@gnu.org>
7760
7761 * configure.in: Use -traditional with GNU cpp.
7762
7763 2000-11-17 Gerd Moellmann <gerd@gnu.org>
7764
7765 * make-dist: Handle the Mac port. Distribute all makefile.w32-in.
7766 Distribute more files from the nt/ subdir. Distribute PBM
7767 image files from subdirs of lisp/. Distribute old change logs
7768 from subdirs of lisp/. Distribute play/5x5.el.
7769
7770 2000-11-11 Dave Love <fx@gnu.org>
7771
7772 * config.sub, config.guess: Updated from master source.
7773
7774 2000-11-07 Dave Love <fx@gnu.org>
7775
7776 * configure.in: Test for mkstemp.
7777
7778 2000-11-01 Eli Zaretskii <eliz@is.elta.co.il>
7779
7780 * info/dir (Top): Rearrange menu items more logically, and put
7781 them into a single category. Add menu items for RefTeX and
7782 Widget.
7783
7784 2000-10-29 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7785
7786 * Makefile.in (install-arch-indep): Use --info-dir instead of
7787 --dir-file, and a simple argument instead of --info-file, so that
7788 the Debian version of install-info also works.
7789
7790 2000-10-19 Eric M. Ludlam <zappo@ultranet.com>
7791
7792 * info/dir (Speedbar): Add entry.
7793
7794 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
7795
7796 * INSTALL: Describe the new image-support options to the configure
7797 script. List URLs where image support libraries can be found.
7798
7799 2000-10-14 Eli Zaretskii <eliz@is.elta.co.il>
7800
7801 * info/dir (Top): Add an entry for Eshell.
7802
7803 2000-10-02 Dave Love <fx@gnu.org>
7804
7805 * configure.in: Check for gai_strerror.
7806
7807 2000-10-01 Andreas Schwab <schwab@suse.de>
7808
7809 * Makefile.in (install-arch-indep): Update list of installed info files.
7810
7811 2000-09-30 Gerd Moellmann <gerd@gnu.org>
7812
7813 * configure.in: Support `sparc*-*-netbsd*'.
7814
7815 2000-09-29 Eli Zaretskii <eliz@is.elta.co.il>
7816
7817 * info/dir (MIME): Add entry for emacs-mime.
7818
7819 2000-09-29 Dave Love <fx@gnu.org>
7820
7821 * configure.in: Fix alpha*-dec-osf4 using the osf5 config.
7822
7823 2000-09-26 Gerd Moellmann <gerd@gnu.org>
7824
7825 * make-dist: Adapt to the change of leim/Makefile which was
7826 necessary to ensure a reasonably working `make dist'.
7827
7828 * leim-Makefile.in: Moved to leim/Makefile.in..
7829
7830 * noleim-Makefile.in: New file, formerly leim/Makefile.in.
7831
7832 2000-09-21 Kenichi Handa <handa@etl.go.jp>
7833
7834 * leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
7835 (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
7836 (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
7837 files to .elc.
7838 (${TIT}): Adjust for the above change.
7839 (clean mostlyclean): Likewise.
7840 (.el.elc): New target.
7841
7842 2000-09-19 Gerd Moellmann <gerd@gnu.org>
7843
7844 * make-dist: Include XPM and XBM files in lisp/ and subdirs
7845 in the distribution.
7846
7847 2000-09-18 Gerd Moellmann <gerd@gnu.org>
7848
7849 * make-dist (skk): Rename to `ja-dic' because the leim directory
7850 was renamed.
7851
7852 2000-09-14 Dave Love <fx@gnu.org>
7853
7854 * configure.in: Fix spurion in last change.
7855
7856 2000-09-14 Gerd Moellmann <gerd@gnu.org>
7857
7858 * configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
7859 configuration files instead of REL_ALLOC_MMAP. Set REL_ALLOC
7860 to `no' if defined. Change result report.
7861
7862 2000-09-08 Dave Love <fx@gnu.org>
7863
7864 * configure.in: Remove spurious `@'s.
7865
7866 * aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
7867 autoconf.
7868
7869 2000-09-06 Gerd Moellmann <gerd@gnu.org>
7870
7871 * configure.in (REL_ALLOC_MMAP): Recognize in system configuration
7872 file and print informational message.
7873
7874 * configure.in (AC_FUNC_MMAP): Add.
7875
7876 2000-09-01 Gerd Moellmann <gerd@gnu.org>
7877
7878 * configure.in: Add ``checking'' messages for
7879 XpmReturnAllocPixels.
7880
7881 2000-08-28 Gerd Moellmann <gerd@gnu.org>
7882
7883 * configure.in: Check <strings.h>; check `index' and `rindex'
7884 functions.
7885
7886 2000-08-26 Kenichi Handa <handa@etl.go.jp>
7887
7888 * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
7889 "case "${canonical}" in".
7890
7891 2000-08-25 Dave Love <fx@gnu.org>
7892
7893 * configure.in <osf>: Use NON_GNU_CPP='cpp' always.
7894
7895 2000-08-25 Kenichi Handa <handa@etl.go.jp>
7896
7897 * leim-Makefile.in: Rename skk to ja-dic throughout the file.
7898
7899 2000-08-24 Gerd Moellmann <gerd@gnu.org>
7900
7901 * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
7902 contains a relative path. Protect against unusable values of $PWD.
7903
7904 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
7905
7906 * info/dir (WoMan): Add entry.
7907
7908 * config.bat (maindir): Update src/_gdbinit even if it does
7909 already exist.
7910
7911 2000-08-07 Gerd Moellmann <gerd@gnu.org>
7912
7913 * Makefile.in (config.status): Prepend `$(srcdir)/' to `configure'.
7914
7915 2000-08-03 Gerd Moellmann <gerd@gnu.org>
7916
7917 * configure.in: Add support for ia64*-*-linux*.
7918
7919 2000-07-27 Gerd Moellmann <gerd@gnu.org>
7920
7921 * make-dist (aclocal.m4): Include in distribution.
7922
7923 2000-07-26 Dave Love <fx@gnu.org>
7924
7925 * configure.in (AC_SYS_LARGEFILE): Move earlier.
7926
7927 2000-07-24 Dave Love <fx@gnu.org>
7928
7929 * configure.in: Add AC_SIZE_T.
7930
7931 2000-07-18 Dave Love <fx@gnu.org>
7932
7933 * configure.in: Reorder so that most tests are done after CPPFLAGS
7934 is set from the C_SWITCH_... definitions.
7935
7936 2000-07-10 Gerd Moellmann <gerd@gnu.org>
7937
7938 * configure.in (HAVE_XPM): Undo previous change. Check for
7939 preprocessor define XpmReturnAllocPixels.
7940
7941 2000-07-06 Gerd Moellmann <gerd@gnu.org>
7942
7943 * configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
7944 instead of XpmReadFileToPixmap.
7945
7946 2000-07-05 Ken Raeburn <raeburn@gnu.org>
7947
7948 * configure.in: Check for <soundcard.h>. Look for ossaudio
7949 library, and set LIBSOUND accordingly.
7950
7951 2000-07-05 Dave Love <fx@gnu.org>
7952
7953 * configure.in: Use AC_HEADER_SYS_WAIT.
7954
7955 2000-07-05 Gerd Moellmann <gerd@gnu.org>
7956
7957 * make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
7958 lisp/Makefile. Distribute lisp/Makefile.in instead of
7959 lisp/Makefile.
7960
7961 2000-06-30 Ken Raeburn <raeburn@gnu.org>
7962
7963 * configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
7964 while searching for image-handling libraries.
7965
7966 2000-06-26 Gerd Moellmann <gerd@gnu.org>
7967
7968 * configure.in (--with-xim): New option.
7969
7970 2000-06-23 Dave Love <fx@gnu.org>
7971
7972 * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
7973 for struct timezone and test how we can call gettimeofday.
7974 Check for OSF 5+. Check for term.h.
7975
7976 * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
7977 version.
7978
7979 2000-06-23 Gerd Moellmann <gerd@gnu.org>
7980
7981 * configure.in (HAVE_LIBXP): Change test for libXp.
7982
7983 2000-06-21 Dave Love <fx@gnu.org>
7984
7985 * configure.in: Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not
7986 simple test for getloadavg and substitute GETLOADAVG_LIBS.
7987 Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
7988
7989 2000-06-19 Dave Love <fx@gnu.org>
7990
7991 * configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
7992 _XOPEN_SOURCE is defined.
7993
7994 2000-06-16 Gerd Moellmann <gerd@gnu.org>
7995
7996 * Makefile.in (distclean): Also make distclean in lisp/.
7997
7998 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
7999
8000 * config.bat: Generate lisp/Makefile from lisp/Makefile.in.
8001
8002 2000-06-15 Gerd Moellmann <gerd@gnu.org>
8003
8004 * make-dist: Add --help and --snapshot options.
8005
8006 2000-06-14 Gerd Moellmann <gerd@gnu.org>
8007
8008 * configure.in: Generate lisp/Makefile.
8009
8010 * configure.in: Add support for `*-lynxos*'.
8011 Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
8012 recommended by <Karen.Dorhamer@compaq.com> to fix problems
8013 on Tru64 UNIX v5.0.
8014
8015 2000-06-13 Ken Raeburn <raeburn@gnu.org>
8016
8017 * Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
8018 it's on a continuation line.
8019
8020 2000-06-02 Dave Love <fx@gnu.org>
8021
8022 * Makefile.in (install-arch-indep): Add pcl-cvs to list of info
8023 files.
8024
8025 * configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
8026 Check for struct exception. Use AC_SYS_LARGEFILE and move ftello
8027 test.
8028
8029 * aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
8030 (AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
8031
8032 2000-05-26 Gerd Moellmann <gerd@gnu.org>
8033
8034 * configure.in: Add check for speed_t typedef.
8035
8036 2000-05-25 Ken Raeburn <raeburn@gnu.org>
8037
8038 * Makefile.in (install-arch-dep): Install fns-*.el only if it
8039 exists; it won't in the CANNOT_DUMP case.
8040
8041 2000-05-25 Gerd Moellmann <gerd@gnu.org>
8042
8043 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
8044 On FreeBSD, the exit status is 1 if CDPATH is not set.
8045 (install-arch-indep): Install ebrowse.info.
8046
8047 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
8048
8049 * configure.in: Check for grandpt and getpt.
8050
8051 2000-05-09 Dave Love <fx@gnu.org>
8052
8053 * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
8054
8055 2000-05-05 Gerd Moellmann <gerd@gnu.org>
8056
8057 * make-dist: Make a link for lib-src/grep-changelog.
8058 Copy install-sh.
8059
8060 2000-05-01 Eli Zaretskii <eliz@is.elta.co.il>
8061
8062 * config.bat: Identify the beginning of the cpp stuff in
8063 src/Makefile.in and lib-src/Makefile.in more accurately.
8064
8065 2000-04-27 Gerd Moellmann <gerd@gnu.org>
8066
8067 * configure.in: Add support for `powerpc*-*-linux-gnu*'.
8068
8069 2000-04-19 Gerd Moellmann <gerd@gnu.org>
8070
8071 * configure.in: Add support for `powerpc-*-netbsd*'.
8072
8073 2000-04-19 Dave Love <fx@gnu.org>
8074
8075 * configure.in: Don't use AC_FUNC_GETLOADAVG.
8076
8077 * aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
8078
8079 2000-04-16 Dave Love <fx@gnu.org>
8080
8081 * Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
8082
8083 2000-04-14 Dave Love <fx@gnu.org>
8084
8085 * configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
8086
8087 * aclocal.m4 (AC_FUNC_MKTIME): New.
8088
8089 2000-03-28 Ken Raeburn <raeburn@gnu.org>
8090
8091 * configure.in: Line up "--help" output a little better.
8092
8093 2000-03-26 Gerd Moellmann <gerd@gnu.org>
8094
8095 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
8096 New targets.
8097 (bootstrap): Rewritten in terms of the new targets above.
8098 Make info files, too.
8099
8100 2000-03-12 Gerd Moellmann <gerd@gnu.org>
8101
8102 * config.guess, config.sub: Use the versions of the files from
8103 subversions.
8104
8105 2000-03-08 Dave Love <fx@gnu.org>
8106
8107 * configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
8108 AC_C_VOLATILE. Define POINTER_TYPE.
8109
8110 * aclocal.m4: New file.
8111
8112 2000-03-02 Gerd Moellmann <gerd@gnu.org>
8113
8114 * configure.in (machine): Add `mipsel-*-netbsd*' and
8115 `arm-*-netbsd*'.
8116
8117 2000-03-01 Gerd Moellmann <gerd@gnu.org>
8118
8119 * configure.in (machine): Add support for `*-auspex-sunos*'.
8120
8121 2000-02-29 Gerd Moellmann <gerd@gnu.org>
8122
8123 * configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
8124
8125 2000-02-18 Dave Love <fx@gnu.org>
8126
8127 * configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
8128
8129 2000-02-18 Andreas Schwab <schwab@suse.de>
8130
8131 * Makefile.in (install-arch-indep): Add eudc to list of installed
8132 info files.
8133
8134 2000-02-17 Ken Raeburn <raeburn@gnu.org>
8135
8136 * configure.in: Include -lz and -ljpeg (if it's available) when
8137 testing for the tiff library.
8138
8139 2000-02-17 Gerd Moellmann <gerd@gnu.org>
8140
8141 * configure.in: Remove LISP_FLOAT_TYPE.
8142
8143 2000-02-12 Dave Love <fx@gnu.org>
8144
8145 * configure.in: Use AC_FUNC_VFORK.
8146
8147 2000-02-01 Gerd Moellmann <gerd@gnu.org>
8148
8149 * make-dist: Various fixes for new development tree.
8150
8151 * leim-Makefile.in: New file.
8152
8153 2000-01-31 Gerd Moellmann <gerd@gnu.org>
8154
8155 * Makefile.in (dist): Call ./make-dist.
8156
8157 2000-01-24 Dave Love <fx@gnu.org>
8158
8159 * configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
8160
8161 2000-01-18 Gerd Moellmann <gerd@gnu.org>
8162
8163 * configure.in (HAVE_GIF): Check for DGifOpen instead of
8164 DGifOpenFileName.
8165
8166 2000-01-11 Andreas Schwab <schwab@suse.de>
8167
8168 * Makefile.in (install-arch-indep): Update list of info files to
8169 be installed.
8170
8171 2000-01-05 Dave Love <fx@gnu.org>
8172
8173 * configure.in: Check for jerror.h as well as libjpeg.
8174
8175 2000-01-03 Andreas Schwab <schwab@suse.de>
8176
8177 * Makefile.in (install-arch-indep): Install autotype*.
8178 Run install-info on autotype and emacs-faq.info.
8179
8180 1999-12-04 Dave Love <fx@gnu.org>
8181
8182 * Makefile.in (install-arch-indep): Depend on `info'.
8183 (install-strip): Use `install' as sub-make target.
8184
8185 1999-11-23 Ken Raeburn <raeburn@gnu.org>
8186
8187 * configure.in: Restore Kerberos code deleted on 1999-05-29 that
8188 didn't need to be deleted. Check for the k5crypto library as well
8189 as the crypto library; MIT Kerberos 1.1 changed the name.
8190
8191 1999-11-18 Dave Love <fx@gnu.org>
8192
8193 * configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
8194
8195 1999-11-11 Erik Naggum <erik@naggum.no>
8196
8197 * configure.in (bitmapdir): Allow for both "bitmaps" directories.
8198
8199 1999-11-08 Dave Love <fx@gnu.org>
8200
8201 * configure.in: Fix change for --with-pop default.
8202
8203 1999-11-04 Dave Love <fx@gnu.org>
8204
8205 * configure.in: Default to --with-pop. Change sense of with-gcc
8206 and with-toolkit-scroll-bars messages to reflect the defaults.
8207
8208 1999-11-01 Gerd Moellmann <gerd@gnu.org>
8209
8210 * INSTALL: Mention the Emacs Lisp Reference.
8211
8212 1999-10-27 Noah Friedman <friedman@splode.com>
8213
8214 * configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
8215
8216 1999-10-23 Gerd Moellmann <gerd@gnu.org>
8217
8218 * Makefile.in (bootstrap): New target.
8219
8220 1999-10-19 Paul Eggert <eggert@twinsun.com>
8221
8222 Add support for large files. Merge glibc 2.1.2.
8223
8224 * configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
8225 (HAVE_TM_GMTOFF): New symbol.
8226 (AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
8227 mbrlen, strsignal.
8228 (LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
8229
8230 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
8231
8232 * make-dist (dontcompile): Look for the DONTCOMPILE variable rather
8233 than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
8234
8235 1999-10-09 Richard M. Stallman <rms@gnu.org>
8236
8237 * Makefile.in (uninstall, install-arch-indep, install-arch-dep):
8238 Unset CDPATH to prevent cd from generating output.
8239
8240 1999-10-08 Stefan Monnier <monnier@cs.yale.edu>
8241
8242 * update-subdirs: Also ignore CVS subdirs.
8243
8244 1999-10-07 Gerd Moellmann <gerd@gnu.org>
8245
8246 * Makefile.in (install-arch-indep): Add ada-mode.
8247
8248 1999-10-06 Dave Love <fx@gnu.org>
8249
8250 * Makefile.in: Add rules for config.status, configure.
8251
8252 1999-09-07 Gerd Moellmann <gerd@gnu.org>
8253
8254 * configure.in (--with-sound): Remove.
8255
8256 1999-08-30 Gerd Moellmann <gerd@gnu.org>
8257
8258 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
8259 the test for Xaw3d.
8260 (HAVE_TIFF): Add -lm to library check.
8261
8262 1999-08-28 Richard Stallman <rms@gnu.org>
8263
8264 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
8265 -lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
8266 after the other X-related libraries.
8267
8268 1999-08-21 Dave Love <fx@gnu.org>
8269
8270 * configure.in: Don't check for jpeglib.h.
8271
8272 1999-08-20 Gerd Moellmann <gerd@gnu.org>
8273
8274 * configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
8275 (HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
8276
8277 1999-08-18 Dave Love <fx@gnu.org>
8278
8279 * configure.in: Check for termcap.h.
8280
8281 1999-08-15 Gerd Moellmann <gerd@gnu.org>
8282
8283 * configure.in: Add --with-toolkit-scroll-bars. If "no",
8284 use Emacs' scroll bars, even if configured for Motif or when
8285 Xaw3d is available.
8286
8287 1999-08-12 Wolfgang Rupprecht <wolfgang@wsrcc.com>
8288
8289 * configure.in: Check for getaddrinfo.
8290
8291 1999-08-04 Eli Zaretskii <eliz@gnu.org>
8292
8293 * config.bat: Make --no-debug work again by removing -gcoff.
8294
8295 1999-07-30 Dave Love <fx@gnu.org>
8296
8297 * configure.in: Check for stdlib.h.
8298
8299 1999-07-19 Dave Love <fx@gnu.org>
8300
8301 * configure.in: Grok sparc64-*-linux-gnu*.
8302
8303 1999-07-12 Richard Stallman <rms@gnu.org>
8304
8305 * Version 20.4 released.
8306
8307 1999-06-23 Karl Heuer <kwzh@gnu.org>
8308
8309 * make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
8310 Quote $EMACS, in case it's a program with args.
8311
8312 1999-06-15 Gerd Moellmann <gerd@gnu.org>
8313
8314 * configure.in (HAVE_GIF): Use libungif instead of libgif
8315 because the former doesn't contain patented compression code.
8316
8317 1999-05-29 Richard M. Stallman <rms@gnu.org>
8318
8319 * configure.in: Delete the Kerberos stuff.
8320
8321 1999-05-27 Greg Hudson <ghudson@mit.edu>
8322
8323 * configure.in: Prefer kerberos 5 names.
8324
8325 1999-04-26 Richard M. Stallman <rms@gnu.org>
8326
8327 * configure.in: Check for libXp.
8328
8329 1999-04-08 Richard Stallman <rms@gnu.org>
8330
8331 * make-dist: Include change logs in subdirs of `lisp'.
8332
8333 1999-04-05 Richard Stallman <rms@gnu.org>
8334
8335 * Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
8336 (install-arch-indep): Make ${datadir}/emacs world-readable.
8337
8338 1999-03-30 Eli Zaretskii <eliz@gnu.org>
8339
8340 * config.bat: Use epaths.* instead of paths.*.
8341
8342 1999-03-07 Eli Zaretskii <eliz@gnu.org>
8343
8344 * INSTALL: Add detailed instructions to unpack and install
8345 intlfonts on MS-DOS.
8346
8347 1999-02-26 Richard Stallman <rms@gnu.org>
8348
8349 * configure.in: Use epaths.h and epaths-force instead of paths...
8350
8351 * Makefile.in (epaths-force): Rename from paths-force;
8352 operate on epaths.in and produce epaths.h.
8353
8354 1999-02-24 Richard Stallman <rms@gnu.org>
8355
8356 * make-dist: Fix nt/icons directory handling.
8357
8358 1999-02-22 Simon Josefsson <jas@pdc.kth.se>
8359
8360 * configure.in (f301-fujitsu-uxpv4.1): New target.
8361
8362 1999-02-20 Richard Stallman <rms@gnu.org>
8363
8364 * make-dist (tempparent): Fix command to update info files.
8365
8366 1999-02-09 Richard Stallman <rms@gnu.org>
8367
8368 * configure.in (powerpc-apple-netbsd*): New alternative.
8369
8370 1999-01-25 Geoff Voelker <voelker@cs.washington.edu>
8371
8372 * make-dist: Include the new directory nt/icons in distributions.
8373
8374 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
8375
8376 * configure.in: Change message about HAVE_XFREE386.
8377
8378 1999-01-07 Eli Zaretskii <eliz@gnu.org>
8379
8380 * config.bat: Support configuring with leim.
8381
8382 1998-12-16 Petri Kaurinkoski <Petri.Kaurinkoski@hut.fi>
8383
8384 * configure.in (mips-sgi-irix6.5): New target.
8385
8386 1998-12-16 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
8387
8388 * configure.in: Remove GSS-API support, since it has been removed
8389 from movemail.
8390
8391 1998-12-04 Markus Rost <rost@delysid.gnu.org>
8392
8393 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
8394
8395 1998-12-04 Andreas Schwab <schwab@delysid.gnu.org>
8396
8397 * Makefile.in: Don't install customize info file.
8398 Run install-info on viper info file.
8399
8400 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
8401
8402 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
8403
8404 1998-11-16 Kenichi Handa <handa@etl.go.jp>
8405
8406 * configure.in (*-*-bsdi4*): New target.
8407
8408 1998-11-13 Ehud Karni <ehud@unix.simonwiesel.co.il>
8409
8410 * configure.in: Fix previous change.
8411
8412 1998-11-11 Richard Stallman <rms@gnu.org>
8413
8414 * configure.in (aviion-intel): New machine.
8415
8416 1998-11-04 Kenichi Handa <handa@etl.go.jp>
8417
8418 * configure.in (mips-nec-sysv4*): New target.
8419
8420 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
8421
8422 * Makefile.in (install-arch-dep): Fix last change and use fns-*.el
8423 from lisp.
8424
8425 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
8426
8427 * make-dist: Don't include fns*.el in dist.
8428
8429 1998-10-30 Dave Love <fx@gnu.org>
8430
8431 * configure.in: Don't mkdir cpp.
8432
8433 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
8434
8435 * Makefile.in (install-arch-dep): Install src/fns-*.el in
8436 ${archlibdir}.
8437
8438 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
8439
8440 * Version 20.3 released.
8441
8442 1998-07-30 Paul Eggert <eggert@twinsun.com>
8443
8444 * Makefile.in (Makefile, src/Makefile, src/config.stamp)
8445 (lib-src/Makefile, man/Makefile, oldXMenu/Makefile)
8446 (lwlib/Makefile, leim/Makefile):
8447 Prepend $(srcdir)/ to rule dependencies outside this dir.
8448
8449 1998-06-30 Richard Stallman <rms@psilocin.ai.mit.edu>
8450
8451 * configure.in: Use unset CDPATH instead of making it empty.
8452
8453 1998-06-20 Karl Heuer <kwzh@gnu.org>
8454
8455 * configure.in: Assume unspecified Solaris is 2.5, not 2.4.
8456
8457 1998-06-07 Richard Stallman <rms@psilocin.ai.mit.edu>
8458
8459 * make-dist (MANIFEST): Include most subdirs, but exclude subdirs.el
8460 and default.el. Sort the results.
8461
8462 1998-05-31 Karl Heuer <kwzh@gnu.org>
8463
8464 * Makefile.in (install-arch-indep): Don't die if site-lisp/ isn't
8465 writable.
8466
8467 1998-05-14 Richard Stallman <rms@psilocin.ai.mit.edu>
8468
8469 * Makefile.in (install-arch-indep):
8470 Don't alter site-lisp/subdirs.el if it exists.
8471
8472 1998-05-12 Richard Stallman <rms@psilocin.ai.mit.edu>
8473
8474 * Makefile.in (install-arch-indep): Put `-' on commands to create
8475 subdirs.el in site-lisp dirs.
8476
8477 1998-05-07 Richard Stallman <rms@psilocin.gnu.org>
8478
8479 * Makefile.in (install-arch-indep): Fix typo in previous change.
8480
8481 1998-05-06 Richard Stallman <rms@psilocin.gnu.org>
8482
8483 * Makefile.in (install-arch-indep): Pass --dir-file to install-info.
8484
8485 1998-04-28 Richard Stallman <rms@psilocin.gnu.org>
8486
8487 * Makefile.in (mkdir): Create the site-lisp dirs.
8488 (install-arch-indep): Make site-lisp/subdirs files world-readable.
8489
8490 1998-04-26 Richard Stallman <rms@psilocin.gnu.org>
8491
8492 * Makefile.in (INSTALL_INFO): New variable.
8493 (install-arch-indep): Don't replace the dir file if it already exists.
8494 Use the install-info program, via INSTALL_INFO, to add entries.
8495 Make the `info' subdir and the Info files world-readable.
8496
8497 1998-04-16 Eli Zaretskii <eliz@delysid.gnu.org>
8498
8499 * config.bat: Make sure the environment is large enough to support
8500 all the "set foo=bar" commands. Update pointers to DJGPP FTP sites.
8501
8502 1998-04-10 Karl Heuer <kwzh@gnu.org>
8503
8504 * make-dist: Don't accept EMACS=t when testing for $EMACS set.
8505
8506 1998-04-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
8507
8508 * configure.in: Add --with-gssapi to specify GSS-API
8509 authentication support for movemail.
8510
8511 1998-04-02 Richard Stallman <rms@psilocin.ai.mit.edu>
8512
8513 * Makefile.in (install-arch-indep): Fix previous change.
8514
8515 1998-03-30 Richard Stallman <rms@psilocin.ai.mit.edu>
8516
8517 * Makefile.in (info): Run man in build dir, not srcdir.
8518
8519 1998-03-28 Richard Stallman <rms@psilocin.ai.mit.edu>
8520
8521 * Makefile.in (install-arch-indep): Fix previous change.
8522
8523 1998-03-23 Kenichi Handa <handa@etl.go.jp>
8524
8525 * Makefile.in (top_distclean): Check the existence of `lock' subdir.
8526
8527 1998-03-22 Richard Stallman <rms@gnu.org>
8528
8529 * Makefile.in (install-arch-indep): Put special subdirs.el files
8530 in site-lisp dirs. Use normal-top-level-add-subdirs-to-load-path.
8531
8532 1998-03-21 Richard Stallman <rms@psilocin.gnu.org>
8533
8534 * make-dist: Fix shell syntax in check for missing .el or .elc files.
8535
8536 1998-03-09 Richard Stallman <rms@psilocin.gnu.org>
8537
8538 * configure.in (hppa-hp-hpux1[0-9]*): Handle versions 1X like 10.
8539 (m68*-hp-hpux*): Handle versions 1X like 10.
8540
8541 1998-03-07 Richard Stallman <rms@psilocin.gnu.org>
8542
8543 * make-dist: PROBLEMS is now in etc, not top level dir.
8544
8545 * Makefile.in (SOURCES): Delete PROBLEMS.
8546
8547 1998-02-25 Richard Stallman <rms@gnu.org>
8548
8549 * configure.in (hppa*-hp-hpux*): Use hpux10 by default.
8550
8551 * Makefile.in (install-arch-indep): Do chmod a+x on subdirs.
8552
8553 1998-01-17 Richard Stallman <rms@gnu.org>
8554
8555 * Makefile.in (install-arch-indep): Add semicolon before `else'.
8556
8557 1998-01-02 Richard Stallman <rms@psilocin.gnu.org>
8558
8559 * make-dist (tempparent): New option --no-check.
8560
8561 * make-dist: Don't do anything with cpp directory.
8562
8563 1997-12-20 Richard Stallman <rms@psilocin.gnu.org>
8564
8565 * configure.in (sparc-fujitsu-sysv4*): New target.
8566
8567 1997-12-17 Andreas Schwab <schwab@gnu.org>
8568
8569 * configure.in: Cache more tests. Add missing quotes around
8570 message with embedded comma.
8571
8572 1997-12-04 Karl Heuer <kwzh@gnu.org>
8573
8574 * Makefile.in (unlock, relock): Don't reference cpp/ directory.
8575
8576 1997-11-26 Joel N. Weber II <devnull@gnu.org>
8577
8578 * make-dist: Changed the comment about `umask 0' to say `Don't
8579 restrict access to any files.'; previously it said `Don't protect
8580 any files', which may have implied that we think fascism is good.
8581
8582 1997-11-24 Paul Eggert <eggert@twinsun.com>
8583
8584 * configure.in (AC_CHECK_FUNCS): Add strftime. The new GNU C library
8585 strftime needs the underlying host's strftime for locale dependent
8586 formats.
8587
8588 1997-11-20 Abraham Nahum <miko@uxsrvc.tti.co.il>
8589
8590 * configure.in (i586-dg-dguxR4.*): New name in case branch.
8591
8592 1997-11-20 Eli Zaretskii <eliz@is.elta.co.il>
8593
8594 * config.bat: Configure the man subdirectory.
8595
8596 1997-11-07 Paul Eggert <eggert@twinsun.com>
8597
8598 * configure.in (AC_CHECK_LIB): Add -lintl.
8599
8600 1997-11-07 Karl Heuer <kwzh@gnu.org>
8601
8602 * make-dist (check for .elc files): Avoid bash-specific syntax.
8603 (check for overflow 14-char limit): Simplify.
8604
8605 1997-11-07 Richard Stallman <rms@gnu.org>
8606
8607 * Makefile.in (install): Move blessmail last.
8608
8609 1997-10-02 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8610
8611 * configure.in (gettimeofday, one arg or two):
8612 Clarify messages by avoiding double negative.
8613
8614 1997-09-30 Karl Eichwalder <ke@suse.de>
8615
8616 * Makefile.in (install-arch-indep): Install the widget info file.
8617
8618 1997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
8619
8620 * configure.in (with-pop, with-kerberos): Need to check Kerberos
8621 libraries in reverse order, so that libraries will appear in the
8622 correct dependency order on the link line (and so that the
8623 configure checks themselves will work properly when early
8624 libraries depend on later ones).
8625
8626 1997-09-21 Erik Naggum <erik@naggum.no>
8627
8628 * make-dist (making links to `src'): Keep timestamp on copied files.
8629
8630 * make-delta: New script to produce delta distributions.
8631
8632 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8633
8634 * Version 20.2 released.
8635
8636 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8637
8638 * Version 20.1 released.
8639
8640 * Makefile.in (install-leim): Depend on mkdir.
8641 (leim): Depend on src.
8642
8643 1997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8644
8645 * configure.in: Recognize alpha* instead of just alpha.
8646
8647 1997-09-12 Paul Eggert <eggert@twinsun.com>
8648
8649 * leim-Makefile.in (mostlyclean, maintainer-clean): New targets.
8650
8651 1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8652
8653 * update-subdirs: Use rm -f.
8654
8655 1997-09-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8656
8657 * update-subdirs: Delete subdirs.el if this dir has no subdirs.
8658 Ignore subdirs named Old.
8659
8660 1997-08-04 Kenneth Stailey <kstailey@elbereth.disclosure.com>
8661
8662 * configure.in: Add OpenBSD clause to set $machine.
8663
8664 1997-09-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8665
8666 * make-dist: Recompile everything after updating various Lisp files.
8667 Recompile in leim as well as lisp.
8668 Check in leim as well as lisp for mismatched files and too-long names.
8669
8670 1997-09-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8671
8672 * Makefile.in (TAGS tags): Simply refer this to the src subdir.
8673
8674 1997-08-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8675
8676 * Makefile.in (install-arch-indep): Verify ./lisp has simple.el in it
8677 before trying to copy anything from it.
8678
8679 1997-08-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8680
8681 * Makefile.in (man/Makefile): New target.
8682 (tags): Define env var EMACS and run Makefile from build dir.
8683
8684 1997-08-27 Eli Zaretskii <eliz@psilocin.gnu.ai.mit.edu>
8685
8686 * config.bat: If src/_gdbinit doesn't exist, try using
8687 src/.gdbinit to create it (for building on Windows 95).
8688
8689 1997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8690
8691 * Makefile.in (install-arch-indep):
8692 Discard extra data in tar | tar pipes.
8693
8694 1997-08-24 NIIBE Yutaka <gniibe@mri.co.jp>
8695
8696 * configure.in (x_default_search_path):
8697 Corrected '${x_library}' to '${x_library}/X11'.
8698
8699 1997-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8700
8701 * configure.in (HAVE_MOTIF_2_1): Test for Motif 2.1.
8702
8703 1997-08-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
8704
8705 * configure.in: Support auto-configuration of both Kerberos V4 and
8706 Kerberos V5 for movemail, including detection of V4 and V5 header
8707 files and libraries.
8708
8709 1997-08-16 NIIBE Yutaka <gniibe@etl.go.jp>
8710
8711 * configure.in: Compute x_default_search_path
8712 and substitute into makefiles.
8713
8714 * Makefile.in (paths-force): Store PATH_X_DEFAULTS in paths.h.
8715
8716 1997-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8717
8718 * Makefile.in (install-arch-indep): Run list-load-path-shadows.
8719
8720 1997-08-07 Erik Naggum <erik@naggum.no>
8721
8722 * configure.in: Remove lockdir, it is no longer needed.
8723 * Makefile.in (mkdir): Don't create lockdir.
8724 (lockdir): Variable deleted.
8725 (paths-force): Don't operate on PATH_LOCK.
8726
8727 1997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8728
8729 * leim-Makefile.in (clean, distclean): New targets.
8730
8731 * make-dist: Include leim/ChangeLog in leim distribution.
8732
8733 1997-08-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8734
8735 * configure.in (i*86-*-sysv4.2uw*): Set NON_GNU_CPP.
8736
8737 1997-07-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8738
8739 * Makefile.in (CPPFLAGS): Get this from configure, like CFLAGS.
8740
8741 1997-07-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8742
8743 * Makefile.in (LDFLAGS): Get this from configure, like CFLAGS.
8744
8745 1997-07-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8746
8747 * make-dist: Update leim/leim-list.el.
8748 Pass along value of $EMACS when updating lisp dir.
8749
8750 1997-07-25 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
8751
8752 * configure.in (doug_lea_malloc): Make __after_morecore_hook a
8753 prerequisite to the use of Doug Lea's malloc.
8754
8755 1997-07-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8756
8757 * Makefile.in (top_distclean): Use -f to delete contents of lock dir.
8758
8759 * make-dist: Use name leim/SKK-DIC, not leim/SKK.
8760
8761 1997-07-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8762
8763 * make-dist: Arrange for the leim tar file to unpack in emacs-M.N/leim.
8764
8765 1997-07-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8766
8767 * configure.in (mips-sony-newsos6*): File news-risc.h renamed
8768 to news-r6.h.
8769
8770 1997-07-10 Eli Zaretskii <eliz@is.elta.co.il>
8771
8772 * config.bat: Use `sed' instead of `cp', which might not be
8773 installed.
8774
8775 1997-07-09 Kenichi Handa <handa@etl.go.jp>
8776
8777 * Makefile.in (mostlyclean): Add cleaning leim directory.
8778 (clean, distclean, maintainer-clean): Likewise.
8779
8780 1997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8781
8782 * make-dist (bogosities): Check subdirs of `lisp' also.
8783
8784 1997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8785
8786 * make-dist (etc): Really avoid symlinks now.
8787 (lisp): Don't delete from subdirs the things we never copy.
8788
8789 1997-07-07 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
8790
8791 * Makefile.in (install-arch-indep): Correct the target name.
8792 The first letter `i' was dropped by the previous change of mine.
8793
8794 1997-07-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8795
8796 * configure.in (leim/Makefile): Generate this.
8797 (*-sysv4.2uw*): Recognize new alternative.
8798
8799 * leim-Makefile.in: Renamed from leim-Makefile.
8800
8801 * make-dist: Set up real-leim subdirectory,
8802 with the real contents of leim; then move it to
8803 a separate top-level directory.
8804
8805 * make-dist: Don't mention site-lisp, site-init, site-start
8806 or default, when listing files hat are not compiled and should be.
8807
8808 * configure.in: Create src/config.stamp at the end.
8809
8810 1997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8811
8812 * Makefile.in (install-leim): Correct previous change.
8813
8814 1997-07-02 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
8815
8816 * Makefile.in (install-leim): New target.
8817 (install): Depend on install-leim.
8818
8819 1997-07-01 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
8820
8821 * Makefile.in (SUBDIR): Add leim.
8822 (SUBDIR_MAKEFILES): Add leim/Makefile.
8823 (leim/Makefile): New target.
8824
8825 1997-07-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8826
8827 * leim-Makefile: New file.
8828 * make-dist: Initialize a `leim' subdirectory with that makefile.
8829
8830 1997-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8831
8832 * configure.in (GNU_MALLOC_reason): Fix message text.
8833
8834 1997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8835
8836 * make-dist (lisp): Don't process subdirs that start with =.
8837 (etc): Copy symlinks, as in src.
8838
8839 1997-06-26 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8840
8841 * configure.in (i*86-*-unixware*): New alternative.
8842
8843 1997-06-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8844
8845 * Makefile.in (src/config.stamp): Target renamed from src/config.h
8846 and touch it explicitly.
8847
8848 * configure.in (mips-sony-newsos6*): New alternative.
8849 (mips-*-linux-gnu*): New alternative.
8850 (*-*-bsdi*): New alternative.
8851 (i*86-*-bsd386, i*86-*-bsdi...): Delete old alternatives.
8852
8853 1997-06-22 Dave Love <d.love@dl.ac.uk>
8854
8855 * Makefile.in (lib-src): Depend on src/config.h (e.g. for movemail.o).
8856 (src/config.h): New target to re-configure if src/config.in is patched.
8857
8858 1997-06-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8859
8860 * configure.in (shutdown): Check for `shutdown' function.
8861
8862 1997-06-18 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
8863
8864 * update-subdirs: Include the directory "language" in subdirs.
8865
8866 1997-06-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8867
8868 * configure.in (m88k-dg-dgux4*): New alternative.
8869 (alpha-*-netbsd*): New alternative.
8870 (powerpcle-*-solaris2*): New alternative.
8871
8872 1997-05-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8873
8874 * make-dist: Warn about .el files that are not compiled.
8875
8876 1997-05-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8877
8878 * Makefile.in (dist): Don't run update-subdirs here,
8879 since make-dist now gets that done.
8880
8881 * make-dist: Use the new `updates' target in lisp/Makefile.
8882
8883 * make-dist: Use new non-file targets in lisp/Makefile.
8884
8885 1997-04-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8886
8887 * make-dist: Handle all subdirs of `lisp' uniformly.
8888 Don't handle `term' and `language' specially.
8889 Clear out umask at the beginning.
8890
8891 1997-04-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8892
8893 * make-dist: Use Make to update finder-inf.el and autoloads.
8894 Also update cus-load.el.
8895
8896 1997-04-09 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
8897
8898 * configure.in (doug_lea_malloc): First check for SYSTEM_MALLOC,
8899 in case it is desirable to disable the GNU malloc features with glibc.
8900
8901 1997-04-08 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
8902
8903 * configure.in (DOUG_LEA_MALLOC):
8904 Define if malloc_{get,set}_state exist.
8905
8906 1997-03-05 Kenichi Handa <handa@etl.go.jp>
8907
8908 * make-dist: Make links for files under lisp/language.
8909
8910 1997-02-20 Kenichi Handa <handa@etl.go.jp>
8911
8912 * update-subdirs: Exclude the directory "language" from subdirs.
8913
8914 1997-01-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
8915
8916 * configure.in: Check for rint and cbrt.
8917
8918 1997-01-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8919
8920 * make-dist: Use $EMACS to say where to run Emacs.
8921 Add --no-update option.
8922
8923 1996-12-30 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8924
8925 * configure.in (hppa1.1-hitachi-hiuxmpp): New configuration.
8926
8927 1996-12-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8928
8929 * make-dist (copying src): Check thoroughly for symlinks
8930 and copy them in all cases. Regularize the linking of *.in
8931 and *.opt and ChangeLog files.
8932 (copying lib-src): Likewise.
8933 Don't rm getdate.c or y.tab.*--they don't exist any more.
8934
8935 1996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
8936
8937 * configure.in: Check for libmail, maillock.h and
8938 touchlock (for movemail).
8939
8940 1996-12-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8941
8942 * configure.in (limits.h): Check for this file.
8943
8944 1996-12-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8945
8946 * configure.in (rs6000-ibm-aix4.2): New alternative.
8947 (rs6000-ibm-aix4.0): New alternative.
8948 (rs6000-ibm-aix4*): Assume aix 4.1 by default.
8949
8950 1996-11-22 Ben Harris <bjh21@cam.ac.uk>
8951
8952 * configure.in: Recognize vax-*-netbsd*.
8953
8954 1996-11-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8955
8956 * configure.in (locallisppath): Add leim directory.
8957
8958 1996-10-31 Eli Zaretskii <eliz@is.elta.co.il>
8959
8960 * config.bat: Make sure `mv' supports forward slashes and -f.
8961
8962 1996-10-28 Christian Limpach <chris@nice.ch>
8963
8964 * configure.in (hppa*-next-nextstep*): * added after hppa
8965 to accept hppa1.0 and hppa1.1.
8966
8967 1996-10-05 Marcus G. Daniels <marcus@coulee.tdb.com>
8968
8969 * configure.in: Provide an empty default for LD_SWITCH_X_SITE_AUX.
8970 * configure.in (ld_switch_machine): Fix typo.
8971
8972 1996-09-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8973
8974 * configure.in: Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
8975 from config.h and use them in $ac_link.
8976
8977 1996-09-28 Erik Naggum <erik@psilocin.gnu.ai.mit.edu>
8978
8979 * configure.in: Create a subdir named `lisp'.
8980
8981 1996-09-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8982
8983 * configure.in: Check for getcwd.
8984
8985 1996-09-04 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8986
8987 * configure.in: Check for termios.h. Check for setpgid.
8988
8989 1996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
8990
8991 * configure.in: Check for setrlimit.
8992
8993 1996-08-31 Paul Eggert <eggert@twinsun.com>
8994
8995 * configure.in: Check for sys/systeminfo.h, getdomainname, sysinfo.
8996
8997 1996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8998
8999 * configure.in: Check for utimes.
9000
9001 * configure.in: Check for com_err library, but only
9002 if --with-kerberos was used. Check for krb and des
9003 only if --with-kerberos.
9004
9005 1996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9006
9007 * Makefile.in (INSTALL_STRIP): New variable.
9008 (install-strip): Set INSTALL_STRIP, not INSTALL_PROGRAM.
9009 (install-arch-dep): Use INSTALL_STRIP, and pass it to lib-src.
9010
9011 1996-08-25 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9012
9013 * configure.in: Check for krb and des libraries.
9014
9015 1996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9016
9017 * configure.in (*-sunos4.1.[3-9]*noshare):
9018 Use sunos413, not sunos4-1-3.
9019 (m88k-dg-dgux5.4R3*): Use dgux5-4-3, not dgux5-4r3.
9020 (arm-acorn-riscix1.2*): Use riscix12, not riscix1-2.
9021
9022 1996-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9023
9024 * Makefile.in (src/paths.h): Target deleted.
9025 (paths-force): Delete all dependencies on this target
9026 but don't delete the target.
9027 (install): Depend on `all'.
9028 (paths-force): Don't print a message.
9029
9030 * configure.in: Generate src/paths.h here.
9031
9032 1996-08-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9033
9034 * configure.in (NON_GCC_LINK_TEST_OPTIONS, GCC_LINK_TEST_OPTIONS):
9035 New variables that affect linking only.
9036 (alpha-dec-osf*): Use those instead of previous change.
9037
9038 1996-08-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9039
9040 * Makefile.in (install-arch-indep): Install info/messages.
9041
9042 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9043
9044 * Version 19.33 released.
9045
9046 1996-08-10 Marcus G. Daniels <marcus@sayre.sysc.pdx.edu>
9047
9048 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
9049 Fix previous change.
9050
9051 1996-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9052
9053 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
9054 New alternative.
9055
9056 1996-08-07 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9057
9058 * configure.in (alpha-dec-osf*): Specify GCC_TEST_OPTIONS
9059 and NON_GCC_TEST_OPTIONS.
9060
9061 1996-08-06 Paul Eggert <eggert@twinsun.com>
9062
9063 * configure.in (LOCALTIME_CACHE): Don't put a string literal
9064 "TZ=..." in environ.
9065
9066 1996-08-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9067
9068 * make-dist (msdos): Add is_exec.c, sigaction.c to distribution.
9069
9070 1996-08-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9071
9072 * configure.in (*-sunos4.1.[3-9]*noshare): Move this before
9073 the more general *-sunos4.1.[3-9]* clause.
9074
9075 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9076
9077 * Version 19.32 released.
9078
9079 * configure.in (*-sco3.2v5*):
9080 Set OVERRIDE_CPPFLAG to a string of one space.
9081 Fix the code that uses OVERRIDE_CPPFLAG.
9082
9083 1996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
9084
9085 * configure.in: Undo previous change.
9086
9087 1996-07-16 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9088
9089 * config.sub: Use `pc', not `unknown', when canonicalizing
9090 the vendor for ...86.
9091
9092 1996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
9093
9094 * configure.in: Check for termios.h header.
9095
9096 1996-07-11 Bill Mann <dvmann@dvncr.praxisint.com>
9097
9098 * configure.in: Use s/usg5-4-3.h for ncr-i[3456]86-sysv4.3.
9099
9100 1996-07-07 Karl Heuer <kwzh@gnu.ai.mit.edu>
9101
9102 * configure.in: Split bsdos2 and bsdos2-1.
9103
9104 1996-07-06 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9105
9106 * config.sub: If last two words are not a recognized
9107 KERNEL-OS pair, use just the last word as OS, as in 19.31.
9108 Make conversion of gnu/linux to linux-gnu really work.
9109
9110 * config.sub: If vendor unspecified with i386, use `pc' not `unknown'.
9111
9112 1996-06-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9113
9114 * configure.in (check for using Lucid widgets by default):
9115 Eliminate indentation that confuses some compilers.
9116
9117 1996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9118
9119 * config.sub: Convert linux and gnu/linux to linux-gnu.
9120
9121 * make-dist: Don't update getdate.c.
9122 Ignore =... files when checking for too-long Lisp file names.
9123
9124 1996-06-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9125
9126 * configure.in (euidaccess): Check for that, not for eaccess.
9127
9128 1996-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9129
9130 * configure.in (sunos4.1.[3-9]*noshare): Eliminate dash from
9131 before `noshare'.
9132 (mips-sgi-irix6*): Specify NON_GCC_TEST_OPTIONS.
9133
9134 1996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9135
9136 * configure.in: Rename lignux to linux-gnu in configuration names.
9137 Use gnu-linux as the opsys value (s/ file name).
9138 Allow i686 just like i386, i486, i586.
9139
9140 1996-06-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9141
9142 * configure.in (i*86-*-sco3.2v5): New alternative.
9143 (OVERRIDE_CPPFLAG): New variable.
9144 (CPPFLAGS): If OVERRIDE_CPPFLAG is set, use that.
9145
9146 * configure.in: Specify vpath for .texi files.
9147
9148 1996-06-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9149
9150 * configure.in: Always check for HAVE_X11R5.
9151 Separately decide whether to use a toolkit by default.
9152
9153 1996-06-04 Bill Mann <dvmann@dvhpux1.praxisint.com>
9154
9155 * configure.in: If X11R5 is missing the Xaw headers,
9156 default to --with-x-toolkit=no.
9157
9158 1996-05-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9159
9160 * configure.in (powerpc-*-solaris2*): Use ibmrs6000, not rs6000.
9161
9162 1996-05-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9163
9164 * Makefile.in (install-arch-indep): If cd etc makes output,
9165 don't treat that as part of the tar data.
9166 Check that ./lisp actually exists.
9167
9168 1996-05-29 Karl Heuer <kwzh@gnu.ai.mit.edu>
9169
9170 * make-dist: Check for long file names.
9171
9172 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
9173
9174 * Version 19.31 released.
9175
9176 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
9177
9178 * configure.in: Recognize sparc-*-lignux.
9179
9180 1996-05-03 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
9181
9182 * make-dist: Include nt/inc/arpa and nt/inc/netinet in the dist.
9183 Don't include config.w95.
9184
9185 1996-04-21 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
9186
9187 * make-dist: Replace --no-clean-up and --no-tar options
9188 with --clean-up and --tar, so that the default is useful.
9189
9190 1996-04-15 Eli Zaretskii <eliz@is.elta.co.il>
9191
9192 * config.bat: Make sure the GDB init file is called src/_gdbinit;
9193 if not, tell the user to rename it and abort.
9194
9195 1996-04-14 Eli Zaretskii <eliz@is.elta.co.il>
9196
9197 * config.bat: With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE
9198 test program.
9199
9200 1996-04-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9201
9202 * config.bat (djgpp_ver): Variable renamed from djgpp-ver.
9203
9204 * make-dist (MANIFEST): Fix previous change.
9205 (msdos): Put mainmake.v2 into the dist.
9206
9207 1996-04-10 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
9208
9209 * make-dist: Exit if autoconf fails.
9210
9211 1996-04-10 Eli Zaretskii <eliz@is.elta.co.il>
9212
9213 * config.bat: Set djgpp-ver, and unset it at the end.
9214 Add a number of conditionals for DJGPP version 2.
9215 Rename label libsrc2 to libsrc3.
9216 Substitute for LDFLAGS in src/Makefile.
9217 Substitute for ALL_CFLAGS in lib-src/Makefile.
9218
9219 1996-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9220
9221 * configure.in (ncurses): Check this after checking fns like strerror.
9222
9223 1996-04-08 Erik Naggum <erik@naggum.no>
9224
9225 * make-dist (MANIFEST): Don't include lines from =files.
9226
9227 1996-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9228
9229 * make-dist: Don't put lisp/dired.todo in the dist.
9230
9231 1996-04-05 Richard Stallman <rms@lucy.gnu.ai.mit.edu>
9232
9233 * configure.in (HAVE_NCURSES): Look for library named ncurses.
9234
9235 * configure.in (setlocale): Check for it.
9236
9237 * configure.in (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp.
9238
9239 1996-03-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9240
9241 * configure.in: Use lignux instead of linux as value of opsys.
9242
9243 1996-03-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9244
9245 * Makefile.in (install-strip): Fix whitespace.
9246 Get rid of continuation.
9247
9248 * config.sub: Convert linux or gnu/linux to lignux.
9249
9250 1996-03-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9251
9252 * configure.in: Accept lignux in configuration name.
9253
9254 1996-03-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9255
9256 * Makefile.in (install-strip): New target.
9257
9258 1996-03-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9259
9260 * Makefile.in (top_distclean): Use `|| true' to ignore error in rm.
9261 -f failed to do the job on Suns.
9262
9263 1996-03-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9264
9265 * Makefile.in (install-arch-dep): Don't depend on install-arch-indep.
9266
9267 * configure.in (linux/version.h): Check for this header.
9268
9269 1996-03-12 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
9270
9271 * configure.in: Remove -fno-builtin hackery from -lm check.
9272
9273 1996-03-08 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
9274
9275 * configure.in (-lm check): If $GCC, append -fno-builtin to $CC for
9276 just this test.
9277
9278 * configure.in (AC_PREREQ): Require version 2.8 of Autoconf.
9279
9280 1996-03-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9281
9282 * configure.in: Check for ncurses.
9283
9284 1996-02-28 Paul Eggert <eggert@twinsun.com>
9285
9286 * configure.in (LOCALTIME_CACHE):
9287 Also define if localtime mishandles unsetting TZ.
9288 This works around a localtime bug in mips-dec-ultrix.
9289
9290 1996-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9291
9292 * make-dist (finder-inf.el): Use finder-compile-keywords-make-dist.
9293
9294 * configure.in: Improve messages about X versions.
9295
9296 1996-02-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9297
9298 * configure.in (LOCALTIME_CACHE): Cope if $ac_cv_func_tzset is null.
9299
9300 1996-02-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9301
9302 * configure.in (HAVE_X11XTR6): Set it as a shell variable.
9303 (HAVE_LIBXMU): If HAVE_X11XTR6, use -lSM and -lICE.
9304
9305 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
9306 (install): Put install-arch-indep before install-arch-dep.
9307
9308 1996-02-20 Dave Love <d.love@dl.ac.uk>
9309
9310 * INSTALL: Clarify info about MS-DOS path handling.
9311
9312 1996-02-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9313
9314 * Makefile.in (install-arch-indep): Install info/ccmode*.
9315 In previous change, protect against /bin/pwd returning null string.
9316
9317 1996-02-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9318
9319 * Makefile.in (install-arch-indep): Copy build-dir's lisp subdir
9320 to lispdir.
9321
9322 1996-02-01 Paul Eggert <eggert@twinsun.com>
9323
9324 * configure.in (LD_RUN_PATH): Prepend x_libraries to this envvar.
9325
9326 1996-01-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9327
9328 * configure.in (HAVE_TIMEVAL): Set explicitly to `no' if test fails.
9329
9330 1996-01-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9331
9332 * Makefile.in (extraclean): Use ${top_distclean} to ensure
9333 we delete everything distclean deletes.
9334
9335 1996-01-23 Karl Heuer <kwzh@gnu.ai.mit.edu>
9336
9337 * make-dist (lwlib): Don't distribute lwlib-Xol* files.
9338
9339 1996-01-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9340
9341 * configure.in (HAVE_X11): Merge $LD_SWITCH_X_SITE
9342 into LDFLAGS instead of into LIBS.
9343
9344 1996-01-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9345
9346 * configure.in (HAVE_XMU): Fix typo in previous change.
9347
9348 1996-01-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9349
9350 * configure.in [Solaris]: Don't let $CC make us use /usr/ucb/cc.
9351
9352 1996-01-10 Erik Naggum <erik@naggum.no>
9353
9354 * configure.in (USE_X_TOOLKIT = maybe): Delete redundant `fi'.
9355
9356 1996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
9357
9358 * Makefile.in (install-arch-indep): Ignore error if no chmod -R.
9359
9360 1996-01-10 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9361
9362 * configure.in (HAVE_XMU): Check for libXmu.a only if using toolkit
9363 and use -lXt to link it.
9364
9365 1996-01-08 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9366
9367 * configure.in (locallisppath): Put version-specific dir first.
9368
9369 1996-01-07 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9370
9371 * configure.in (hppa-*-nextstep*): New alternative.
9372 (USE_X_TOOLKIT): By default, set this to "maybe";
9373 and change that later to LUCID or "no" according to X11 version.
9374
9375 * make-dist: Recompile outdated .elc files and update all autoloads.
9376
9377 1996-01-05 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
9378
9379 * configure.in (locallisppath): Fix typo in last change: " -> '.
9380
9381 1996-01-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9382
9383 * configure.in (locallisppath): Add ../emacs/VERSION/site-lisp.
9384
9385 1995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9386
9387 * Makefile.in (install-arch-indep): Give all files read permission.
9388
9389 1995-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9390
9391 * configure.in (hppa*-hp-hpux9shr*, hppa*-hp-hpux9*, hppa*-hp-hpux*):
9392 If it is hpux 9, check for /usr/include/X11R5 and /usr/lib/x11R5.
9393
9394 1995-12-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9395
9396 * configure.in: Determine HAVE_X11R6.
9397 (HAVE_MENUS): Rename from HAVE_X_MENU.
9398
9399 1995-12-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9400
9401 * configure.in: Just "solaris" now defaults to version 2.4.
9402 Add sunos4.1.n-noshare as alternative.
9403
9404 1995-12-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9405
9406 * configure.in (mips-sgi-irix6*): Set NON_GNU_CPP.
9407
9408 1995-11-29 Erik Naggum <erik@naggum.no>
9409
9410 * Makefile.in (install-arch-indep): Add missing backslash.
9411
9412 1995-11-29 Karl Eichwalder <ke@ke.Central.DE>
9413
9414 * Makefile.in (install-arch-indep): Don't install
9415 lispdir/[Mm]akefile*, lispdir/ChangeLog, lispdir/dired.todo.
9416
9417 1995-11-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9418
9419 * Makefile.in (install-arch-indep): Fix previous change.
9420
9421 * configure.in (mips-sni-sysv*): New alias for mips-siemens-sysv*.
9422
9423 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9424
9425 * Version 19.30 released.
9426
9427 * make-dist (lisp): Exclude subdirs.el.
9428
9429 1995-11-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9430
9431 * make-dist (etc): Delete *.orig and *.rej.
9432
9433 1995-11-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9434
9435 * Makefile.in (install-arch-indep): Rename old info/dir only if exists.
9436
9437 1995-11-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9438
9439 * configure.in (hppa*-hp-hpux10*): Use s/hpux10.h.
9440
9441 1995-11-14 Geoff Voelker <voelker@cs.washington.edu>
9442
9443 * make-dist (nt): Rename install, readme, and todo to
9444 INSTALL, README, and TODO.
9445
9446 1995-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9447
9448 * make-dist (lisp): Don't distribute site-start.
9449
9450 1995-11-06 Karl Heuer <kwzh@gnu.ai.mit.edu>
9451
9452 * make-dist: Break the hard link on alloca.c.
9453
9454 1995-11-04 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9455
9456 * configure.in (LIBS): Add libsrc_libs and keep the old LIBS.
9457
9458 1995-11-02 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9459
9460 * make-dist (src, lib-src): Don't distribute Makefile.c.
9461 (etc/e): Do cleanup in $tempdir/etc/e, not $tempdir/etc.
9462
9463 1995-10-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9464
9465 * Makefile.in (mkdir): Create man1dir, not mandir.
9466 (uninstall): Use man1dir, not mandir.
9467
9468 1995-10-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9469
9470 * Makefile.in (man1dir): New variable.
9471 (install-arch-indep): Use man1dir.
9472
9473 * configure.in (sparc-*-nextstep*): Remove incorrect .h's.
9474
9475 * make-dist: Create lisp/MANIFEST.
9476
9477 1995-10-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
9478
9479 * configure.in (m68k-*-linux*): New alternative.
9480
9481 1995-10-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9482
9483 * make-dist: Use new names config.in, paths.in, and
9484 {src,lib-src}/Makefile.in.
9485
9486 1995-10-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9487
9488 * configure.in: Don't bother checking for drem.
9489
9490 1995-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9491
9492 * Makefile.in (distclean): Delete line with just a tab in it.
9493 (install-arch-indep): Delete spaces that precede tabs.
9494 Delete spurious `fi' left from previous change.
9495 (install): Supply `true' as command, to avoid null command.
9496
9497 1995-10-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9498
9499 * configure.in (--with-x-toolkit)): Add `athen' as alias for `athena'.
9500
9501 1995-09-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9502
9503 * configure.in (powerpc-*-solaris2): New alternative.
9504
9505 1995-09-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
9506
9507 * Makefile.in (src/paths.h, paths-force): Use paths.h.$$ instead
9508 of paths.h.tmp$$, to avoid going beyond 14 characters.
9509
9510 1995-09-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9511
9512 * configure.in: Improve error msg for invalid --with-x-toolkit value.
9513
9514 1995-09-06 Paul Eggert <eggert@twinsun.com>
9515
9516 * configure.in (LOCALTIME_CACHE): Define if tzset exists and
9517 if localtime caches TZ. Check for tzset.
9518
9519 1995-09-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9520
9521 * config.bat: Simplify using new names file names src/makefile.in,
9522 config.in, paths.in. Change Echo commands not to use `.
9523
9524 1995-08-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9525
9526 * Makefile.in (install-arch-indep): Always install the new dir file;
9527 rename the previous dir file to dir.bak or dir.old.
9528
9529 1995-08-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9530
9531 * configure.in (RANLIB): Substitute this into makefiles.
9532 Set it specially on solaris; set it by default on other systems.
9533
9534 * configure.in: Fix previous Alpha change.
9535
9536 1995-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9537
9538 * configure.in (i*386-*-isc4.*): Set GCC_TEST_OPTIONS and
9539 NON_GCC_TEST_OPTIONS.
9540
9541 1995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9542
9543 * configure.in (CFLAGS): When computing CFLAGS and REAL_CFLAGS
9544 from config.h, use SPECIFIED_CFLAGS to get what the user specified.
9545
9546 * configure.in (alpha-*-linux*): New configuration.
9547
9548 1995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9549
9550 * configure.in (m68*-next-*): Use m68k.h and nextstep.h.
9551 (m68k-next-nextstep*): New alias for that.
9552 (i*86-*-nextstep*): Use nextstep.h.
9553 (sparc-*-nextstep*): New configuration.
9554
9555 1995-08-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9556
9557 * configure.in (CPP): Save original CFLAGS value in SPECIFIED_CFLAGS.
9558 And get CFLAGS from config.h if SPECIFIED_CFLAGS is null.
9559
9560 1995-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9561
9562 * configure.in: Handle sunos4shr by sharing; not like sunos4*.
9563 Determine GETTIMEOFDAY_ONE_ARGUMENT by experiment.
9564
9565 1995-07-18 Mike Long <mike.long@analog.com>
9566
9567 * make-dist: Fix update of finder-inf.el, and byte-compile it.
9568
9569 1995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9570
9571 * Makefile.in (src/paths.h, paths-force):
9572 Rename src/paths.h.in to src/paths.in.
9573 (Makefile): Depend on src/Makefile.in, not src/Makefile.in.in.
9574
9575 * configure.in: Rename {src,lib-src}/Makefile.in.in to Makefile.in.
9576 Use Makefile.c for intermediate file.
9577 Rename src/config.h.in to src/config.in.
9578
9579 1995-07-17 Richard Stallman <rms@gnu.ai.mit.edu>
9580
9581 * configure.in (mips-dec-ultrix*): Assume version 4.3.
9582 (mips-dec-ultrix4.[12]): New alternative for old versions.
9583
9584 1995-07-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9585
9586 * make-dist: Don't break intra-tree links.
9587
9588 1995-07-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
9589
9590 * configure.in: Put back archlibdir initialization.
9591 Require autoconf 2.4.1 or later.
9592
9593 1995-07-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9594
9595 * configure.in: Use sunos4shr normally for Sunos 4.1.[3-9].
9596 (mips-mips-riscos5*): New alternative.
9597
9598 1995-06-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9599
9600 * Makefile.in (uninstall, install-arch-indep): Install info/ediff*.
9601
9602 1995-06-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9603
9604 * configure.in (bindir, datadir, sharedstatedir, libexecdir)
9605 (mandir, infodir, archlibdir): Initializations deleted.
9606
9607 * configure.in: On hpux9, use hpux9-x11r4.h if we have X11R4.
9608 On hpux9shr, use hpux9shxr4.h.
9609
9610 1995-06-24 Morten Welinder <terra+@cs.cmu.edu>
9611
9612 * configure.in: Added target mips-dec-mach_bsd4.3.
9613 * config.guess: Guess mips-dec-mach_bsd4.3.
9614
9615 1995-06-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9616
9617 * Makefile.in (mkdir): Use symbolic chmod.
9618
9619 1995-06-22 Paul Eggert <eggert@twinsun.com>
9620
9621 * configure.in: Treat SunOS 4.1.4 like SunOS 4.1.3. (Likewise for
9622 SunOS 4.1.5 through 4.1.9, should they ever exist.)
9623
9624 1995-06-22 Paul Eggert <eggert@twinsun.com>
9625
9626 * Makefile.in (SUBDIR_MAKEFILES):
9627 Add man/Makefile, so `make distclean' removes it.
9628 (top_distclean): Add config.log to the list of files to be removed.
9629
9630 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9631
9632 * Version 19.29 released.
9633
9634 1995-06-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9635
9636 * configure.in: Fix the previous change to verify that the -b
9637 option really solves the problem.
9638
9639 * make-dist (nt): Explicitly include makefile.nt and makefile.def only.
9640
9641 1995-06-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9642
9643 * configure.in: Test whether XFree86 needs -b i486-linuxaout to link.
9644
9645 1995-06-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9646
9647 * configure.in: Report more clearly when there is no special
9648 dir to search for X includes or libraries.
9649
9650 1995-06-13 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9651
9652 * configure.in: Check for -lpthreads, not -lpthread.
9653
9654 1995-06-09 Geoff Voelker <voelker@cs.washington.edu>
9655
9656 * make-dist: Copy new files nt/addpm.c and nt/emacs.bat.in.
9657
9658 1995-06-08 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9659
9660 * configure.in: Check for -lpthread.
9661
9662 1995-06-05 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9663
9664 * Makefile.in (install-arch-indep): Install info files for mh-e.
9665 (uninstall): Uninstall info files for dired-x, gnus, mh-e, and sc.
9666
9667 1995-06-01 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9668
9669 * configure.in (*-solaris2.5): New configuration.
9670
9671 * make-dist: Copy new files config.nt and config.w95.
9672
9673 1995-05-30 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9674
9675 * configure.in: Use x_includes, not x_libraries, for -I.
9676 Make bitmapdir a colon-separated list.
9677
9678 1995-05-27 Richard Stallman <rms@gnu.ai.mit.edu>
9679
9680 * configure.in (hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
9681
9682 * configure.in: Allow x_libraries and x_includes to be paths.
9683
9684 1995-05-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9685
9686 * configure.in: Fix typo.
9687
9688 1995-05-24 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9689
9690 * INSTALL: Clarify use of site-init.el.
9691
9692 1995-05-22 enami tsugutomo <enami@sys.ptg.sony.co.jp>
9693
9694 * configure.in: Pass arg to sqrt.
9695
9696 1995-05-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9697
9698 * make-dist: Fix May 6 change.
9699
9700 1995-05-17 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9701
9702 * vpath.sed: Delete reference to ymakefile.
9703
9704 1995-05-09 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
9705
9706 * configure.in: Use sqrt (more portable) instead of fmod in -lm check.
9707
9708 1995-05-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9709
9710 * make-dist: Put nt/emacs.ico and nt/emacs.rc in dist.
9711
9712 * update-subdirs: Specify /bin/sh to run the script.
9713
9714 1995-05-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9715
9716 * make-dist: Put src/makefile.nt in dist.
9717
9718 * configure.in (i[345]86-*-bsdi2*): New configuration.
9719 (vax-dec-bsd386*): Delete.
9720
9721 1995-05-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
9722
9723 * configure.in: Make sure CDPATH doesn't mess up PWD check.
9724 Check whether X bitmaps are in X11/bitmaps instead of bitmaps.
9725 Use fmod instead of logb in -lm check.
9726
9727 1995-05-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9728
9729 * configure.in (m68*-apollo-*): Rename from m68*-apollo*.
9730 Use bsd4-3. Don't set NON_GNU_CPP.
9731
9732 * make-dist: Don't copy in src/s/*.inp. Don't copy nt/src.
9733 In nt, copy various different things, but not *.cmd.
9734 Fix the ln commands for the subdirs of nt.
9735
9736 1995-04-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9737
9738 * configure.in (*-sun-sunos4.1.3*): Use sunos4shr.h.
9739
9740 1995-04-27 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9741
9742 * configure.in (*-sun-sunos4.1.3*): Use shared libraries,
9743 since that's what the header file expects.
9744
9745 1995-04-24 Francesco Potortì (pot@cnuce.cnr.it)
9746
9747 * configure.in (m68k-motorola-sysv*): Distinguish between 68030
9748 and 68040 based machines when choosing options for gnucc.
9749
9750 1995-04-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9751
9752 * Makefile.in (top_distclean): Delete config.cache.
9753
9754 1995-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9755
9756 * Makefile.in (install-arch-indep): Delete .#* when copying subdirs.
9757
9758 * configure.in: Use m/ncr386.h.
9759
9760 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9761
9762 * Makefile.in (install-arch-indep): Undo Sep 23 change.
9763
9764 1995-04-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9765
9766 * make-dist (lib-src): Don't copy *.lex; it doesn't exist anymore.
9767 (man): Don't copy texindex.c and getopt.c; they're deleted.
9768 (etc): Omit `e'; it's a subdirectory.
9769 (etc/e): Use `../..', not `..', to reference top level.
9770
9771 1995-04-06 Simon Leinen <simon@lia.di.epfl.ch>
9772
9773 * Makefile.in (install-arch-indep, dist):
9774 Look for `update-subdir' in $(srcdir).
9775
9776 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9777
9778 * make-dist: Include mkinstalldirs in distribution.
9779
9780 1995-04-05 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9781
9782 * make-dist: Add missing close backquote.
9783
9784 1995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9785
9786 * make-dist: Don't distribute shortnames directory.
9787
9788 1995-03-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9789
9790 * Makefile.in (blessmail): Pass archlibdir to the sub-make.
9791
9792 1995-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9793
9794 * configure.in (m88k-motorola-sysv4*): Use usg5-4-2.
9795
9796 1995-02-23 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9797
9798 * configure.in (EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
9799
9800 1995-02-13 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
9801
9802 * configure.in (mips-sgi-irix6): New configuration.
9803
9804 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
9805
9806 * Makefile.in (maintainer-clean): Rename from realclean.
9807
9808 1995-02-02 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
9809
9810 * configure.in: Create a .gdbinit that sources the real one,
9811 if using a different build directory.
9812
9813 1995-01-23 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9814
9815 * configure.in: Check for sys/select.h.
9816
9817 1995-01-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9818
9819 * configure.in: On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
9820
9821 1994-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9822
9823 * configure.in: Handle isc 4.1 operating system.
9824
9825 1994-12-10 Richard Stallman <rms@kepa>
9826
9827 * configure.in (rs6000-ibm-aix4.1*): New alternative.
9828 (rs6000-ibm-aix4*): New alternative.
9829
9830 1994-12-06 Richard Stallman <rms@kepa>
9831
9832 * configure.in: For SVR4.2, set NON_GNU_CPP if not already set.
9833
9834 1994-11-30 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
9835
9836 * configure.in: Don't try to make directories that are guaranteed
9837 to already exist.
9838
9839 1994-11-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9840
9841 * configure.in: Generate man/Makefile from man/Makefile.in.
9842 Create the man subdir.
9843
9844 * Makefile.in (dvi): Run Make in our man subdir.
9845
9846 * make-dist: Create subdir etc/e.
9847 Make links to it.
9848 Put man/Makefile.in in dist, instead of man/Makefile.
9849
9850 1994-11-21 David J. MacKenzie (djm@mole.gnu.ai.mit.edu)
9851
9852 * configure.in: Add --with-pop, --with-kerberos, and
9853 --with-hesiod for movemail.
9854
9855 1994-11-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9856
9857 * configure.in (m68*-apollo*): Use s/domain.h.
9858
9859 1994-11-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9860
9861 * configure.in (m68*-apollo*): Set NON_GNU_CPP.
9862
9863 1994-11-14 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
9864
9865 * configure.in: Don't add -I, -L, -R options for cc if their
9866 arguments would be empty.
9867
9868 1994-11-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9869
9870 * configure.in (i860-intel-osf1*): New alternative.
9871 (mips-sgi-irix5.[01]*): Distinguish from irix5*.
9872 (mips-sgi-irix*): Now an alias for mips-sgi-irix5*.
9873
9874 1994-11-09 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
9875
9876 * configure.in: Make h_errno check not use nested functions.
9877
9878 1994-11-09 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
9879
9880 * Makefile.in (install-arch-indep): Delete *.orig in copied dirs.
9881
9882 1994-11-08 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
9883
9884 * Makefile.in (install-arch-indep): Avoid continued comment
9885 swallowing target line.
9886
9887 1994-11-08 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
9888
9889 * configure.in: Protect a character class with `changequote'.
9890
9891 1994-11-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
9892
9893 * configure.in: Accept `news' as a synonym for `newsos'.
9894
9895 1994-11-03 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9896
9897 * Makefile.in: Don't rm files if cd fails.
9898
9899 1994-11-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9900
9901 * make-dist: Put nt subdir and its subdirs in the dist.
9902 (lib-src): Put makefile.nt in the dist.
9903 (lisp): Put makefile.nt in the dist.
9904
9905 1994-10-29 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
9906
9907 * configure.in: Change a stray `[' to `test'.
9908
9909 1994-10-28 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
9910
9911 * configure.in: Adapt for Autoconf v2. Use the standard argument
9912 parser, host type canonicalizer, X11 finder, and message
9913 printing macros. Use the new macro names. Use `test' instead of `['.
9914
9915 1994-10-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9916
9917 * configure.in: Check for getpagesize.
9918
9919 1994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9920
9921 * make-dist (msdos): Put sed* in the distribution.
9922
9923 1994-10-17 Morten Welinder <terra@mole.gnu.ai.mit.edu>
9924
9925 * config.bat: New option, `--with-x', for configuring Emacs
9926 for use with the X11 system DesqView/X.
9927 New option, `--no-debug', for compiling Emacs without debug
9928 information thus saving disk space.
9929 (src/config.h, src/paths.h): Use `update' (which is like
9930 `move-if-changed') to change the file.
9931 (src/config.h): When configuring for X11 perform extra changes.
9932 (src/makefile): When configuring for X11 perform extra changes.
9933 (lib-src): Remove temporary files.
9934 (): Check that `sed', `rm', `mv', and `gcc' are available.
9935
9936 1994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9937
9938 * Makefile.in (sharedstatedir): Substitute sharedstatedir properly.
9939
9940 * configure.in (bitmapdirs): Default to /usr/include/X11/bitmaps.
9941
9942 1994-10-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9943
9944 * configure.in (EMACS_CONFIGURATION): Use $canonical as value.
9945
9946 * configure.in (canonical): Substitute var into makefiles.
9947 (bitmapdir): Likewise.
9948
9949 * Makefile.in (bitmapdir): New variable.
9950 (src/paths.h, paths-force): Edit PATH_BITMAPS.
9951
9952 1994-10-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9953
9954 * make-dist: Put update-subdirs and lisp/subdirs.el in the dist.
9955
9956 * Makefile.in (dist, install-arch-indep): Run update-subdirs.
9957 * update-subdirs: New shell script.
9958
9959 1994-10-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9960
9961 * Makefile.in (top_distclean): Don't rm build-install.
9962 (SOURCES): Delete build-install.in.
9963
9964 * make-dist: Don't distribute build-ins.in.
9965 * build-ins.in: File deleted.
9966
9967 1994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
9968
9969 * Makefile.in (mkdir): Use mkinstalldirs instead of make-path.
9970
9971 1994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9972
9973 * Makefile.in: Use libexecdir and sharedstatedir as appropriate.
9974
9975 * configure.in (libexecdir): Rename from libdir. New default.
9976 (sharedstatedir): Rename from statedir. New default.
9977 (datadir): New default.
9978
9979 * make-dist: Don't distribute subdirs.el.
9980
9981 1994-10-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9982
9983 * configure.in (eaccess): Check for it.
9984
9985 1994-10-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9986
9987 * configure.in (mktime): Check for it.
9988
9989 1994-10-02 Paul Reilly <pmr@geech.gnu.ai.mit.edu>
9990
9991 * configure.in (motif): Add support for usage and option checking.
9992
9993 1994-09-24 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
9994
9995 * configure.in (utimes): Check for it.
9996
9997 1994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
9998
9999 * Makefile.in (install-arch-indep): Don't do mkdir here.
10000
10001 1994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10002
10003 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
10004 riscix.h renamed to acorn.h.
10005
10006 1994-09-21 Michael Ben-Gershon (mybg@cs.huji.ac.il)
10007
10008 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
10009 New configurations.
10010
10011 1994-09-21 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
10012
10013 * configure.in: Remove trailing slashes from srcdir.
10014
10015 1994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10016
10017 * configure.in (i[345]86-sequent-ptx*): Handle.
10018
10019 1994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10020
10021 * Makefile.in (paths-force): Depend on src/paths.h.
10022
10023 1994-09-19 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10024
10025 * configure.in (config_options): Save all arguments, not just some.
10026
10027 1994-09-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10028
10029 * Makefile.in (install-arch-indep): Copy DOC-*, not DOC*.
10030
10031 * configure.in: Add AC_AIX.
10032 Add checks to set HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL, HAVE_SELECT.
10033
10034 1994-09-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10035
10036 * configure.in (parsing options): Simplify sed command to delete -'s.
10037
10038 1994-09-16 Karl Heuer <kwzh@churchy.gnu.ai.mit.edu>
10039
10040 * configure.in (config_options): New shell variable.
10041 Pass its value to C code in EMACS_CONFIG_OPTIONS.
10042
10043 1994-09-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10044
10045 * configure.in (alpha-dec-osf*): New target.
10046
10047 * Makefile.in: Use just one FRC target.
10048
10049 1994-09-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10050
10051 * Makefile.in (removenullpaths, paths-force):
10052 Use name paths.h.tmp$$, which depends on the pid.
10053
10054 1994-09-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10055
10056 * Makefile.in (removenullpaths, paths-force):
10057 Put paths.h.tmp in top-level dir, not in src.
10058
10059 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10060
10061 * Version 19.27 released.
10062
10063 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10064
10065 * Version 19.26 released.
10066
10067 1994-09-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10068
10069 * configure.in: Check for lrand48, not rand48.
10070
10071 1994-09-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10072
10073 * configure.in (powerpc-ibm-aix3.1*, powerpc-ibm-aix3.2.5)
10074 (powerpc-ibm-aix*): New aliases.
10075
10076 1994-08-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10077
10078 * make-dist (src/m, src/s): Put *.inp in distribution.
10079
10080 1994-08-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10081
10082 * configure.in: Accept i586 and i486 along with i386.
10083
10084 1994-08-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10085
10086 * configure.in: Do compute unexec, LIBX, system_malloc, etc
10087 even if CPP env var was set by the user.
10088
10089 * configure.in (i[34]86-*-*): For SCO 3.2v4, fix NON_GNU_CPP value.
10090
10091 1994-08-14 Jonathan I. Kamens (jik@gza-client1.aktis.com)
10092
10093 * Makefile.in: Uninstall "$(EMACS)", not "emacs".
10094
10095 1994-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10096
10097 * configure.in (i[34]86-*-*): For SCO 3.2v4, set NON_GNU_CPP.
10098
10099 1994-08-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10100
10101 * configure.in: Check more specifically for i*86-sun-sunos.
10102
10103 1994-08-03 Caveh Jalali (caveh@eng.sun.com)
10104
10105 * configure.in: Handle solaris 2.4.
10106
10107 1994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10108
10109 * configure.in (rand48): Check for it.
10110
10111 1994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10112
10113 * make-dist: Update the info files.
10114
10115 1994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10116
10117 * configure.in: Make "checking..." messages' style consistent.
10118 (HAVE_H_ERRNO): New test.
10119
10120 1994-07-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10121
10122 * configure.in (i860-*-sysv4*): Set NON_GNU_CC and NON_GNU_CPP.
10123
10124 1994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10125
10126 * configure.in (CFLAGS): If the envvar was specified, use that.
10127 And set REAL_CFLAGS from it too.
10128
10129 1994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10130
10131 * make-dist: Update finder-inf.el.
10132
10133 1994-07-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10134
10135 * make-dist (msdos): Include sed4.inp in dist.
10136
10137 * Makefile.in (libsrc_libs): Var deleted.
10138
10139 1994-07-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10140
10141 * Makefile.in (mkdir, removenullpaths): Put g in sed replace commands.
10142
10143 1994-06-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10144
10145 * configure.in (mips-sony-newsos4*): New alias.
10146
10147 1994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10148
10149 * configure.in (*-convex-bsd*): Set NON_GNU_CPP.
10150 (*-convex-convexos*): Accept this as alias.
10151
10152 1994-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10153
10154 * configure.in: Get CFLAGS both with and without THIS_IS_CONFIGURE,
10155 for two different uses.
10156
10157 1994-06-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10158
10159 * configure.in: Define THIS_IS_CONFIGURE when extracting CFLAGS etc.
10160
10161 1994-06-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10162
10163 * make-dist: Put ./BUGS into the distrib.
10164
10165 1994-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10166
10167 * configure.in: Handle 386 running Solaris 2.
10168
10169 1994-06-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10170
10171 * configure.in (mips-siemens-sysv*): Use cpp, not cc -E.
10172
10173 1994-06-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10174
10175 * configure.in (mips-sony-newsos*): Use news-risc.h.
10176
10177 * configure.in: Accept bsdi as opsys, like bsd386.
10178
10179 1994-06-01 Morten Welinder (terra@diku.dk)
10180
10181 * config.bat (src/paths.h): Use sed script msdos/sed4.inp.
10182
10183 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10184
10185 * Version 19.25 released.
10186
10187 * make-dist (shortversion): Don't assume another period follows.
10188
10189 1994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10190
10191 * Makefile.in (install-arch-indep): Use /bin/pwd uniformly, not pwd.
10192 (uninstall): Use /bin/pwd.
10193
10194 * Makefile.in (blessmail): Depend on src.
10195 (all): Don't depend on blessmail.
10196
10197 * Makefile.in (src/paths.h): Don't force recomputation.
10198 (paths-force): New target; force recomputation of paths.h.
10199 (all): Depend on paths-force.
10200 (src, lib-src): Depend on src/paths.h.
10201
10202 * configure.in (*-sun-sunos4*): Set GCC_TEST_OPTIONS,
10203 NON_GCC_TEST_OPTIONS.
10204
10205 1994-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10206
10207 * configure.in: Don't insist on subversions for irix.
10208
10209 1994-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10210
10211 * configure.in (hppa*-hp-hpux9shr): Move alternative up.
10212
10213 * configure.in (i[34]86-next-*): New alternative.
10214
10215 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10216
10217 * Version 19.24 released.
10218
10219 * configure.in: New config hppa*-hp-hpux9shr*.
10220
10221 1994-05-22 Morten Welinder (terra@tyr.diku.dk)
10222
10223 * config.bat: Doc fix.
10224
10225 1994-05-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10226
10227 * Makefile.in (mostlyclean, clean, distclean, realclean)
10228 (extraclean): Don't act on man subdir if it doesn't exist.
10229
10230 1994-05-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10231
10232 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS): New vars.
10233 Use them to set up CC.
10234 (*-sun-sunos4.1.3): Set them.
10235
10236 1994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10237
10238 * Makefile.in (lib-src): Don't depend on src/paths.h.
10239
10240 1994-05-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10241
10242 * build-ins.in (copydests): Get rid of spurious `-'s.
10243
10244 * configure.in: Define EMACS_CONFIGURATION instead of CONFIGURATION.
10245
10246 1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10247
10248 * Version 19.23 released.
10249
10250 * configure.in [HAVE_X11]: Merge $C_SWITCH_X_SITE into CFLAGS
10251 for the Xlib and Xt checks; then restore old CFLAGS.
10252
10253 1994-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10254
10255 * configure.in (HAVE_X11XTR6): Add newline before #if.
10256 Add newline after #endif.
10257
10258 1994-05-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10259
10260 * configure.in (HAVE_X11XTR6): Arrange to define it.
10261
10262 1994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10263
10264 * Makefile.in (install): Depend on blessmail.
10265
10266 1994-05-12 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
10267
10268 * configure.in (mips-siemens-sysv*): Put quotes around value
10269 containing blanks.
10270
10271 1994-05-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10272
10273 * Makefile.in (TAGS): Use the makefile in src subdir.
10274
10275 1994-05-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10276
10277 * configure.in (opsys): Recognize `gnu'.
10278
10279 1994-05-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10280
10281 * configure.in (using NON_GNU_CPP): Fix test for CPP already set.
10282
10283 1994-05-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
10284
10285 * configure.in: Remove AC_LANG_C call. Not needed with Autoconf
10286 version > 1.8.
10287
10288 1994-05-08 Morten Welinder (terra@diku.dk)
10289
10290 * config.bat: Forcibly remove "# " style comments from makefiles.
10291
10292 1994-05-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10293
10294 * Makefile.in (uninstall): When processing lispdir and etcdir,
10295 do nothing unless it exists and is a directory.
10296
10297 1994-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10298
10299 * Makefile.in (install-arch-indep): Do install info/dired-x*.
10300 Merge code in from install-doc.
10301 (install-doc): Merge code back into install-arch-indep.
10302 (install-arch-dep): Don't depend on install-doc.
10303
10304 * configure.in (run_in_place): Don't use pwd for archlibdir and docdir.
10305
10306 1994-05-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10307
10308 * configure.in (making src/Makefile and lib-src/Makefile):
10309 Split off the autoconf substitutions and don't pass them thru cpp.
10310 (undefs): Use $canonical as well as $configuration.
10311
10312 * make-dist: Distribute lisp/Makefile.
10313
10314 * configure.in: Recognize m88k-dg-dgux5.4.3* and m88k-dg-dgux5.4.2*.
10315 Use lower case names for the s files.
10316
10317 1994-05-03 Morten Welinder (terra@diku.dk)
10318
10319 * config.bat: Added possibility for different file name
10320 transcriptions in lib-src.
10321
10322 1994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10323
10324 * Makefile.in (lib-src): Undo previous change.
10325 (blessmail): New target to run maybe-blessmail in lib-src.
10326 (all): Depend on blessmail.
10327
10328 * Makefile.in (lib-src): Depend on src.
10329
10330 1994-04-30 Paul Reilly (pmr@churchy.gnu.ai.mit.edu)
10331
10332 * configure.in (m88k-dg-dgux5.4R3): Use dgux5-4R3.
10333 (m88k-dg-dgux5.4R2): dgux5.4R2.
10334
10335 1994-04-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10336
10337 * configure.in (window_system): Restore accidentally deleted code
10338 that uses AC_FIND_X.
10339
10340 * make-dist: Distribute config.bat.
10341
10342 1994-04-29 Morten Welinder (terra@diku.dk)
10343
10344 * config.bat: Corrected the configuration of lib-src
10345 to keep up with configure. Add note about dos version 3
10346 or better needed (djgpp needs that). Add note explaining
10347 that either install in c:/emacs or edit the script.
10348 Don't change to c:/emacs, but assume we're there (to minimize
10349 the number of places to change).
10350
10351 * config.bat: Build-in the first step towards X11 support with
10352 the X11 emulator that exists. At this time it won't work,
10353 and several files are missing.
10354
10355 1994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10356
10357 * configure.in: Use m/hp800.h in place of m/hp9000s800.h.
10358 Don't look for -lresolv.
10359
10360 * Makefile.in (lib-src): Depend on src/paths.h.
10361
10362 1994-04-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10363
10364 * configure.in: Restore deleted AC_SUBST of `configuration'.
10365 Improve error message for bad --with-x-toolkit value.
10366
10367 * configure.in: Define CONFIGURATION in src/config.h
10368 rather than substituting in src/Makefile.in.
10369
10370 1994-04-26 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10371
10372 * Makefile.in (install-doc): New target.
10373 (install-arch-dep): Depend on install-doc.
10374 (mkdir): Create docdir.
10375
10376 1994-04-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10377
10378 * configure.in: Test for libresolv.a.
10379 Substitute machfile and opsysfile.
10380
10381 1994-04-22 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10382
10383 * Makefile.in (.PHONY, install): Kill reference to obsolete do-install.
10384 (install-arch-dep): Install under the name $(EMACS).
10385
10386 1994-04-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10387
10388 * configure.in (version): Use entire value of emacs-version.
10389 (mips-siemens-sysv*): New alternative.
10390
10391 1994-04-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10392
10393 * Makefile.in (install-arch-indep): Don't install dired-x*.
10394
10395 1994-04-18 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10396
10397 * configure.in (src/Makefile, lib-src/Makefile): Delete ^L.
10398 Fix definition of $undefs.
10399
10400 1994-04-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10401
10402 * configure.in (window_system): Obey --with-x11=no and --with-x10=no.
10403
10404 * configure.in (lib-src/Makefile.in): Use src, not lib-src, in -I.
10405
10406 1994-04-16 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
10407
10408 * configure.in: Call AC_LANG_C, if it's defined, after AC_PREPARE.
10409
10410 1994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10411
10412 * configure.in (lib-src/Makefile.in): Make this from Makefile.in.in
10413 and run it thru cpp, as with src/Makefile.in.
10414
10415 * configure.in: Use AC_SET_MAKE.
10416
10417 1994-04-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10418
10419 * configure.in (i[34]86-ncr-sysv*): Use usg5-4-2.
10420
10421 1994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10422
10423 * Makefile.in (MAKE): Don't just assign it--use @SET_MAKE@.
10424
10425 * configure.in (CFLAGS): Exclude ${CFLAGS} from singlequotes.
10426 (printing the choices): Make the toolkit message unconditional.
10427 (USE_X_TOOLKIT): Use `none', not `no', if none.
10428 (include libsrc_libs): Include config.h, and specify -I for srcdir.
10429 Get rid of temp file foofoo1.
10430
10431 1994-04-13 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10432
10433 * configure.in (CFLAGS): Use shell syntax, not Makefile.
10434
10435 1994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10436
10437 * configure.in (window_system): If no X, set USE_X_TOOLKIT=no.
10438 (printing the choices): State choice of toolkit.
10439 (libsrc_libs): Recalculate after writing config.h;
10440 then update lib-src/Makefile.
10441
10442 1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10443
10444 * configure.in: Add sunos4shr as alternative for suns.
10445 Conditionals testing for null $CC were backwards.
10446
10447 1994-04-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10448
10449 * make-dist (msdos): Don't link patch1. Link sed*.inp, not sed.in*.
10450
10451 1994-04-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10452
10453 * configure.in: Handle -isc4.0*.
10454
10455 1994-03-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10456
10457 * configure.in (esix5): Set NON_GNU_CPP.
10458
10459 1994-03-24 Roland McGrath (roland@mole.gnu.ai.mit.edu)
10460
10461 * Makefile.in (thisdir): Nonsensical variable removed.
10462 (install-arch-indep): Set shell var thisdir=`pwd` before cd and cd
10463 back to $thisdir, rather than the directory `this_dir'.
10464
10465 1994-03-17 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10466
10467 * Makefile.in (install-arch-indep): Add missing backslash after a
10468 `then'.
10469
10470 1994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10471
10472 * Makefile.in (thisdir): New variable.
10473 (install-arch-indep): Go back to thisdir to run INSTALL_DATA.
10474
10475 1994-03-08 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10476
10477 * configure.in: Add freebsd.
10478
10479 1994-03-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10480
10481 * configure.in: Check for fpathconf.
10482
10483 1994-03-02 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10484
10485 * configure.in (with_x_toolkit): Fix typo in previous change.
10486
10487 1994-03-01 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10488
10489 * configure.in: New s-file for rs60000-ibm-aix3.2.5.
10490
10491 1994-02-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10492
10493 * configure.in (with_x_toolkit): Don't allow motif or open-look.
10494
10495 1994-02-24 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
10496
10497 * configure.in: Fix value of docdir.
10498 * Makefile.in (install-arch-indep): Install DOC* in docdir.
10499
10500 1994-02-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10501
10502 * configure.in (*-sysv4.1): Set NON_GNU_CPP.
10503
10504 1994-02-22 Karl Heuer (kwzh@geech.gnu.ai.mit.edu)
10505
10506 * configure.in: New variable docdir to control where the docstring
10507 file goes.
10508 Makefile.in: Use it to initialize PATH_DOC in paths.h.
10509
10510 1994-02-22 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
10511
10512 * configure.in: When --run-in-place, don't inherit archlibdir.
10513
10514 1994-02-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10515
10516 * Makefile.in (install-arch-dep, install-arch-indep):
10517 New targets split up former do-install rule.
10518 (do-install): Target deleted.
10519
10520 1994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10521
10522 * configure.in (mips-sony-newsos*): New configuration.
10523
10524 1994-02-14 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
10525
10526 * configure.in (rs6000-bull-bosx*): Add support for BULL dpx20.
10527
10528 1994-02-11 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
10529
10530 * configure.in: Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
10531
10532 1994-02-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10533
10534 * configure.in: Don't initialize CC.
10535
10536 1994-02-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10537
10538 * configure.in (creating src/Makefile): Also generate -U switches
10539 for symbols in the $configuration value.
10540
10541 * configure.in: Check for sys_siglist being declared in system header.
10542
10543 1994-02-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10544
10545 * configure.in (creating src/Makefile): Delete blank lines
10546 along with lines of whitespace.
10547 (m68k-motorola-sysv*, m68000-motorola-sysv*): Compute proper CC value.
10548
10549 1994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10550
10551 * configure.in: Get, use, and substitute C_SWITCH_MACHINE
10552 like C_SWITCH_SYSTEM.
10553 (m68*-motorola-sysv*): Set CC. Require cpu type to be m68k or m68000.
10554
10555 1994-02-04 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
10556
10557 * configure.in (drem): Check for this function.
10558
10559 1994-02-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10560
10561 * configure.in (Using NON_GNU_CPP): Don't lose if it has spaces.
10562 If CPP was inherited from environment, don't use NON_GNU_CPP.
10563 (NON_GNU_CC): Likewise.
10564 (handling with_gcc): Use explicit if in the `no' case.
10565 (cc_specified): New variable; if set, don't use NON_GNU_CC.
10566
10567 1994-02-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10568
10569 * configure.in (mips-mips-riscos4*): Set NON_GNU_CPP.
10570
10571 1994-02-01 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
10572
10573 * configure.in: Check whether fmod exists.
10574
10575 1994-01-31 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10576
10577 * make-dist: Distribute {src,lisp}/ChangeLog.? instead of
10578 {src,lisp}/OChangeLog.
10579
10580 1994-01-22 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10581
10582 * configure.in: Restore Jan 8 and Jan 16 changes. The -U hack is
10583 necessary for proper operation. This code works with the current
10584 released version of Autoconf.
10585
10586 1994-01-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10587
10588 * configure.in (with_x_toolkit): Treat values athena and lucid alike.
10589 (USE_X_TOOLKIT): Define it for all values except `no'.
10590
10591 * configure.in: Undo first Jan 8 change and Jan 16 change.
10592
10593 1994-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10594
10595 * configure.in: Handle --with-x-toolkit. Produce lwlib/Makefile.
10596 Substitute USE_X_TOOLKIT as both C macro and Make variable.
10597
10598 * Makefile.in (lwlib/Makefile): New target.
10599 (SUBDIR_MAKEFILES): Depend on lwlib/Makefile.
10600 (clean, mostlyclean, distclean, realclean): Handle lwlib subdir.
10601 (unlock, relock): Handle lwlib subdir.
10602
10603 * Makefile.in: Add some .PHONY targets.
10604
10605 * make-dist: Handle lwlib subdir like oldXMenu subdir.
10606
10607 * lwlib: New subdirectory.
10608
10609 1994-01-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10610
10611 * configure.in: If CPP has a value that is a directory,
10612 discard the value.
10613
10614 1994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10615
10616 * configure.in (srcdir_undefs): Add g flag to sed substitution to
10617 remove -U[0-9]*.
10618
10619 1994-01-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10620
10621 * Makefile.in (do-install): Install the dired-x info files.
10622
10623 * configure.in: Provide for variable LD_SWITCH_X_SITE_AUX.
10624 (See src/s/sol2.h.)
10625
10626 1994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10627
10628 * configure.in (m68k-harris-cxux*, m88k-harris-cxux*): New configs.
10629
10630 1994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10631
10632 * configure.in (creating src/Makefile): Put code inside 2nd arg to
10633 AC_OUTPUT as it should be; hopefully no one will again see fit to
10634 gratuitously break this and not make a change log entry.
10635 Optimized sed processing of Makefile.in and cpp output; now
10636 preserves comments previously removed from the cpp input.
10637 Eliminated temp file for cpp output. Generate -U switches to
10638 undefine all identifiers that appear in the directory name
10639 ${srcdir}; pass these to cpp.
10640
10641 * configure.in (version): Fix sed regexp to match two-elt version
10642 number.
10643
10644 * configure.in: Check for strerror.
10645
10646 1994-01-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10647
10648 * configure.in: Test for bcmp.
10649
10650 1994-01-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10651
10652 * make-dist (tempdir): Put subdir msdos into the distribution.
10653
10654 1993-01-07 Morten Welinder (terra@diku.dk)
10655
10656 * config.bat: New file.
10657
10658 1994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10659
10660 * Makefile.in (${SUBDIR} target): Pass down LDFLAGS and CPPFLAGS.
10661
10662 1994-01-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10663
10664 * configure.in (m68*-next-*): Don't care about which os is specified.
10665 (i[34]86-*-*): Check for *-nextstop*.
10666
10667 1993-12-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10668
10669 * configure.in: Check for setsid.
10670
10671 1993-12-17 Richard Stallman (rms@srarc2)
10672
10673 * configure.in (*-sun-solaris*): Add special case for Solaris 2.3.
10674
10675 1993-12-15 Richard Stallman (rms@srarc2)
10676
10677 * Makefile.in (mkdir): Make only the lockdir writable.
10678
10679 * configure.in (i860-*-sysv4): Rename from i860-*-sysvr4.
10680
10681 1993-12-11 Richard Stallman (rms@srarc2)
10682
10683 * Makefile.in (libdir): Use @libdir@.
10684
10685 1993-12-08 Richard Stallman (rms@srarc2)
10686
10687 * Makefile.in (install): Add empty command.
10688
10689 1993-12-04 Richard Stallman (rms@srarc2)
10690
10691 * make-dist: Put man/getopt.c in the dist.
10692
10693 * configure.in (LIBS): Add test for existence of XSetWMProtocols.
10694
10695 * Makefile.in (install): Depend on ${SUBDIR}, not `all'.
10696
10697 1993-12-03 Richard Stallman (rms@srarc2)
10698
10699 * configure.in (solaris): Set NON_GNU_CPP instead of CPP.
10700 Set it for all solaris versions.
10701 (mips-mips-riscos4*): Set NON_GNU_CC, not CC.
10702 (after checking for GCC): If not GCC, and NON_GNU_CPP is set, set CPP.
10703 Likewise for NON_GNU_CC and CC.
10704
10705 1993-12-01 Richard Stallman (rms@srarc2)
10706
10707 * configure.in (mips-mips-riscos4*): Assign variable CC.
10708 (checking ${with_gcc}): If "no", don't override CC if already set.
10709 (CC): Initialize it as empty.
10710
10711 1993-11-30 Richard Stallman (rms@srarc2)
10712
10713 * configure.in (Suns): Set CPP if *-solaris2.3*.
10714
10715 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10716
10717 * Version 19.22 released.
10718
10719 * Makefile.in (do-install): Use umask 022 in copying etc and lisp dirs.
10720
10721 1993-11-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10722
10723 * make-dist: When breaking links, use cp -p.
10724 Copy install.sh into distribution.
10725 Move the temp dir up into the parent dir;
10726 don't leave the staging dir make-dist.tmp... in existence.
10727 * install.sh: New file.
10728
10729 1993-11-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10730
10731 * configure.in (i[34]86-ncr-sysv*): New specific alternative.
10732
10733 1993-11-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10734
10735 * configure.in (version): When --run-in-place, exclude
10736 ${datadir}/emacs/site-lisp from locallisppath.
10737
10738 1993-11-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10739
10740 * configure.in: Delete jumk.c before writing it.
10741
10742 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10743
10744 * Version 19.21 released.
10745
10746 * Makefile.in (mkdir): Ignore error from chmod.
10747
10748 1993-11-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10749
10750 * make-dist: Don't put lisp/forms.README in the distribution.
10751
10752 1993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10753
10754 * configure.in (creating src/Makefile): Before running cpp,
10755 discard all lines that start with `# Generated' or /**/#.
10756
10757 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10758
10759 * Version 19.20 released.
10760
10761 * make-dist: Use build-ins.in, not build-install.in.
10762 Don't bother updating TAGS since it's not included.
10763
10764 * build-ins.in: Renamed from build-install.in.
10765
10766 1993-11-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10767
10768 * make-dist: Don't try to link *.texinfo--there are none now.
10769 When running make in lib-src, specify YACC var value.
10770
10771 1993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10772
10773 * configure.in (extrasub): Add vpath patterns for %.[yls].
10774
10775 * configure.in: Don't do seddery on config.status after AC_OUTPUT.
10776 Instead just include the commands to make src/Makefile as the
10777 second arg to AC_OUTPUT.
10778
10779 * configure.in: Use : instead of dnl for comment inside
10780 $makefile_command.
10781
10782 * configure.in: No longer use vpath_sed. Instead, when we notice
10783 srcdir already configured, set extrasub to hack vpath in the
10784 makefiles.
10785
10786 * configure.in: In cmds to make src/Makefile, chmod Makefile.new
10787 before moving it.
10788 * Makefile.in (VPATH): Define to @srcdir@.
10789
10790 1993-09-28 Brian J. Fox (bfox@cubit)
10791
10792 * configure.in: Don't copy ${srcdir}/src/Makefile.in; that file
10793 doesn't exist. Just copy src/Makefile.in instead.
10794 Touch all of the Makefiles after editing config.status.
10795
10796 * INSTALL: Update documentation to match new configuration
10797 mechanism.
10798
10799 1993-09-27 Brian J. Fox (bfox@ai.mit.edu)
10800
10801 * configure.in: Allow any of the path or directory Makefile
10802 variables to be set with flags to configure. Create all Makefiles
10803 at configure time. Edit special commands into config.status after
10804 src/Makefile.in is built from src/Makefile.
10805
10806 * Makefile.in (src/Makefile, lib-src/Makefile, oldXMenu/Makefile):
10807 If these files are out of date, simply have config.status
10808 rebuild them; don't rebuild them explicitly.
10809
10810 1993-09-25 Brian J. Fox (bfox@ai.mit.edu)
10811
10812 * build-install.in: Change src/xemacs to src/emacs. We no longer
10813 create src/xemacs, so the file wouldn't be found.
10814
10815 * make-dist: Remove `src/ymakefile', add `src/Makefile.in.in'.
10816
10817 1993-09-24 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
10818
10819 * configure.in: Avoid forcing the search of /usr/include before
10820 fixed include files by resetting C_SWITCH_X_SITE if it is
10821 "-I/usr/include".
10822
10823 1993-09-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10824
10825 * Makefile.in (@rip_paths@locallisppath):
10826 Delete ${datadir}/emacs/site-lisp.
10827
10828 1993-09-15 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10829
10830 * configure.in:
10831 Use AC_QUOTE_SQUOTE twice to properly quote vpath_sed value.
10832 Remove ${extra_output} from AC_OUTPUT call.
10833
10834 1993-09-17 Brian J. Fox (bfox@inferno)
10835
10836 * make-dist: Quote backquotes found in strings to be echoed.
10837
10838 * configure.in: Use "sh -c pwd" when we want to avoid having the
10839 shell fix up the value of $PWD.
10840
10841 1993-09-13 Brian J. Fox (bfox@inferno)
10842
10843 * Makefile.in (do-install): Don't abort if ln or chmod at the end
10844 of the installation fail. Suggested by Karl Berry.
10845
10846 1993-08-30 Brian J. Fox (bfox@inferno)
10847
10848 * Makefile.in (*clean): Use "$(MAKE) $(MAKEFLAGS)" wherever "make"
10849 was used. Set MAKEFLAGS from MFLAGS.
10850
10851 1993-09-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10852
10853 * configure.in: Test for res_init in libc.
10854
10855 1993-09-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10856
10857 * configure.in: In the file ${tempcname}, use configure___
10858 instead of @configure@.
10859
10860 1993-09-12 Roland McGrath (roland@sugar-bombs.gnu.ai.mit.edu)
10861
10862 * make-dist: Dist vpath.sed.
10863
10864 * Makefile.in (lib-src/Makefile, src/Makefile, oldXMenu/Makefile):
10865 Depend on vpath.sed.
10866 Replace sed command for VPATH with @vpath_sed@.
10867
10868 * configure.in: Substitute variable `vpath_sed'.
10869 If not in $srcdir and $srcdir is configured,
10870 issue warning that GNU make is required,
10871 and set vpath_sed to use vpath.sed script.
10872
10873 1993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10874
10875 * configure.in: Remove check for $srcdir being configured.
10876 This pretty much works now.
10877 Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
10878 Check for XFree86 (/usr/X386/include) independent of whether
10879 -lXbsd exists.
10880
10881 * Makefile.in (info, dvi, clean, mostlyclean, distclean,
10882 realclean, unlock, relock): Use `$(MAKE)' in place of plain
10883 `make'.
10884
10885 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10886
10887 * Version 19.19 released.
10888
10889 * configure.in (i386-*-sunos4): Assume Sunos 4.0.
10890
10891 1993-08-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10892
10893 * configure.in: Check for XScreenNumberOfScreen.
10894
10895 1993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10896
10897 * configure.in: Add * to end of all configuration alternatives.
10898 (m68*-sony-newsos3*): New alternative.
10899
10900 1993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10901
10902 * make-dist: Include getdate.c in distribution.
10903
10904 * configure.in: For --help, use $PAGER if it is set.
10905 (LIB_X11_LIB): Default to -lX11.
10906 (mips-sgi-irix5.*): New alternative.
10907
10908 * Makefile.in (do-install): Install info/gnus* and info/sc*.
10909
10910 * configure.in (m68*-hp-hpux*, hppa*-hp-hpux*):
10911 Recognize *.B8.* as hpux version 8.
10912 (m68*-tektronix-bsd*): Fix typo in tek4300.
10913 (AC_HAVE_FUNCS): Add ftime.
10914
10915 1993-08-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10916
10917 * configure.in (m88k-tektronix-sysv3*): Add the missing *.
10918 Use tekxd88, not tekXD88.
10919
10920 1993-08-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10921
10922 * configure.in: Check for -lm. Then can check for frexp and logb.
10923
10924 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10925
10926 * Version 19.18 released.
10927
10928 * make-dist (src): Don't put gnu-hp300 in dist.
10929 (src, lisp): Include OChangeLog in dist.
10930
10931 1993-08-08 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10932
10933 * configure.in: Test for presence of logb and frexp functions.
10934
10935 1993-08-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10936
10937 * configure.in (machine): Add i370-ibm-aix*.
10938
10939 1993-08-03 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10940
10941 * configure.in (function checks): Test for mkdir and rmdir.
10942
10943 * configure.in (function checks): Don't test for random and bcopy
10944 only when we're building with X; look for them all the time.
10945
10946 1993-07-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10947
10948 * configure.in: Test for availability of bcopy functions, searching
10949 the X libraries if we're using X.
10950
10951 * configure.in: Test for the presence of/usr/lpp/X11/bin/smt.exp,
10952 and #define HAVE_AIX_SMT_EXP if we do. This is present in some
10953 versions of AIX, and needs to be passed to the loader.
10954
10955 * configure.in: Test for the availability of the
10956 XScreenResourceString function.
10957
10958 1993-07-30 David J. MacKenzie (djm@frob.eng.umd.edu)
10959
10960 * configure.in: If we found X on our own, set C_SWITCH_X_SITE and
10961 LD_SWITCH_X_SITE and assume --with-x11.
10962 Only look for X11 files if we weren't told about a window system
10963 or if we were told to use X11 but not told where.
10964 Search the libraries from the s and/or m files when checking for
10965 functions.
10966
10967 * configure.in: Remove any trailing slashes in prefix and exec_prefix.
10968
10969 1993-07-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10970
10971 * make-dist: Include lisp/dired.todo in the distribution.
10972
10973 1993-07-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10974
10975 * configure.in: Add code to set HAVE_INET_SOCKETS.
10976
10977 1993-07-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10978
10979 * configure.in: If we do find x_includes and x_libraries
10980 via AC_FIND_X, set C_SWITCH_X_SITE and LD_SWITCH_X_SITE.
10981
10982 1993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10983
10984 * make-dist: Include src/gnu-hp300 in the dist.
10985
10986 * configure.in (canonical): New variable holds the canonicalized
10987 configuration. Don't alter `configuration'. Use `configuration'
10988 for Makefile.in for file naming.
10989 (testing x_includes and x_libraries): Use =, not ==.
10990
10991 1993-07-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10992
10993 * Version 19.17 released.
10994
10995 * Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
10996 directory's makefile. This allows the invocation of CPP which
10997 builds xmakefile to receive these switches. The SunSoft C
10998 preprocessor inserts spaces between tokens if it doesn't get the
10999 -Xs flag requested in src/s/sol2.h.
11000
11001 1993-07-12 Frederic Pierresteguy (F.Pierresteguy@frcl.bull.fr)
11002
11003 * configure.in (m68k-bull-sysv3): New config.
11004
11005 1993-07-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11006
11007 * configure.in: Use the autoconf AC_FIND_X macro to try to find
11008 the X Windows libraries.
11009
11010 1993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11011
11012 * make-dist (tempdir): Don't create lisp/forms-mode directory in
11013 the distribution. Those files aren't kept in their own
11014 subdirectory any more.
11015
11016 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11017
11018 * Version 19.16 released.
11019
11020 1993-06-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11021
11022 * configure.in: Add --verbose flag.
11023
11024 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11025
11026 * version 19.15 released.
11027
11028 1993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11029
11030 * Makefile.in (top_distclean): Use -f switch when cleaning out
11031 lock dir; it might be empty.
11032
11033 * configure.in: Only check for -lXbsd once.
11034
11035 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11036
11037 * Version 19.14 released.
11038
11039 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11040
11041 * make-dist: If using gzip, create distribution with '.gz' extension.
11042
11043 * make-dist (lisp/term): This doesn't have a ChangeLog anymore.
11044 (lisp/forms-mode): This doesn't exist anymore.
11045
11046 * configure.in: Look for the closedir function.
11047
11048 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11049
11050 * configure.in (CPP): Autoconf sets this to a shell variable
11051 reference, which doesn't work when it's edited into a makefile.
11052 Expand that variable reference.
11053
11054 * Makefile.in (CPP): New variable.
11055 (src/Makefile): Edit CPP into src/Makefile.
11056
11057 * Makefile.in (src/Makefile): Don't bother exiting single quotes
11058 and entering double quotes to get the values of LD_SWITCH_X_SITE
11059 and the other make variables; make substitutes them in anyway.
11060
11061 * Makefile.in (uninstall): Don't remove the lisp and etc
11062 directories if they're in the source tree.
11063
11064 Bring mumbleclean targets into conformance with GNU coding standards.
11065 * Makefile.in (mostlyclean, clean): Separate these two; just have
11066 them pass the request to the subdirectory makefiles.
11067 (distclean): Pass the request down, and then get rid of the
11068 files configure built, and get rid of the Makefiles.
11069 (realclean): Pass the request down, and then do the same things
11070 distclean does.
11071 (uninstall, info, dvi): New targets.
11072
11073 * configure.in: Move clause for PC-compatible i386 box to the end
11074 of the case statement, to avoid masking configurations below.
11075
11076 * configure.in: Add case for m88k-motorola-sysv4.
11077
11078 * configure.in: Add support for HP/UX versions 7, 8, and 9 on
11079 the HP 68000 machines.
11080
11081 * configure.in: Put the arguments to LD_SWITCH_X_SITE's and
11082 C_SWITCH_X_SITE's -L and -I switches in quotes, so the
11083 preprocessor won't fiddle with them.
11084
11085 1993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11086
11087 * Makefile.in (TAGS): cd to src to run etags.
11088
11089 1993-06-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11090
11091 * configure.in (version): Check the X libraries for XrmSetDatabase
11092 and random, and see if we have -lXbsd.
11093
11094 1993-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11095
11096 * configure.in: Pass "-Isrc" to the CPP we run to examine the
11097 s/*.h and m/*.h files. Martin Tomes
11098 <mt00@controls.eurotherm.co.uk> says ISC Unix 3.0.1 needs it.
11099
11100 1993-06-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11101
11102 * configure.in: Move i386-prime-sysv* and i386-sequent-bsd*
11103 above the general i386 alternative.
11104
11105 1993-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11106
11107 * configure.in: Recognize configuration name for Data General
11108 AViiON machines.
11109
11110 * configure.in: Use AC_LONG_FILE_NAMES.
11111
11112 1993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11113
11114 * configure.in: Test for bison.
11115 * Makefile.in (YACC): New variable.
11116 (lib-src/Makefile.in): Edit YACC into the makefile.
11117
11118 1993-06-08 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11119
11120 * Version 19.13 released.
11121
11122 * configure.in (CFLAGS): Don't set this according to the value of
11123 the GCC shell variable. Instead, consult the machine and system
11124 files for the values of C_OPTIMIZE_SWITCH and C_DEBUG_SWITCH, and
11125 test __GNUC__ while we're at it.
11126
11127 * configure.in: Remove extra ;; from hpux cases.
11128
11129 1993-06-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11130
11131 * configure.in: Check to see if the system has -ldnet.
11132
11133 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11134
11135 * make-dist: Add clauses to distribute lisp/forms-mode.
11136
11137 1993-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11138
11139 * configure.in (machine): Fix the versions in hpux version number test.
11140 Do not guess based on cpu type. Do check for explicit system version.
11141
11142 1993-06-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11143
11144 * configure.in: Do NOT look for `unknown' as company name.
11145
11146 1993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11147
11148 * configure.in: Fix typo in message.
11149
11150 1993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11151
11152 * Version 19.12 released.
11153
11154 * Makefile.in (do-install): Correct previous etc-copying change.
11155 Partially rewrite using `if'.
11156 (src/Makefile): Insert --x-libraries option into LD_SWITCH_X_SITE.
11157
11158 * Version 19.11 released.
11159
11160 * configure.in: Handle 386bsd.
11161
11162 1993-05-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11163
11164 * make-dist: Update getdate.c.
11165
11166 * configure.in: Handle bsd386.
11167
11168 * Makefile.in (do-install): Use `-' in tar options.
11169
11170 * configure.in: Change ! "${...}" to x"${...}" = x.
11171
11172 * Makefile.in (do-install): Copy the DOC-* files from the build
11173 etc directory, as well as lots of things from ${srcdir}/etc.
11174
11175 * make-dist: Copy config.guess.
11176
11177 * configure.in: Handle AIX versions 1.2, 1.3.
11178
11179 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11180
11181 * configure.in: Use s/bsd4-3.h for mips-mips-riscos4, and add
11182 the configuration name mips-mips-usg* to represent USG systems.
11183
11184 * configure.in: Fix logic to detect if srcdir is already configured.
11185
11186 * Makefile.in: Pass in LD_SWITCH_X_SITE.
11187
11188 * Makefile.in (mkdir, clean, mostlyclean, do-install): Use `(cd
11189 foo && pwd)` instead of `(cd foo ; pwd)` to get the canonical name
11190 of a directory; cd might fail, and have pwd print out the current
11191 directory.
11192
11193 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11194
11195 * configure.in: When looking for sources, use '.', not `.`. Also '..'.
11196
11197 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11198
11199 * configure.in: Complain if srcdir points at an already-configured
11200 tree.
11201
11202 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11203
11204 * Version 19.10 released.
11205
11206 1993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11207
11208 * Makefile.in: Use Makefile comments, not C comments.
11209
11210 * configure.in: Add case for the Tektronix XD88.
11211
11212 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11213
11214 * configure.in: Handle sysv4.2 and sysvr4.2.
11215
11216 1993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11217
11218 * configure.in: Traverse the argument list without destroying it;
11219 don't use shift. It turns out that "set - ${saved_arguments}"
11220 doesn't work portably.
11221
11222 * configure.in: Add missing "fi".
11223
11224 * make-dist: Rebuild configure if configure.in is newer.
11225
11226 * Makefile.in (src:, lib-src:, FRC:): Force the src and lib-src
11227 targets to be executed even if make remembers that it has already
11228 satisfied FRC.
11229
11230 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11231
11232 * Makefile.in (do-install): Delete redundant code to copy etc twice.
11233
11234 * configure.in (romp): Handle various version numbers with aos and bsd.
11235
11236 1993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11237
11238 * configure.in: Fix message text.
11239
11240 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11241
11242 * make-dist: Make a `site-lisp' directory in the distribution,
11243 instead of a `local-lisp' directory, which hasn't been the
11244 appropriate name for a long time.
11245 * Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
11246 from the distribution first, then /usr/local/lib/emacs/site-lisp.
11247
11248 * Makefile.in (do-install): Correctly detect if ./etc and
11249 ${srcdir}/etc are the same.
11250
11251 * configure.in: Extract UNEXEC from the system configuration
11252 files, compute the name of the source file corresponding to the
11253 object file, and #define it as UNEXEC_SRC in config.h.
11254
11255 * configure.in: If srcdir is '.', then try using PWD to make it
11256 absolute.
11257
11258 * configure.in: Include ${srcdir} in the printed report, to help
11259 people notice if it's an automounter path.
11260
11261 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11262
11263 * configure.in (prefix): Don't run pwd on srcdir unnecessarily.
11264
11265 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11266
11267 * Makefile.in (do-install): Delete the dest dir, not the source dir,
11268 when they are different. Add `shift' command.
11269 (COPYDESTS, COPYDIR): Delete external-lisp dir.
11270 (externallispdir): Var deleted.
11271
11272 * configure.in: Delete spurious paren outputting short_usage.
11273
11274 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11275
11276 * Version 19.9 released.
11277
11278 1993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11279
11280 * Makefile.in (${SUBDIR}): Pass the value of the make variable to
11281 subdirectory makes.
11282
11283 * make-dist: Check for .elc files with no corresponding .el file.
11284
11285 * Makefile.in (mkdir): Make all the directories in locallisppath.
11286
11287 * config.guess: New file.
11288 * configure.in: Use it, tentatively.
11289 * INSTALL: Mention its usage.
11290
11291 * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;
11292 the former gives you the operating system rev directly.
11293 Use s/hpux.h if we don't recognize what we got.
11294
11295 * Makefile.in (do-install): Don't remove a destination directory
11296 if it's the same as the source. If ${srcdir}/info == ${infodir},
11297 don't try to copy the info files.
11298
11299 * Makefile.in (COPYDIR, COPYDESTS): Don't mention etc twice; this
11300 doesn't work if you're not using a separate source directory.
11301 (do-install): Copy the build tree's etc directory only after
11302 making sure it's not also the source tree's etc directory.
11303
11304 1993-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11305
11306 * configure.in: Handle sunos4.1.3 specially.
11307
11308 1993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11309
11310 * Makefile.in (INSTALL): Add definition.
11311
11312 * configure.in: Fix some messages. Support -with-gnu-cc.
11313 At the end, use `set --', not `set -'.
11314 Delete spurious `.h' in hpux alternatives.
11315
11316 1993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11317
11318 * Version 19.8 released.
11319
11320 1993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11321
11322 * configure.in: When looking for source in the same directory as
11323 the configure script, make the path thus discovered absolute.
11324 If the user specifies the `--srcdir' switch, make that directory
11325 absolute too.
11326
11327 * Makefile.in (srcdir): Remove comment saying this doesn't work.
11328
11329 * Makefile.in (src/paths.h): Edit the `infodir' variable into this
11330 too, as the value of the PATH_INFO macro.
11331
11332 * configure.in: Check to see if the source lives in the same
11333 directory as the configure script.
11334
11335 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11336
11337 * Makefile.in (install): Split this into `install' and
11338 `do-install', to give people more control over exactly what gets
11339 done.
11340 (do-install): New target, containing the guts of `install'.
11341 Don't remove and recreate the directories inside the copying loop - do
11342 it all before the copying loop. Pass more flags to the lib-src
11343 make.
11344 (mkdir): Create ${infodir}, ${mandir}, and ${sitelispdir} here, to
11345 avoid errors and warnings.
11346
11347 * configure.in: For generic IBM PC boxes, insist on "unknown" for
11348 the manufacturer - the more general case was blocking other i386
11349 configuration names below, and that's how the names are written in
11350 MACHINES anyway.
11351
11352 * make-dist: When breaking links, remove the link before moving
11353 the copy onto it, to avoid interactive behavior.
11354
11355 * Makefile.in: Doc fix.
11356
11357 * configure.in: Doc fix.
11358
11359 * INSTALL: Mention --exec-prefix option.
11360
11361 * configure.in: Add support for the `--exec-prefix' option.
11362 * Makefile.in: Accept that support.
11363
11364 * configure.in: Use the AC_PROG_INSTALL macro.
11365 * Makefile.in (INSTALL): Variable removed.
11366 (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
11367
11368 * configure.in: Distinguish between hp800's and hp700's by calling
11369 "uname -m".
11370
11371 1993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11372
11373 * configure.in: Recognize configuration names for i860 boxes
11374 running SYSV.
11375
11376 1993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11377
11378 * configure.in: Distinguish between hp800's and hp700's by the
11379 version of HP/UX they run, since that's something people are more
11380 likely to know - hp700's run 8.0.
11381 Add HP 700 configuration.
11382
11383 * configure.in: Test for the presence of the `rename' function.
11384
11385 * Makefile.in (C_SWITCH_X_SITE): New variable - get this from
11386 configure.in.
11387 (oldXMenu/Makefile): Edit C_SWITCH_X_SITE into this.
11388
11389 * make-dist: Break intra-tree links.
11390
11391 * configure.in: Explain that this is an autoconf script, and give
11392 instructions for rebuilding configure from it. Arrange to put
11393 comments in configure explaining this too.
11394
11395 * configure.in: Make the first line of the configure script be
11396 "#!/bin/sh". Leaving the first line blank didn't work.
11397
11398 * configure.in (long_usage): Remove; made short_usage describe
11399 the options briefly.
11400
11401 * configure.in: Implement the --prefix option.
11402 * Makefile.in (prefix): Add support for it here.
11403 * INSTALL: Document it here.
11404
11405 * Makefile.in (install): Don't assume that the files in the `info'
11406 subdirectory match *.info. They don't have that prefix.
11407
11408 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11409
11410 * configure.in: Add case for version 5 of Esix.
11411
11412 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11413
11414 * Version 19.7 released.
11415
11416 * make-dist: There aren't any *.com files in lib-src anymore.
11417
11418 * make-dist: Copy texinfo.tex and texindex.c, rather than linking
11419 them; they're symlinks to other filesystems on the GNU machines.
11420
11421 * make-dist: Check that the manual reflects the same version of
11422 Emacs as stated in lisp/version.el. Edit that version number into
11423 the README file.
11424
11425 1993-05-21 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11426
11427 * configure.in: Remove the hack of AC_DEFINE; use
11428 AC_DEFINE_UNQUOTED.
11429
11430 1993-05-20 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11431
11432 * make-dist: Don't distribute precomp.com, compile.com, or
11433 link.com from ./src; they're in ./vms now.
11434
11435 Some time-handling patches from Paul Eggert:
11436 * configure.in: Add AC_TIMEZONE.
11437
11438 1993-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11439
11440 * configure.in: Recognize Linux as a valid operating system for
11441 the i386.
11442
11443 1993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11444
11445 * make-dist: Distribute some VMS files we got from Richard Levitte.
11446
11447 * Makefile.in (oldXMenu/Makefile): Take oldXMenu/Makefile.in as
11448 the source for the sed command, not oldXMenu/Makefile.
11449
11450 1993-05-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11451
11452 * INSTALL: Don't claim the srcdir option doesn't work.
11453
11454 1993-05-16 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11455
11456 * configure.in: Include remarks saying what order the autoconf
11457 tests should go in, and remind people to change config.h.in
11458 whenever they add autoconf tests which make #definitions.
11459
11460 * make-dist: Distribute oldXMenu/Makefile.in, not oldXMenu/Makefile.
11461
11462 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11463
11464 * Makefile.in (oldXMenu/Makefile): Make this depend on
11465 ${srcdir}/oldXMenu/Makefile.in, not itself.
11466
11467 * PROBLEMS: Some updates from David J. Mackenzie.
11468
11469 More changes from David J. Mackenzie.
11470 * Makefile.in (install.sysv, install.xenix, install.aix):
11471 Targets removed; autoconf and config.h should specify all these
11472 differences.
11473 (buildlisppath): Make this path depend on ${srcdir}.
11474 (INSTALLFLAGS): Remove.
11475 (INSTALL): Include the -c flag.
11476 (install): Change the way we invoke install accordingly.
11477
11478 Install ${srcdir} changes from DJM.
11479 * Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this
11480 list.
11481 (COPYDIR, COPYDESTS): Install files from both the etc directory in
11482 the source tree and the etc directory in the object tree.
11483 (${SUBDIR}): Pass the prefix variable down to submakes.
11484 (everywhere): Use `sed', not `/bin/sed'. Not all systems have sed
11485 in /bin.
11486 (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in
11487 values for srcdir and VPATH.
11488 (install): Add `v' flag to tar command. Make sure that `dir'
11489 exists in ${srcdir}/info before copying it. Remember that the man
11490 pages come from the source tree, not the object tree.
11491 * configure.in: Remove remarks saying that the --srcdir option
11492 doesn't work.
11493 Create the etc directory in the object tree.
11494 Recognize configuration names of the form *-sun-solaris*.
11495 Recognize sunos5 and solaris as operating system names.
11496
11497 * configure.in: Use the AC_TIME_WITH_SYS_TIME macro, for
11498 lib-src/getdate.y and src/systime.h.
11499
11500 1993-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11501
11502 * make-dist: Make links in info subdir.
11503
11504 1993-05-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11505
11506 * configure.in: Call AC_STDC_HEADERS.
11507
11508 1993-05-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11509
11510 * configure.in: Sidestep autoconf's quoting of the second argument
11511 of AC_DEFINE, so we can specify the value to put there. It would
11512 be nice if autoconf provided some way to specify computed values
11513 for macros.
11514
11515 1993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11516
11517 * Makefile.in (DEFS): Delete; since we're using AC_CONFIG_HEADER,
11518 this is always just -DHAVE_CONFIG_H.
11519
11520 The GNU coding standards specify that CFLAGS should be left for
11521 users to set.
11522 * Makefile.in (CFLAGS): Let configure determine the default value
11523 for this.
11524 Don't have it default to DEFS.
11525 (${SUBDIR}): Pass CFLAGS down to submakes, not DEFS.
11526 (lib-src/Makefile, src/Makefile): Edit the default value for
11527 CFLAGS into these files, not DEFS.
11528 * configure.in (CFLAGS): Choose a default value for this - "-g"
11529 normally, or "-g -O" if we're using GCC. Edit it into the
11530 top-level Makefile.
11531
11532 * configure.in: When scanning the machine and system description
11533 #include files, write their names to conftest.c properly.
11534
11535 1993-05-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11536
11537 * configure.in: In configuration name case for Apallos running
11538 Domainios, set opsys, not opsysfile.
11539
11540 * configure.in: Use the autoconf AC_CONFIG_HEADER macro to produce
11541 src/config.h, instead of AC_OUTPUT; the latter overwrites
11542 src/config.h even when it hasn't changed, puts a makefile-style
11543 comment at the top even though it's C code, and produces a
11544 config.status script which doesn't do the job right.
11545
11546 * configure.in: Add AC_LN_S test, so we can tell whether or not we
11547 can use a symbolic link to get the X Menu library into src.
11548 * Makefile.in (LN_S): New variable.
11549 (src/Makefile): Edit the value of LN_S into this makefile.
11550
11551 1993-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11552
11553 * configure.in: Support *-sco3.2v4* as opsystem.
11554
11555 * make-dist: Don't include calc directory.
11556 Exclude many files in the man directory; copy a few.
11557
11558 1993-05-04 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11559
11560 * configure.in: Use AC_HAVE_HEADERS to test for sys/time.h, and
11561 call AC_STRUCT_TM to see what's in time.h.
11562
11563 * configure.in: Employ quoting stupidity to get the value of CPP
11564 to expand properly.
11565
11566 1993-04-27 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11567
11568 * configure.in: Use the AC_PROG_CPP macro, and then use the CPP
11569 variable to scan the machine and system description files.
11570
11571 * configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
11572 so that getdate.y builds correctly.
11573
11574 1993-04-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11575
11576 * configure.in (tempcname): Change this to "conftest.c", so it will
11577 work properly on systems with short filenames; this is the name
11578 autoconf uses.
11579
11580 * configure.in: Also detect the availability of dup2 and
11581 gethostname.
11582
11583 * configure.in: Use the AC_ALLOCA test.
11584 * Makefile.in (ALLOCA): New variable, to be set by ./configure.
11585 (lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
11586
11587 1993-04-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11588
11589 * make-dist: Distribute configure, as well as configure.in.
11590 Oversight.
11591
11592 1993-04-23 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11593
11594 * Makefile.in (install): Print out the name of the directory we're
11595 copying, so people can have some idea of whether we're making
11596 progress.
11597
11598 * Makefile.in (install.aix, install.xenix, install.sysv, install):
11599 Don't forget to re-create the COPYDESTS directories after we clear
11600 them out.
11601
11602 1993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11603
11604 * Makefile.in: Add autoconf cookies so that the configure
11605 script can comment out sections of path variable definitions to
11606 choose between the installable configuration and the run-in-place
11607 configuration.
11608 * configure.in: Add new option `--run-in-place', to select the
11609 run-in-place path definitions.
11610
11611 * configure.in: Add a clause to the big configuration name case
11612 for the NeXT machine.
11613
11614 1993-04-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11615
11616 * Makefile.in (install, install.sysv, install.xenix, install.aix):
11617 Make sure that each source directory exists, and is different from
11618 the destination directory; then, delete the destination before
11619 copying over the source.
11620
11621 * make-dist: Distribute configure.in, instead of configure.
11622
11623 1993-04-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11624
11625 * configure.in: Don't set CC to "gcc -O" if the user specifies
11626 `--with-gcc'. Add -O to DEFS if GCC is set.
11627
11628 1993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11629
11630 * Makefile.in (clean mostlyclean): Missing right paren.
11631
11632 * configure.in: When checking for X windows, search for an X11
11633 subdirectory of ${x_includes}.
11634
11635 * configure.in: Check for gettimeofday function, for getdate.y.
11636
11637 Change `configure' to a mixture of custom code and autoconf stuff.
11638 autoconf can't derive all the information we need, but we'd really
11639 like to be able to take advantage of some of its tests, and its
11640 file-editing facilities.
11641 * configure.in: Renamed from configure.
11642 Quote the sections of shell script we want copied literally to
11643 the configure script.
11644 (compile): Initialize this to make the autoconf macros' code happy.
11645 Use AC_PROG_CC, AC_CONST, and AC_RETSIGTYPE instead of writing out
11646 code to do their jobs.
11647 Use autoconf to produce Makefile and src/config.h.
11648 Remove the Makefile-style comment that autoconf places at the top
11649 of src/config.h.
11650 (config_h_opts): Remove - no longer necessary.
11651 * Makefile.in (configname): Rename to configuration.
11652 (CONFIG_CFLAGS): Rename to DEFS.
11653 (CC, DEFS, C_SWITCH_SYSTEM, version, configuration): Adjust to
11654 get values via autoload @cookies@.
11655 (libsrc_libs): Get this from autoconf. We used to do nothing
11656 about this.
11657 (${SUBDIR}): Pass DEFS to submakes instead of CONFIG_CFLAGS.
11658
11659 * Makefile.in (src/paths.h, lib-src/Makefile, src/Makefile):
11660 Don't echo the move-if-change command.
11661
11662 1993-04-08 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
11663
11664 * make-dist: Distribute lib-src/rcs-checkin.
11665
11666 * make-dist: It's oldXMenu/compile.com, not oldXMenu/compile.mms.
11667 Don't try to make links to the RCS or Old subdirectories.
11668 Use the appropriate extension for the compression type in use.
11669 Create the tar file in the shell's initial default directory, not
11670 in ${tempparent}.
11671 Erase the whole ${tempparent} tree, not just ${tempdir}.
11672
11673 1993-03-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11674
11675 * Makefile.in (src/paths.h): Don't echo the huge sed command we
11676 use to build paths.h.
11677 (lib-src/Makefile, src/Makefile): Similarly.
11678
11679 * configure: Extend test for working `const' keyword to handle AIX
11680 3.2 cc.
11681
11682 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11683
11684 * make-dist: Distribute lisp/term/ChangeLog.
11685
11686 Arrange for C compilation throughout the tree to get
11687 C_SWITCH_SYSTEM from the configuration files.
11688 * configure: Extract C_SWITCH_SYSTEM from the machine and
11689 system-dependent files, and save it in the top-level Makefile.
11690 * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit.
11691 (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
11692
11693 * make-dist: Include the VMS support files in oldXMenu in the
11694 distribution.
11695
11696 * configure: Doc fix.
11697
11698 * configure: Fix corrupted config_h_opts.
11699
11700 * configure: Properly report option names in error messages.
11701
11702 * configure: Properly recognize --x-includes and --x-libraries
11703 options.
11704
11705 * configure: Fix syntax errors in code handling XFree386.
11706
11707 1993-03-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11708
11709 * configure: Add special code to detect XFree386, and tell
11710 config.h about it.
11711
11712 * configure: Properly handle extracting values of LIBS_MACHINE and
11713 LIBS_SYSTEM that contain spaces.
11714
11715 * configure: Add `--x-includes' and `--x-libraries' options.
11716 I think these are dopey, but no less than three alpha testers, at
11717 large sites, have said they have their X files installed in odd
11718 places. Implement them by setting C_SWITCH_X_SITE and
11719 LD_SWITCH_X_SITE in src/config.h.
11720
11721 1993-03-22 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
11722
11723 * make-dist: Don't distribute etc/Old files.
11724
11725 * GETTING.GNU.SOFTWARE, PROBLEMS: Registered into RCS with their
11726 backups.
11727
11728 1993-03-20 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11729
11730 * make-dist: Fix typo.
11731
11732 1993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
11733
11734 * make-dist: Corrected typo, fixed it to discard = and TAGS files
11735 in some cases where it should but didn't seen to.
11736
11737 * Makefile.in: Added unlock and relock productions.
11738
11739 1993-03-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11740
11741 * make-dist: Add a --compress option to force make-dist to use
11742 compress.
11743
11744 * make-dist: Use gzip, if we can find it.
11745
11746 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
11747 make rs6000-ibm-aix default to -aix32.
11748
11749 1993-03-17 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
11750
11751 * Makefile.in: Added `Developer's configuration' section.
11752
11753 1993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
11754
11755 * Makefile.in: Add commented-out variable settings for developer's
11756 configuration.
11757
11758 1993-03-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11759
11760 * make-dist: Distribute `src/bitmaps' too.
11761
11762 1993-03-14 Charles Hannum (mycroft@hal.gnu.ai.mit.edu)
11763
11764 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
11765 make rs6000-ibm-aix default to -aix32.
11766
11767 1993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11768
11769 * configure: Recognize strings like "sysvr0" or "sysvr1" as System V.
11770
11771 * Makefile.in (install.sysv): Add a second `$' in front of
11772 `${dest}', so that the shell will expand it, instead of Make.
11773
11774 * configure: When processing the name of the configure script,
11775 collapse `././' to `./', but leave a single `./' prefix alone.
11776
11777 * configure: Doc fix.
11778
11779 1993-03-04 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11780
11781 * configure: Handle isc3.0 correctly.
11782
11783 1993-02-25 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11784
11785 * make-dist: Don't try to copy the COPYING notice into
11786 external-lisp; we're not distributing that directory any more.
11787
11788 1993-02-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11789
11790 * Makefile.in (install, install.aix, install.xenix, install.sysv):
11791 Remove CVS subdirectories from the installed directory trees, as
11792 well as RCS directories.
11793
11794 1993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11795
11796 * make-dist: Only copy gmalloc.c if we couldn't link it.
11797 Don't try to copy man/{README,Makefile} unless they actually exist.
11798
11799 * Makefile.in (lisppath): Don't include externallispdir in this.
11800 We're not sure whether we're even going to distribute the
11801 directory yet.
11802
11803 1993-02-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11804
11805 * make-dist: Don't distribute the external-lisp directory anymore.
11806 * INSTALL: Remove all references to external-lisp.
11807
11808 * configure: Detect whether the compiler supports `const'
11809 properly, and edit src/config.h accordingly.
11810
11811 * configure: Tweak layout of final report.
11812
11813 * Makefile.in (${SUBDIR}): Pass CONFIG_CFLAGS to the submakes, not
11814 CFLAGS.
11815
11816 * Makefile.in (locallisppath): Make this default to
11817 ${datadir}/emacs/site-lisp, instead of
11818 ${datadir}/emacs/local-lisp. ${datadir} and ${statedir} are often
11819 the same thing, and local-lisp causes completion conflicts with
11820 lock.
11821 (lisppath): Add ${externallispdir} to this.
11822 * INSTALL: Adjust installation directions.
11823
11824 * Makefile.in (externallispdir): New variable, to say where to
11825 install the externally-maintained lisp files.
11826 (COPYDIR, COPYDESTS): Copy the external lisp directory just like
11827 the others.
11828 * INSTALL: Describe external-lisp and the new externallispdir
11829 variable.
11830
11831 1993-02-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11832
11833 * configure (progname): New option `--with-gcc'. Make it clearer
11834 how we are trying to guess whether or not we have GCC.
11835 * INSTALL: Document the `--with-gcc' option, and improve
11836 description of `--with-x' options.
11837
11838 1993-02-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11839
11840 * Makefile.in (COPYDIR, COPYDESTS): Remove ${srcdir}/info and
11841 ${infodir} from these variables; we have written out explicit code
11842 to install the info files.
11843
11844 1993-01-25 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11845
11846 * make-dist: Don't distributed the RCS files in the etc directory.
11847
11848 1993-01-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11849
11850 * Makefile.in: Some makes can't handle comments in the middle of
11851 commands; move them to before the whole rule.
11852
11853 1993-01-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11854
11855 * README: Mention what Emacs is.
11856
11857 1993-01-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11858
11859 * make-dist: Include `./lisp/calc-2.02' in the distribution.
11860 Add `./cpp' and `./man' back into the distribution.
11861
11862 1993-01-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11863
11864 * Makefile.in: Define MAKE, and use where appropriate.
11865
11866 1993-01-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11867
11868 * make-dist: Remember that the authoritative COPYING notice is
11869 `etc/COPYING', not `../etc/COPYING'.
11870
11871 1992-12-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11872
11873 * make-dist: Make sure that the COPYING notices in each directory
11874 are copies, not symlinks.
11875
11876 1992-12-19 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11877
11878 * INSTALL: The build process produces an executable called `emacs'
11879 now. Change references.
11880 * Makefile.in: Adjust `install.mumble' targets to install
11881 `src/emacs', not `src/xemacs'.
11882
11883 * configure: Start with a blank line; this keeps some old CSH's
11884 from thinking it's a CSH script. Most systems will just use
11885 /bin/sh to run it, which is what we're expecting; the only other
11886 shells which might try to interpret it themselves are probably
11887 Bourne-compatible.
11888
11889 1992-12-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11890
11891 * INSTALL: Improvements suggested by David Mackenzie.
11892
11893 1992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11894
11895 * Makefile.in (install, install.sysv, install.xenix, install.aix):
11896 Don't try to copy the info files if there aren't any; the
11897 unexpanded globbing pattern disappoints `install'. Ignore the
11898 return status of that command.
11899
11900 * INSTALL: Updated for new configuration arrangement.
11901
11902 * configure: Don't make the top-level Makefile read-only - people
11903 may want to edit the values of the path variables.
11904
11905 * Makefile.in (install, install.sysv, install.xenix, install.aix):
11906 Install the info files in ${infodir}. Install the executable
11907 under both `emacs' and `emacs-VERSION'.
11908
11909 * Makefile.in: Doc fix.
11910
11911 * Makefile.in (exec_prefix): New variable, as per latest version
11912 of coding standards.
11913 (bindir, libdir): Use it, instead of `prefix'.
11914 (lib-src/Makefile): Edit value of exec_prefix into lib-src/Makefile.
11915
11916 * Makefile.in (mandir): Make the default value for this depend on
11917 $(prefix).
11918
11919 * Makefile.in (datadir, statedir, libdir): Make these all default
11920 to ${prefix}/lib.
11921 (lispdir, locallisppath, etcdir, lockdir, archlibdir):
11922 Adjust to compensate.
11923
11924 * Makefile.in (install, install.sysv, install.xenix, install.aix):
11925 Install the etags and ctags man pages too.
11926
11927 * Makefile.in (distclean): Don't delete backup files; that's the
11928 job of extraclean.
11929 (extraclean): Like distclean, but deletes backup and autosave files.
11930
11931 1992-12-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11932
11933 Make path specification conform to GNU coding standards.
11934 * configure (long_usage): Remove all traces of old arguments from
11935 usage messages, and document the options we do accept in more
11936 detail: -with-x... and --srcdir.
11937 (options, boolean_opts): Delete; we don't have enough options to
11938 make this worthwhile.
11939 (prefix, bindir, lisppath, datadir, libdir, lockdir): Deleted,
11940 along with the code which supported them; these should be set as
11941 arguments to the top-level make.
11942 (config_h_opts): Since this no longer doubles as a list of option
11943 names, make them upper case; this simplifies the code which uses
11944 them to build the sed command to edit src/config.h. Change the
11945 code which sets them.
11946 (cc, g, O): Don't allow the user to set these using options; they
11947 should be specified using `CC=' and `CFLAGS=' arguments to the
11948 top-level make. Just choose reasonable default values for them,
11949 and edit them into Makefile.in's default CC and CONFIG_CFLAGS
11950 values.
11951 (gnu_malloc, rel_alloc): Don't allow the user to set these using
11952 options; use them whenever the configuration files say they're
11953 possible.
11954 Simplify the argument processing loop. Don't accept abbreviations
11955 for option names; these might conflict with other configuration
11956 options in the future.
11957 Add some support for the `--srcdir' option. Check for the sources
11958 in . and .. if `--srcdir' is omitted. If the directories we will
11959 compile in don't exist yet, create them under the current directory.
11960 Note that the rest of the build process doesn't really support
11961 this.
11962 Edit only the top Makefile. That should edit the others.
11963 Edit into the makefile: `version', from lisp/version.el, `configname'
11964 and `srcdir' from the configuration arguments, `CC' and
11965 `CONFIG_CFLAGS' as guessed from the presence or absence of GCC in
11966 the user's path, and LOADLIBES as gleaned from the system
11967 description files.
11968 Simplify the report generated; it doesn't need to include any
11969 description of paths now.
11970 Make `config.status' exec configure instead of just calling it, so
11971 there's no harm in overwriting `config.status'.
11972 * Makefile.in (version, configname): New variables, used to choose
11973 the default values for datadir and libdir.
11974 Path variables rearranged into two clearer groups:
11975 - In the first group are the variables specified by the GNU coding
11976 standards (prefix, bindir, datadir, statedir, libdir, mandir,
11977 manext, infodir, and srcdir).
11978 - In the second are the variables actually used for Emacs's paths
11979 (lispdir, locallisppath, lisppath, buildlisppath, etcdir, lockdir,
11980 archlibdir), which depend on the first category.
11981 datadir and libdir default to directories under
11982 ${prefix}/lib/emacs instead of ${prefix}/emacs, by popular
11983 demand.
11984 etcdir and lispdir default to subdirectories of datadir.
11985 archlibdir defaults to libdir.
11986 The new installation tree is a bit deeper than it used to be, so
11987 use the new make-path program in lib-src to build them all.
11988 Always build a new src/paths.h.tmp and then move-if-change it to
11989 src/paths.h, to avoid unnecessary rebuilds while responding to the
11990 right changes.
11991 Remove all mention of arch-lib. Run utility commands from
11992 lib-src, and let the executables be copied into archlibdir when
11993 Emacs is installed.
11994 Add targets for src/Makefile, lib-src/Makefile, and
11995 oldXMenu/Makefile, editing the values of the path variables into
11996 them.
11997 Let lib-src do its own installation.
11998 (datadir): Default to putting data files under
11999 ${prefix}/lib/emacs/${version}, not /usr/local/emacs.
12000 (emacsdir): Variable deleted; it would only be confusing to use.
12001 (lispdir, etcdir): Default to ${datadir}/lisp.
12002 (mkdir): Use make-path for this.
12003 (lockdir): Do this in mkdir.
12004 (Makefile): New target.
12005
12006 * configure (usage_message): Rename to long_usage.
12007
12008 * make-dist: Don't bother creating an arch-lib directory; that's
12009 only for installation now.
12010
12011 1992-11-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12012
12013 * configure: Use GCC-style configuration names, using config.sub.
12014 Change the usage and help messages.
12015
12016 * configure: Initialize window_system, not indow_system.
12017
12018 * configure: Report which window system, compiler, and signal
12019 handler return type we decide to use.
12020
12021 * make-dist: Explain what's going on if config.sub and gmalloc.c
12022 can't be linked. Place the code which copies them near the code
12023 which links the rest of the files around them.
12024
12025 1992-11-15 Jim Blandy (jimb@apple-gunkies.gnu.ai.mit.edu)
12026
12027 * make-dist: Don't bother to distribute src/*.com, or
12028 src/vmsbuild; those have all been moved to `../vms'.
12029
12030 1992-11-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12031
12032 * make-dist: Don't forget that the way to avoid filenames starting
12033 with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
12034 `[a-zA-Z0-9].h'. Add a new section for dealing with files that we
12035 couldn't make hard links to, since we have two already, and
12036 perhaps more to come.
12037
12038 1992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12039
12040 * configure: When editing parameters into lib-src/Makefile, change
12041 the definition of CONFIG_CFLAGS instead of CFLAGS itself; CFLAGS
12042 needs some other flags too.
12043
12044 1992-11-03 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12045
12046 * configure: Remove spurious echo of the configuration name.
12047
12048 * make-dist: Don't distribute files in src/m and src/s whose names
12049 begin with `='.
12050
12051 1992-10-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12052
12053 * configure: Update GNU_MALLOC and REL_ALLOC in config.h.
12054 Also LISP_FLOAT_TYPE.
12055
12056 1992-10-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12057
12058 * make-dist: Copy config.sub, since it's a symbolic link to a file
12059 on another file system.
12060
12061 1992-10-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12062
12063 * make-dist: Include lib-src/makedoc.com and emacs.csh in the
12064 distribution.
12065
12066 * config.sub: New file, to help us recognize configuration names.
12067 * make-dist: Include it in the distribution.
12068
12069 1992-09-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12070
12071 * configure: Convert `-' to `_' in specified option names.
12072 Accept options with --. Delete --highpri and --have-x-menu options.
12073 New options --with-x and --with-x10 replace -window-system.
12074 Don't mention options --gnu-malloc, --rel-alloc
12075 or --lisp-float-type in help message.
12076
12077 1992-09-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12078
12079 * make-dist: Include the `vms' subdirectory in the distribution.
12080
12081 1992-09-10 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12082
12083 * configure: Remove lines starting with "# DIST: " when building
12084 lib-src/Makefile and src/Makefile. This allows us to mark the
12085 "Makefile.in" files with explanatory comments which won't also get
12086 stuck in the Makefiles.
12087
12088 1992-09-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12089
12090 * make-dist: Don't use the '+' operator in the sed regular
12091 expression that extracts the version number from lisp/version.el;
12092 Ultrix sed doesn't seem support the operator. Just double the
12093 operand and use *.
12094
12095 1992-09-01 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12096
12097 * Makefile.in: Doc fix.
12098
12099 1992-08-31 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12100
12101 * configure: Rewrite sed command to remove at most one ./ prefix;
12102 Ultrix's sed doesn't allow us to apply the * operator to a \( \)
12103 group.
12104
12105 1992-08-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12106
12107 * Makefile.in (src/paths.h): Use sed, not /bin/sed.
12108
12109 1992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12110
12111 * make-dist: Go ahead and build a new TAGS file, unless the
12112 --newer option was specified. Don't try to delete a TAGS file
12113 from etc; it's not kept there, and shouldn't be deleted anyway.
12114
12115 1992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12116
12117 * make-dist: If the lisp directory contains a default.el, don't
12118 distribute it.
12119
12120 * configure: When searching signal.h for the type of a signal
12121 return handler, make a copy of it, not a symbolic link to it; that
12122 way, it will work on systems that don't have symbolic links.
12123
12124 1992-08-14 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
12125
12126 * make-dist: Taught it about vcdiff and rcs2log, added --newer
12127 option for generating incremental distributions. Stopped it from
12128 generating a TAGS file into the distribution; that sucker is
12129 *big*, and easily enough generated with the toplevel makefile.
12130
12131 1992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12132
12133 * configure: When writing config.status, don't prefix progname
12134 with a '.'; it might be absolute.
12135
12136 1992-08-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12137
12138 * configure: Choose to use X11 if either /usr/lib/libX11.a or
12139 /usr/include/X11 exist, not only if both exist.
12140
12141 1992-07-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12142
12143 * make-dist: Make the new external-lisp directory a duplicate of
12144 the external-lisp directory, not the lisp directory.
12145
12146 1992-07-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12147
12148 * Makefile.in (clean, mostlyclean): Don't bother trying to `make
12149 clean' in arch-lib; it doesn't even have a Makefile.
12150
12151 * Makefile.in (clean, mostlyclean): In the test which tries to
12152 distinguish between the build directory, which should be cleaned,
12153 and the installed directory, which shouldn't, cd to `${emacsdir}',
12154 not `${DESTDIR}${LIBDIR}'.
12155
12156 1992-06-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12157
12158 * make-dist: Be sure to delete the .c and .h files that YACC and
12159 BISON create from getdate.y.
12160
12161 * external-lisp: New directory; see `external-lisp/README'.
12162 * make-dist: Added support for the external-lisp subdirectory.
12163
12164 * make-dist: Changed message which complains that make-dist wasn't
12165 invoked in the right directory to indicate which files it was
12166 looking for.
12167
12168 1992-06-29 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12169
12170 * configure: Add comments explaining why we can't translate
12171 character ranges or control characters in `tr'.
12172
12173 1992-06-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12174
12175 * configure: When generating the configuration message, we used to
12176 build the message from the start so that each line began with "# "
12177 so that it would be a comment in `config.status'. However, this
12178 causes trouble if any of the variables we use in the message
12179 expand to more than one line of text - as gnu_malloc_reason
12180 sometimes does. So instead, we build the message as it should be
12181 printed to the user (i.e. without the "# " prefixes), and stick on
12182 the "# "s when we write it to `config.status'.
12183
12184 * Makefile.in (clean, mostlyclean): Don't neglect to clean out
12185 `lib-src' and `arch-lib'.
12186
12187 * configure: When generating report and `config.status' file, note
12188 that bindir only determines where `make install' and
12189 `build-install' will place the executables; this should make it
12190 clear that the ordinary build process will not try to install
12191 things.
12192
12193 1992-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12194
12195 * make-dist: Change messages to say that we are 'making links to
12196 X', rather than 'copying X'. And put `' quotes around file names.
12197
12198 * make-dist: Include '.tmp' in the name of the staging directory.
12199
12200 * make-dist: Pass the `-f' option to rm when you're not sure that
12201 the files you're removing actually exist.
12202
12203 * make-dist: When setting up etc/COPYING, always nuke whatever is
12204 there, and then copy it in, to make sure we get a real file.
12205
12206 * make-dist: Don't try to distribute *.defns files any more.
12207 The only such file was for simula.el, which has been superseded by a
12208 version which doesn't have a separate .defns file.
12209
12210 1992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
12211
12212 * make-dist: Don't distribute configured versions of config.h.in,
12213 paths.h.in, Makefile.in in src.
12214
12215 * configure: Delete .tmp files before creating them; don't bother
12216 trying to make final targets writable first, since it won't
12217 matter to move-if-change.
12218
12219 1992-05-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12220
12221 * Makefile.in (mkdir, lockdir): Don't put dashes in front of the
12222 mkdir and chmod in the center of all the conditionals. GNU Make
12223 will strip these out, but other makes won't.
12224
12225 1992-05-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12226
12227 * make-dist: Include move-if-change in list of files to distribute.
12228
12229 1992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12230
12231 * configure: Remove any "." elements from the program name.
12232
12233 * configure: Don't record the values of all the possible arguments
12234 in config.status; only record the options that the user specified.
12235
12236 * configure: Use move-if-change to move in the new src/config.h.
12237
12238 1992-04-29 Ken Raeburn (Raeburn@Cygnus.COM)
12239
12240 * move-if-change: New file, copied from gcc release.
12241 * Makefile.in (src/paths.h): Use it, and put the "sed" output into
12242 a temp file, so we don't update paths.h if an error occurs or if
12243 it doesn't need changing.
12244
12245 1992-04-28 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12246
12247 * Makefile.in (src/paths.h): Do not install a value for the
12248 PATH_SUPERLOCK value; that macro doesn't exist anymore.
12249 * build-install.in: Same thing.
12250
12251 1992-04-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12252
12253 * make-dist: Check the flag called "make_tar", not "make_dir"; the
12254 latter, being a typo, is always false, resulting in a program
12255 whose default behavior is to painstakingly build a copy of the
12256 source tree, and then delete it. Rah.
12257
12258 * Makefile.in: Add dist target, and comment for it.
12259
12260 * configure: When scanning <signal.h> for a declaration for
12261 signal, create a symbolic link with a name ending in .c, so the
12262 compiler won't complain that it's only been given .h files.
12263
12264 * configure: Check whether there are any arguments available
12265 before shifting to get the value of a non-boolean parameter.
12266
12267 * make-dist: Doc fix.
12268
12269 1992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12270
12271 * configure: Instead of grepping /usr/include/signal.h for a
12272 signal declaration, run /usr/include/signal.h or
12273 /usr/include/sys/signal.h through cpp and grep for the
12274 declaration.
12275
12276 * configure: Redirect the output of grep to /dev/null instead of
12277 using grep -s - that flag means different things on other systems.
12278
12279 * Makefile.in: Use 'buildlisppath' instead of 'dumplisppath',
12280 since the former is recognizable even if you don't know what
12281 'dumping' is.
12282 * configure: Accommodate that change.
12283
12284 * configure: Accept options for all of the directories you can
12285 change in the Makefile.
12286
12287 * configure: Accept "-OPTION VALUE" as well as "-OPTION=VALUE".
12288
12289 * INSTALL: Mention that you have to copy all the 'FOO.in' files to
12290 FOO before you can use them.
12291
12292 * build-install.in: Made the "Where To Install Things" section
12293 conform with the similar section from Makefile.in. Copied section
12294 which builds src/paths.h from src/paths.h.in from the Makefile.
12295
12296 1992-04-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12297
12298 * configure: Write config.status to pass its command-line
12299 arguments on to configure, so that people can use it to recreate
12300 an old configuration, with minor changes.
12301
12302 1992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12303
12304 * configure: Don't rely on option variables being unset if their
12305 values are the empty string. In particular, when producing the
12306 English report, don't assume that highpri will be unset when no
12307 increased priority has been requested; -highpri='' should be the
12308 same as omitting -highpri altogether.
12309
12310 * configure: Fix dumb bug: when running the system and machine
12311 description files through cpp, mark those lines that we want to
12312 evaluate with the string '@configure@', and then only evaluate
12313 them. This way if the files include anything that actually
12314 generates text (type definitions or external declarations, say),
12315 we won't try to eval it.
12316
12317 1992-04-11 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12318
12319 * make-dist: New shell script.
12320
12321 * configure: When creating foo from foo.in, make foo read-only to
12322 remind people to edit the .in file instead.
12323
12324 * INSTALL: Changed references to config.h-dist to config.h.in.
12325 The "BUILDING GNU EMACS BY HAND" section neglected to mention how
12326 to build src/paths.h from src/paths.h.in; added a paragraph to do
12327 this.
12328 * configure, Makefile, build-install: Changed filenames like
12329 FOO-dist to FOO.in.
12330
12331 1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12332
12333 * Makefile, build-install: Renamed to Makefile.in and
12334 build-install.in; the configure script will edit these to produce
12335 the usable Makefile and build-install.
12336 * configure: Changed to produce ./Makefile, ./build-install,
12337 lib-src/Makefile, and src/Makefile from their *.in counterparts,
12338 instead of editing them in place.
12339
12340 1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12341
12342 * Makefile: Re-arranged so that the undumped Emacs will search
12343 ../lisp *after* the site's local elisp files.
12344 (locallisppath, dumplisppath): New variables.
12345 (lisppath): This variable's default value is now chosen based on
12346 $(locallisppath) and $(lispdir); while it used to be the
12347 customization point for adding site-local elisp directories to
12348 load-path, that job is now handled mostly by locallisppath.
12349 (src/paths.h): Edit the value of a new macro, PATH_DUMPLOADSEARCH.
12350 Check the values being assigned to the *LOADSEARCH macros for null
12351 path elements (like '::' in 'foo::bar').
12352
12353 * configure: When checking if the machine- and system-dependent
12354 files define a particular macro or not, actually run them through
12355 CPP and test the macros with #ifs, instead of just grepping for
12356 the macros' names. In particular, check for SYSTEM_MALLOC in this
12357 way.
12358
12359 1992-04-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12360
12361 * Makefile (install): Don't use -s in install. (Keep the symbols.)
12362
12363 1992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12364
12365 * configure: Make the config.status file an executable shell
12366 script which will recreate the same configuration. Include the
12367 verbal description of the current configuration as a comment in
12368 the script.
12369 * INSTALL: Doc fix.
12370
12371 * Makefile: Brought the Makefile up to the GNU coding
12372 standards, as described in standards.text:
12373 (TAGS): New name for the target which rebuilds the tags table.
12374 (check): New target; doesn't do anything yet.
12375 (mostlyclean): New target, synonymous with clean.
12376 (realclean): New target. Currently, this just calls the
12377 subdirectories's makefiles and then deletes config.status.
12378 (INSTALL, INSTALLFLAGS, INSTALL_PROGRAM, INSTALL_DATA):
12379 New variables.
12380 Installation directory variables changed to conform.
12381 (install, install.sysv, install.xenix, install.aix): Change the
12382 code which copies the directories into their installed location to
12383 allow the installed locations to be in several different
12384 directories; the old version assumed that they would all be in
12385 $(emacsdir).
12386 (mkdir, lockdir): Allow the installed locations to be in several
12387 different directories.
12388 * INSTALL: Doc fix.
12389
12390 * build-install: Use the same variable names as the Makefile.
12391 Allow the installed locations to be in several different
12392 directories.
12393
12394 1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12395
12396 * Makefile (src/paths.h): Instead of using a single sed command to
12397 edit both the PATH_LOCK and PATH_SUPERLOCK macros, edit the two
12398 separately, and don't forget to append "/!!!SuperLock!!!" to the
12399 value of the PATH_SUPERLOCK macro.
12400
12401 * config.emacs: Renamed to configure, for consistency with other
12402 GNU products. Internal references changed.
12403 INSTALL, Makefile: References changed.
12404
12405 * lock: New directory, which should always be empty. If this
12406 directory doesn't exist, Emacs won't complain; it just won't lock.
12407 Having this here means that people can just unpack Emacs, build
12408 it, and have locking work.
12409
12410 * share-lib: Re-renamed to etc, for the sake of tradition.
12411 * config.emacs: Changed default value for datadir to ../etc.
12412 * INSTALL, README: Adjusted.
12413
12414 1992-03-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12415
12416 * config.emacs: Guess the value for LOADLIBES in lib-src/Makefile
12417 by running CPP on the appropriate s/*.h and m/*.h files.
12418
12419 1992-03-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12420
12421 * config.emacs: Make sure to set the "exit on error" flag once
12422 we've removed config.status; errors should abort the configuration.
12423
12424 1992-02-15 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12425
12426 * config.emacs: Added -distribute option, so that the Makefile
12427 paths are in their proper form. I don't know why this matters.
12428
12429 1992-02-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12430
12431 * local-lisp: New directory, empty in the distribution, for people
12432 to put local elisp code in.
12433 * config.emacs: Include it in the default load path.
12434 * README: Document it.
12435
12436 1992-01-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12437
12438 * config.emacs: Guess the type of signal handling functions based
12439 on the contents of /usr/include/signal.h.
12440
12441 * config.emacs: Print out progress report messages.
12442
12443 * Makefile (src/paths.h): Don't generically replace
12444 /usr/local/lib/emacs with LIBROOT. This can hide bugs in the
12445 editing of the other entries, and each entry should be dealt with
12446 explicitly anyway.
12447
12448 * build-install: Converted from C-shell to Bourne shell.
12449 * config.emacs: Edit build-install properly.
12450
12451 * config.emacs: Doc fix.
12452
12453 1992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12454
12455 * Makefile (install): Remove `B' from tar xf command.
12456
12457 1992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12458
12459 * config.emacs: Removed support for the `maintain-environment'
12460 option; the only important difference between this and its absence
12461 has been removed.
12462 * INSTALL: Removed mention of `maintain-environment'.
12463
12464 * config.emacs: Fix arguments to sed when processing boolean
12465 arguments.
12466
12467 1991-12-05 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
12468
12469 * config.emacs: New file, to help automate the installation
12470 process.
12471
12472 * Makefile: Lots of changes to support the separation of etc into
12473 architecture-dependent and -independent files:
12474 (EMACSROOT): New variable, giving the directory under which all of
12475 Emacs's libraries should be installed. Changed rest of file to
12476 use it.
12477 (LIBDIR): Now denotes only architecture-dependent dir.
12478 (DATADIR): New variable, denoting architecture-independent dir.
12479 (LOCKDIR): New variable, for completeness.
12480 (SUBDIR): No more etc, new lib-src.
12481 (COPYDIR): No more etc, new arch-lib and share-lib.
12482 (src/paths.h): Set PATH_DATA and the LOCK macros too.
12483 (src): Now depends on lib-src, not etc.
12484 * build-install: Changes parallel to the above.
12485 * README: Describe the new arrangement.
12486
12487 * vms: New subdirectory for all the VMS stuff.
12488
12489 1991-12-03 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
12490
12491 * Makefile (LISPPATH): New variable.
12492 (src/paths.h): Define PATH_LOADSEARCH according to LISPPATH.
12493
12494 1990-09-28 Richard Stallman (rms@mole.ai.mit.edu)
12495
12496 * Makefile (install, install.sysv, install.xenix):
12497 Install wakeup instead of loadst. No need for setuid or setgid.
12498
12499 1990-08-07 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
12500
12501 * Makefile (clean): Clean etc if that's not the installation dir.
12502
12503 1990-04-26 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
12504
12505 * Makefile (paths.h): Make sed alter each name in the path.
12506
12507 1988-08-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
12508
12509 * Makefile (install.sysv): Use cpio, not tar.
12510
12511 1988-08-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
12512
12513 * Makefile (lockdir): Rename `lock' target.
12514 Depend on it from install*, not from `all'.
12515
12516 1988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
12517
12518 * Makefile: Changed LIBDIR and BINDIR back to /usr/local/{emacs,bin}
12519 to match build-install and paths.h.
12520
12521 ;; Local Variables:
12522 ;; coding: utf-8
12523 ;; End:
12524
12525 Copyright (C) 1993-1999, 2001-2013 Free Software Foundation, Inc.
12526
12527 This file is part of GNU Emacs.
12528
12529 GNU Emacs is free software: you can redistribute it and/or modify
12530 it under the terms of the GNU General Public License as published by
12531 the Free Software Foundation, either version 3 of the License, or
12532 (at your option) any later version.
12533
12534 GNU Emacs is distributed in the hope that it will be useful,
12535 but WITHOUT ANY WARRANTY; without even the implied warranty of
12536 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12537 GNU General Public License for more details.
12538
12539 You should have received a copy of the GNU General Public License
12540 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.