Remove configure's --without-sync-input option.
[bpt/emacs.git] / ChangeLog
1 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
2
3 Remove configure's --without-sync-input option (Bug#12450).
4 * configure.ac (SYNC_INPUT, BROKEN_SA_RESTART): Remove.
5
6 2012-09-16 Glenn Morris <rgm@gnu.org>
7
8 Increase compartmentalization of Nextstep builds rules,
9 and store Emacs version number in fewer versioned files.
10 * configure.ac (ns_appsrc): Use relative names.
11 (ns_frag): Remove.
12 (Info-gnustep.plist, Emacs.desktop, Info.plist, InfoPlist.strings)
13 (nextstep/Makefile): Generate these nextstep files.
14 (SUBDIR_MAKEFILES): Add nextstep.
15 * Makefile.in (clean, distclean, bootstrap-clean): Add nextstep.
16 * make-dist (nextstep/templates): Add directory.
17 (nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj): Remove.
18 (nextstep/Cocoa/Emacs.base/Contents)
19 (nextstep, nextstep/GNUstep/Emacs.base/Resources): Update contents.
20
21 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
22
23 Port better to POSIX hosts lacking _setjmp (Bug#12446).
24 * configure.ac (HAVE__SETJMP, HAVE_SIGSETJMP): New symbols.
25 (_setjmp, _longjmp): Remove.
26
27 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
28
29 * configure.ac (--without-sync-input): Fix typo in usage message.
30
31 * configure.ac: Port to hosts lacking gtk.
32 (PKG_CHECK_MODULES): Capture pkg-config diagnostics
33 better, in particular, problems in invoking pkg-config itself.
34 This is useful on hosts that don't have pkg-config.
35 (GTK_MODULES): Do not exit 'configure' simply because gtk3
36 and gtk2 are both missing. Problem found on Solaris 8.
37
38 2012-09-13 Jan Djärv <jan.h.d@swipnet.se>
39
40 * configure.ac: Reorder Xaw3d messages.
41 Report Gtk+ 3 as GTK.
42
43 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
44
45 Simplify SIGIO usage (Bug#12408).
46 * configure.ac (NO_TERMIO, BROKEN_FIONREAD, BROKEN_SIGAIO)
47 (BROKEN_SIGPOLL, BROKEN_SIGPTY): Remove.
48 (USABLE_FIONREAD, USABLE_SIGIO): New symbols. All uses of
49 'defined SIGIO' replaced with 'defined USABLE_SIGIO', with no need
50 to #undef SIGIO now (which was error-prone). Likewise, all uses
51 of 'defined FIONREAD' replaced with 'defined USABLE_FIONREAD'.
52
53 2012-09-12 Jan Djärv <jan.h.d@swipnet.se>
54
55 * configure.ac: No --with-x-toolkit given: Try gtk3 toolkit first
56 and then gtk2 if not found.
57 --with-x-toolkit=gtk|yes: As above, but fail if gtk2 or gt3 not found.
58 --with-x-toolkit=gtk2: Only try gtk2, fail if not found.
59 --with-x-toolkit=gtk3: Only try gtk3, fail if not found.
60
61 2012-09-11 Glenn Morris <rgm@gnu.org>
62
63 * Makefile.in (install-arch-dep, install-arch-indep, install-doc):
64 Be more explicit about dependencies, for parallel `make install'.
65
66 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
67
68 Simplify, document, and port floating-point (Bug#12381).
69 * configure.ac (logb, cbrt): Do not check for these functions,
70 as they are not being used.
71
72 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
73
74 Improve robustness of 'make bootstrap' (Bug#12376).
75 Run autogen.sh after bootstrap-clean, to avoid bzr pull issues.
76 * INSTALL, README: Document autogen.sh.
77 * Makefile.in (Makefile): Mark it as precious, since it's updated
78 atomically.
79 (MAKE_CONFIG_STATUS): New macro.
80 (config.status, bootstrap): Use it. This causes 'make bootstrap'
81 to run config.status with the --recheck option, which is more
82 appropriate for a bootstrap.
83 (bootstrap): Run autogen.sh right after cleaning. Don't worry
84 about failures due to missing tools.
85 * autogen.sh: Exit with status 101 when failing due to missing tools.
86 * make-dist: Distribute autogen.sh.
87
88 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
89
90 Assume C89 or later for math functions (Bug#12381).
91 * configure.ac (frexp, fmod): Remove checks for these functions,
92 as we now assume them.
93 (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC, NO_MATHERR)
94 (HAVE_EXCEPTION):
95 Remove; no longer needed.
96
97 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
98
99 More signal-handler cleanup (Bug#12327).
100 * configure.ac (FLOAT_CHECK_DOMAIN): Comment fix (Bug#12327).
101
102 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
103
104 Signal-handler cleanup (Bug#12327).
105 * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
106 Adjust to syssignal.h changes.
107 (SIGNAL_H_AB): Remove; no longer needed.
108
109 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
110
111 Simplify redefinition of 'abort' (Bug#12316).
112 * configure.ac (NO_ABRT): Remove.
113
114 * configure.ac (_setjmp, _longjmp): Check by compiling
115 instead of by guessing. The guesses were wrong for
116 recent versions of Solaris, such as Solaris 11.
117
118 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
119
120 * configure.ac (WARN_CFLAGS): Omit -Wjump-misses-init.
121 It generates false alarms in doc.c, regex.c, xdisp.c. See
122 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00040.html>.
123
124 Merge from gnulib, incorporating:
125 2012-08-29 stdbool: be more compatible with mixed C/C++ compiles
126 2011-11-30 manywarnings: update the list of "all" warnings
127
128 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
129
130 * configure.ac (HAVE_GOBJECT): Check for gobject-2.0 (Bug#12332).
131
132 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
133
134 * configure.ac (_FORTIFY_SOURCE): Define only when optimizing.
135 This ports to glibc 2.15 or later, when configured with
136 --enable-gcc-warnings. See Eric Blake in
137 <http://lists.gnu.org/archive/html/bug-grep/2012-09/msg00000.html>.
138
139 2012-09-01 Daniel Colascione <dan.colascione@gmail.com>
140
141 * configure.ac: Introduce term_header variable, which holds the
142 value which will become TERM_HEADER in code. We effect our choice
143 of window system by setting term_header and WINDOW_SYSTEM_OBJ
144 instead of using ad-hoc variables and flags for each window
145 system.
146
147 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
148
149 * configure.ac (CFLAGS): Prefer -g3 to -g if -g3 works
150 and if the user has not specified CFLAGS. -g3 simplifies
151 debugging, since it makes macros visible to the debugger.
152
153 2012-08-25 Juanma Barranquero <lekktu@gmail.com>
154
155 * lib/makefile.w32-in ($(BLD)/execinfo.$(O)): Update dependencies.
156
157 2012-08-25 Eli Zaretskii <eliz@gnu.org>
158
159 * lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
160 (GNULIBOBJS): Add $(BLD)/execinfo.$(O).
161
162 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
163
164 On assertion failure, print backtrace if available.
165 Merge from gnulib, incorporating:
166 2012-08-24 execinfo: port to FreeBSD
167 2012-08-22 execinfo: new module
168 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
169 * lib/execinfo.c, lib/execinfo.in.h, m4/execinfo.m4: New files.
170
171 2012-08-22 Glenn Morris <rgm@gnu.org>
172
173 * Makefile.in (install-arch-dep): If NO_BIN_LINK is non-null,
174 do not create the bin/emacs link. (Bug#12011)
175
176 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
177
178 Merge from gnulib, incorporating:
179 2012-08-20 extern-inline: support old GCC 'inline'
180
181 2012-08-20 Glenn Morris <rgm@gnu.org>
182
183 * configure.ac (AC_PROG_LN_S): Test for ln.
184 * Makefile.in (LN_S): New, set by configure.
185 (install-arch-dep): Use $LN_S.
186
187 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
188
189 Merge from gnulib, incorporating:
190 2012-08-19 ignore-value, stat-time, timespec: omit AC_C_INLINE
191 2012-08-19 mktime, sys_select: avoid 'static inline'
192 2012-08-19 gnulib-tool: Fix indentation.
193
194 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
195
196 * lib/sigprocmask.c, m4/signalblocking.m4: Remove.
197 These files have been unused since the 2012-06-22 patch that
198 introduced high-resolution time stamps.
199
200 2012-08-17 Jan Beich <jbeich@tormail.org> (tiny change)
201
202 * configure.ac (PTY_OPEN): Try posix_openpt on gnu-linux,
203 gnu-kfreebsd, freebsd, and netbsd. (Bug#12040)
204
205 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
206
207 Merge from gnulib, incorporating:
208 2012-08-05 extern-inline: also ignore -Wmissing-declarations
209
210 2012-08-10 Juanma Barranquero <lekktu@gmail.com>
211
212 * lib/makefile.w32-in (STAT_TIME_H): New macro.
213 (FTOASTR_C, $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O))
214 ($(BLD)/u64.$(O)): Update dependencies.
215
216 2012-08-10 Glenn Morris <rgm@gnu.org>
217
218 * configure.ac (DIRECTORY_SEP): Move here from src/lisp.h.
219
220 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
221
222 * configure.ac (--disable-features): Rename to --without-all.
223 (OPTION_DEFAULT_ON): Change to use with_features.
224 * INSTALL: Fix description.
225
226 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
227
228 * configure.ac: New option --disable-features.
229 (OPTION_DEFAULT_ON): Change to use enable_features.
230 * INSTALL: Explain --disable-features.
231
232 2012-08-07 Glenn Morris <rgm@gnu.org>
233
234 * configure.ac: Require automake 1.11 (fairly arbitrarily).
235 * autogen.sh (automake_min): Get it from configure.ac.
236
237 2012-08-06 Glenn Morris <rgm@gnu.org>
238
239 * configure.ac (BROKEN_GETWD) [unixware]: New define.
240
241 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove.
242 (PENDING_OUTPUT_COUNT): Absorb GNU_LIBRARY_PENDING_OUTPUT_COUNT.
243 (DISPNEW_NEEDS_STDIO_EXT): New define.
244
245 2012-08-05 Michael Albinus <michael.albinus@gmx.de>
246
247 * INSTALL: Explain how to completely disable D-Bus. (Bug#12112)
248
249 2012-08-05 Ulrich Müller <ulm@gentoo.org>
250
251 * configure.ac: Disable paxctl if binaries don't have a
252 PT_PAX_FLAGS program header. (Bug#11979)
253
254 2012-08-03 Eli Zaretskii <eliz@gnu.org>
255
256 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O),
257 $(BLD)/timespec.$(O), and $(BLD)/u64.$(O).
258 (SHA512_H): Don't mention u64.h twice.
259 ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)):
260 New targets.
261
262 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
263
264 Merge from gnulib, incorporating:
265 2012-08-02 stat-time, timespec, u64: support naive out-of-dir builds
266
267 2012-08-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
268
269 * lib/Makefile.am (DEFAULT_INCLUDES): Add -I$(top_srcdir)/lib for
270 out-of-tree build.
271
272 2012-08-02 Glenn Morris <rgm@gnu.org>
273
274 * make-dist: Remove src/s.
275
276 * lib/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
277
278 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
279
280 Merge from gnulib (Bug#12116), incorporating:
281 2012-08-01 extern-inline: new module
282 2012-08-01 stat-time, timespec, u64, utimens: use extern-inline
283 * lib/stat-time.c, lib/timespec.c, lib/u64.c, m4/extern-inline.m4:
284 New files. The new .c files are for instantiating extern inline
285 functions.
286
287 Port to Solaris 8.
288 Without this change, 'configure' fails because the recently-added
289 wait3 prototype in config.h messes up later 'configure' tests.
290 Fix this problem by droping wait3 and WRETCODE, as they're
291 no longer needed on hosts that are current porting targets.
292 * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
293 All uses changed to waitpid and WEXITSTATUS.
294
295 Avoid needless autoheader after autogen.sh.
296 * src/stamp-h.in: Remove from bzr repository; no longer needed there.
297 * .bzrignore: Add it.
298 * autogen.sh: Create it.
299
300 2012-08-01 Glenn Morris <rgm@gnu.org>
301
302 * configure.ac (DOS_NT, MSDOS): New system type templates.
303
304 2012-08-01 Ulrich Müller <ulm@gentoo.org>
305
306 * configure.ac (LIB_STANDARD, START_FILES) [FreeBSD]:
307 Don't include crtbegin.o and crtend.o. (Bug#12047)
308
309 2012-08-01 Glenn Morris <rgm@gnu.org>
310
311 * configure.ac (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC)
312 (INTERNAL_TERMINAL): New.
313
314 * configure.ac (DEVICE_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP)
315 (IS_ANY_SEP): Move here from src/lisp.h.
316
317 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
318
319 * lib/makefile.w32-in (CONFIG_H): Update dependencies.
320 (CONF_POST_H): New macro.
321
322 2012-07-31 Glenn Morris <rgm@gnu.org>
323
324 * configure.ac (S_FILE): Remove output variable.
325
326 * configure.ac (opsysfile): Use AH_TEMPLATE. Doc fix.
327
328 * configure.ac (NULL_DEVICE, SEPCHAR, USER_FULL_NAME):
329 Move here from src.
330
331 * configure.ac (AMPERSAND_FULL_NAME, subprocesses):
332 Move here from conf_post.h.
333
334 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
335
336 Improve OpenMotif detection on GNU/Linux systems.
337 * configure.ac (MOTIF): Check for /usr/include/openmotif
338 and /usr/(lib|lib64)/openmotif if --with-x-toolkit=motif.
339
340 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
341
342 * Makefile.in (install-arch-indep): Avoid eval.
343
344 2012-07-31 Glenn Morris <rgm@gnu.org>
345
346 * configure.ac (opsysfile, S_FILE): Now they are always empty.
347
348 * configure.ac (opsysfile): Forgot to set it to empty on sol2-10
349 when removing src/s/sol2-6.h yesterday.
350
351 * configure.ac (USG5_4): Reintroduce this.
352 (opsysfile): Set to empty on irix6-5, sol2*, and unixware.
353
354 * configure.ac (wait3, WRETCODE): Move here from src/s/usg5-4-common.h.
355
356 * configure.ac (opsysfile): Set to empty on hpux*, darwin;
357 and to s/usg5-4-common.h on irix6-5.
358
359 2012-07-30 Glenn Morris <rgm@gnu.org>
360
361 * configure.ac (AH_BOTTOM): Use an include file, so that the
362 contents do not get processed by autoheader.
363
364 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
365
366 Do not overwrite config.status while executing it (Bug#11214).
367 * Makefile.in (MAKEFILE_NAME): New macro.
368 ($(MAKEFILE_NAME)): Rename rule from Makefile.
369 * configure.ac (epaths): Set MAKEFILE_NAME to a bogus value,
370 so that GNU 'make' isn't tempted to make the Makefile and then
371 regenerate config.status while config.status is running.
372
373 Update .PHONY listings in makefiles.
374 * Makefile.in (.PHONY): Add all, ${SUBDIR}, blessmail, epath-force,
375 FRC, install-arch-dep, install-arch-indep, install-doc,
376 install-info, install-man, install-etc, install-strip, uninstall,
377 bootstrap-clean, TAGS, tags, info-real, force-info, check-info-dir.
378 (.RECURSIVE): Remove; hasn't been needed for years.
379
380 2012-07-30 Glenn Morris <rgm@gnu.org>
381
382 * configure.ac (SIGNAL_H_AHB): New hack macro.
383 (opsysfile): Set to empty on netbsd, openbsd.
384 (AH_BOTTOM): Include signal.h if SIGNAL_H_AHB is defined.
385
386 * configure.ac (_longjmp, _setjmp, TIOCSIGSEND): Move here from src/s.
387
388 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
389
390 * Makefile.in (install-arch-indep): Remove sh -x.
391
392 2012-07-30 Glenn Morris <rgm@gnu.org>
393
394 * configure.ac (opsysfile): Tweak message for null case.
395
396 * configure.ac (opsysfile): Set to empty on aix4-2, freebsd,
397 gnu-linux, gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware.
398
399 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
400
401 Merge from gnulib, incorporating:
402 * doc/misc/texinfo.tex: Update to 2012-07-29.17 version.
403
404 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
405
406 * Makefile.in (install-arch-indep): Handle space in locallisppath.
407
408 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
409
410 Use Gnulib environ module (Bug#9772).
411 * m4/environ.m4: New file, from gnulib.
412 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
413
414 Use Gnulib stdalign module (Bug#9772, Bug#9960).
415 This should improve portability of macros like alignof and DECL_ALIGN.
416 * lib/stdalign.in.h, m4/stdalign.m4: New files, from gnulib.
417 * .bzrignore: Add lib/stdalign.h.
418 * config.bat: Do not set NO_DECL_ALIGN; no longer needed.
419 Copy lib/stdalign.in.h to lib/stdalign.in-h as needed.
420 * configure.ac (HAVE_ATTRIBUTE_ALIGNED): Remove the code that
421 fiddles with this, as gnulib now does this for us.
422
423 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
424
425 Fix toolkit configuration report.
426 * configure.ac (USE_X_TOOLKIT): Report toolkit as GTK3 if
427 --with-x-toolkit=gtk3 is used.
428
429 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
430
431 Fix regression with pthread_sigmask on FreeBSD (Bug#11884).
432 * configure.ac: Configure gnulib at the end, not before running
433 pkg-config. This restores the behavior before 2012-06-22, when
434 higher-resolution time stamps were added, and fixes a bug whereby
435 LIB_PTHREAD was not used and gnulib's part of 'configure'
436 therefore incorrectly assumed that pthread_sigmask wasn't working.
437 Fix the problem with -lrt and clock_gettime a different way.
438 This should complete the fix for Bug#11884.
439 (pre_PKG_CONFIG_CFLAGS, pre_PKG_CONFIG_LIBS): New shell vars.
440
441 2012-07-15 Paul Eggert <eggert@cs.ucla.edu>
442
443 Merge from gnulib, incorporating:
444 2012-07-15 pthread_sigmask: fix bug on FreeBSD 9 (Bug#11884)
445 2012-07-11 gettext: do not assume '#define ... defined ...' behavior
446
447 2012-07-14 Glenn Morris <rgm@gnu.org>
448
449 * configure.ac (GC_SETJMP_WORKS, GC_MARK_STACK): Move here from src/s.
450 (AH_BOTTOM): Move GC_SETJMP_WORKS GCC fallback to main body.
451
452 2012-07-13 Glenn Morris <rgm@gnu.org>
453
454 * configure.ac (opsysfile): Set to empty on gnu, cygwin.
455
456 * configure.ac (BSD4_2, BSD_SYSTEM, USG, USG5, _AIX, CYGWIN)
457 (DARWIN_OS, GNU_LINUX, HPUX, IRIX6_5, SOLARIS2):
458 Move "system type" macros here from src/s.
459 (BSD_SYSTEM_AHB): New hack macro.
460 (AH_BOTTOM): Set BSD_SYSTEM, using BSD_SYSTEM_AHB.
461
462 * configure.ac (NSIG_MINIMUM, ULIMIT_BREAK_VALUE, SETUP_SLAVE_PTY)
463 (GC_MARK_SECONDARY_STACK): Move here from src/s.
464
465 2012-07-12 Glenn Morris <rgm@gnu.org>
466
467 * configure.ac (AH_BOTTOM) [DARWIN_OS]: Move SYSTEM_PURESIZE_EXTRA
468 setting here from src/s/darwin.h.
469
470 * configure.ac (NO_MATHERR): Unconditionally define for Darwin;
471 as src/s/darwin.h used to.
472
473 * configure.ac (NARROWPROTO, NO_ABORT, BROKEN_GET_CURRENT_DIR_NAME)
474 (BROKEN_FIONREAD, BROKEN_PTY_READ_AFTER_EAGAIN, BROKEN_SIGAIO)
475 (BROKEN_SIGPOLL, BROKEN_SIGPTY, FIRST_PTY_LETTER, NO_EDITRES)
476 (G_SLICE_ALWAYS_MALLOC, PREFER_VSUSP, PTY_ITERATION, PTY_OPEN)
477 (PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF, RUN_TIME_REMAP)
478 (SETPGRP_RELEASES_CTTY, TAB3, TABDLY, RUN_TIME_REMAP, UNIX98_PTYS)
479 (XOS_NEEDS_TIME_H): Move here from src/s.
480
481 2012-07-11 Glenn Morris <rgm@gnu.org>
482
483 * configure.ac (INTERRUPT_INPUT): Move here from src/s.
484 (HAVE_PTYS, HAVE_SOCKETS): Define unconditionally.
485
486 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
487
488 * configure.ac (tzset): Remove check that's redundant with gnulib.
489
490 2012-07-11 Glenn Morris <rgm@gnu.org>
491
492 * configure.ac (CLASH_DETECTION): Define unconditionally.
493
494 * configure.ac (opsysfile): Use bsd-common on gnu systems.
495
496 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT):
497 (SIGNALS_VIA_CHARACTERS): Move here from src/s.
498
499 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
500
501 Assume mkdir, rename, rmdir, strerror.
502 * configure.ac (mkdir, rename, rmdir, strerror): Remove check.
503
504 2012-07-11 Glenn Morris <rgm@gnu.org>
505
506 * configure.ac (DONT_REOPEN_PTY): Move here from src/s.
507
508 * configure.ac (DEFAULT_SOUND_DEVICE): New definition.
509
510 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
511
512 Remove "#define unix" that is no longer needed (Bug#11905).
513 Merge from gnulib to make "#define unix" unnecessary, incorporating:
514 2012-07-10 getloadavg: clean out old Emacs and Autoconf cruft
515 2012-07-09 getopt: Simplify after Emacs changed.
516
517 2012-07-10 Glenn Morris <rgm@gnu.org>
518
519 * configure.ac (DATA_START, DATA_SEG_BITS, PENDING_OUTPUT_COUNT):
520 Move here from src/s.
521
522 2012-07-09 Andreas Schwab <schwab@linux-m68k.org>
523
524 * configure.ac (PNG_DEPSTRUCT): Define this instead of
525 PNG_DEPRECATED.
526
527 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
528
529 Add GCC-style 'const' attribute to functions that can use it.
530 * configure.ac (WARN_CFLAGS): Add -Wsuggest-attribute=const.
531 (ATTRIBUTE_CONST): New macro, in config.h.
532
533 2012-07-09 Juanma Barranquero <lekktu@gmail.com>
534
535 * lib/makefile.w32-in: Rework dependencies.
536 (GNU_LIB, NT_INC, C_CTYPE_H, MS_W32_H, CONFIG_H, FILEMODE_H)
537 (FTOASTR_H, FTOASTR_C, GETOPT_INT_H, MD5_H, SHA1_H, SHA256_H)
538 (U64_H, SHA512_H): New macros.
539 (SRC): Redefine to point to src/, not current directory.
540 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
541 ($(BLD)/c-strncasecmp.$(O), $(BLD)/dtoastr.$(O))
542 ($(BLD)/dtotimespec.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
543 ($(BLD)/gettime.$(O), $(BLD)/strftime.$(O), $(BLD)/time_r.$(O))
544 ($(BLD)/timespec-add.$(O), $(BLD)/timespec-sub.$(O), $(BLD)/md5.$(O))
545 ($(BLD)/sha1.$(O), $(BLD)/sha256.$(O), $(BLD)/sha512.$(O))
546 ($(BLD)/filemode.$(O)): Update dependencies.
547
548 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
549
550 Merge from gnulib, incorporating:
551 2012-07-09 timespec: mark functions with const attributes
552
553 Rename configure.in to configure.ac (Bug#11603).
554 The name 'configure.in' has been obsolescent for quite some time,
555 and the next release of Autoconf will generate warnings for it.
556 See commit 'v2.69-4-g560f16b' of 2012-05-06, "general: deprecate
557 'configure.in' as autoconf input" in the Autoconf git repository.
558 * configure.ac: Rename from configure.in.
559 * INSTALL, INSTALL.BZR, README, make-dist:
560 * Makefile.in (AUTOCONF_INPUTS):
561 * autogen.sh (autoconf_min):
562 * autogen/update_autogen (sources):
563 Adjust to reflect new name.
564
565 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
566
567 Restore deprecation warnings, except for older libpng.
568 * configure.in (WARN_CFLAGS): Remove -Wno-deprecated-declarations.
569 (HAVE_LIBPNG_PNG_H): Don't bother checking for this if we have png.h.
570 (PNG_DEPRECATED): Define when compiling with older PNG versions.
571
572 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
573
574 * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
575
576 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
577
578 Improve static checking when configured --with-ns.
579 See Samuel Bronson's remarks in
580 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00146.html>.
581 * configure.in (WARN_CFLAGS): Omit -Wunreachable-code, as it's
582 a no-op with recent GCC and harmful in earlier ones.
583 Omit -Wsync-nand, as it's irrelevant to Emacs and provokes a
584 warning when compiling with ObjC. Always omit
585 -Wunsafe-loop-optimizations, as we don't mind when optimization is
586 being done correctly.
587
588 2012-07-07 Glenn Morris <rgm@gnu.org>
589
590 * configure.in (BROKEN_SA_RESTART): Doc fix.
591
592 * configure.in: Rather than checking for things then undef'ing
593 them on some platforms, simply don't check for them.
594 (getwd): Don't check for it on unixware.
595 (random, rint): Don't check for these on hpux.
596 (res_init, libresolv): Don't check for these on darwin.
597
598 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
599
600 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O),
601 $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O).
602 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
603 ($(BLD)/c-strncasecmp.$(O)): New dependencies.
604
605 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
606
607 * configure.in: Document --enable-gcc-warnings better.
608
609 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
610 This is safer than strcasecmp, which has unspecified behavior
611 outside the POSIX locale and in practice sometimes does not work
612 in multibyte locales. Similarly for c_strncasecmp and strncasecmp.
613 * configure.in (strcasecmp, strncasecmp): Remove checks.
614
615 * lib/c-ctype.c, lib/c-ctype.h, lib/c-strcase.h, lib/c-strcasecmp.c:
616 * lib/c-strncasecmp.c: New files, taken from gnulib.
617 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
618
619 Merge from gnulib, incorporating:
620 2012-07-06 timespec-sub: avoid duplicate include
621 Reported by Juanma Barranquero.
622
623 2012-07-06 Glenn Morris <rgm@gnu.org>
624
625 * make-dist [update]: Let autoreconf figure out what needs updating.
626 Use `make info-real'. leim/leim-list.el should always exist.
627 Check cd return value.
628
629 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
630
631 Merge from gnulib. This is for OpenBSD 5.1 amd64.
632 * m4/sys_time_h.m4: New version from gnulib, incorporating:
633 2012-07-05 sys_time: allow too-wide tv_sec
634
635 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
636
637 Merge from gnulib.
638 * lib/alloca.in.h: New version from gnulib, incorporating:
639 2012-07-03 alloca: add support for HP NonStop TNS/E native
640
641 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
642
643 * configure.in: If --enable-gcc-warnings, disable
644 -Wunsafe-loop-optimizations for -O1 optimization level.
645
646 2012-06-30 Glenn Morris <rgm@gnu.org>
647
648 * configure.in (standardlisppath): New output variable.
649 (lisppath): Use standardlisppath.
650 * Makefile.in (standardlisppath): New, set by configure.
651 (epaths-force): Use standardlisppath and locallisppath rather than
652 lisppath.
653
654 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
655
656 * configure.in: Fix previous change. Remove --enable-asserts.
657 (CPPFLAGS): Remove conditional -DXASSERTS=1.
658 Add --enable-link-time-optimization.
659 * INSTALL: Mention this.
660
661 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
662
663 * configure.in: Add glyphs category to --enable-checking option.
664 (GLYPH_DEBUG): Define if glyphs debugging is enabled.
665
666 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
667
668 * configure.in (ENABLE_CHECKING): Update comment.
669
670 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
671
672 * configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
673 Emacs proper no longer uses these headers, and can rely on Gnulib
674 for these checks.
675
676 Merge from gnulib.
677 * m4/getopt.m4: Copy new version from gnulib, incorporating:
678 getopt-posix: No longer guarantee that option processing is resettable.
679
680 2012-06-27 Glenn Morris <rgm@gnu.org>
681
682 * configure.in: Only check for paxctl on gnu-linux. (Bug#11398#26)
683
684 * INSTALL: Remove references to paths.el.
685
686 2012-06-26 Eli Zaretskii <eliz@gnu.org>
687
688 * lib/makefile.w32-in ($(GNULIBOBJS)): Depend on stamp_BLD. This
689 replaces separate dependency for each object file, which required
690 the same object file to be mentioned twice, causing failures in
691 parallel builds.
692
693 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
694
695 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
696 * lib/makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
697
698 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
699
700 * configure.in (AC_CHECK_FUNCS): Detect library functions
701 strcasecmp and strncasecmp.
702
703 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
704
705 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
706 We might as well use the spelling standardized by C11,
707 as in the long run that should simplify maintenance.
708 * configure.in (NO_RETURN): Remove. All uses replaced by _Noreturn.
709
710 2012-06-24 Eli Zaretskii <eliz@gnu.org>
711
712 * lib/makefile.w32-in ($(BLD)/dtotimespec.$(O)):
713 ($(BLD)/timespec-add.$(O)):
714 ($(BLD)/timespec-sub.$(O)): Don't depend on
715 $(EMACS_ROOT)/nt/inc/sys/time.h.
716
717 * lib/stat-time.h:
718 * lib/timespec.h:
719 * lib/utimens.h: Revert last change.
720
721 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
722
723 Merge from gnulib.
724 * m4/getopt.m4: Copy new version from gnulib, incorporating:
725 getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
726
727 2012-06-23 Eli Zaretskii <eliz@gnu.org>
728
729 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
730 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/dtotimespec.$(O),
731 $(BLD)/gettime.$(O), $(BLD)/timespec-add.$(O), and
732 $(BLD)/timespec-sub.$(O).
733 ($(BLD)/dtotimespec.$(O)):
734 ($(BLD)/gettime.$(O)):
735 ($(BLD)/timespec-add.$(O)):
736 ($(BLD)/timespec-sub.$(O)): New dependencies.
737
738 * lib/stat-time.h:
739 * lib/timespec.h:
740 * lib/utimens.h: Include sys/time.h.
741
742 2012-06-23 Andreas Schwab <schwab@linux-m68k.org>
743
744 * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
745 the correct CFLAGS and LIBS.
746
747 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
748
749 Support higher-resolution time stamps (Bug#9000).
750 * configure.in (gl_ASSERT_NO_GNULIB_POSIXCHECK)
751 (gl_ASSERT_NO_GNULIB_TESTS, gl_INIT): Move these up earlier, so
752 that the new clock stuff doesn't clash with RSVG_LIBS.
753 (AC_CHECK_HEADERS): Don't check for sys/select.h, sys/time.h, utime.h,
754 as gnulib does that for us now.
755 (emacs_cv_struct_utimbuf, HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL)
756 (GETTIMEOFDAY_ONE_ARGUMENT): Remove; gnulib does these now.
757 (AC_CHECK_FUNCS): Remove utimes; no longer needed.
758 * lib/dtotimespec.c, lib/gettime.c, lib/gettimeofday.c, lib/pselect.c:
759 * lib/stat-time.h, lib/sys_select.in.h, lib/sys_time.in.h:
760 * lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
761 * lib/utimens.c, lib/utimens.h, m4/clock_time.m4, m4/gettime.m4:
762 * m4/gettimeofday.m4, m4/pselect.m4, m4/stat-time.m4:
763 * m4/sys_select_h.m4, m4/sys_socket_h.m4, m4/sys_time_h.m4:
764 * m4/timespec.m4, m4/utimbuf.m4, m4/utimens.m4, m4/utimes.m4:
765 New files, copied automatically from gnulib.
766 * lib/gnulib.mk, m4/gnulib-comp.m4: Merge from gnulib.
767
768 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
769
770 Merge from gnulib.
771 * lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
772 * lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
773 * m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
774 * m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
775 Copy new versions from gnulib, incorporating the following changes:
776 2012-06-22 time_r: fix typo that always overrode localtime_r decl
777 2012-06-22 Write "Mac OS X" instead of "MacOS X".
778 2012-06-21 mktime: fix integer overflow in 'configure'-time test
779 2012-06-21 nonblocking: Avoid compilation error on mingw64.
780 2012-06-19 stat, fstat: Avoid warnings on mingw64.
781 2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
782
783 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
784
785 * configure.in: Rename --enable-use-lisp-union-type to
786 --enable-check-lisp-object-type and define CHECK_LISP_OBJECT_TYPE
787 instead of USE_LISP_UNION_TYPE.
788
789 2012-06-12 Glenn Morris <rgm@gnu.org>
790
791 * configure.in (HAVE_PROCFS, _STRUCTURED_PROC): New AC_DEFINEs.
792 (opsysfile): Set specially for sol2-10.
793
794 * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
795 New AC_DEFINEs, for hpux11.
796 (opsysfile): Set specially for hpux11.
797
798 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
799
800 * configure.in: Coalesce some function checking.
801 This makes 'configure' a bit smaller.
802 Prefer AC_CHECK_FUNCS_ONCE for functions that we always check for.
803
804 2012-06-12 Glenn Morris <rgm@gnu.org>
805
806 * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
807
808 * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
809
810 * configure.in: Anticipate platforms with no src/s file.
811
812 2012-06-12 Chong Yidong <cyd@gnu.org>
813
814 * configure.in: Check for MagickMergeImageLayers (Bug#11678).
815
816 2012-06-11 Glenn Morris <rgm@gnu.org>
817
818 * configure.in (SYSTEM_TYPE): New AC_DEFINE.
819
820 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
821
822 * configure.in (dbus_type_is_valid): Check for library function.
823
824 2012-06-06 Glenn Morris <rgm@gnu.org>
825
826 * INSTALL, make-dist: Remove vcdiff.
827
828 2012-06-03 Glenn Morris <rgm@gnu.org>
829
830 * INSTALL, make-dist: Remove rcs-checkin.
831
832 2012-06-03 Ulrich Müller <ulm@gentoo.org>
833
834 * configure.in (PAXCTL): Check for paxctl. (Bug#11398)
835
836 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
837
838 Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
839 It is confusingly named and rarely useful. See, for example,
840 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
841 * INSTALL.BZR: Don't mention --disable-maintainer-mode.
842 * Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
843 * configure.in: Remove --disable-maintainer-mode.
844 (USE_MAINTAINER_MODE, MAINT): Remove.
845
846 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
847
848 Make 'configure' a bit smaller and faster.
849 * configure.in (INSTALL_INFO): Set it with one call to
850 AC_PATH_PROG, not three.
851 (PKG_CONFIG): Hoist this out of PKG_CHECK_MODULES, since it's
852 so likely that it'll be needed.
853 (AC_CHECK_HEADERS_ONCE): Prefer to AC_CHECK_HEADERS where either works.
854 (AC_PROG_MAKE_SET): Remove; Automake does this.
855 (sysinfo): Do not check for this function, as it's never used.
856 (tzset): Check for this function just once.
857 * m4/manywarnings.m4: Sync from gnulib, incorporating the following:
858 2012-05-27 manywarnings: remove duplicate -Wmultichar entry
859
860 2012-05-27 Eli Zaretskii <eliz@gnu.org>
861
862 * config.bat (lib): Create/update lib/stdalign.in-h and
863 lib/sys_types.in-h.
864
865 * lib/makefile.w32-in ($(BLD)/md5.$(O)):
866 ($(BLD)/sha1.$(O)):
867 ($(BLD)/sha256.$(O)):
868 ($(BLD)/sha512.$(O)): Depend on $(EMACS_ROOT)/nt/inc/stdalign.h.
869 Suggested by Christoph Scholtes <cschol2112@googlemail.com>.
870
871 * lib/getopt_.h: Regenerate.
872
873 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
874
875 Assume gnulib does largefile.
876 Gnulib does the largefile configuration anyway, so when configure.in
877 invokes AC_SYS_LARGEFILE, that bloats 'configure' unnecessarily.
878 * configure.in (AC_SYS_LARGEFILE): Remove.
879 * lib/gnulib.mk: Autoupdate.
880
881 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
882
883 Merge from gnulib. (Bug#11527)
884
885 The build procedure now creates <stdalign.h> and <sys/types.h> for
886 older hosts that lack a working <stdalign.h> or whose
887 <sys/types.h> does not define pid_t, size_t, ssize_t, mode_t. New
888 symbols such as WINDOWS_64_BIT_OFF_T may require attention in the
889 msdos and nt builds.
890
891 Here is a precis of gnulib changes that seem relevant; please see
892 the gnulib ChangeLog for details.
893
894 2012-05-18 crypto: fix bug in large buffer handling
895 2012-05-14 ignore-value.h: remove unused _GL_ATTRIBUTE_DEPRECATED
896 2012-05-10 _Noreturn: port config.h to gcc -Wundef
897 2012-05-08 warnings.m4: give a means to specify the program to compile
898 2012-05-07 stdint: be more consistent with glibc, SunOS libc
899 2012-04-21 Large File Support for native Windows platforms.
900 2012-04-14 stat: Bypass buggy override in mingw64.
901 2012-03-29 stdio: don't assume gets any more
902 2012-03-24 Enable common subexpression optimization in GCC.
903 2012-02-09 maint: replace FSF snail-mail addresses with URLs
904 2012-01-30 sys_stat: Fix support for mingw64 and MSVC.
905 2012-01-28 strtoimax: eliminate need for stdint.h, inttypes.h checks
906 2012-01-21 stdint: Add support for Android.
907 2012-01-15 Improve support for MSVC 9.
908 2012-01-08 mktime: Avoid compilation error on Solaris 11.
909 2012-01-05 Use ', not `, for quoting output.
910 2012-01-05 strtoimax: Don't replace systems where intmax_t is int.
911 2012-01-05 strtoimax: Work around AIX 5.1 bug.
912 2012-01-05 inttypes: Modernize.
913 2011-12-13 inttypes, stdint: add C++11 support
914 2011-11-26 Fix conflict between two instantiations of module 'unistd'.
915 2011-11-21 _Noreturn: Check that _MSC_VER is defined
916 2011-11-10 ptsname_r: Avoid compilation error on OSF/1 5.1.
917 2011-11-09 raise: fix mingw handling of SIGPIPE
918 2011-10-27 Add stdalign module and use it in other modules.
919
920 * lib/stdalign.in.h, lib/sys_types.in.h, m4/off_t.m4, m4/stdalign.m4:
921 * m4/sys_types_h.m4:
922 New files.
923 * build-aux/move-if-change, build-aux/snippet/_Noreturn.h:
924 * build-aux/snippet/arg-nonnull.h, build-aux/snippet/c++defs.h:
925 * build-aux/snippet/warn-on-use.h, doc/misc/texinfo.tex:
926 * lib/alloca.in.h, lib/allocator.h, lib/careadlinkat.c:
927 * lib/careadlinkat.h, lib/dosname.h, lib/dup2.c, lib/filemode.c:
928 * lib/filemode.h, lib/ftoastr.c, lib/ftoastr.h, lib/getloadavg.c:
929 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
930 * lib/gettext.h, lib/gnulib.mk, lib/ignore-value.h, lib/intprops.h:
931 * lib/inttypes.in.h, lib/lstat.c, lib/md5.c, lib/md5.h, lib/mktime.c:
932 * lib/pathmax.h, lib/pthread_sigmask.c, lib/readlink.c, lib/sha1.c:
933 * lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
934 * lib/signal.in.h, lib/sigprocmask.c, lib/stat.c, lib/stdarg.in.h:
935 * lib/stdbool.in.h, lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h:
936 * lib/stdlib.in.h, lib/strftime.c, lib/strftime.h, lib/strtoimax.c:
937 * lib/strtol.c, lib/strtoll.c, lib/strtoul.c, lib/strtoull.c:
938 * lib/symlink.c, lib/sys_stat.in.h, lib/time.in.h, lib/time_r.c:
939 * lib/u64.h, lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
940 * m4/alloca.m4, m4/c-strtod.m4, m4/dup2.m4, m4/extensions.m4:
941 * m4/filemode.m4, m4/getloadavg.m4, m4/getopt.m4, m4/gl-comp.m4:
942 * m4/gnulib-common.m4, m4/gnulib-tool.m4, m4/include_next.m4:
943 * m4/inttypes.m4, m4/largefile.m4, m4/longlong.m4, m4/lstat.m4:
944 * m4/md5.m4, m4/mktime.m4, m4/multiarch.m4, m4/nocrash.m4:
945 * m4/pathmax.m4, m4/pthread_sigmask.m4, m4/readlink.m4, m4/sha1.m4:
946 * m4/sha256.m4, m4/sha512.m4, m4/signal_h.m4, m4/signalblocking.m4:
947 * m4/socklen.m4, m4/ssize_t.m4, m4/st_dm_mode.m4, m4/stat.m4:
948 * m4/stdarg.m4, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4:
949 * m4/stdio_h.m4, m4/stdlib_h.m4, m4/strftime.m4, m4/strtoimax.m4:
950 * m4/strtoll.m4, m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4:
951 * m4/sys_stat_h.m4, m4/time_h.m4, m4/time_r.m4, m4/tm_gmtoff.m4:
952 * m4/unistd_h.m4, m4/warnings.m4, m4/wchar_t.m4:
953 Update from gnulib.
954
955 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
956
957 Remove src/m/*.
958 * configure.in: Remove all mention of src/m/*.
959 (machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
960 All uses removed.
961 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
962 (BITS_PER_LONG_LONG): Move to src/lisp.h.
963 * lib/makefile.w32-in: Remove dependencies on
964 $(EMACS_ROOT)/src/m/intel386.h.
965 * make-dist: Don't make links to src/m.
966
967 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
968
969 * Makefile.in (ACLOCAL_INPUTS): Fix up gnulib-comp.m4 name. (Bug#11529)
970 Without this further fix, aclocal was being invoked unnecessarily.
971
972 2012-05-22 Glenn Morris <rgm@gnu.org>
973
974 * Makefile.in (blessmail, install-arch-dep, uninstall):
975 Check cd lib-src works.
976 (install-arch-dep, uninstall): Remove unneeded subshells.
977
978 2012-05-21 Glenn Morris <rgm@gnu.org>
979
980 * update-subdirs: Move to build-aux/.
981 * make-dist, Makefile.in (install-arch-indep): Update for this change.
982
983 * Makefile.in (leimdir): New, set by configure.
984 (COPYDIR, COPYDESTS): Add leim directories.
985 (install-leim): Remove.
986 (install-arch-indep): Handle leim installation directly.
987
988 * vpath.sed: Remove unused file.
989 * make-dist: No more vpath.sed.
990
991 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
992
993 Use full name for m4/gnulib-comp.m4. (Bug#11529)
994 Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions,
995 even though the file's name in gnulib is m4/gnulib-comp.m4.
996 This had a problem when merging from gnulib, as the code temporarily
997 renamed it to the full name, causing problems when interrupted.
998 Now the file has its full name, with the idea that we will find
999 a solution for MS-DOS that does not affect the rest of Emacs.
1000 * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4.
1001
1002 Assume C89 or later.
1003 * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
1004 (POINTER_TYPE, PROTOTYPES): Remove.
1005
1006 Make merging from gnulib a script, not a makefile action.
1007 Putting it in a makefile has some problems with reflection, as
1008 merging from gnulib updates 'configure', which can update the makefile.
1009 Putting it in a standalone script breaks this loop.
1010 * Makefile.in (gnulib_srcdir, $(gnulib_srcdir), DOS_gnulib_comp.m4)
1011 (GNULIB_MODULES, GNULIB_TOOL_FLAGS, sync-from-gnulib):
1012 Remove, moving the actions to the script admin/merge-gnulib.
1013
1014 2012-05-21 Glenn Morris <rgm@gnu.org>
1015
1016 * configure.in (LEIM_INSTALLDIR):
1017 Rename to leimdir, treat like lispdir.
1018
1019 2012-05-21 Glenn Morris <rgm@gnu.org>
1020
1021 * Makefile.in (install-arch-indep, install-doc, install-info)
1022 (uninstall): Scrap superfluous subshells.
1023
1024 2012-05-19 Ulrich Mueller <ulm@gentoo.org>
1025
1026 * Makefile.in (install-etc): Respect DESTDIR. (Bug#11518)
1027
1028 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
1029
1030 * configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
1031 getdomainname, mblen (twice), mbrlen (twice), mbsinit, ualarm,
1032 getsockopt, setsockopt, mremap, mempcpy.
1033
1034 * configure.in (machine): Do not set to 'vax', since src/m/vax.h
1035 is being removed.
1036 (AC_CHECK_FUNCS): Remove ftime.
1037
1038 2012-05-19 Glenn Morris <rgm@gnu.org>
1039
1040 * Makefile.in (install-arch-indep): Remove unneeded subshell.
1041
1042 * Makefile.in (install-arch-indep): Remove unneeded chmod.
1043 Set permissions of lisp/subdirs.el.
1044
1045 * Makefile.in (SUBDIR): Add leim. Update users.
1046
1047 * Makefile.in (lib, lib-src, lisp): Check cd return value.
1048
1049 * Makefile.in (leim): No need to set PARALLEL.
1050
1051 2012-05-18 Glenn Morris <rgm@gnu.org>
1052
1053 * Makefile.in (install-arch-indep, install-info, install-man):
1054 Simplify some one-sided ifs.
1055
1056 * Makefile.in: Install only the relevant DOC file.
1057 (install-arch-indep): Delete etc/DOC*.
1058 (install-doc): No more need to delete etc/DOC.
1059
1060 * Makefile.in (install-arch-indep): Split into several rules.
1061 (install-doc, innstall-info, install-man): New rules.
1062
1063 * configure.in (mandir): May as well include it in the NS app bundle.
1064
1065 * configure.in (INSTALL_ARCH_INDEP_EXTRA): New output variable.
1066 * Makefile.in (INSTALL_ARCH_INDEP_EXTRA): New, set by configure.
1067 (install-arch-indep): Don't install-etc for self-contained ns builds.
1068
1069 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
1070 No longer unconditonally add /sw directories. (Bug#2280)
1071
1072 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
1073 (install-arch-indep): Depend on install-leim.
1074 (install): Remove explicit install-leim dependence.
1075
1076 * Makefile.in (install-arch-indep):
1077 Move last element of mkdir rule here.
1078 (mkdir): Remove rule.
1079
1080 * Makefile.in (install-arch-indep): Remove unneeded chmods.
1081 INSTALL_DATA does this for us.
1082
1083 * Makefile.in (install-arch-dep): Ensure bindir exists.
1084 Drop mkdir dependency.
1085 (install-arch-indep): Ensure docdir, infodir, mandir exist.
1086 (install-leim): Drop mkdir dependency.
1087 (mkdir): Remove most directories, now made in relevant rules.
1088
1089 * Makefile.in (install-arch-indep): Combine adjacent loops.
1090
1091 2012-05-17 Glenn Morris <rgm@gnu.org>
1092
1093 * Makefile.in (install-etc, mkdir):
1094 Make relevant directories in install-etc rather than mkdir.
1095
1096 * Makefile.in (write_subdir): Create the directory if needed.
1097 (install-arch-dep, mkdir): No need to make site-lisp directories.
1098
1099 * Makefile.in (write_subdir): New.
1100 (install-arch-indep, install-arch-dep): Use $write_subdir.
1101
1102 * configure.in (docdir, etcdir, infodir, lispdir):
1103 For a self-contained ns build, set these to the appropriate values.
1104 * Makefile.in (install-arch-dep): No need to move info/ any more.
1105
1106 * configure.in (ns_self_contained): New output variable.
1107 * Makefile.in (ns_self_contained): New, set by configure.
1108 (install-arch-dep): For a self-contained ns build,
1109 don't bother installing binaries then immediately deleting them.
1110
1111 * Makefile.in (ns_appbindir, ns_appresdir):
1112 Move them before things that may refer to them.
1113 (install-arch-dep): No need to relocate self-contained ns libexec.
1114
1115 * configure.in (archlibdir): Set it for self-contained ns builds.
1116 (libexecdir): Don't expand it now (this is mainly cosmetic).
1117
1118 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
1119
1120 * configure.in: Simplify by removing CPP etc.
1121 (CPP_TEST_OPTIONS, NON_GNU_CPP, cc_specified, SPECIFIED_CFLAGS)
1122 (SPECIFED_CPP, CPP, NON_GNU_CC, AC_PROG_CPP): Remove; not needed.
1123 In particular we no longer need to fiddle with CPP, since we don't
1124 use CPP specially any more.
1125 (gl_EARLY): Invoke this after adjusting CC, so that it uses the
1126 adjusted compiler.
1127 (AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_RANLIB): Comment out,
1128 since gl_EARLY and/or Autoconf already does these.
1129
1130 2012-05-16 Glenn Morris <rgm@gnu.org>
1131
1132 * configure.in: Try to fix building with gcc >= 4.6 on Darwin.
1133 (CPP): Do not unconditionally set it on Darwin.
1134 Instead, try to test if -no-cpp-precomp is accepted.
1135 (CPP_TEST_OPTIONS, SPECIFIED_CPP): New. (Bug#9755)
1136
1137 2012-05-15 Glenn Morris <rgm@gnu.org>
1138
1139 * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
1140
1141 * Makefile.in (install-arch-dep): Do not hard-code version number.
1142
1143 * Makefile.in (install-arch-dep): NS install no longer needs to
1144 symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change.
1145
1146 2012-05-12 Glenn Morris <rgm@gnu.org>
1147
1148 * configure.in (ns_appbindir): Remove trailing "/".
1149
1150 * configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
1151 (MKDEPDIR): Use $MKDIR_P.
1152 * Makefile.in (MKDIR_P): New, set by configure.
1153 (mkdir): Use $MKDIR_P.
1154
1155 2012-05-11 Glenn Morris <rgm@gnu.org>
1156
1157 * Makefile.in (install-arch-indep): There are no more Makefile.c files.
1158 Use INSTALL_DATA for the DOC file.
1159 Remove dead code for ./lisp that never executes.
1160
1161 2012-05-10 Glenn Morris <rgm@gnu.org>
1162
1163 * configure.in (LEIM_INSTALLDIR): New output variable.
1164
1165 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1166
1167 * .dir-locals.el (log-edit-mode): Enable gnu-style checks.
1168
1169 2012-05-08 Glenn Morris <rgm@gnu.org>
1170
1171 * make-dist: No more doc/lispref/*.el.
1172
1173 2012-05-05 Andreas Schwab <schwab@linux-m68k.org>
1174
1175 * configure.in: Fix quoting bugs.
1176
1177 2012-05-04 Glenn Morris <rgm@gnu.org>
1178
1179 * configure.in (INFO_EXT, INFO_OPTS): New output variables.
1180
1181 2012-05-02 Glenn Morris <rgm@gnu.org>
1182
1183 * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat
1184 the choices made by FreeBSD and NetBSD. (Bug#10313)
1185
1186 * Makefile.in (INFO_FILES): Remove variable.
1187 (INFO_NONMISC): New variable.
1188 (install-arch-indep, uninstall): Don't use $INFO_FILES.
1189
1190 * Makefile.in (uninstall): Remove useless-use-of-for; that for
1191 some reason caused problems on an old Solaris.
1192
1193 * Makefile.in (install-arch-indep, uninstall):
1194 Ensure that INSTALL-type commands are run from top-level.
1195
1196 * info/dir: Make some entries consistent with the source texi files.
1197
1198 * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
1199
1200 2012-05-02 Glenn Morris <rgm@gnu.org>
1201
1202 * Makefile.in (install-arch-indep):
1203 Combine adjacent install-data and install-info loops.
1204
1205 2012-05-01 Glenn Morris <rgm@gnu.org>
1206
1207 * Makefile.in (MAN_PAGES): Remove.
1208 (install-arch-indep, uninstall): Don't use $MAN_PAGES.
1209
1210 * configure.in: Try libtinfo for tputs.
1211 (LIBS_TERMCAP) [gnu*]: Use libtinfo if it was found. (Bug#9741)
1212
1213 * configure.in: Combine adjacent $opsys case blocks.
1214
1215 * configure.in (LIBS_TERMCAP): Remove unreachable branch for sol2.
1216
1217 * configure.in: Invert the TERMINFO logic,
1218 since "yes" is far more common than "no".
1219
1220 * configure.in (HAVE_LIBNCURSES): Remove; it is required to be true.
1221
1222 * configure.in (LD_SWITCH_X_SITE_RPATH):
1223 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
1224
1225 * configure.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
1226
1227 2012-04-26 Glenn Morris <rgm@gnu.org>
1228
1229 * make-dist: No more doc/lispref/tindex.pl.
1230
1231 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
1232
1233 * configure.in (dbus_validate_bus_name, dbus_validate_path)
1234 (dbus_validate_interface, dbus_validate_member): Check also for
1235 these library functions.
1236
1237 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
1238
1239 * configure.in (doug_lea_malloc): Check for __malloc_initialize_hook.
1240 With glibc 2.14 or later, when compiled with GCC 4.7.0's
1241 -Werror=deprecated-declarations flag, use of hooks like
1242 __malloc_initialize_hook causes compilation to fail because these
1243 hooks are deprecated. Modify 'configure' to check for these hooks too.
1244 Simplify the 'configure' code to test for all the hooks at once.
1245 (emacs_cv_var___after_morecore_hook): Remove, replacing with ...
1246 (emacs_cv_var_doug_lea_malloc): ... this new var.
1247
1248 2012-04-21 Paul Eggert <eggert@cs.ucla.edu>
1249
1250 Sync from gnulib version 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc
1251 dated 2011-10-07. Regenerating from current gnulib would be a
1252 pervasive change, and currently the trunk isn't open to such changes.
1253 * configure.in (WARN_CFLAGS): Remove; no longer needed now
1254 that gnulib does it.
1255 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1256
1257 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
1258
1259 * m4/gl-comp.m4: Update. (Bug#11285)
1260
1261 2012-04-20 Ludovic Courtès <ludo@gnu.org>
1262
1263 * configure.in: Don't use the -R option (Bug#11251).
1264
1265 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
1266
1267 configure: new option --enable-gcc-warnings (Bug#11207)
1268 I have been using this change for many months in my private copy
1269 of Emacs, and have used it to find several bugs. It's mature
1270 enough to publish now.
1271 * Makefile.in (GNULIB_MODULES): Add warnings, manywarnings.
1272 * configure.in: Support --enable-gcc-warnings, in the style of
1273 other GNU packages such as coreutils.
1274 (C_WARNINGS_SWITCH): Remove, replacing with...
1275 (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable.
1276 (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I,
1277 when including system files with GCC.
1278 * etc/NEWS: Mention --enable-gcc-warnings.
1279 * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise.
1280 * lib/Makefile.am (AM_CFLAGS): New macro.
1281 * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib.
1282
1283 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
1284
1285 * configure.in (AC_CHECK_FUNCS):
1286 Add getpwent, endpwent, getgrent, endgrent. (Bug#7900)
1287
1288 2012-04-16 Glenn Morris <rgm@gnu.org>
1289
1290 * configure.in (NS_HAVE_NSINTEGER): Remove unnecessary variable.
1291
1292 * configure.in: Remove X libs workaround for old autoconf.
1293
1294 2012-04-12 Ken Brown <kbrown@cornell.edu>
1295
1296 * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398)
1297
1298 2012-04-11 Glenn Morris <rgm@gnu.org>
1299
1300 * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
1301
1302 2012-04-10 Glenn Morris <rgm@gnu.org>
1303
1304 * configure.in: Conditionally generate admin/unidata/Makefile.
1305
1306 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
1307
1308 * info/dir, Makefile.in (INFO_FILES): Add emacs-gnutls manual.
1309
1310 2012-04-09 Glenn Morris <rgm@gnu.org>
1311
1312 * Makefile.in (leim): Check cd return value. Pass fewer variables.
1313 (install-leim): Check cd return value. Pass $MFLAGS.
1314 (install-strip): Pass $MFLAGS.
1315
1316 * configure.in: Require makeinfo >= 4.7. (Bug#10910)
1317 Eg org.texi has been using 4.7 functions for some time.
1318
1319 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
1320
1321 Check pkg-config exit status when configuring (Bug#10626).
1322 * configure.in (PKG_CHECK_MODULES): Do not assume that pkg-config
1323 works; check its exit status. Problem reported by Jordi Gutiérrez
1324 Hermoso in
1325 <http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00787.html>.
1326
1327 2012-04-07 Glenn Morris <rgm@gnu.org>
1328
1329 * README, configure.in (AC_INIT): Bump version to 24.1.50.
1330
1331 2012-04-07 Eli Zaretskii <eliz@gnu.org>
1332
1333 * lib/makefile.w32-in (gnulib, all): Don't depend on stamp_BLD.
1334
1335 2012-03-04 Paul Eggert <eggert@cs.ucla.edu>
1336
1337 configure: fix ncurses 'configure' issue on Solaris 10 (Bug#10677)
1338 * configure.in (LIBS_TERMCAP): Default this to the result of
1339 the tputs library search. Do a run-time test for the linkability
1340 of tputs unless cross-compiling, as that's more reliable if the
1341 link flags and libraries are messed up. Don't change LIBS as
1342 a result of the test, as that may mess up later tests.
1343
1344 2012-02-05 Christoph Scholtes <cschol2112@googlemail.com>
1345
1346 * make-dist (README.W32): Include file in source tarball. (Bug#9750)
1347
1348 * lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
1349 specific makefiles to support getopt_.h generation with MSVC.
1350
1351 2012-02-04 Glenn Morris <rgm@gnu.org>
1352
1353 * Makefile.in (uninstall):
1354 Handle compressed info files and man pages. (Bug#10718)
1355
1356 2012-02-02 Glenn Morris <rgm@gnu.org>
1357
1358 * configure.in [HAVE_NS]:
1359 Error if use --without-toolkit-scroll-bars. (Bug#10673)
1360
1361 2012-02-01 Paul Eggert <eggert@cs.ucla.edu>
1362
1363 Port to older Solaris 10 versions (Bug#10677).
1364 Bug reported by Chong Yidong for SunOS 5.10 Generic_127111-11 sparc.
1365 I cannot reproduce it on SunOS 5.10 Generic_141444-09 sparc but
1366 possibly this is because Sun fixed the 'stat' bug in my version.
1367 * Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid the pathmax module.
1368 * lib/pathmax.h, m4/pathmax.m4: New files, from gnulib.
1369 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1370 These changes are based on gnulib version
1371 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc dated 2011-10-07 20:59:10,
1372 because Emacs is in feature freeze and we do not want to merge any
1373 more-recent changes from gnulib.
1374
1375 2012-01-31 Glenn Morris <rgm@gnu.org>
1376
1377 * configure.in: Throw an explicit error if Motif toolkit was
1378 requested but requirements could not be found.
1379
1380 * configure.in: Allow Emacs to actually be built with xaw scroll-bars.
1381
1382 2012-01-30 Eli Zaretskii <eliz@gnu.org>
1383
1384 * lib/makefile.w32-in ($(BLD)/sha1.$(O) $(BLD)/sha256.$(O)
1385 $(BLD)/sha512.$(O)): Depend on stamp_BLD. Fixes a build failure
1386 with "make -j3".
1387
1388 2012-01-16 Juanma Barranquero <lekktu@gmail.com>
1389
1390 * .bzrignore: Ignore etc/__pycache__.
1391
1392 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
1393
1394 Port HAVE_PTHREAD configuration to MirBSD 10 (Bug#10201).
1395 * configure.in (HAVE_PTHREAD): Check for pthread_atfork if linking
1396 to gmalloc.c. This should prevent a MirBSD 10 build failure reported
1397 by Nelson H. F. Beebe in
1398 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00065.html>.
1399
1400 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
1401
1402 * update-subdirs: Don't set no-byte-compile twice (bug#10260).
1403
1404 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
1405
1406 * configure.in (HAVE_ALSA, HAVE_GSETTINGS): Save and restore LIBS
1407 instead of LDFLAGS (Bug#10230).
1408
1409 2011-12-03 Paul Eggert <eggert@cs.ucla.edu>
1410
1411 * INSTALL.BZR: Mention configure -C, --disable-maintainer-mode.
1412
1413 Propagate configure flags to sub-configures.
1414 * Makefile.in (cache_file, MAINTAINER_MODE_FLAG, CONFIGUREFLAGS):
1415 New macros.
1416 (config.status, bootstrap): Use them to propagate configure flags
1417 to sub-configures.
1418 * configure.in (cache_file): AC_SUBST this, for Makefile.in.
1419
1420 2011-12-03 Paul Eggert <eggert@cs.ucla.edu>
1421
1422 * .bzrignore: Add config.cache.
1423
1424 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
1425
1426 * configure.in: Check for gtk_window_set_has_resize_grip.
1427
1428 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
1429
1430 * configure.in (HAVE_XPM): Fix typo.
1431
1432 2011-11-22 Glenn Morris <rgm@gnu.org>
1433
1434 * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can
1435 have confusing effects on the build. (Bug#6401)
1436
1437 * Makefile.in (install-arch-dep): Tweak previous change.
1438
1439 2011-11-22 Yavor Doganov <yavor@gnu.org>
1440
1441 Do not install arch-dependent files in the app bundle if
1442 --disable-ns-self-contained is requested. (Bug#1335)
1443 * configure.in (exec_prefix, libexecdir): Define relative to
1444 `ns_appbindir' only if configured for a self-contained app.
1445 * Makefile.in (install-arch-dep): Test for the existence of
1446 libexec in the Emacs.app bundle before executing commands.
1447
1448 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
1449
1450 * configure.in: Remove reference to src/m/ibms390.h.
1451
1452 2011-11-13 Glenn Morris <rgm@gnu.org>
1453
1454 * INSTALL: Tiny updates for disk space used during installation.
1455
1456 2011-11-05 Eli Zaretskii <eliz@gnu.org>
1457
1458 * lib/makefile.w32-in (FRC): New dummy target.
1459 (TAGS): Depend on FRC.
1460
1461 2011-11-04 Glenn Morris <rgm@gnu.org>
1462
1463 * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929)
1464 Do not include GnuTLS version info in final summary message.
1465
1466 2011-10-31 Eli Zaretskii <eliz@gnu.org>
1467
1468 * config.bat: Use config.in and Makefile.in from src/ and lib/, if
1469 they exist there, else from autogen/.
1470
1471 * make-dist (msdos): Add depfiles.bat and inttypes.h.
1472
1473 2011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change)
1474
1475 * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
1476
1477 2011-10-24 Paul Eggert <eggert@cs.ucla.edu>
1478
1479 * configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
1480 if the library is found. Otherwise, later configure-time tests,
1481 such as the test for pthread_sigmask, generate the wrong results
1482 on some platforms. Problem reported for FreeBSD by Nali Toja.
1483
1484 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
1485
1486 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
1487 * configure.in (AC_STRUCT_TM, AC_STRUCT_TIMEZONE, HAVE_TM_GMTOFF):
1488 Remove; no longer needed, now that we defer to strftime for time
1489 zone names.
1490
1491 2011-10-18 Jan Djärv <jan.h.d@swipnet.se>
1492
1493 * configure.in (GLIB_REQUIRED, GTK_REQUIRED): Set to 2.10 (Bug#9786).
1494
1495 2011-10-18 Chong Yidong <cyd@gnu.org>
1496
1497 * make-dist: Remove Cocoa/Emacs.xcodeproj from distribution.
1498
1499 2011-10-13 Glenn Morris <rgm@gnu.org>
1500
1501 * configure.in: Also look for tputs in libcurses. (Bug#9736)
1502
1503 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
1504
1505 * configure.in: Remove check for -lintl (Bug#9713).
1506 The check could break 'configure' on GNU/Linux with a (broken) libintl.
1507 The check was helpful but not essential in Solaris 2.6 (1997),
1508 and is no longer needed in Solaris 8 (2000). Solaris 2.6 is
1509 obsolete -- Sun dropped support for it in 2006 -- and without
1510 access to that Silurian platform we can't maintain the code anyway.
1511
1512 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
1513
1514 Merge from gnulib, fixing some 'configure' typos (Bug#9696).
1515 * lib/signal.in.h, lib/sigprocmask.c, m4/gl-comp.m4:
1516 * m4/gnulib-common.m4: Merge from gnulib.
1517 Without this, 'configure' would say "func_gl_gnulib_m4code_pathmax:
1518 command not found" on powerpc-apple-darwin9.8.0.
1519
1520 * configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
1521 This is now done by src/alloc.c.
1522
1523 2011-10-02 Richard Stallman <rms@gnu.org>
1524
1525 * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
1526 and xlinux_second_failure to xgnu_linux_second_failure.
1527
1528 2011-09-29 Eli Zaretskii <eliz@gnu.org>
1529
1530 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
1531 lib/signal.in-h.
1532
1533 * config.bat: Rename GNUmakefile, so it is not run on MS-DOS.
1534 Rename signal.in.h and alloca.in.h.
1535
1536 2011-09-28 Eli Zaretskii <eliz@gnu.org>
1537
1538 * INSTALL: Mention that m17n libraries and libotf are needed for
1539 Arabic shaping.
1540
1541 2011-09-26 Paul Eggert <eggert@cs.ucla.edu>
1542
1543 Merge from gnulib, improving some licensing wording.
1544 This clarifies and fixes some licensing issues raised by Glenn Morris
1545 <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
1546 It also merges the latest version of texinfo.tex and has some
1547 MSVC-related changes that don't affect Emacs.
1548 * Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
1549 pathmax, and raise, since these are needed only to address
1550 MSVC-related issues that Emacs doesn't have.
1551 * doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
1552 * lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
1553 * lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
1554 * m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
1555 * m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
1556 * m4/unistd_h.m4: Merge from gnulib.
1557
1558 2011-09-26 Andreas Schwab <schwab@linux-m68k.org>
1559
1560 * configure.in: Initialize HAVE_LIBXML2.
1561
1562 2011-09-26 Glenn Morris <rgm@gnu.org>
1563
1564 * make-dist: Add lib/makefile.w32-in.
1565
1566 2011-09-24 Glenn Morris <rgm@gnu.org>
1567
1568 * configure.in (CRT_DIR): Fix netbsd/openbsd handling.
1569
1570 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
1571
1572 * .dir-locals.el: Change the debbugs regexp to allow having the
1573 bug number as the first thing on a line.
1574
1575 2011-09-15 Glenn Morris <rgm@gnu.org>
1576
1577 * configure.in: Make configure work with recent GNUsteps.
1578 (_NATIVE_OBJC_EXCEPTIONS): New AC_DEFINE.
1579 (GNU_OBJC_CFLAGS): Add -fobjc-exceptions when needed.
1580 (C_SWITCH_X_SYSTEM): Enable GNUstep to find its headers.
1581
1582 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
1583
1584 Merge from gnulib, porting to Tru64.
1585 * lib/lstat.c, lib/stat.c, m4/include_next.m4, m4/nocrash.m4:
1586 * m4/signal_h.m4, m4/time_h.m4, m4/unistd_h.m4:
1587 Merge from gnulib. This fixes a compilation error on Tru64 UNIX
1588 aka OSF/1 5.1 DTK cc. There is also some mingw stuff here that
1589 doesn't affect Emacs.
1590
1591 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1592
1593 * configure.in (isnan): Remove now-unnecessary check.
1594
1595 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1596
1597 Merge from gnulib, using build-aux to remove clutter (Bug#9169).
1598 This is to fix the following problems:
1599 . On FreeBSD 6.4, HP-UX 11.31, and Solaris 9, and when Emacs is
1600 configured not to use gtk or any other thread-using library,
1601 signals aren't blocked correctly.
1602 . On IRIX 6.5 it fixes an unwanted clash between Emacs's
1603 and IRIX's signal handling.
1604 . On Cygwin 1.7.5 it works around an incompatibility with
1605 the system pthread_sigmask.
1606 . On MacOS X 10.5 (32-bit), files whose inode numbers
1607 exceed 2**31 cannot be read or manipulated.
1608 . pthread_sigmask: Actually use results of gl_THREADLIB.
1609 . strtoimax, strtoumax: Avoid link error on OSF/1 with DTK cc.
1610 . find 'ar' program that fits with --host argument.
1611 . Allow the user to override the choice of AR, ARFLAGS, RANLIB.
1612 * autogen/README: Update destination list.
1613 * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
1614 The autogenerated files compile, config.guess,
1615 config.sub, depcomp, install-sh, and missing are now in build-aux.
1616 * m4/largefile.m4: New file, so that Emacs does not mess up when
1617 accessing files with large inode numbers in MacOS X 10.5 and later.
1618 * m4/nocrash.m4: New file, to avoid triggering background debugger
1619 and/or create core dumps during 'configure'.
1620 * build-aux/move-if-change: Renamed from move-if-change.
1621 * build-aux/snippet/arg-nonnull.h: Renamed from arg-nonnull.h.
1622 * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
1623 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
1624 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
1625 * Makefile.in (epaths-force, sync-from-gnulib):
1626 move-if-change is now in build-aux.
1627 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
1628 of gnulib's pthread_sigmask module, but Emacs doesn't need it.
1629 (mkdir): install-sh is now in build-aux.
1630 * config.bat: c++defs.h is now in build-aux/snippets.
1631 * configure.in: Specify AC_CONFIG_AUX_DIR with build-aux (the
1632 usual parameter).
1633 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1634 * lib/makefile.w32-in (ARG_NONNULL_H): arg-nonnull.h moved
1635 to build-aux/snippet.
1636 * lib/pthread_sigmask.c, lib/stdlib.in.h, m4/extensions.m4:
1637 * m4/getopt.m4, m4/gnulib-common.m4, m4/pthread_sigmask.m4:
1638 Merge from gnuilib. This fixes porting bugs on Cygwin, Irix, and
1639 Solaris, enables MacOS extensions, and enables nocrash during
1640 'configure'.
1641 * make-dist: Adjust to new build-aux and build-aux/snippit dirs.
1642
1643 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
1644
1645 * configure.in (snprintf): New check.
1646
1647 2011-08-30 Paul Eggert <eggert@cs.ucla.edu>
1648
1649 * configure.in (opsys): Change pattern to *-*-linux*
1650 to recognize powerpc-gnu-linux-uclibc (Bug#9403).
1651 Remove unreachable pattern hppa*-*-linux-gnu*.
1652 Also, remove ia64*-hp-hpux1[1-9]*, as it also sets machine=hp800,
1653 and that can't possibly work now that src/m/hp800.h no longer exists.
1654
1655 2011-08-26 Jan Djärv <jan.h.d@swipnet.se>
1656
1657 * configure.in: Add -MP to DEPFLAGS (Bug#9372).
1658
1659 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
1660
1661 * configure.in: Add header check: sys/socket.h (Bug#8477),
1662 ifaddrs.h, net/if_dl.h. Check for getifaddrs and freeifaddrs.
1663 Check for sa_len in struct ifreq.ifr_addr (Bug#8477).
1664
1665 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
1666
1667 * configure.in (HAVE_PTHREAD): Add check for -lpthread (Bug#9216).
1668 (HAVE_GTK_AND_PTHREAD): Remove.
1669
1670 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
1671
1672 * configure.in (HAVE_RSVG): Allow use of -lrsvg-2 for any NextStep
1673 build, not just GNUstep (Bug#9177).
1674
1675 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
1676
1677 Assume freestanding C89 headers, string.h, stdlib.h.
1678 Again, this simplifies the code, and all current platforms have these.
1679 * configure.in (AC_CHECK_HEADERS): Don't check for limits.h.
1680 (AC_HEADER_STDC): Remove.
1681 (AC_CHECK_FUNCS): No need to check for strchr, strrchr.
1682 (strchr, strrchr): Remove fallback macros.
1683
1684 Assume support for memcmp, memcpy, memmove, memset.
1685 This simplifies the code a bit. All current platforms have these,
1686 as they are required for C89. If this turns into a problem we
1687 can add the gnulib modules for these (a 1-line change to Makefile.in).
1688 * configure.in: Don't check for memcmp, memcpy, memmove, memset.
1689
1690 2011-07-27 Paul Eggert <eggert@cs.ucla.edu>
1691
1692 * GNUmakefile: New file.
1693 This is for convenience, so that one can run GNU make in an
1694 unconfigured source tree, and get a default build.
1695
1696 2011-07-13 Jan Djärv <jan.h.d@swipnet.se>
1697
1698 * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.
1699
1700 2011-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1701
1702 * configure.in (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie on Darwin
1703 so as to suppress address randomization (Bug#8395).
1704
1705 2011-07-09 Paul Eggert <eggert@cs.ucla.edu>
1706
1707 * lib/stdint.in.h: Merge from gnulib (Bug#9025).
1708 This fixes a build problem on older Mac OS X hosts.
1709
1710 * m4/pthread_sigmask.m4 (gl_FUNC_PTHREAD_SIGMASK): Omit gl_THREADLIB
1711 test, which runs afoul of Automake installations where, for example,
1712 /usr/share/aclocal contains a copy of gl_THREADLIB.
1713 Problem reported by Sven Joachim in
1714 <http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00529.html>.
1715 This is just a quick temporary fix, specific to Emacs; I'll work
1716 with the other gnulib maintainers to get a more-permanent fix.
1717
1718 Add gnulib's strtoimax module, needed on Solaris 8.
1719 * Makefile.in (GNULIB_MODULES): Add strtoimax.
1720 * lib/strtoll.c, m4/strtoimax.m4, m4/strtoll.m4: New files,
1721 automatically imported from gnulib.
1722 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1723
1724 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
1725
1726 Add gnulib support for pthread_sigmask (Bug#9010).
1727 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
1728 * configure.in (AC_TYPE_UID_T): New dummy macro.
1729 Configure gnulib after adjusting LIBS,
1730 so that gnulib can assume the libraries in LIBS.
1731 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
1732 * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
1733 * lib/pthread_sigmask.c:
1734 New files, automatically imported from gnulib.
1735 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
1736 due to the above changes.
1737 * .bzrignore: Add lib/signal.h.
1738
1739 * lib/getopt.c, lib/unistd.in.h, m4/getopt.m4: Merge from gnulib.
1740
1741 2011-07-07 Andreas Schwab <schwab@linux-m68k.org>
1742
1743 * configure.in (maintainer-mode): Reflect default in help string.
1744
1745 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
1746
1747 * configure.in: Remove reference to iris4d.h.
1748
1749 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
1750
1751 * configure.in (HAVE_GCONF): Allow both HAVE_GCONF and HAVE_GSETTINGS.
1752
1753 2011-07-01 Glenn Morris <rgm@gnu.org>
1754
1755 * configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
1756
1757 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1758
1759 * configure.in (HAVE_GSETTINGS): Fix syntax for GSETTINGS tests,
1760 which made ./configure infloop.
1761
1762 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
1763
1764 * configure.in (gsettings): New option and check for GSettings.
1765
1766 2011-06-29 Glenn Morris <rgm@gnu.org>
1767
1768 * configure.in: Try to test for the required crt*.o files.
1769
1770 2011-06-27 Bill Wohler <wohler@newt.com>
1771
1772 * .bzrignore: Add lisp/mh-e/mh-autoloads.el and lisp/mh-e/mh-cus-load.el.
1773
1774 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
1775
1776 Use gnulib's dup2 module instead of rolling our own.
1777 * Makefile.in (GNULIB_MODULES): Add dup2.
1778 * configure.in: Do not check for dup2; gnulib does that now.
1779 * lib/dup2.c, m4/dup2.m4: New files, from gnulib.
1780
1781 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
1782
1783 * lib/getopt.c, lib/stat.c, m4/gl-comp.m4: Merge from gnulib.
1784
1785 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
1786
1787 Use gnulib's alloca-opt module.
1788 * .bzrignore: Add lib/alloca.h.
1789 * Makefile.in (GNULIB_MODULES): Add alloca-opt.
1790 * configure.in (AC_FUNC_ALLOCA): Remove almost all the alloca stuff,
1791 as gnulib now does that for us. Put alloca check in config.h.
1792 Include <alloca.h> before any other include file, for AIX 3.
1793 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1794 * lib/alloca.in.h, m4/alloca.m4: New files, from gnulib.
1795
1796 2011-06-21 Leo Liu <sdl.web@gmail.com>
1797
1798 * m4/sha256.m4:
1799 * m4/sha512.m4:
1800 * m4/gl-comp.m4:
1801 * lib/u64.h:
1802 * lib/sha256.c:
1803 * lib/sha256.h:
1804 * lib/sha512.c:
1805 * lib/sha512.h:
1806 * lib/makefile.w32-in (GNULIBOBJS):
1807 * lib/gnulib.mk:
1808 * Makefile.in (GNULIB_MODULES): Add crypto/sha256 and
1809 crypto/sha512 modules from gnulib.
1810
1811 2011-06-19 Paul Eggert <eggert@cs.ucla.edu>
1812
1813 * lib/unistd.in.h, m4/getloadavg.m4: Merge from gnulib.
1814
1815 2011-06-17 Glenn Morris <rgm@gnu.org>
1816
1817 * configure.in: Restore the behavior of checking crt-dir only
1818 when the user specified it (not all platforms use it).
1819
1820 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
1821
1822 * m4/lstat.m4: Merge from gnulib (Bug#8878).
1823
1824 2011-06-16 Miles Bader <miles@gnu.org>
1825
1826 * configure.in: Try to determine CRT_DIR automatically when
1827 using gcc.
1828
1829 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
1830
1831 * lib/ftoastr.c, lib/stdio.in.h, lib/verify.h:
1832 * lib/gnulib.mk, m4/c-strtod.m4, m4/filemode.m4, m4/getloadavg.m4:
1833 * m4/getopt.m4, m4/gl-comp.m4, m4/lstat.m4, m4/md5.m4, m4/mktime.m4:
1834 * m4/readlink.m4, m4/sha1.m4, m4/stat.m4, m4/strftime.m4:
1835 * m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4, m4/time_r.m4:
1836 Merge from gnulib.
1837
1838 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
1839
1840 * configure.in: Add emacsgtkfixed.o to GTK_OBJ if HAVE_GTK3.
1841
1842 2011-06-08 Paul Eggert <eggert@cs.ucla.edu>
1843
1844 * lib/gnulib.mk, m4/gnulib-common.m4: Merge from gnulib.
1845
1846 2011-06-07 Paul Eggert <eggert@cs.ucla.edu>
1847
1848 * configure.in: Add --with-wide-int.
1849 * INSTALL: Mention this.
1850
1851 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
1852
1853 Merge from gnulib.
1854 * lib/careadlinkat.c, lib/careadlinkat.h, m4/gnulib-common.m4: Merge.
1855
1856 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
1857
1858 * lib/allocator.h, lib/careadlinkat.c: Merge from gnulib.
1859
1860 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
1861
1862 Use 'inline', not 'INLINE'.
1863 * configure.in (INLINE): Remove.
1864
1865 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
1866
1867 Adjust to recent gnulib change for @GUARD_PREFIX@.
1868 * lib/makefile.w32-in (getopt_h): Substitute @GUARD_PREFIX@, too.
1869 All uses of _GL_ for guard prefixes in lib/*.h replaced with
1870 _@GUARD_PREFIX@_.
1871
1872 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
1873
1874 * lib/getopt.c, lib/intprops.h: Merge from gnulib.
1875
1876 2011-05-24 Glenn Morris <rgm@gnu.org>
1877
1878 * Makefile.in (check): Just give a message if no test/ directory.
1879
1880 * configure.in: Avoid using variables inside AC_CONFIG_FILES.
1881
1882 * configure.in (OPT_MAKEFILES_IN): Remove.
1883 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
1884 (SUBDIR_MAKEFILES_IN): New output variable.
1885 * Makefile.in (OPT_MAKEFILES_IN): Remove.
1886 (SUBDIR_MAKEFILES_IN): Let configure set it.
1887
1888 2011-05-24 Leo Liu <sdl.web@gmail.com>
1889
1890 * m4/sha1.m4:
1891 * m4/gl-comp.m4:
1892 * lib/sha1.h:
1893 * lib/sha1.c:
1894 * lib/makefile.w32-in (GNULIBOBJS):
1895 * lib/gnulib.mk:
1896 * Makefile.in (GNULIB_MODULES): Add crypto/sha1 module.
1897
1898 2011-05-24 Glenn Morris <rgm@gnu.org>
1899
1900 * configure.in: Remove test for already configured source directory.
1901 AM_INIT_AUTOMAKE has already done a more stringent test. (Bug#953)
1902
1903 * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
1904
1905 2011-05-24 Glenn Morris <rgm@gnu.org>
1906
1907 * make-dist: Don't distribute test/. (Bug#8107)
1908 * configure.in (OPT_MAKEFILES_IN): New output variable.
1909 (AC_CONFIG_FILES): Conditionally include test/automated/Makefile.
1910 * Makefile.in (OPT_MAKEFILES_IN): New, set by configure.
1911 (SUBDIR_MAKEFILES_IN): Use $OPT_MAKEFILES_IN.
1912 (check): Give an explicit error if test/ is not present.
1913
1914 * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
1915 (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
1916 (Makefile): Use $SUBDIR_MAKEFILES_IN.
1917
1918 2011-05-23 Paul Eggert <eggert@cs.ucla.edu>
1919
1920 * lib/verify.h: Merge from gnulib.
1921
1922 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
1923
1924 * lib/intprops.h, lib/stdint.in.h, m4/mktime.m4, m4/readlink.m4:
1925 Merge from gnulib.
1926
1927 2011-05-21 Andreas Schwab <schwab@linux-m68k.org>
1928
1929 * Makefile.in (AUTOMAKE_INPUTS): Add $(srcdir)/lib/gnulib.mk.
1930
1931 2011-05-20 Eli Zaretskii <eliz@gnu.org>
1932
1933 * .bzrignore: Add lib/stdio.in-h, lib/stdbool.h, and lib/stdint.h.
1934
1935 * config.bat: Concatenate lisp.mk onto the end of src/Makefile.
1936
1937 2011-05-20 Glenn Morris <rgm@gnu.org>
1938
1939 * configure.in (lisp_frag): New output file.
1940
1941 2011-05-19 Glenn Morris <rgm@gnu.org>
1942
1943 * configure.in (NS_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
1944 (WINDOW_SUPPORT): Remove output variables that are no longer used.
1945
1946 2011-05-17 Paul Eggert <eggert@cs.ucla.edu>
1947
1948 * lib/gnulib.mk:
1949 * lib/intprops.h:
1950 * lib/unistd.in.h:
1951 * m4/inttypes.m4:
1952 * m4/stdint.m4:
1953 * m4/unistd_h.m4: Sync from gnulib.
1954
1955 2011-05-14 Glenn Morris <rgm@gnu.org>
1956
1957 * configure.in: Treat failure to find an X toolkit the same way we treat
1958 failure to find X and image support.
1959
1960 2011-05-12 Glenn Morris <rgm@gnu.org>
1961
1962 * Makefile.in (src, install-arch-indep, bootstrap-clean)
1963 (check-declare): Shell portability fixes. (Bug#8642)
1964
1965 2011-05-09 Teodor Zlatanov <tzz@lifelogs.com>
1966
1967 * configure.in: Require GnuTLS 2.6.x or higher.
1968
1969 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
1970
1971 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
1972 * Makefile.in (GNULIB_MODULES): Add stdarg, for va_copy.
1973 * lib/stdarg.in.h, m4/stdarg.m4: New files, from gnulib.
1974
1975 * Makefile.in (GNULIB_TOOL_FLAG): Add --conditional-dependencies.
1976 This new gnulib-tool option saves 'configure' the trouble of
1977 checking for strtoull when strtoumax exists.
1978
1979 * configure.in (BITS_PER_LONG_LONG): New macro.
1980
1981 2011-05-05 Glenn Morris <rgm@gnu.org>
1982
1983 * Makefile.in (bootstrap-clean): Save config.log. (Bug#765)
1984 (top_distclean): Delete config.log~.
1985
1986 2011-04-27 Ben Key <bkey76@gmail.com>
1987
1988 * configure.in: Fixed a bug that caused configure with
1989 --enable-checking=stringoverrun to have no effect.
1990
1991 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
1992
1993 * configure.in: Suppress unnecessary checks for size_t.
1994 (AC_TYPE_SIZE_T): Define an empty macro, to suppress obsolescent test.
1995 (size_t): Do not check for this, and do not typedef. This code
1996 is never exercised now.
1997
1998 * Makefile.in (GNULIB_MODULES): Add strtoumax.
1999 This is needed for the new integer-reading code in lread.c.
2000 It automatically pulls in the following gnulib files, which
2001 are used on old-fashioned platforms that don't have strtoumax:
2002 lib/inttypes.in.h, lib/strtoimax.c, lib/strtol.c, lib/strtoul.c,
2003 lib/strtoull.c, lib/strtoumax.c, lib/verify.h, m4/inttypes.m4,
2004 m4/strtoull.m4, m4/strtoumax.m4.
2005 * .bzrignore: Add lib/inttypes.h.
2006
2007 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
2008
2009 * configure.in: Check for GnuTLS certificate verify callbacks.
2010
2011 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2012
2013 * Makefile.in (config.status): Don't erase in case of error.
2014 In case it disappeared, rebuild it with `configure'.
2015
2016 2011-04-20 Ken Brown <kbrown@cornell.edu>
2017
2018 * configure.in (use_mmap_for_buffers): Set to yes on Cygwin.
2019
2020 2011-04-12 Glenn Morris <rgm@gnu.org>
2021
2022 * configure.in: Require ImageMagick >= 6.2.8. (Bug#7955)
2023
2024 2011-04-09 Paul Eggert <eggert@cs.ucla.edu>
2025
2026 * lib/allocator.c: New file, automatically generated by gnulib.
2027
2028 2011-04-07 Glenn Morris <rgm@gnu.org>
2029
2030 * autogen/update_autogen: Ignore comment diffs in ldefs-boot.el.
2031
2032 2011-04-06 Eli Zaretskii <eliz@gnu.org>
2033
2034 * lib/makefile.w32-in ($(BLD)/careadlinkat.$(O), GNULIBOBJS):
2035 Revert last change.
2036
2037 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
2038
2039 * lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O).
2040 ($(BLD)/careadlinkat.$(O)): New target.
2041 ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
2042 ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)):
2043 Update dependencies.
2044
2045 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
2046
2047 Fix more problems found by GCC 4.6.0's static checks.
2048
2049 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
2050
2051 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
2052 * Makefile.in (GNULIB_MODULES): Add careadlinkat.
2053 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
2054 * m4/ssize_t.m4: New files, automatically generated from gnulib.
2055
2056 2011-04-06 Glenn Morris <rgm@gnu.org>
2057
2058 * autogen/update_autogen: Handle loaddefs-like files as well.
2059 (usage): Add -l, -C.
2060 (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
2061 With -l, check status of lisp/ as well.
2062 With -C, clean before building.
2063 (autoreconf): Only pass -f in the `clean' case.
2064 (commit): New function.
2065
2066 2011-03-28 Glenn Morris <rgm@gnu.org>
2067
2068 * autogen/update_autogen: Pass -f to autoreconf.
2069
2070 * autogen.sh (get_version): Discard "not found" lines.
2071 (check_version): Respect $AUTOCONF etc environment variables.
2072
2073 2011-03-27 Glenn Morris <rgm@gnu.org>
2074
2075 * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
2076 (AH_BOTTOM): Do not define SIGTYPE.
2077
2078 2011-03-26 Glenn Morris <rgm@gnu.org>
2079
2080 * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,
2081 AC_TRY_RUN with AC_COMPILE_IFELSE, AC_LINK_IFELSE, AC_RUN_IFELSE.
2082
2083 2011-03-25 Andreas Schwab <schwab@linux-m68k.org>
2084
2085 * autogen/update_autogen: Remove useless function keyword.
2086
2087 2011-03-25 Eli Zaretskii <eliz@gnu.org>
2088
2089 * config.bat: Generate src/config.h and lib/Makefile from
2090 autogen/config.in and autogen/Makefile.in.
2091
2092 2011-03-25 Glenn Morris <rgm@gnu.org>
2093
2094 * compile, config.guess, config.sub, depcomp, install-sh, missing:
2095 Remove; autoreconf can supply them.
2096 * Makefile.in (sync-from-gnulib): Don't sync config.sub,
2097 config.guess, install-sh. Pass -i to autoreconf.
2098 * autogen/update_autogen (genfiles): Add compile, config.guess,
2099 config.sub, depcomp, install-sh, missing. Pass -i to autoreconf.
2100 Discard non-error output from autoreconf in -q case.
2101 * autogen/compile, autogen/config.guess, autogen/config.sub:
2102 * autogen/depcomp, autogen/install-sh, autogen/missing: New.
2103 * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp,
2104 install-sh, missing.
2105
2106 2011-03-23 Glenn Morris <rgm@gnu.org>
2107
2108 * autogen/update_autogen: Fix typo.
2109 (msg): Remove function; use `exec' instead.
2110
2111 * Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
2112 (sync-from-gnulib): Don't sync mkinstalldirs.
2113 * make-dist: Don't distribute mkinstalldirs.
2114
2115 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
2116
2117 Fix more problems found by GCC 4.5.2's static checks.
2118 * Makefile.in (GNULIB_MODULES): Add socklen.
2119 * configure.in: Do not check for sys/socket.h, since socklen does that.
2120 * m4/socklen.m4: New automatically-generated file, from gnulib.
2121
2122 fakemail: Remove dependency on ignore-value.
2123 * Makefile.in (GNULIB_MODULES): Add stdio.
2124 * lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
2125 imported from gnulib.
2126 * .bzrignore: Add lib/stdio.h.
2127
2128 2011-03-22 Glenn Morris <rgm@gnu.org>
2129
2130 * autogen/copy_autogen: Work from ./ or ../.
2131 Fix time-stamps.
2132 * autogen.sh: Doc fix.
2133
2134 2011-03-20 Glenn Morris <rgm@gnu.org>
2135
2136 * autogen/: New directory, to be excluded from releases.
2137 * autogen/copy_autogen, autogen/update_autogen: New scripts.
2138 * autogen/README: New file.
2139 * autogen/aclocal.m4, autogen/config.in, autogen/configure:
2140 * autogen/Makefile.in: Add auto-updated generated files.
2141 * autogen.sh: No longer a no-op, now it tests for autotools
2142 and runs them as necessary.
2143 * configure.in: Default maintainer-mode to on.
2144 * aclocal.m4, configure, lib/Makefile.in: Remove files.
2145
2146 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
2147
2148 Update for gnulib.
2149 * Makefile.in (GNULIB_MODULES): Add intprops, as Emacs now
2150 includes <intprops.h> directly.
2151 * lib/sys_stat.in.h: New version from Gnulib, which fixes a bug
2152 when building Emacs on Solaris 9 and running it on Solaris 10.
2153
2154 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
2155
2156 * configure.in: Require 3.0 for --with-gtk3. Add HAVE_GTK3.
2157
2158 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
2159
2160 * Version 23.3 released.
2161
2162 2011-03-06 Glenn Morris <rgm@gnu.org>
2163
2164 * configure.in (FREETYPE_LIBS): Actually set it to something.
2165
2166 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
2167
2168 Work around some portability problems with symlinks.
2169
2170 * Makefile.in (GNULIB_MODULES): Add lstat, readlink, symlink.
2171 * configure.in (lstat, HAVE_LSTAT): Remove special hack.
2172 * lib/dosname.h, lib/lstat.c, lib/readlink.c, lib/stat.c:
2173 * lib/symlink.c, m4/lstat.m4, m4/readlink.m4, m4/stat.m4:
2174 * m4/symlink.m4:
2175 New files, automatically generated from gnulib.
2176 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2177 * m4/gl-comp.m4, src/config.in, config.sub: Regenerate.
2178
2179 2011-02-26 Eli Zaretskii <eliz@gnu.org>
2180
2181 * .bzrignore: Ignore new lib/*.in-h files.
2182
2183 * config.bat: Rename stdint.in.h and sys_stat.in.h. Call
2184 depfiles.bat even if lib/deps already exist.
2185
2186 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2187
2188 * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk:
2189 * lib/stdlib.in.h, m4/stdlib_h.m4: Regenerate to incorporate
2190 recent changes to configure.in and to gnulib.
2191
2192 2011-02-24 Glenn Morris <rgm@gnu.org>
2193
2194 * configure.in: Replace obsolete AC_OUTPUT() with AC_CONFIG_FILES(),
2195 AC_CONFIG_COMMANDS(), and AC_OUTPUT sans arguments.
2196
2197 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
2198
2199 Assume S_ISLNK etc. work, since gnulib supports this.
2200 * Makefile.in (GNULIB_MODULES): Add sys_stat.
2201 * configure.in: Check for lstat and set HAVE_LSTAT=0 if not.
2202 Pretend to be using the gnulib lstat module for benefit of sys/stat.h.
2203 * configure, lib/Makefile.in, lib/gnulib.mk: Regenerate.
2204
2205 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
2206
2207 * lib/min-max.h: New file, for "min" and "max".
2208
2209 2011-02-21 Christoph Scholtes <cschol2112@gmail.com>
2210
2211 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Added dependency on
2212 $(EMACS_ROOT)/nt/inc/stdint.h.
2213
2214 2011-02-21 Eli Zaretskii <eliz@gnu.org>
2215
2216 * lib/makefile.w32-in ($(BLD)/filemode.$(O)): Move from
2217 src/makefile.w32-in and adapt. Depend on stamp_BLD.
2218 (GNULIBOBJS): Add $(BLD)/filemode.$(O).
2219
2220 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
2221
2222 Import filemode module from gnulib.
2223 * .bzrignore: Add lib/sys/.
2224 * Makefile.in (GNULIB_MODULES): Add filemode.
2225 * lib/Makefile.am (MOSTLYCLEANDIRS): New macro.
2226 * lib/filemode.c: Renamed from src/filemode.c and regenerated
2227 from gnulib. This adds support for some more file types, e.g.,
2228 Cray DMF migrated files.
2229 * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c.
2230 * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4:
2231 * m4/sys_stat_h.m4: New files, generated from gnulib.
2232 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2233 Regenerate.
2234
2235 2011-02-20 Eli Zaretskii <eliz@gnu.org>
2236
2237 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Don't depend on
2238 $(EMACS_ROOT)/nt/inc/sys/stat.h.
2239
2240 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
2241
2242 * configure.in (C_WARNINGS_SWITCH): Do not prepend -Wno-pointer-sign.
2243 This undoes the 2006-01-02 change. The -Wno-pointer-sign option
2244 is no longer needed, due to the recent SSDATA and related changes.
2245 Perhaps -Wno-pointer-sign should also be removed from
2246 nextstep/Cocoa/Emacs.xcodeproj/project.pbxproj but I have no easy
2247 way to test this so I left it alone.
2248 * configure: Regenerate.
2249
2250 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
2251
2252 * lib/makefile.w32-in ($(BLD)/md5.$(O)): New recipe, moved from
2253 src/makefile.w32-in.
2254
2255 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
2256
2257 Import crypto/md5 and stdint modules from gnulib.
2258 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2259 Regenerate.
2260 * lib/md5.c, lib/md5.h: Rename from src/md5.h and lib/md5.h.
2261 Import the new versions from gnulib; they assume a C99-style
2262 <stdint.h>, supplied by the stdint module.
2263 * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files,
2264 imported from gnulib.
2265 * Makefile.in (MAKEFILE_MODULES): Add crypto/md5.
2266 * admin/notes/copyright: Remove src/md5.c and src/md5.h as
2267 special cases.
2268
2269 2011-02-19 Eli Zaretskii <eliz@gnu.org>
2270
2271 * .bzrignore: Ignore cxxdefs.h and lib/*.in-h files.
2272 Add lib/deps/.
2273
2274 * config.bat: Configure in `lib'.
2275 Generate *.Po files in lib/deps.
2276
2277 2011-02-18 Paul Eggert <eggert@cs.ucla.edu>
2278
2279 Import IRIX 6.5 getloadavg fixes from gnulib.
2280 * configure, lib/getloadavg.c, m4/getloadavg.m4: Regenerate.
2281
2282 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
2283
2284 Import getloadavg module from gnulib.
2285 * .bzrignore: Add lib/stdlib.h.
2286 * Makefile.in (GNULIB_MODULES): Add getloadavg.
2287 * admin/notes/copyright: Remove src/getloadavg.c as a special case.
2288 * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this.
2289 (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES):
2290 Remove; gnulib does this now.
2291 * lib/getloadavg.c: Rename from src/getloadavg.c, and sync
2292 from gnulib. This adds support for several other systems, such
2293 as Tru64 4.0D, QNX, AIX perfstat, etc. It also fixes a potential
2294 buffer overrun on Linux hosts under very high load, and on hosts
2295 that maintain a channel to the load average file it makes sure
2296 the file descriptor is close-on-exec (on hosts that support this)
2297 and is not stdin, stdout, or stderr.
2298 * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files,
2299 from gnulib.
2300 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2301 * src/config.in: Regenerate.
2302
2303 2011-02-15 Paul Eggert <eggert@cs.ucla.edu>
2304
2305 Merge from gnulib.
2306
2307 * install-sh: Update to scriptversion 2011-01-19.21.
2308
2309 2011-02-13 Bruno Haible <bruno@clisp.org>
2310
2311 Consistent macro naming for macros that use GCC __attribute__.
2312 * lib/ignore-value.h (_GL_ATTRIBUTE_DEPRECATED): Renamed from
2313 ATTRIBUTE_DEPRECATED.
2314
2315 2011-02-12 Bruno Haible <bruno@clisp.org>
2316
2317 setlocale: Prefer gnulib's override over libintl's override.
2318 * lib/gettext.h (setlocale): Redefine to rpl_setlocale if
2319 GNULIB_defined_setlocale is set.
2320
2321 2011-02-13 Glenn Morris <rgm@gnu.org>
2322
2323 * make-dist: Exclude generated file src/globals.h.
2324
2325 2011-02-10 Paul Eggert <eggert@cs.ucla.edu>
2326
2327 * arg-nonnull.h, c++defs.h, warn-on-use.h: Fix licenses.
2328 Sync from gnulib, which has been patched to fix the problem
2329 with the license notices. Problem reported by Glenn Morris in
2330 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00403.html>.
2331
2332 2011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
2333
2334 * .bzrignore: Ignore globals.h and related stamp.
2335
2336 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
2337
2338 * lib/Makefile.in, lib/gnulib.mk: Regenerate.
2339 This merges the following fix from gnulib:
2340
2341 2011-02-08 Bruno Haible <bruno@clisp.org>
2342
2343 Split large sed scripts, for HP-UX sed.
2344
2345 2011-02-08 Tom Tromey <tromey@redhat.com>
2346
2347 * configure: Rebuild.
2348 * configure.in (NS_OBJC_OBJ): New subst.
2349
2350 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
2351
2352 gnulib: allow multiple gnulib generated replacements to coexist
2353 This defines a few preprocessor symbols that should not affect Emacs.
2354 * lib/getopt.in.h, lib/time.in.h, lib/unistd.in.h: Regenerate
2355 via "make sync-from-gnulib".
2356
2357 gnulib: undo previous change
2358 The upstream _HEADERS change was backed out of gnulib (see the
2359 same thread). Stay in sync with gnulib.
2360
2361 gnulib: adjust to upstream _HEADERS change
2362 * lib/Makefile.am (EXTRA_HEADERS, nodist_pkginclude_HEADERS):
2363 New empty macros, to accommodate recent changes to gnulib. See
2364 <http://lists.gnu.org/archive/html/bug-gnulib/2011-02/msg00068.html>.
2365 * c++defs.h, lib/Makefile.in, lib/ftoastr.h, lib/getopt.in.h:
2366 * lib/gnulib.mk, lib/ignore-value.h, lib/stdbool.in.h, lib/stddef.in.h:
2367 * lib/time.in.h, lib/unistd.in.h:
2368 Regenerate.
2369
2370 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
2371
2372 sync from gnulib to remove HAVE_STDBOOL_H
2373 * m4/stdbool.m4 (AC_CHECK_HEADER_STDBOOL): Renamed from
2374 AC_HEADER_STDBOOL. All uses changed. Do not define
2375 HAVE_STDBOOL_H, as gnulib does not need this. This change is
2376 imported from the latest Autoconf git. It was motivated by Emacs,
2377 which uses gnulib but does not need HAVE_STDBOOL_H.
2378 * configure, src/config.in: Regenerate.
2379 * config.guess, config.sub: Sync to 2011-02-02 versions (whitespace)
2380
2381 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
2382
2383 allow C code to suppress warnings about ignored return values
2384 * Makefile.in (GNULIB_MODULES): Add ignore-value.
2385 * configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2386 * lib/ignore-value.h: New file.
2387
2388 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2389
2390 * configure.in: Test existence of xaw3d library, not just the
2391 header (Bug#7642).
2392
2393 2011-01-31 Eli Zaretskii <eliz@gnu.org>
2394
2395 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and
2396 $(BLD)/time_r.$(O).
2397 ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and
2398 $(EMACS_ROOT)/src/m/intel386.h.
2399 ($(BLD)/strftime.$(O)):
2400 ($(BLD)/time_r.$(O)): Define prerequisites.
2401
2402 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
2403
2404 src/emacs.c now gets version number from configure.in
2405 * configure.in (version): Set this from $PACKAGE_VERSION,
2406 which is set from AC_INIT, rather than scouting through src/emacs.c.
2407 * configure: Regenerate.
2408 * make-dist (version): Get it from configure.in, not src/emacs.c.
2409
2410 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2411
2412 strftime: import from gnulib
2413 * Makefile.in (GNULIB_MODULES): Add strftime.
2414 * configure.in (AC_FUNC_STRFTIME, my_strftime): Remove; no longer
2415 needed.
2416 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2417 Regenerate.
2418 * lib/strftime.c, lib/strftime.h, lib/stdbool.in.h: New files,
2419 imported from gnulib.
2420 * m4/strftime.m4, m4/stdbool.m4, m4/tm_gmtoff.m4: Likewise.
2421 This incorporates many changes from gnulib, including simpler
2422 handling of multibyte formats, porting to mingw32 and other
2423 platforms, and support for higher-resolution time stamps.
2424 Emacs does not yet use the higher-resolution interface.
2425
2426 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2427
2428 gnulib: import mktime and move-if-change fixes from gnulib
2429
2430 * configure: Regenerate from the following.
2431
2432 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2433
2434 mktime: clarify long_int width checking
2435 * lib/mktime.c (long_int_is_wide_enough): Move this assertion to
2436 the top level, to make it clearer that the assumption about
2437 long_int width is being checked. See
2438 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00554.html>.
2439
2440 2011-01-29 Paul Eggert <eggert@cs.ucla.edu>
2441
2442 TYPE_MAXIMUM: avoid theoretically undefined behavior
2443 * lib/intprops.h (TYPE_MINIMUM, TYPE_MAXIMUM): Do not shift a
2444 negative number, which the C Standard says has undefined behavior.
2445 In practice this is not a problem, but might as well do it by the book.
2446 Reported by Rich Felker and Eric Blake; see
2447 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00493.html>.
2448 * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
2449 * lib/mktime.c (TYPE_MAXIMUM): Redo slightly to match the others.
2450
2451 mktime: #undef mktime before #defining it
2452 * lib/mktime.c (mktime) [DEBUG]: #undef mktime before #defining it.
2453
2454 mktime: systematically normalize tm_isdst comparisons
2455 * lib/mktime.c (isdst_differ): New function.
2456 (__mktime_internal): Use it systematically for all isdst comparisons.
2457 This completes the fix for libc BZ #6723, and removes the need for
2458 normalizing tm_isdst. See
2459 <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>
2460 (not_equal_tm) [DEBUG]: Use isdst_differ here, too.
2461
2462 mktime: fix some integer overflow issues and sidestep the rest
2463
2464 This was prompted by a bug report by Benjamin Lindner for MinGW
2465 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00472.html>.
2466 His bug is due to signed integer overflow (0 - INT_MIN), and I
2467 I scanned through mktime.c looking for other integer overflow
2468 problems, fixing all the bugs I found.
2469
2470 Although the C Standard says the resulting code is still not safe
2471 in the presence of integer overflow, in practice it should be good
2472 enough for all real-world two's-complement implementations, except
2473 for debugging environments that deliberately trap on integer
2474 overflow (e.g., gcc -ftrapv).
2475
2476 * lib/mktime.c (WRAPV): New macro.
2477 (SHR): Also check that long_int and time_t shift right in the
2478 usual way, before using the fast-but-unportable method.
2479 (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove, no longer
2480 used. The code already assumed two's complement, so there's
2481 no need to test for alternatives. All uses removed.
2482 (TYPE_MAXIMUM): Don't rely here on overflow behavior not defined by
2483 the C standard. Problem reported by Rich Felker in
2484 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00488.html>.
2485 (twos_complement_arithmetic): Also check long_int and time_t.
2486 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New functions.
2487 (guess_time_tm, ranged_convert, __mktime_internal): Use them.
2488 (__mktime_internal): Avoid integer overflow with unary subtraction
2489 in two instances where -1 - X is an adequate replacement for -X,
2490 since the calculations are approximate.
2491
2492 2011-01-29 Eric Blake <eblake@redhat.com>
2493
2494 mktime: avoid infinite loop
2495 * m4/mktime.m4 (AC_FUNC_MKTIME): Avoid overflow on possibly-signed
2496 type; behavior is still undefined but portable to all known targets.
2497 Reported by Rich Felker.
2498
2499 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
2500
2501 mktime: avoid problems on NetBSD 5 / i386
2502 * lib/mktime.c (long_int): New type. This works around a problem
2503 on NetBSD 5 / i386, where 'long int' and 'int' are both 32 bits
2504 but time_t is 64 bits, and where I expect the existing code is
2505 wrong in some cases.
2506 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it.
2507 (ydhms_diff): Bring back the compile-time check for wide-enough
2508 year and yday.
2509
2510 mktime: fix misspelling in comment
2511 * lib/mktime.c (__mktime_internal): Fix misspelling in comment.
2512 This merges all recent glibc changes of importance.
2513
2514 2011-01-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2515
2516 move-if-change: cope with concurrent mv of identical file.
2517 * move-if-change (CMPPROG): Accept environment
2518 variable as an override for `cmp'.
2519 (usage): Document CMPPROG.
2520 Adjust comparison to drop stdout. Cope with failure of mv if
2521 the target file exists and is identical to the source, for
2522 parallel builds.
2523 Report from H.J. Lu against binutils in PR binutils/12283.
2524
2525 2011-01-29 Eli Zaretskii <eliz@gnu.org>
2526
2527 * lib/makefile.w32-in:
2528 * lib/getopt_.h: New files.
2529
2530 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
2531
2532 improve fix for MS-DOS file name clash
2533 * Makefile.in (DOS_gnulib_comp.m4): Renamed from DOS-gnulib-comp.m4,
2534 for portability to POSIX make. Reported by Bruno Haible.
2535 (sync-from-gnulib): Copy gl-comp.m4 (if present) back to
2536 gnulib-comp.m4 before running gnulib-tool, to prevent old gnulib
2537 files from accumulating as garbage. Also reported by Bruno Haible.
2538
2539 2011-01-27 Paul Eggert <eggert@cs.ucla.edu>
2540
2541 fix two m4/gnulib-*.m4 file names that clashed under MS-DOS
2542 * Makefile.in (DOS-gnulib-comp.m4): New macro.
2543 (sync-from-gnulib): Rename m4/gnulib-comp.m4 to m4/gl-comp.m4 to avoid
2544 problems with MS-DOS 8+3 file name restrictions.
2545 Remove m4/gnulib-cache.m4, as we can live without it. If we kept
2546 it, it would also cause problems when extracting Emacs distribution
2547 tarballs on MS-DOS hosts.
2548 (ACLOCAL_INPUTS): Adjust to file renaming.
2549 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
2550 * config.guess, config.sub: Sync from gnulib.
2551 * m4/gnulib-cache.m4: Remove from repository.
2552 * m4/gl-comp.m4: Rename from m4/gnulib-comp.m4.
2553
2554 2011-01-25 Glenn Morris <rgm@gnu.org>
2555
2556 * README: Add a note about ranges in copyright years.
2557
2558 * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
2559
2560 2011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
2561
2562 * configure.in: Add HP-UX on IA64 (Bug#6811).
2563
2564 2011-01-24 Paul Eggert <eggert@cs.ucla.edu>
2565
2566 Remove HAVE_RAW_DECL_CHOWN etc. from config.h
2567 * Makefile.in (sync-from-gnulib): Remove m4/warn-on-use.m4,
2568 as it is no longer needed.
2569 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
2570 * configure.in: Invoke the new gnulib macro
2571 gl_ASSERT_NO_GNULIB_POSIXCHECK, which removes the need for
2572 warn-on-use.m4 and for the HAVE_RAW_DECL_* symbols in config.h.
2573 * m4/getopt.m4: Sync from gnulib; this removes the need for
2574 HAVE_DECL_OPTRESET and HAVE_DECL_GETOPT_CLIP from config.h.
2575 * m4/gnulib-common.m4 (gl_ASSERT_NO_GNULIB_POSIXCHECK):
2576 New macro, synced from gnulib.
2577 * m4/warn-on-use.m4: Remove.
2578
2579 2011-01-22 Paul Eggert <eggert@cs.ucla.edu>
2580
2581 aclocal.m4: put this file back into repository
2582 This way, we don't have to assume that the maintainer has
2583 the automake package installed. See
2584 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00746.html>.
2585 * .bzrignore: Remove aclocal.m4, undoing the previous change.
2586 * Makefile.in (top_maintainer_clean): Do not remove aclocal.m4,
2587 undoing the previous change.
2588 * aclocal.m4: New file (actually, resurrected).
2589
2590 2011-01-22 Miles Bader <miles@gnu.org>
2591
2592 * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
2593 FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
2594 Emacs directly uses fontconfig, and breaks building when using a
2595 strict linker).
2596
2597 2011-01-21 Paul Eggert <eggert@cs.ucla.edu>
2598
2599 src/config.in: shrink slightly
2600 * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS.
2601 This makes src/config.in a bit smaller, by removing identifiers
2602 like GNULIB_TEST_MKTIME that Emacs does not need.
2603 * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4:
2604 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4:
2605 Sync from gnulib. This removes a few more unnecessary symbols from
2606 src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H.
2607 * configure, src/config.in: Regenerate.
2608
2609 aclocal.m4: tweaks to regenerate more conveniently
2610 This attempts to act better when the source is in a weird state. See
2611 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00734.html>.
2612 * Makefile.in (am--refresh): Add aclocal.m4, configure, config.in.
2613 * .bzrignore: Add aclocal.m4.
2614
2615 2011-01-20 Paul Eggert <eggert@cs.ucla.edu>
2616
2617 aclocal.m4: omit auto-generated file from repository
2618 * Makefile.in (top_maintainer_clean): Remove aclocal.m4; this undoes
2619 the most recent change here.
2620 * aclocal.m4: Remove from bzr repository. This file is
2621 auto-generated and isn't needed to run 'configure'. See
2622 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00698.html>.
2623
2624 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
2625
2626 Minor Makefile.in tweaks to build from gnulib better.
2627 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>
2628 * Makefile.in (sync-from-gnulib): Also run autoreconf -I m4.
2629 (top_maintainer_clean): Don't remove aclocal.m4.
2630
2631 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2632
2633 Minor cleanups for 'bzr status'
2634 * .bzrignore: Add emacs-*/, the output of make-dist, and stamp-h1,
2635 the output of config.guess.
2636 * Makefile.in (top_distclean): Remove stamp-h1 too.
2637
2638 * configure.in (HAVE_ATTRIBUTE_ALIGNED): Arrange for this to be
2639 defined if the compiler supports GCC-style __attribute__
2640 ((__aligned__ ...)). IBM AIX and Oracle Solaris Studio support
2641 this syntax.
2642
2643 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2644
2645 Makefile.in: tidy up the building of lib
2646 * Makefile.in (am--refresh): Mark as .PHONY.
2647 (top_maintainer_clean): Don't remove lib/gnulib.mk m4/gnulib-cache.m4,
2648 as they're not rebuilt unless you do a "make sync-from-gnulib"
2649 and the former is needed for "configure".
2650 (maintainer-clean): Don't recurse into lib, as "make bootstrap-clean"
2651 has already removed lib/Makefile.
2652
2653 * Makefile.in (GNULIB_MODULES): Change ftoastr to dtoastr.
2654 This avoids building ftoastr and ldtoastr, which aren't needed. See
2655 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00199.html>.
2656
2657 * .bzrignore: Add .h files that are host-dependent.
2658 Add lib/.deps/, lib/arg-nonnull.h, lib/c++defs.h, lib/getopt.h,
2659 lib/time.h, lib/unistd.h, lib/warn-on-use.h. These are
2660 host-dependent and are built as part of an ordinary 'make', and
2661 should not be checked in.
2662
2663 * lib/Makefile.in: Regenerate.
2664 * lib/COPYING: New file, a copy of COPYING.
2665
2666 * configure: Regenerate.
2667 * configure.in (AC_USE_SYSTEM_EXTENSIONS): Remove: gnulib does this.
2668
2669 Regenerate.
2670 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
2671 * lib/gettext.h, lib/unistd.in.h, m4/unistd_h.m4:
2672 New files, copied from gnulib by gnulib-tool.
2673 * aclocal.m4, configure, lib/Makefile.in, m4/getopt.m4:
2674 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2675 Regenerate.
2676
2677 Use gnulib's getopt-gnu module.
2678 * Makefile.in (GNULIB_MODULES): Add getopt-gnu.
2679 (AUTOCONF_INPUTS): Remove getopt.m4; aclocal.m4 is a good-enough
2680 representative of the dependencies.
2681 * configure.in: Do not configure getopt, as gnulib does that now.
2682 * make-dist: Do not worry about lib-src/getopt.h, as gnulib handles
2683 getopt now, in lib.
2684
2685 Regenerate.
2686 * arg-nonnull.h, c++defs.h, lib/mktime-internal.h, lib/mktime.c:
2687 * lib/stddef.in.h, lib/time.h, lib/time.in.h, lib/time_r.c:
2688 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4:
2689 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4:
2690 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4, m4/multiarch.m4:
2691 * m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4, m4/warn-on-use.m4:
2692 * m4/wchar_t.m4, warn-on-use.h:
2693 New files, copied from gnulib by gnulib-tool.
2694 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2695 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2696 Regenerate.
2697
2698 Use gnulib's mktime module.
2699 * Makefile.in (GNULIB_MODULES): Add mktime.
2700 * configure.in: Remove code no longer needed, as gnulib now does it.
2701 (AC_CHECK_FUNCS): Remove mktime.
2702 (AC_FUNC_MKTIME, BROKEN_MKTIME): Remove.
2703 (__restrict): Remove, as this now gets in the way of the C99
2704 support for 'restrict' pulled in by the gnulib mktime module.
2705 Code should now use 'restrict' and not '__restrict".
2706 (mktime): Remove.
2707 * make-dist: Put gnulib-generated files arg-nonnull.h, c++defs.h,
2708 and warn-on-use.h into the distribution.
2709
2710 Regenerate.
2711 * lib/dtoastr.c, lib/ftoastr.c, lib/ftoastr.h, lib/intprops.h:
2712 * lib/ldtoastr.c, m4/c-strtod.m4:
2713 New files, copied from gnulib by gnulib-tool.
2714 * lib/dummy.c: Remove.
2715 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2716 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2717 Regenerate.
2718
2719 Use gnulib's ftoastr module.
2720 * Makefile.in (GNULIB_MODULES): Add ftoastr. Remove dummy.
2721
2722 Regenerate.
2723 * aclocal.m4, compile, depcomp, lib/Makefile.in, lib/dummy.c:
2724 * lib/gnulib.mk, m4/00gnulib.m4, m4/gnulib-cache.m4:
2725 * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing:
2726 New files, generated automatically, with 'make sync-from-gnulib'
2727 followed by 'make'.
2728 * configure, lisp/dired.el, src/config.in: Regenerate.
2729
2730 Automate syncing from gnulib.
2731 * INSTALL, README: Document new subdirectory 'lib'.
2732 * Makefile.in (SUBDIR): Add lib.
2733 (SUBDIR_MAKEFILES): Add lib/Makefile.
2734 (lib-src, src, TAGS, tags): Depend on lib.
2735 (gnulib_srcdir, GNULIB_MODULES, GNULIB_TOOL_FLAGS): New macros.
2736 ($(gnulib_srcdir)): New rule.
2737 (sync-from-gnulib): New rule, which is .PHONY.
2738 (lib): New rule, which is like lib-src.
2739 (Makefile): Depend on lib/Makefile.in.
2740 (AUTOCONF_INPUTS): Depend on aclocal.m4.
2741 (ACLOCAL_INPUTS, AUTOMAKE_INPUTS): New macros.
2742 ($(srcdir)/aclocal.m4, $(srcdir)/lib/Makefile.in): New rules.
2743 (am--refresh): New rule, to pacify Automake.
2744 (mostlyclean, clean, distclean, bootstrap-clean, maintainer-clean):
2745 Clean lib, too.
2746 (top_maintainer_clean): New macro, to remove gnulib-tool and Automake
2747 droppings.
2748 (maintainer-clean, extraclean): Use it.
2749 * configure.in: Initialize for automake and gnulib, by invoking
2750 AM_INIT_AUTOMAKE, AM_PROG_CC_C_O, gl_EARLY, and gl_INIT. Output
2751 lib/Makefile, too. Use automake to build gnulib, as gnulib works
2752 more conveniently with automake.
2753 * lib/Makefile.am: New file.
2754 * make-dist: Also put into the distribution aclocal.m4,
2755 compile, depcomp, missing, and the files under lib/.
2756
2757 2011-01-15 Glenn Morris <rgm@gnu.org>
2758
2759 * Makefile.in (epaths-force): No more arch-tag to edit.
2760
2761 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
2762
2763 * configure.in: Bump min libxml2 version to 2.6.17 (Bug#7603).
2764
2765 2011-01-14 Paul Eggert <eggert@cs.ucla.edu>
2766
2767 * make-dist: Distribute test/ files too.
2768 Distribute every file under test/ that is under version control,
2769 using patterns like *.el to capture files that are added later.
2770 Without this change, "configure" would fail, because it would
2771 attempt to build from a Makefile.in that was not distributed.
2772
2773 2011-01-13 Christian Ohler <ohler@gnu.org>
2774
2775 * Makefile.in (INFO_FILES): Add ERT.
2776
2777 * Makefile.in (check): Run tests in test/automated.
2778
2779 * Makefile.in:
2780 * configure.in: Add test/automated/Makefile.
2781
2782 2011-01-07 Paul Eggert <eggert@cs.ucla.edu>
2783
2784 * install-sh, mkinstalldirs, move-if-change: Update from master
2785 source in gnulib.
2786
2787 * config.guess, config.sub: Updated from master source.
2788
2789 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2790
2791 * configure.in: Check for __builtin_unwind_init.
2792
2793 2011-01-05 Glenn Morris <rgm@gnu.org>
2794
2795 * configure.in (HAVE_MAKEINFO): New output variable.
2796 (MAKEINFO): Reset to "makeinfo" if not found.
2797 * Makefile.in (install-arch-indep, info):
2798 Replace MAKEINFO = off with HAVE_MAKEINFO = no.
2799
2800 2010-12-29 Ulrich Mueller <ulm@gentoo.org>
2801
2802 * configure.in: Make gameuser configurable (Bug#7717).
2803
2804 2010-12-15 Glenn Morris <rgm@gnu.org>
2805
2806 * Makefile.in (install-arch-dep, uninstall): Remove code relating to the
2807 long absent lib-src/fns-*.el.
2808
2809 2010-12-11 Glenn Morris <rgm@gnu.org>
2810
2811 * make-dist: Exclude etc/*.pyc.
2812
2813 2010-12-10 Andreas Schwab <schwab@linux-m68k.org>
2814
2815 * configure.in: Don't double machfile in final message.
2816
2817 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
2818
2819 * configure.in: Fix last change.
2820
2821 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
2822
2823 * configure.in: Remove reference to removed machine description
2824 files and allow $machine and $machfile to be empty. Substitute
2825 M_FILE/S_FILE instead of machfile/opsysfile.
2826
2827 2010-12-03 Glenn Morris <rgm@gnu.org>
2828
2829 * make-dist: Remove EMACS_UNIBYTE unsetting; it does nothing.
2830
2831 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
2832
2833 * configure.in <AC_CHECK_HEADERS>: Remove sys/ioctl.h.
2834 (EXTERNALLY_VISIBLE): New definition.
2835
2836 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2837
2838 * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
2839
2840 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
2841
2842 * configure.in: Do not check for unconditionally included headers.
2843
2844 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2845
2846 * .dir-locals.el (log-edit-mode): Set log-edit-rewrite-fixes.
2847
2848 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
2849
2850 * configure.in: Don't write a warning for D-Bus anymore.
2851
2852 2010-11-06 Andreas Schwab <schwab@linux-m68k.org>
2853
2854 * configure.in: Fix indentation.
2855
2856 2010-10-31 Ken Brown <kbrown@cornell.edu>
2857
2858 * configure.in (checking whether localtime caches TZ): Use
2859 unsetenv instead of modifying environment directly.
2860
2861 2010-10-25 Andreas Schwab <schwab@linux-m68k.org>
2862
2863 * configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
2864 to avoid warning.
2865
2866 2010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2867
2868 * configure.in: Remove the BROKEN annotation from GnuTLS.
2869
2870 2010-10-22 Glenn Morris <rgm@gnu.org>
2871
2872 * make-dist: Avoid listing .el files twice. Don't try to run
2873 autoconf if --no-update.
2874
2875 2010-10-20 Glenn Morris <rgm@gnu.org>
2876
2877 * make-dist: No longer create lisp/MANIFEST.
2878
2879 2010-10-14 Glenn Morris <rgm@gnu.org>
2880
2881 * BUGS, INSTALL.BZR, README: Updates.
2882
2883 2010-10-13 Glenn Morris <rgm@gnu.org>
2884
2885 * make-dist: Remove --compress. Check for the appropriate
2886 gzip-like executable, and if not found, don't compress.
2887 Check version number in README, don't change it.
2888 Use find for nt/inc/*.h.
2889
2890 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
2891
2892 * configure (ns_appdir, OLDXMENU, TOOLTIP_SUPPORT): Remove
2893 trailing / from directory names.
2894
2895 2010-10-12 Glenn Morris <rgm@gnu.org>
2896
2897 * make-dist: Update and simplify.
2898
2899 2010-10-12 Eli Zaretskii <eliz@gnu.org>
2900
2901 * make-dist: Don't distribute src/buildobj.h. (Bug#7167)
2902
2903 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
2904
2905 * configure.in (PROFILING_LDFLAGS): Do not define, remove all uses.
2906
2907 2010-10-09 Glenn Morris <rgm@gnu.org>
2908
2909 * make-dist: No more doc/emacs/*.texi.in.
2910
2911 * configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
2912
2913 2010-10-09 Glenn Morris <rgm@gnu.org>
2914
2915 * configure.in: Combine some conditionals.
2916
2917 * configure.in (AC_OUTPUT): Add doc/emacs/emacsver.texi.
2918 * make-dist: Include doc/emacs/*.texi.in.
2919
2920 * INSTALL, make-dist: Remove references to b2m.
2921 * Makefile.in (MAN_PAGES): Remove b2m.1.
2922
2923 2010-10-05 Glenn Morris <rgm@gnu.org>
2924
2925 * .dir-locals.el: The Emacs convention is sentence-end-double-space.
2926
2927 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2928
2929 * configure.in (NO_INLINE, noinline): Move here from src/xterm.c.
2930
2931 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
2932
2933 * configure.in: Include stdlib.h and string.h unconditionally.
2934
2935 2010-09-29 Romain Francoise <romain@orebokech.com>
2936
2937 * configure.in: Don't enable ImageMagick unless HAVE_X11.
2938
2939 2010-09-28 Glenn Morris <rgm@gnu.org>
2940
2941 * configure.in (HAVE_GNUTLS): Add a description to make autoheader
2942 happy.
2943
2944 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2945
2946 * configure.in: Enable imagemagick by default.
2947
2948 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2949
2950 * configure.in (HAVE_GNUTLS): Don't break if we don't have the
2951 GnuTLS libraries.
2952
2953 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
2954
2955 * configure.in: Set up GnuTLS.
2956
2957 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
2958
2959 * configure.in: Announce whether libxml2 is linked to.
2960
2961 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
2962
2963 * configure.in (LINKER): Rename to LD_FIRSTFLAG, do not include $(CC).
2964
2965 2010-09-18 Eli Zaretskii <eliz@gnu.org>
2966
2967 * config.bat: Detect that libxml2 is installed and if so, build
2968 with it.
2969
2970 2010-09-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2971
2972 * configure.in (HAVE_LIBXML2): Check that the libxml2 we found can
2973 be used. This fixes a conf problem on Mac OS X.
2974
2975 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2976
2977 * configure.in: Check for libxml2.
2978
2979 2010-09-09 Glenn Morris <rgm@gnu.org>
2980
2981 * make-dist: No more TODO files under lisp/.
2982
2983 2010-09-04 Eli Zaretskii <eliz@gnu.org>
2984
2985 * config.bat: Produce lisp/gnus/_dir-locals.el from
2986 lisp/gnus/.dir-locals.el.
2987
2988 2010-08-23 Andreas Schwab <schwab@linux-m68k.org>
2989
2990 * configure.in: Fix check for librsvg, imagemagick and
2991 MagickExportImagePixels.
2992
2993 2010-08-18 Joakim Verona <joakim@verona.se>
2994
2995 * Makefile.in, configure.in: Checks for ImageMagick.
2996
2997 2010-08-10 Dan Nicolaescu <dann@ics.uci.edu>
2998
2999 * configure.in (AC_PREREQ): Require autoconf 2.65.
3000
3001 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
3002
3003 * configure.in (AC_PREREQ): Require autoconf 2.66 to stop version churn.
3004
3005 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
3006
3007 * configure.in: Add AC_C_BIGENDIAN.
3008
3009 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
3010
3011 * configure.in (ORDINARY_LINK): Use on hpux* too.
3012
3013 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
3014
3015 * configure.in: Check for util.h.
3016 Use -Wimplicit-function-declaration if compiler supports it.
3017
3018 2010-08-05 Eli Zaretskii <eliz@gnu.org>
3019
3020 * configure.in (UNEXEC_OBJ): Rename unexec.o => unexcoff.o.
3021
3022 2010-08-04 Andreas Schwab <schwab@linux-m68k.org>
3023
3024 * configure.in: Restore accidentally removed use of
3025 GCC_TEST_OPTIONS/NON_GCC_TEST_OPTIONS.
3026
3027 2010-07-29 Chad Brown <yandros@mit.edu>
3028
3029 * configure.in: Check for dirent.h.
3030
3031 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
3032
3033 * configure.in: Remove reference to usg5-4, unused.
3034
3035 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
3036
3037 * configure.in: Check for __executable_start.
3038
3039 2010-07-24 Ken Brown <kbrown@cornell.edu>
3040
3041 * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715)
3042
3043 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
3044
3045 * .bzrignore, .gitignore: Ignore README.W32 on the root directory.
3046
3047 2010-07-24 Ken Brown <kbrown@cornell.edu> (tiny change)
3048
3049 * configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
3050
3051 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
3052
3053 * configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
3054 (PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
3055 (C_OPTIMIZE_SWITCH): Remove.
3056 (TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
3057
3058 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
3059
3060 * configure.in: Don't check for index and rindex, check for strchr
3061 and strrchr. Define strchr and strrchr as index and rindex,
3062 resp., in src/config.h if not available.
3063
3064 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
3065
3066 * configure.in: Use -Wold-style-definition if available.
3067 This helps with the transition to standard C code, it can be
3068 removed when done.
3069
3070 * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
3071
3072 * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
3073 and MSWindows.
3074
3075 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
3076
3077 * configure.in: Don't check for bcopy, bcmp, bzero. Don't include
3078 <strings.h> and don't define bcopy, bzero, BCMP in config.h.
3079
3080 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
3081
3082 * configure.in (getenv): Remove K&R declaration.
3083
3084 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
3085
3086 * configure.in: Remove define __P.
3087
3088 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
3089
3090 * configure.in (--enable-use-lisp-union-type): New flag.
3091
3092 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
3093
3094 Fix CFLAGS for non-GCC compilers.
3095 * configure.in (CFLAGS): Always use -g like it was done before the
3096 2010-03-30 change.
3097 (REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
3098 (Bug#6538)
3099
3100 2010-06-30 Glenn Morris <rgm@gnu.org>
3101
3102 * configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
3103 Set with AC_DEFINE rather than AH_BOTTOM.
3104
3105 * configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
3106 (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
3107 Set with shell, not cpp.
3108 (LIBX): Remove, just use -lX11 in the one place this was used.
3109 (cannot_dump): Replace with CANNOT_DUMP.
3110
3111 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
3112
3113 * configure.in: Add --with-x-toolkit=gtk3. Remove HAVE_GTK_MULTIDISPLAY,
3114 check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
3115 by minimum required Gtk+ 2.6). Add checks for functions introduced
3116 in Gtk+ 2.14 or newer (bug#6505).
3117
3118 2010-06-26 Eli Zaretskii <eliz@gnu.org>
3119
3120 * config.bat: Remove white space around "+" in COPY commands.
3121
3122 2010-06-23 Glenn Morris <rgm@gnu.org>
3123
3124 * info/dir: Start descriptions in column 32, per Texinfo convention.
3125
3126 2010-06-16 Chong Yidong <cyd@stupidchicken.com>
3127
3128 * INSTALL: Update font information (Bug#6389).
3129
3130 2010-06-16 Glenn Morris <rgm@gnu.org>
3131
3132 * INSTALL: General update.
3133
3134 2010-06-12 Glenn Morris <rgm@gnu.org>
3135
3136 * Makefile.in (install-arch-indep): Delete any old info .gz files first.
3137
3138 2010-06-11 Glenn Morris <rgm@gnu.org>
3139
3140 * configure.in (--without-compress-info): New option.
3141 (GZIP_INFO): New output variable.
3142
3143 * Makefile.in (GZIP_INFO): New, set by configure.
3144 (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
3145 Handle man pages in the same way.
3146
3147 2010-06-10 Glenn Morris <rgm@gnu.org>
3148
3149 * Makefile.in (install-arch-indep): Gzip the info files too.
3150
3151 * make-dist: Remove references to non-existent directories and files.
3152
3153 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
3154
3155 * configure.in: Include <strings.h> and <string.h> instead of
3156 "strings.h" and "string.h".
3157
3158 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
3159
3160 * configure.in: Remove code dealing with BSTRING.
3161
3162 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
3163
3164 * configure.in (AC_PREREQ): Require autoconf 2.65.
3165
3166 * configure.in (unxec): Do not define and substitute.
3167 (UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
3168
3169 2010-06-03 Glenn Morris <rgm@gnu.org>
3170
3171 * configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
3172
3173 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
3174
3175 Fix alloca definition when using gcc on non-gnu systems.
3176 * configure.in: Use the code sequence indicated by "info autoconf"
3177 for alloca (bug#6170).
3178
3179 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3180
3181 * .bzrignore: Ignore new files from trunk, which appear if you use
3182 colocated branches (i.e. "bzr switch").
3183
3184 2010-05-28 Glenn Morris <rgm@gnu.org>
3185
3186 * configure.in: Simplify some of the $canonical tests.
3187
3188 2010-05-27 Glenn Morris <rgm@gnu.org>
3189
3190 * config.bat: Do not preprocess src/Makefile.in.
3191
3192 * configure.in: Do not preprocess src/Makefile.in.
3193 (cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
3194 (AC_EGREP_CPP): Test no longer needed.
3195
3196 * make-dist: No more Makefile.c files.
3197
3198 2010-05-26 Glenn Morris <rgm@gnu.org>
3199
3200 * configure.in (YMF_PASS_LDFLAGS): Remove.
3201 (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
3202
3203 * configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
3204 Add $GNUSTEP_LOCAL_HEADERS.
3205 (LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
3206
3207 * configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
3208 (GNUSTEP_MAKEFILES): Remove.
3209 (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
3210 stuff to here.
3211
3212 2010-05-25 Glenn Morris <rgm@gnu.org>
3213
3214 * configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
3215 (LD_SWITCH_SYSTEM_TEMACS): ... to here.
3216
3217 * configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
3218 (LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
3219 here instead.
3220
3221 2010-05-24 Romain Francoise <romain@orebokech.com>
3222
3223 * make-dist: Look for version in src/emacs.c.
3224 Use lisp/subr.el rather than lisp/version.el for location check.
3225
3226 2010-05-21 Glenn Morris <rgm@gnu.org>
3227
3228 * configure.in (MKDEPDIR): Parallel build tweak.
3229
3230 * configure.in (ns_frag): New output file.
3231
3232 * configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
3233 (OLDXMENU_TARGET): Set to empty if USE_GTK.
3234
3235 * configure.in (cannot_dump): New output variable.
3236
3237 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
3238
3239 * configure.in: On NetBSD, if terminfo is found, use it in
3240 preference to termcap. (Bug#6190)
3241
3242 2010-05-20 Glenn Morris <rgm@gnu.org>
3243
3244 * make-dist (src): Include *.mk.
3245 * config.bat: Concatenate deps.mk onto the end of src/Makefile.
3246 * configure.in (DEPFLAGS, MKDEPDIR): New output variables.
3247 (deps_frag): New output file.
3248 (AUTO_DEPEND): Remove this definition.
3249
3250 * configure.in (--with-gtk, --with-gcc): Remove option stubs.
3251
3252 2010-05-19 Glenn Morris <rgm@gnu.org>
3253
3254 * configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
3255 (ORDINARY_LINK): New AC_DEFINE.
3256 (LIB_GCC): No need to set if ORDINARY_LINK.
3257
3258 2010-05-18 Glenn Morris <rgm@gnu.org>
3259
3260 * configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
3261 (POST_ALLOC_OBJ) [!cygwin]: Set to empty.
3262
3263 * config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
3264 * configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
3265 (RALLOC_OBJ): New output variable.
3266
3267 * config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
3268 * configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
3269
3270 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3271
3272 * Makefile.in (src): Provide the name of the VCS file that witnesses
3273 a pull.
3274 ($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
3275
3276 2010-05-17 Glenn Morris <rgm@gnu.org>
3277
3278 * configure.in (OLDXMENU_DEPS): New output variable.
3279
3280 2010-05-16 Glenn Morris <rgm@gnu.org>
3281
3282 * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
3283
3284 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
3285 * Makefile.in (install-arch-dep): Update for above change.
3286
3287 * Makefile.in (ns_appdir): Remove.
3288 (install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
3289
3290 * configure.in (TEMACS_LDFLAGS2): New output variable.
3291
3292 * configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
3293 (START_FILES): Set to empty if NS_IMPL_GNUSTEP.
3294 (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
3295 nothing uses.
3296
3297 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
3298
3299 * configure.in: Remove references to usg5-4 and bsd-common, $opsys
3300 does not use them.
3301 (X11R5_INHIBIT_I18N): Remove, unused.
3302
3303 2010-05-15 Glenn Morris <rgm@gnu.org>
3304
3305 * configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
3306
3307 * configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
3308
3309 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
3310
3311 * configure.in: Look for version string in its new location.
3312
3313 2010-05-15 Eli Zaretskii <eliz@gnu.org>
3314
3315 * config.bat: Remove support for DJGPP v1.x.
3316
3317 2010-05-15 Glenn Morris <rgm@gnu.org>
3318
3319 * configure.in (OLDXMENU_TARGET): New output variable.
3320
3321 * Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
3322
3323 * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
3324 and other files that no longer exist.
3325
3326 2010-05-14 Glenn Morris <rgm@gnu.org>
3327
3328 * configure.in (cpp_undefs): Add mktime, register, X11.
3329
3330 * configure.in (GPM_MOUSE_SUPPORT): Remove.
3331 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
3332 (HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
3333
3334 * configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
3335 (GNUSTEP_MAKEFILES): Do not output.
3336
3337 2010-05-13 Glenn Morris <rgm@gnu.org>
3338
3339 * configure.in: Fix some paren typos.
3340
3341 * configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
3342
3343 * configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
3344
3345 2010-05-12 Glenn Morris <rgm@gnu.org>
3346
3347 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
3348
3349 * configure.in (LIB_GCC): New output variable.
3350
3351 2010-05-11 Glenn Morris <rgm@gnu.org>
3352
3353 * make-dist (msdos): No more mainmake.
3354
3355 * configure.in: Generate lib-src/Makefile directly, do not run cpp.
3356 * config.bat: Do not run cpp on lib-src/Makefile.in.
3357
3358 * config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
3359
3360 2010-05-10 Glenn Morris <rgm@gnu.org>
3361
3362 * configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
3363
3364 * configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
3365 (BLESSMAIL_TARGET): New output variable.
3366
3367 2010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
3368
3369 * INSTALL: Fix typos.
3370
3371 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
3372
3373 * configure.in: Add check for buggy version of GCC (Bug#6031).
3374
3375 2010-05-08 Glenn Morris <rgm@gnu.org>
3376
3377 * configure.in (HAVE_LIBNCURSES): New local variable.
3378 (TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
3379 replacing cpp in src/s/*.h and src/Makefile.in.
3380
3381 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
3382
3383 * Version 23.2 released.
3384
3385 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3386
3387 * configure.in: Add tests for `isnan' and `copysign'.
3388
3389 2010-05-07 Eli Zaretskii <eliz@gnu.org>
3390
3391 * config.bat: Allow for 2 leading `#'s in comments in
3392 src/Makefile.in.
3393
3394 2010-05-07 Glenn Morris <rgm@gnu.org>
3395
3396 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
3397 Merges logic from src/s/* and src/Makefile.in.
3398 (LD_SWITCH_SYSTEM_TEMACS): New output variable.
3399
3400 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
3401
3402 Define START_FILES and LIB_STANDARD using autoconf.
3403 * configure.in (START_FILES, LIB_STANDARD): New definitions, moved
3404 here from src/s/*.h.
3405 (HAVE_CRTIN): Remove, inline logic in the netbsd
3406 START_FILES/LIB_STANDARD computation.
3407
3408 2010-05-06 Glenn Morris <rgm@gnu.org>
3409
3410 * configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
3411
3412 * Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
3413 (LD_SWITCH_X_SITE): Remove unused variables.
3414
3415 2010-05-04 Glenn Morris <rgm@gnu.org>
3416
3417 * configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
3418 as well.
3419 (LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
3420
3421 * configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
3422
3423 * configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
3424 variables, replacing c_switch_machine, c_switch_system.
3425 * Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
3426 @c_switch_system@.
3427
3428 2010-05-03 Glenn Morris <rgm@gnu.org>
3429
3430 * configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
3431
3432 * make-dist: There are no more src/m/*.inp files.
3433
3434 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
3435
3436 * configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
3437 (ac_link): Do not use ld_switch_machine.
3438
3439 2010-05-01 Glenn Morris <rgm@gnu.org>
3440
3441 * configure.in (OTHER_OBJ): Remove.
3442 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
3443
3444 2010-04-30 Glenn Morris <rgm@gnu.org>
3445
3446 * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
3447 Elsewhere, maybe include it.
3448
3449 * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
3450 (OLDXMENU, LIBXMENU): New output variables.
3451
3452 * configure.in (OTHER_OBJ): New output variable.
3453
3454 2010-04-28 Glenn Morris <rgm@gnu.org>
3455
3456 * configure.in (CYGWIN_OBJ): New output variable.
3457
3458 * configure.in (GPM_MOUSE_SUPPORT): New output variable.
3459
3460 * configure.in (FONT_OBJ): New output variable.
3461
3462 * configure.in (LIBXMU): New output variable.
3463
3464 * configure.in (NS_OBJ, NS_SUPPORT): New output variables.
3465
3466 * configure.in (machine, canonical): On amdx86-64, check for a 32-bit
3467 userland and maybe change values to i386 (move test from s/amdx86-64.h).
3468
3469 2010-04-27 Glenn Morris <rgm@gnu.org>
3470
3471 * configure.in (LIBXTR6): New output variable. Move unixware special
3472 case here from src/s/unixware.h.
3473
3474 * configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
3475 in Makefiles.
3476 (TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
3477
3478 * configure.in (HAVE_MOTIF_2_1): Remove unused variable.
3479 (LIBXP): No longer substitute in Makefiles.
3480 (MOTIF_LIBW): New output variable. Move system-specific settings here
3481 from src/s files.
3482
3483 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
3484
3485 Reduce CPP usage.
3486 * configure.in (LIB_X11_LIB): Remove, inline in the only user.
3487 (unexec): Define unconditionally, all platforms define
3488 UNEXEC. AC_SUBST it.
3489 (UNEXEC_SRC): Remove, unused.
3490 (C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
3491
3492 2010-04-27 Glenn Morris <rgm@gnu.org>
3493
3494 * configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
3495 replaced by LIBXP.
3496
3497 * configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
3498 (CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
3499 On hpux10-20, default to /lib.
3500
3501 * configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
3502
3503 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
3504
3505 * configure.in (LIBS_MACHINE): Remove, unused.
3506
3507 * configure.in (LIB_MATH): New output variable. Set it for some systems.
3508
3509 2010-04-24 Glenn Morris <rgm@gnu.org>
3510
3511 * configure.in (CRT_DIR): New output variable.
3512 (--with-crt-dir): New option. (Bug#5655)
3513 (HAVE_LIB64_DIR): Remove.
3514
3515 2010-04-22 Dan Nicolaescu <dann@ics.uci.edu>
3516
3517 * configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
3518
3519 2010-04-22 Miles Bader <miles@gnu.org>
3520
3521 * configure.in: Get rid of "unix" pre-defined macro when
3522 preprocessing Makefile. (Bug#5857)
3523
3524 2010-04-21 Andreas Schwab <schwab@linux-m68k.org>
3525
3526 Avoid non-portable shell command negation
3527 * configure.in: Revert last change.
3528
3529 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
3530
3531 * configure.in: Change "if test ! -f" to "if ! test -f".
3532
3533 2010-04-21 Glenn Morris <rgm@gnu.org>
3534
3535 * configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
3536 (GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
3537
3538 2010-04-21 Karel Klíč <kklic@redhat.com>
3539
3540 * configure.in: New option: --with(out)-selinux, on by default.
3541 Set HAVE_LIBSELINUX if we find libselinux, and substitute
3542 LIBSELINUX_LIBS in Makefiles.
3543
3544 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
3545
3546 * configure.in: Remove all references to LIBX11_SYSTEM.
3547
3548 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
3549
3550 * configure.in: Remove all references to C_DEBUG_SWITCH.
3551
3552 2010-03-27 Eli Zaretskii <eliz@gnu.org>
3553
3554 * config.bat <lib-src>: Edit out lines that begin with several #
3555 characters.
3556
3557 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3558
3559 * configure.in: Remove support for old UNIX System V systems and
3560 for Unixware on non-x86 machines.
3561
3562 * configure.in: Remove support for Solaris on PPC and for old versions.
3563
3564 * configure.in: Remove non-working lynxos port.
3565
3566 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
3567
3568 * .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
3569
3570 2010-03-19 Glenn Morris <rgm@gnu.org>
3571
3572 * configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
3573 happy.
3574
3575 2010-03-18 Jan Djärv <jan.h.d@swipnet.se>
3576
3577 * configure.in: Check for tputs and friends, abort if not
3578 found (bug#5735).
3579
3580 2010-03-18 Glenn Morris <rgm@gnu.org>
3581
3582 * configure.in (--with-x-toolkit): In the help text, say which options
3583 are synonyms.
3584
3585 * configure.in (--with-mmdf, --with-mail-unlink):
3586 New options, off by default.
3587 (--with-mailhost): New option to set default POP host.
3588 (LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
3589 (LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
3590 New variables, substituted in Makefiles.
3591 (try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
3592 (LIBGIF): Use AC_SUBST rather than AC_DEFINE.
3593 (HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
3594 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
3595 (HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
3596
3597 2010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
3598
3599 * Makefile.in (uninstall): Handle the case where archlibdir does not
3600 exist. (Bug#5720)
3601
3602 2010-03-12 Eli Zaretskii <eliz@gnu.org>
3603
3604 These changes remove termcap.c from the build on POSIX platforms.
3605 * configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
3606
3607 * configure: Regenerated.
3608
3609 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
3610
3611 * Branch for 23.2.
3612
3613 2010-01-31 Juri Linkov <juri@jurta.org>
3614
3615 * .bzrignore: Add TAGS-LISP.
3616
3617 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
3618
3619 * configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
3620 this header file).
3621
3622 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
3623
3624 * .bzrignore: Ignore all .exe, instead of individual files.
3625
3626 2010-01-12 Chong Yidong <cyd@stupidchicken.com>
3627
3628 * configure.in: Explicitly check for and link to -lXrender.
3629
3630 2010-01-12 Glenn Morris <rgm@gnu.org>
3631
3632 * INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
3633 for bug reports for development versions.
3634
3635 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3636
3637 * .bzrignore: Add more ignored patterns, including for the MS-DOS
3638 build.
3639
3640 2009-12-27 Karl Fogel <kfogel@red-bean>
3641
3642 * INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
3643 * INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
3644
3645 2009-12-17 Glenn Morris <rgm@gnu.org>
3646
3647 * .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
3648
3649 2009-12-15 Glenn Morris <rgm@gnu.org>
3650
3651 * info/dir: Add EDT entry.
3652 * Makefile.in (INFO_FILES): Add edt.
3653
3654 2009-12-10 Jan Djärv <jan.h.d@swipnet.se>
3655
3656 * configure.in: Check for RSVG if GNUstep is used.
3657
3658 2009-12-09 Jan Djärv <jan.h.d@swipnet.se>
3659
3660 * configure.in: Don't check for RSVG or GConf unless X11 is used.
3661
3662 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
3663
3664 * configure.in: Allow compiling Emacs with GTK on Cygwin.
3665
3666 2009-12-01 Glenn Morris <rgm@gnu.org>
3667
3668 * make-dist: Add etc/images/mpc directory.
3669
3670 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
3671
3672 * configure.in: Don't check for GConf unless X is used.
3673
3674 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
3675
3676 * configure.in: Use -Wdeclaration-after-statement if available.
3677
3678 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3679
3680 * configure.in: New option: --with(out)-gconf.
3681 Set HAVE_GCONF if we find gconf.
3682
3683 2009-11-17 Glenn Morris <rgm@gnu.org>
3684
3685 * Makefile.in (INFO_FILES): Add semantic.
3686
3687 2009-11-16 Chong Yidong <cyd@stupidchicken.com>
3688
3689 * info/dir: Add Semantic.
3690
3691 2009-11-16 Glenn Morris <rgm@gnu.org>
3692
3693 * Makefile.in (install-arch-indep): Use a more restrictive Makefile
3694 pattern, so as not to exclude makefile*.el. (Bug#4912)
3695
3696 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
3697
3698 * configure.in: --enable-autodepend is new. Check for GNU Make
3699 and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
3700 gcc and GNU make to generate dependencies.
3701
3702 2009-10-27 Glenn Morris <rgm@gnu.org>
3703
3704 * make-dist: Make links to doc/lispintro/*.pdf.
3705
3706 2009-10-23 Jim Meyering <meyering@redhat.com>
3707
3708 * configure.in: Invoke $CPP with -P when creating Makefile and
3709 src/Makefile. Without this, gcc 4.4.2 converts each
3710 backslash-newline pair in the input to a bare newline, yielding
3711 invalid Makefiles.
3712
3713 * configure: Regenerate.
3714
3715 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3716
3717 * configure.in (vax-dec-vms): Remove, not supported anymore.
3718
3719 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3720
3721 * configure.in (NS_HAVE_NSINTEGER): Back out previous change.
3722 (*-apple-darwin*): Add x86_64 architecture.
3723
3724 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
3725
3726 * config.guess, config.sub: Updated from master source.
3727
3728 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
3729
3730 * configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
3731
3732 2009-10-07 Edward Trumbo <etrumbo@comcast.net> (tiny change)
3733
3734 * Makefile.in (INFO_FILES): Add EDE and EIEIO.
3735
3736 2009-09-29 Glenn Morris <rgm@gnu.org>
3737
3738 * make-dist (check): Update for two new levels of subdirectory in lisp/.
3739
3740 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
3741
3742 * config.guess, config.sub: Updated from master source.
3743
3744 * configure.in (OTHER_FILES): Define using autoconf not cpp.
3745
3746 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
3747
3748 * .dir-locals.el (change-log-mode): Restore bug-reference-mode.
3749
3750 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
3751
3752 * INSTALL: Update URL for GNU FreeFont.
3753
3754 2009-09-09 Glenn Morris <rgm@gnu.org>
3755
3756 * Makefile.in (install-arch-indep): Don't recursively change perms of
3757 site-lisp and infodir. There may be non-Emacs files in here, and the
3758 files supplied by Emacs are all handled explicitly already. (Bug#3800)
3759 (mkdir): Set umask to world-readable before creating directories.
3760 mkinstalldirs already checks if dirs exist, don't duplicate this test.
3761
3762 2009-08-29 Glenn Morris <rgm@gnu.org>
3763
3764 * Makefile.in (info-real): Don't ignore errors from doc Makefiles.
3765 (info): Don't give an error in the absence of makeinfo - let the doc
3766 Makefiles do that, if the info files need rebuilding. (Bug#3982)
3767
3768 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
3769
3770 * Makefile.in (install-arch-indep): If the versioned DOC-####
3771 generated during loadup+dump isn't found, install the plain DOC
3772 file that always gets generated, in case CANNOT_DUMP is set.
3773
3774 * configure.in: Warn if package version specified here doesn't
3775 match the version in version.el.
3776 * configure: Regenerate.
3777
3778 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
3779
3780 * configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
3781
3782 * configure: Regenerate.
3783
3784 2009-08-19 Glenn Morris <rgm@gnu.org>
3785
3786 * INSTALL: Remove reference to cvtmail.
3787
3788 2009-08-15 CHENG Gao <chenggao@gmail.com>
3789
3790 * Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
3791
3792 2009-08-02 Kevin Ryde <user42@zip.com.au>
3793
3794 * INSTALL: Fix free fonts URL.
3795
3796 2009-07-22 Glenn Morris <rgm@gnu.org>
3797
3798 * configure.in (AC_PREREQ): Require autoconf 2.62.
3799
3800 2009-07-04 Andreas Schwab <schwab@linux-m68k.org>
3801
3802 * configure.in (--enable-checking, --enable-profiling):
3803 Use AS_HELP_STRING.
3804
3805 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
3806
3807 * configure.in (--enable-profiling): New option.
3808 (mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
3809
3810 2009-06-27 Glenn Morris <rgm@gnu.org>
3811
3812 * configure.in: Restore netbsd on mips, mipsel, mipseb.
3813
3814 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
3815
3816 * configure.in (--enable-checking): New option.
3817
3818 2009-06-24 Glenn Morris <rgm@gnu.org>
3819
3820 * make-dist: Warn if subdir does not exist in source.
3821 (nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
3822 (nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
3823 No longer make links.
3824
3825 2009-06-24 Yavor Doganov <yavor@gnu.org>
3826
3827 * make-dist (tempdir): Don't create directories preferences.gorm
3828 and preferences.nib, they are no longer required.
3829
3830 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
3831
3832 * Branch for 23.1.
3833
3834 2009-06-12 Chong Yidong <cyd@stupidchicken.com>
3835
3836 * configure.in: Delete mac-fix-env target, which has been
3837 removed (Bug#3531).
3838
3839 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3840
3841 * configure.in: Don't define CANNOT_DUMP for GNUstep any more.
3842
3843 2009-05-05 Per Starbäck <per@starback.se> (tiny change)
3844
3845 * BUGS: Use new binding of view-emacs-problems.
3846
3847 2009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
3848
3849 * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
3850 for Solaris compatibility.
3851
3852 2009-04-25 Chong Yidong <cyd@stupidchicken.com>
3853
3854 * configure: Regenerate.
3855
3856 * configure.in: Disable use of FreeType without libXft.
3857
3858 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
3859
3860 * configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
3861 Check if it is declared in gtk.h.
3862
3863 2009-04-12 Andreas Schwab <schwab@linux-m68k.org>
3864
3865 * Makefile.in (install-arch-indep): Remove .gitignore files.
3866
3867 2009-04-03 Kenichi Handa <handa@m17n.org>
3868
3869 * INSTALL: Make the section "Complex Text Layout support
3870 libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
3871
3872 2009-03-06 Dan Nicolaescu <dann@ics.uci.edu>
3873
3874 * configure.in (rs6000-ibm-aix6*): Fix typo.
3875
3876 2009-03-04 Glenn Morris <rgm@gnu.org>
3877
3878 * Makefile.in (INFO_FILES): Add auth.
3879
3880 2009-03-03 Glenn Morris <rgm@gnu.org>
3881
3882 * info/dir: Add Auth-source.
3883
3884 2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3885
3886 * Makefile.in (src): Fix last change so the first `cd' doesn't affect
3887 the second.
3888
3889 2009-02-28 Eli Zaretskii <eliz@gnu.org>
3890
3891 * config.bat: Copy .dbxinit to _dbxinit.
3892
3893 * make-dist (Making links to `info'): Remove .gitignore.
3894
3895 2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3896
3897 * Makefile.in (lib-src, lisp): Use simpler rule.
3898 (src): Be more specific to avoid recompiling all the .elc files just
3899 because the bootstrap-emacs is missing.
3900
3901 2009-02-26 Chong Yidong <cyd@stupidchicken.com>
3902
3903 * configure.in: Require librsvg >= 2.11.
3904
3905 2009-02-23 Adrian Robert <Adrian.B.Robert@gmail.com>
3906
3907 * configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
3908 (HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
3909
3910 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3911
3912 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
3913
3914 2009-02-03 Glenn Morris <rgm@gnu.org>
3915
3916 * make-dist: Add some missing files, remove some that are no longer
3917 present.
3918
3919 2009-02-02 Glenn Morris <rgm@gnu.org>
3920
3921 * make-dist: Add some missing nextstep/ files.
3922
3923 2009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
3924
3925 * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
3926
3927 2009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
3928
3929 * configure.in: Add support for m68k-*-netbsd.
3930
3931 2009-01-14 Juri Linkov <juri@jurta.org>
3932
3933 * .dir-locals.el (change-log-mode): Remove bug-reference-mode.
3934
3935 * .dir-locals.el (change-log-mode): Add bug-reference-url-format
3936 and bug-reference-mode.
3937
3938 2009-01-11 Juri Linkov <juri@jurta.org>
3939
3940 * INSTALL.CVS: Move configuration explicitly to the first step.
3941
3942 2009-01-09 Glenn Morris <rgm@gnu.org>
3943
3944 * .dir-locals.el: Don't set indent-tabs-mode.
3945
3946 2008-12-30 Kenichi Handa <handa@m17n.org>
3947
3948 * configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
3949 the function OTF_get_variation_glyphs.
3950
3951 2008-12-30 Jan Djärv <jan.h.d@swipnet.se>
3952
3953 * Makefile.in (install-arch-dep): Remove old directories in
3954 ns_app* before moving new directories there.
3955
3956 2008-12-27 Dan Nicolaescu <dann@ics.uci.edu>
3957
3958 * .dir-locals.el: Remove non-working entry for pmail.
3959 (fill-column): Fix typo.
3960 (change-log-mode): Add fill column.
3961
3962 2008-12-26 Eli Zaretskii <eliz@gnu.org>
3963
3964 * config.bat: Produce _dir-locals.el from .dir-locals.el.
3965
3966 2008-12-23 Dan Nicolaescu <dann@ics.uci.edu>
3967
3968 * make-dist (tempdir): Distribute .dir-locals.el.
3969
3970 * .dir-locals.el: New file.
3971
3972 2008-12-19 Eli Zaretskii <eliz@gnu.org>
3973
3974 * config.bat (--with-system-malloc): New option; see msdos/INSTALL
3975 for rationale.
3976
3977 2008-12-13 Glenn Morris <rgm@gnu.org>
3978
3979 * Makefile.in (install-arch-indep): Add new man-pages.
3980 (manext): Remove variable.
3981 (MAN_PAGES): New variable.
3982 (install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
3983 and remove.
3984 (uninstall): Remove desktop file and icons, game scores if empty.
3985
3986 2008-12-11 Dan Nicolaescu <dann@ics.uci.edu>
3987
3988 * config.guess, config.sub: Updated from master source.
3989
3990 2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
3991
3992 * Makefile.in (install-arch-indep): Install ebrowse.1.
3993
3994 2008-12-09 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
3995
3996 * configure.in: Add Solaris on x86_64.
3997
3998 2008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
3999
4000 * config.guess, config.sub: Updated from master source.
4001
4002 2008-12-08 Eli Zaretskii <eliz@gnu.org>
4003
4004 * info/dir: Fix last change.
4005
4006 2008-12-07 Eli Zaretskii <eliz@gnu.org>
4007
4008 * info/dir: Untabify.
4009
4010 2008-11-28 Ulrich Mueller <ulm@gentoo.org>
4011
4012 * configure.in: Fix last change.
4013
4014 2008-11-28 Richard M Stallman <rms@gnu.org>
4015
4016 * configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
4017 New configurations.
4018
4019 2008-11-20 Josh Elsasser <josh@elsasser.org> (tiny change)
4020
4021 * configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
4022 removed while misclassified as now unsupported hp9000s300. (Bug#1365)
4023
4024 2008-11-15 Eli Zaretskii <eliz@gnu.org>
4025
4026 * Makefile.in (INFO_FILES): Remove ns-emacs.
4027
4028 * info/dir (NS-Emacs): Remove entry.
4029
4030 2008-11-08 Eli Zaretskii <eliz@gnu.org>
4031
4032 * INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
4033
4034 2008-11-07 Glenn Morris <rgm@gnu.org>
4035
4036 * configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
4037
4038 2008-10-31 Eli Zaretskii <eliz@gnu.org>
4039
4040 * config.bat: Tell user to expect one "File not found" message
4041 while the `doc' directory is being configured.
4042
4043 2008-10-30 Chong Yidong <cyd@stupidchicken.com>
4044
4045 * update-subdirs: Put obsolete directory last.
4046
4047 2008-10-30 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
4048
4049 * configure.in: Check fontconfig always.
4050
4051 2008-10-30 Dan Nicolaescu <dann@ics.uci.edu>
4052
4053 * configure (*-solaris2.[7-9]*): Fix typo.
4054
4055 2008-10-24 Glenn Morris <rgm@gnu.org>
4056
4057 * configure.in (--without-sync-input, --with-pkg-config-prog):
4058 Help strings start with lower case.
4059 (--with-gnustep-conf): New option.
4060 (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
4061
4062 2008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
4063
4064 * configure.in: Use `.' instead of `source' to source GNUstep.conf.
4065 Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
4066 is not found. (Bug#1230)
4067
4068 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
4069
4070 * configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
4071 Use sol2-6.h for Solaris 7-9.
4072
4073 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
4074
4075 * configure.in: Add support for GNU/Linux on SuperH.
4076
4077 2008-10-12 Andreas Schwab <schwab@suse.de>
4078
4079 * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
4080
4081 2008-10-03 Adrian Robert <Adrian.B.Robert@gmail.com>
4082
4083 * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
4084 "X") to avoid confusion.
4085
4086 * configure: Regenerate.
4087
4088 2008-09-07 Romain Francoise <romain@orebokech.com>
4089
4090 * make-dist: Distribute doc/man/ChangeLog.
4091
4092 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
4093
4094 * configure.in: Disable XFT and Freetype when without X.
4095
4096 * configure: Regenerate.
4097
4098 2008-08-24 Dan Nicolaescu <dann@ics.uci.edu>
4099
4100 * configure.in (NS_IMPL_GNUSTEP): Increase pure size.
4101
4102 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
4103
4104 * configure.in (GNUSTEP_SYSTEM_HEADERS): Define
4105 GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
4106
4107 * configure: Regenerate.
4108
4109 2008-08-20 Eli Zaretskii <eliz@gnu.org>
4110
4111 * configure.in: Move "#define subprocesses" before
4112 config_opsysfile is included.
4113
4114 2008-08-19 Kenichi Handa <handa@m17n.org>
4115
4116 * INSTALL (Extra fonts): Mention local fonts, don't mention
4117 mule-unicode.
4118
4119 2008-08-16 Chong Yidong <cyd@stupidchicken.com>
4120
4121 * make-dist: Omit info/.arch-inventory.
4122
4123 2008-08-16 Jason Rumney <jasonr@gnu.org>
4124
4125 * make-dist (tempdir/nt): Link emacsclient.rc.
4126
4127 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4128
4129 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
4130 AC_SUBST it.
4131 (GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
4132 AC_SUBST it.
4133 (OTHER_FILES): Always define for HAVE_NS.
4134 (C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
4135 * configure: Regenerate.
4136
4137 2008-08-07 Andreas Schwab <schwab@suse.de>
4138
4139 * configure.in: Correctly handle
4140 --enable-cocoa-experimental-ctrl-g=no and
4141 --enable-ns-self-contained=yes.
4142
4143 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4144
4145 * configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
4146 (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep. Don't
4147 bother undef'ing since won't have desired effect.
4148
4149 2008-08-06 Andreas Schwab <schwab@suse.de>
4150
4151 * configure.in: Fix quoting.
4152
4153 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
4154
4155 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
4156
4157 2008-08-05 Ulrich Mueller <ulm@gentoo.org>
4158
4159 * configure.in: Add checks for krb5_error.text and
4160 krb5_error.e_text struct members.
4161
4162 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
4163
4164 * configure.in: Test for existence of NSInteger.
4165 Suggested by Yavor Doganov.
4166
4167 2008-08-02 Romain Francoise <romain@orebokech.com>
4168
4169 * Makefile.in (INFO_FILES): Add mairix-el.
4170
4171 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
4172
4173 * make-dist:
4174 * README: Remove VMS support.
4175 * vms: Remove directory.
4176
4177 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
4178
4179 * configure.in (MULTI_KBOARD): Remove.
4180
4181 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
4182
4183 * configure.in (DO_BLOCK_INPUT): Remove, unused.
4184
4185 2008-07-29 Chong Yidong <cyd@stupidchicken.com>
4186
4187 * info/dir (File): Add mairix-el.
4188
4189 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4190
4191 Remove support for Mac Carbon.
4192 * mac: Remove directory.
4193 * make-dist:
4194 * configure.in:
4195 * README:
4196 * Makefile.in:
4197 * INSTALL: Remove code for Carbon.
4198 * configure: Regenerate.
4199
4200 2008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
4201
4202 * Makefile.in (install-arch-dep): Fix typo in NS installation commands.
4203
4204 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
4205
4206 * configure.in: Check for getrlimit.
4207
4208 * configure: Regenerate.
4209
4210 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
4211
4212 * configure.in (LD_SWITCH_SITE): Remove, set the values directly
4213 in src/Makefile.in.
4214 (static): Remove, autoconf would always comment it out anyway.
4215 (subprocesses): Define unconditionally.
4216
4217 2008-07-19 Yavor Doganov <yavor@gnu.org> (tiny change)
4218
4219 * configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
4220 compilation under GNUstep.
4221
4222 2008-07-18 Kenichi Handa <handa@m17n.org>
4223
4224 * INSTALL (Complex Text Layout support libraries): Delete the
4225 paragraph about --enable-font-backend.
4226
4227 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
4228
4229 * configure.in: Print out some info to user for NeXTstep builds.
4230 (ns-app): Remove enable option.
4231 (ns-self-contained): Add enable option.
4232 (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
4233 GNUstep, use to set install prefixes, and substitute in Makefiles.
4234 * configure: Regenerate.
4235 * Makefile.in (install-arch-dep): Perform post-install cleanup inside
4236 NS app bundle.
4237
4238 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
4239
4240 * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
4241
4242 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
4243
4244 * configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
4245 NS_IMPL_COCOA.
4246
4247 2008-07-16 Glenn Morris <rgm@gnu.org>
4248
4249 * configure.in (with_kerberos, with_kerberos5, with_hesiod):
4250 Fix tests for OPTION_DEFAULT_OFF (variables never unset).
4251 (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
4252 never unset.
4253
4254 * make-dist: Add nextstep/ directories.
4255 (src, lib-src): Add .m files.
4256
4257 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
4258
4259 * configure.in (freebsd, kfreebsd): Undo part of previous change.
4260 (USER_FULL_NAME): Remove, not used anymore.
4261 * configure: Regenerate.
4262
4263 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
4264
4265 Changes and additions for NeXTstep windowing system (Cocoa and
4266 GNUstep) support.
4267
4268 * configure.in: Add support for NS window system: --with-ns (default
4269 off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
4270 sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
4271 disable font backend if window system is "none", not if !HAVE_X11.
4272 * Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
4273 (install-arch-dep): Add commands to assemble NS .app package.
4274
4275 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
4276
4277 * configure.in: Use macppc for Darwin. Remove references to
4278 desupported systems.
4279 * configure: Regenerate.
4280
4281 2008-07-05 Glenn Morris <rgm@gnu.org>
4282
4283 * make-dist (EMACS): Doc fix.
4284 (lisp): There are no *.dat or image files here any more.
4285 (src): There are no *.s files here any more.
4286 (etc/images, etc/images/*): Link to most regular files.
4287
4288 2008-07-04 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4289
4290 * configure.in: Remove reference to deleted $USE_FONT_BACKEND.
4291
4292 2008-07-01 Glenn Morris <rgm@gnu.org>
4293
4294 * configure.in (cpp_undefs): Rename from `undefs', update uses.
4295 Use $srcdir rather than $top_srcdir. Set before calling AC_OUTPUT,
4296 and explicitly export there. (Bug#507.)
4297
4298 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
4299
4300 * configure.in:
4301 * configure: Remove references to obsolete systems.
4302
4303 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4304
4305 * Makefile.in (Makefile): Use it for its timestamp value as well, and
4306 make it depend on all other */.in files.
4307 (src/Makefile, src/config.stamp, lib-src/Makefile)
4308 (doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
4309 (doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
4310 (leim/Makefile, lisp/Makefile): Remove those overlapping targets.
4311 (leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
4312
4313 * configure.in: Don't create src/config.stamp any more.
4314
4315 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4316
4317 * Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
4318
4319 2008-06-22 Glenn Morris <rgm@gnu.org>
4320
4321 * Makefile.in (top_bootclean): Remove obsolete references to lock/.
4322
4323 2008-06-21 Romain Francoise <romain@orebokech.com>
4324
4325 * Makefile.in (INFO_FILES): Add sasl.
4326
4327 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4328
4329 * Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
4330 (bootstrap-build): Remove.
4331 (top_bootclean): New var.
4332 (top_distclean, bootstrap-clean): Use it.
4333 (bootstrap): Don't recheck config. Make normally.
4334
4335 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
4336
4337 * Makefile.in (SUBDIR): Include `lisp'.
4338 (lisp): Depend on `src'.
4339 (top_distclean): Don't remove config.status.
4340 (bootstrap-clean): New target.
4341 (maintainer-clean): Use it.
4342 (bootstrap): Use bootstrap-clean. Re-run config.status.
4343 (src/bootstrap-emacs${EXEEXT}): New target.
4344 (bootstrap-build): Use it. Don't use bootstrap-prepare because
4345 src/Makefile now takes care of it.
4346 (bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
4347
4348 2008-06-15 Glenn Morris <rgm@gnu.org>
4349
4350 * info/dir: Add sasl.
4351
4352 2008-06-09 Alan Mackenzie <acm@muc.de>
4353
4354 * INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
4355
4356 2008-06-08 Eric S. Raymond <esr@snark.thyrsus.com>
4357
4358 * INSTALL.CVS: Indicate when "cvs update -d" may be needed.
4359
4360 2008-06-07 Glenn Morris <rgm@gnu.org>
4361
4362 * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
4363 serve no purpose.
4364
4365 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
4366
4367 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
4368 * configure: Regenerate.
4369
4370 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4371
4372 * update-subdirs: Don't touch subdirs.el if it is unchanged.
4373
4374 2008-05-14 Kenichi Handa <handa@m17n.org>
4375
4376 * configure: Regenerate.
4377
4378 * configure.in: Don't handle --disable-font-backend. Don't print
4379 a message about a font backend.
4380
4381 2008-05-09 Glenn Morris <rgm@gnu.org>
4382
4383 * configure.in: Make absence of makeinfo a fatal error only if the info
4384 files don't exist.
4385 * Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
4386
4387 2008-05-07 Eli Zaretskii <eliz@gnu.org>
4388
4389 * config.bat: Fix last change: don't use < and > in "rem" lines,
4390 they are interpreted as redirection by DOS shells.
4391
4392 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4393
4394 * configure.in: Check availability of AvailabilityMacros.h
4395 if HAVE_CARBON.
4396
4397 * configure: Regenerate.
4398
4399 2008-05-03 Glenn Morris <rgm@gnu.org>
4400
4401 * configure.in (x_libraries): Remove standard 64-bit directories -
4402 experimental workaround for minor autoconf bug.
4403
4404 * configure.in (--without-makeinfo): New option. If set,
4405 absence of suitable makeinfo is not a fatal error.
4406 * Makefile.in (MAKEINFO): New, set by configure.
4407 (install-arch-indep): Without makeinfo, ignore any missing manuals.
4408 (info-real): New target.
4409 (info): Without makeinfo, do nothing, else call `info-real'.
4410
4411 2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
4412
4413 * configure.in: Remove hpux10.20 from the desupported list.
4414
4415 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4416
4417 * configure.in: Define USE_LUCID/USE_MOTIF in config.h.
4418
4419 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4420
4421 * configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
4422 rather than change CPPFLAGS.
4423 (HAVE_GTK): Rename to USE_GTK.
4424
4425 2008-04-16 Yavor Doganov <yavor@gnu.org> (tiny change)
4426
4427 * configure.in: Replace the obsolete macros AC_AIX and
4428 AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
4429
4430 2008-04-05 Andreas Schwab <schwab@suse.de>
4431
4432 * configure.in: No longer create admin/unidata/Makefile.
4433
4434 2008-03-28 Andreas Schwab <schwab@suse.de>
4435
4436 * Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
4437 (lisp/Makefile): New rule.
4438
4439 2008-03-13 Glenn Morris <rgm@gnu.org>
4440
4441 * configure.in (AC_INIT): Fix version number.
4442 (sync-input): Reword the option, since it's on by default.
4443
4444 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
4445
4446 * configure.in: Add --enable-sync-input, default yes.
4447
4448 2008-03-11 Glenn Morris <rgm@gnu.org>
4449
4450 * Makefile.in (install-etc, mkdir): Handle directory
4451 etc/images/icons/hicolor/*/mimetypes/.
4452
4453 * make-dist: Handle icons/hicolor/scalable directory.
4454
4455 2008-03-05 Glenn Morris <rgm@gnu.org>
4456
4457 * configure.in: Enable font-backend by default.
4458 (USE_FONT_BACKEND): Set to "no" in absence of X.
4459 (PKG_CONFIG): Don't set multiple times, once is enough.
4460 (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
4461
4462 2008-03-03 Glenn Morris <rgm@gnu.org>
4463
4464 * Makefile.in (iconsrcdir): New variable.
4465 (install-etc, mkdir): Use $iconsrcdir. Handle the `scalable' icon
4466 directory.
4467
4468 2008-02-29 Glenn Morris <rgm@gnu.org>
4469
4470 * test/: New directory.
4471
4472 2008-02-27 Jan Djärv <jan.h.d@swipnet.se>
4473
4474 * configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
4475
4476 2008-02-25 Dan Nicolaescu <dann@ics.uci.edu>
4477
4478 * configure.in: Print an error for systems that we think are obsolete
4479 and are proposed to be removed. Remove some more unused systems.
4480 Add support for powerpc-ibm-aix6*.
4481
4482 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
4483
4484 * configure.in: Remove references to obsolete variables and systems.
4485
4486 2008-02-21 Glenn Morris <rgm@gnu.org>
4487
4488 * Makefile.in (set_installuser): New.
4489 (install-arch-indep): Use set_installuser to avoid duplicate code.
4490
4491 * README.unicode: Split into admin/notes/unicode,font-backend and
4492 remove.
4493
4494 2008-02-10 Matthew Luckie <mjl@luckie.org.nz> (tiny change)
4495
4496 * configure.in (arm*-*-freebsd*): Add.
4497
4498 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
4499
4500 * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
4501 dealing with obsolete variables.
4502
4503 2008-02-08 Glenn Morris <rgm@gnu.org>
4504
4505 * Makefile.in (check-info-dir): New target.
4506
4507 2008-02-08 Michael Olson <mwolson@gnu.org>
4508
4509 * Makefile.in (INFO_FILES): Add epa.
4510
4511 * info/dir: Add EasyPG Assistant manual to the "Emacs misc
4512 features" section.
4513
4514 2008-02-06 Glenn Morris <rgm@gnu.org>
4515
4516 * configure.in (--with-gcc): Give an error saying this option has
4517 been removed.
4518 (--with-gtk): Remove this option.
4519
4520 2008-02-06 Tom Tromey <tromey@redhat.com>
4521
4522 * configure.in (--with-gcc): Remove.
4523 * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
4524
4525 2008-02-05 Ulrich Mueller <ulm@gentoo.org>
4526
4527 * INSTALL: Recommend giflib, not libungif.
4528
4529 2008-02-05 Tom Tromey <tromey@redhat.com>
4530
4531 * configure.in (--with-dbus): Default to enabled.
4532
4533 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
4534
4535 * INSTALL (Complex Text Layout support libraries): New section.
4536
4537 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
4538
4539 * make-dist: Remove references to files in mac/ that have been
4540 deleted.
4541
4542 2008-02-02 Thien-Thi Nguyen <ttn@gnuvola.org>
4543
4544 * configure.in: For libotf and m17n-flt checks, set shell vars
4545 HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
4546 pkg_check_m17n_flt, respectively, for the sake of the summary output.
4547 Reported by Ulrich Mueller.
4548
4549 2008-02-02 Eli Zaretskii <eliz@gnu.org>
4550
4551 * configure.in: If admin/unidata/UnicodeData.txt is present, copy
4552 admin/unidata/Makefile.in to Makefile.
4553
4554 2008-02-02 Glenn Morris <rgm@gnu.org>
4555
4556 * configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
4557 (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
4558 (HAVE_XFT): Add "Does Emacs use..." messages at end.
4559
4560 2008-02-01 Miles Bader <miles@gnu.org>
4561
4562 * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
4563 [libotf], and [m17n-flt] options.
4564
4565 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
4566
4567 * configure.in: Add EMACS_ARG_N([libotf]...), and
4568 EMACS_ARG_N([m17n-flt]. Set back OLD_CPPFLAGS to CPPFLAGS (not
4569 CFLAGS) in XFT checking part. Don't alter C_SWITCH_X_SITE,
4570 CFLAGS, and LIBS in checking of m17n-flt.
4571
4572 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
4573
4574 * configure.in: Check the availability of m17n-flt library.
4575
4576 2008-02-01 Kenichi Handa <handa@m17n.org>
4577
4578 * configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
4579 not available.
4580
4581 2008-02-01 Kenichi Handa <handa@m17n.org>
4582
4583 * configure.in: New args --enable-font-backend, --with-xft,
4584 --with-freetyp. New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
4585 HAVE_FREETYPE, HAVE_LIBOTF. New AC_SUBSTs XFT_LIBS,
4586 FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
4587 FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
4588
4589 2008-02-01 Kenichi Handa <handa@m17n.org>
4590
4591 * make-dist: Include etc/charsets in tarball.
4592
4593 2008-02-01 Kenichi Handa <handa@m17n.org>
4594
4595 * configure.in: While running cpp on junk.c, include
4596 -DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
4597 exists.
4598
4599 2008-01-29 Dan Nicolaescu <dann@ics.uci.edu>
4600
4601 * configure.in (xtensa): Match more configurations.
4602
4603 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
4604
4605 * configure.in: Update comment.
4606
4607 2008-01-26 Glenn Morris <rgm@gnu.org>
4608
4609 * configure.in (--without-gcc): By default, neither off nor on.
4610 (--with-carbon): Tone down rhetoric in help text.
4611
4612 2008-01-25 Glenn Morris <rgm@gnu.org>
4613
4614 * configure.in: Correct usage of OPTION_DEFAULT_ON,
4615 OPTION_DEFAULT_OFF so that the defaults are as they used to be.
4616 Default `Carbon' to off (it's unsupported).
4617
4618 2008-01-24 Glenn Morris <rgm@gnu.org>
4619
4620 * configure.in: Standardize dbus-related messages.
4621
4622 2008-01-23 Michael Olson <mwolson@gnu.org>
4623
4624 * configure.in (pkg-config-prog): Remove initial whitespace.
4625
4626 2008-01-23 Tom Tromey <tromey@redhat.com>
4627
4628 * configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
4629 (EMACS_ARG_Y, EMACS_ARG_N): Remove.
4630 Update all users.
4631
4632 2008-01-21 Dan Nicolaescu <dann@ics.uci.edu>
4633
4634 * config.guess, config.sub: Updated from master source.
4635
4636 2008-01-17 Andreas Schwab <schwab@suse.de>
4637
4638 * configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
4639
4640 2008-01-17 Glenn Morris <rgm@gnu.org>
4641
4642 * configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
4643
4644 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
4645
4646 * configure.in: Remove more references to unsupported systems.
4647
4648 2008-01-16 Sven Joachim <svenjoac@gmx.de>
4649
4650 * make-dist: Add --lzma.
4651
4652 2008-01-16 Glenn Morris <rgm@gnu.org>
4653
4654 * Makefile.in (maybe_bootstrap): Remove texinfo message, since
4655 configure checks for this.
4656
4657 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
4658
4659 * configure.in: Remove more references to unsupported systems.
4660
4661 2008-01-06 Romain Francoise <romain@orebokech.com>
4662
4663 * configure.in: Delete extra semicolons.
4664
4665 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
4666
4667 * configure.in: Remove references to unsupported systems.
4668
4669 2008-01-05 Romain Francoise <romain@orebokech.com>
4670
4671 * make-dist: Add --bzip2. Update copyright.
4672
4673 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
4674
4675 * configure.in: Remove support for Masscomp.
4676
4677 2008-01-05 Glenn Morris <rgm@gnu.org>
4678
4679 * Makefile.in (desktopdir, icondir): New variables.
4680 (install-arch-indep): Also depend on `install-etc'.
4681 (install-etc): New target.
4682 (mkdir): Also create the `applications' and `icons' directories.
4683
4684 2008-01-04 Glenn Morris <rgm@gnu.org>
4685
4686 * make-dist: Update for new etc/images/icons/hicolor directory.
4687
4688 2007-12-09 Andreas Schwab <schwab@suse.de>
4689
4690 * configure.in: D-Bus is not enabled by default.
4691
4692 2007-12-06 Jan Djärv <jan.h.d@swipnet.se>
4693
4694 * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
4695 change.
4696
4697 2007-12-04 Jan Djärv <jan.h.d@swipnet.se>
4698
4699 * configure.in: Give package name and version to AC_INIT.
4700
4701 2007-12-03 Magnus Henoch <mange@freemail.hu>
4702
4703 * configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
4704
4705 2007-12-03 Michael Albinus <michael.albinus@gmx.de>
4706
4707 * configure.in: No need for DBUS_INFO anymore.
4708
4709 * Makefile.in (INFO_FILES): Use dbus unconditionally.
4710
4711 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
4712
4713 * configure.in: Add D-Bus checks. D-Bus is disabled by default.
4714
4715 * Makefile.in (INFO_FILES): Add dbus.
4716
4717 2007-12-02 Romain Francoise <romain@orebokech.com>
4718
4719 * make-dist: Fix last change.
4720
4721 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
4722
4723 * configure.in: Add support for gnu-kfreebsd.
4724
4725 2007-11-28 Glenn Morris <rgm@gnu.org>
4726
4727 * make-dist: Add etc/nxml.
4728
4729 2007-11-24 Romain Francoise <romain@orebokech.com>
4730
4731 * Makefile.in (INFO_FILES): Add nxml-mode.
4732
4733 2007-11-23 Romain Francoise <romain@orebokech.com>
4734
4735 * make-dist: Include nXML. Don't try to copy FTP, it was removed on
4736 2007/10/17. Don't special-case alloca.c which is no longer in CVS.
4737
4738 2007-11-20 Andreas Schwab <schwab@suse.de>
4739
4740 * configure.in: Always include <resolv.h> when checking for res_init.
4741
4742 2007-11-17 Andreas Schwab <schwab@suse.de>
4743
4744 * update-subdirs: Atomically update subdirs.el.
4745
4746 2007-11-17 Glenn Morris <rgm@gnu.org>
4747
4748 * Makefile.in (check-declare): New target.
4749
4750 2007-11-07 Glenn Morris <rgm@gnu.org>
4751
4752 * configure.in: Deprecate Mac Carbon port.
4753
4754 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
4755
4756 * configure.in: Remove HAVE_X11R5 check.
4757
4758 2007-10-31 Glenn Morris <rgm@gnu.org>
4759
4760 * Makefile.in (install-arch-indep): Fallback to $USER and `id -un'
4761 when changing ownership of installed files.
4762
4763 2007-10-30 Glenn Morris <rgm@gnu.org>
4764
4765 * make-dist: Add new directory etc/gnus.
4766
4767 2007-10-30 Michael Olson <mwolson@gnu.org>
4768
4769 * Makefile.in (INFO_FILES): Alphabetize. Add remember.
4770
4771 2007-10-29 Glenn Morris <rgm@gnu.org>
4772
4773 * make-dist: Add new directories etc/images/smilies/grayscale,medium.
4774
4775 2007-10-23 Glenn Morris <rgm@gnu.org>
4776
4777 * MAINTAINERS: Move to admin/.
4778
4779 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
4780
4781 * configure.in (HAVE_RES_INIT): Define if res_init() exists.
4782 (HAVE_LIBRESOLV): Also define if we are using res_init().
4783
4784 2007-10-17 Glenn Morris <rgm@gnu.org>
4785
4786 * FTP: Remove file, since it's just a duplicate of one in etc/.
4787
4788 2007-10-05 Eli Zaretskii <eliz@gnu.org>
4789
4790 * config.bat: Fix configuring `doc' due to changes in the
4791 directory structure.
4792
4793 2007-09-16 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
4794
4795 * configure.in: Don't use -lpthread on HP-UX.
4796
4797 2007-09-16 Glenn Morris <rgm@gnu.org>
4798
4799 * make-dist: File gfdl.1 has been removed.
4800
4801 2007-09-15 Glenn Morris <rgm@gnu.org>
4802
4803 * configure.in: Fix makeinfo version regexp.
4804
4805 2007-09-12 Glenn Morris <rgm@gnu.org>
4806
4807 * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
4808 implementation of alloca is not found.
4809
4810 * Makefile.in (SOURCES, unlock, relock): Delete.
4811 (install-arch-indep): Do not exclude the etc/ Makefiles.
4812
4813 2007-09-09 Juri Linkov <juri@jurta.org>
4814
4815 * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc).
4816
4817 * README: Add doc/ to documentation directories.
4818
4819 2007-09-08 Michael Olson <mwolson@gnu.org>
4820
4821 * MAINTAINERS: Add myself for ERC and tq.el.
4822 Update for new doc/ directory layout.
4823
4824 2007-09-06 Romain Francoise <romain@orebokech.com>
4825
4826 * make-dist: Update for new doc/ directory layout.
4827
4828 2007-09-06 Glenn Morris <rgm@gnu.org>
4829
4830 * Makefile.in (mansrcdir): New variable.
4831 (SUBDIR_MAKEFILES): Update for new doc/ directory layout.
4832 (man/Makefile, lispref/Makefile, lispintro/Makefile): Rename and
4833 update these targets for new doc/ directory layout.
4834 (doc/misc/Makefile): New target.
4835 (install-arch-indep): Use mansrcdir for new location of manpages.
4836 (mostlyclean, clean, distclean, maintainer-clean, unlock)
4837 (relock, info, dvi): Update targets for new doc/ directory layout.
4838
4839 * configure.in (AC_OUTPUT): Update names of generated Makefiles
4840 for new doc/ directory layout.
4841
4842 2007-09-02 Andreas Schwab <schwab@suse.de>
4843
4844 * configure.in: Use AS_HELP_STRING throughout.
4845 * configure: Regenerate.
4846
4847 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
4848
4849 * configure.in: Require Gtk/Glib 2.6.
4850
4851 2007-09-02 Thien-Thi Nguyen <ttn@gnuvola.org>
4852
4853 * configure.in (EMACS_ARG_Y, EMACS_ARG_N): New AC_DEFUNs.
4854 Use them throughout in place of AC_ARG_WITH calls.
4855 * configure: Regenerate.
4856
4857 2007-09-01 Andreas Schwab <schwab@suse.de>
4858
4859 * configure.in: Put quotes around nested macro calls.
4860
4861 2007-08-31 Ulrich Mueller <ulm@gentoo.org> (tiny change)
4862
4863 * configure.in: Fix typo.
4864 * configure: Regenerate.
4865
4866 2007-08-30 Glenn Morris <rgm@gnu.org>
4867
4868 * configure.in (AH_BOTTOM): Copy some manual changes made to
4869 src/config.in here so they are not lost when it regenerates.
4870
4871 * README.multi-tty: Move to admin/notes/multi-tty, with some edits.
4872
4873 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
4874
4875 * README.multi-tty: New file.
4876
4877 2007-08-29 Glenn Morris <rgm@gnu.org>
4878
4879 * README: Increase version to 23.0.50.
4880
4881 2007-08-29 Jan Djärv <jan.h.d@swipnet.se>
4882
4883 * configure.in: New option: --without-xaw3d.
4884
4885 2007-08-24 Glenn Morris <rgm@gnu.org>
4886
4887 * configure.in: Check for a suitably recent makeinfo.
4888
4889 2007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
4890
4891 * configure.in (Check for required libraries): Typo.
4892
4893 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4894
4895 * configure.in: Check librsvg2 also for Mac Carbon.
4896
4897 2007-08-22 Romain Francoise <romain@orebokech.com>
4898
4899 * make-dist: Follow reorganization of files in etc/.
4900
4901 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
4902
4903 * configure.in: Add support for SVG images through librsvg2.
4904
4905 2007-07-28 Eli Zaretskii <eliz@gnu.org>
4906
4907 * Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
4908 to avoid an error message if there is no DOC there.
4909
4910 2007-07-25 Glenn Morris <rgm@gnu.org>
4911
4912 * Relicense all FSF files to GPLv3 or later.
4913
4914 * COPYING, info/COPYING: Switch to GPLv3.
4915
4916 2007-06-20 Jan Djärv <jan.h.d@swipnet.se>
4917
4918 * configure.in: Complain if X seems to be installed but no
4919 development files were found.
4920
4921 2007-06-20 Glenn Morris <rgm@gnu.org>
4922
4923 * configure.in: Prefer libgif over libungif.
4924
4925 2007-06-14 Jan Djärv <jan.h.d@swipnet.se>
4926
4927 * configure.in: Check for all image libraries before exiting.
4928
4929 2007-06-13 Jan Djärv <jan.h.d@swipnet.se>
4930
4931 * configure.in: Exit with error if image libraries aren't found.
4932
4933 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
4934
4935 * configure.in: Merge xaw3d and libXaw checks. Check xaw3d even
4936 when compiling without scrollbars.
4937
4938 2007-06-12 Glenn Morris <rgm@gnu.org>
4939
4940 * configure.in (HAVE_GIF): If -lungif fails, try -lgif.
4941
4942 2007-06-11 Jan Djärv <jan.h.d@swipnet.se>
4943
4944 * configure.in: Change wording about yes/gtk and lucid/athena
4945 being synonyms.
4946
4947 2007-06-08 Glenn Morris <rgm@gnu.org>
4948
4949 * configure.in: Make gtk the default toolkit.
4950
4951 2007-06-07 Glenn Morris <rgm@gnu.org>
4952
4953 * configure.in (NON_GNU_CPP): On Solaris, set using a proper check
4954 for a Sun C compiler.
4955
4956 * Makefile.in (install-arch-indep): Install only the DOC- file
4957 specific to the build, if possible, rather than DOC-*.
4958
4959 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
4960
4961 * Version 22.1 released.
4962
4963 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
4964
4965 * mkinstalldirs: Sync to version in automake CVS.
4966
4967 2007-05-22 Andreas Schwab <schwab@suse.de>
4968
4969 * configure.in: Prefer build_alias over host when host_alias is not set.
4970 * configure: Regenerate.
4971
4972 2007-05-20 Andreas Schwab <schwab@suse.de>
4973
4974 * configure.in: Remove empty AC_SUBST.
4975 * configure: Regenerate.
4976
4977 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
4978
4979 * configure.in: Use HAVE_GPM instead of HAVE_GPM_H and implement
4980 it like others.
4981 * configure: Regenerate.
4982
4983 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
4984
4985 * configure.in (AC_CHECK_HEADERS): Add gpm.h.
4986 (AC_CHECK_LIB): Add -lgpm.
4987 * configure: Regenerate.
4988
4989 2007-05-03 Glenn Morris <rgm@gnu.org>
4990
4991 * configure: Tweak message about the absence of shell functions.
4992
4993 2007-04-27 Andreas Schwab <schwab@suse.de>
4994
4995 * Makefile.in (config.status): Depend on ${srcdir}/lisp/version.el.
4996
4997 2007-04-26 Glenn Morris <rgm@gnu.org>
4998
4999 * README: Increase version to 22.1.50.
5000
5001 2007-04-24 Juanma Barranquero <lekktu@gmail.com>
5002
5003 * INSTALL (DETAILED BUILDING AND INSTALLATION): Fix typo.
5004
5005 2007-04-19 Glenn Morris <rgm@gnu.org>
5006
5007 * configure.in: Signal error if Xaw libs are missing in a Lucid build.
5008
5009 2007-04-18 Glenn Morris <rgm@gnu.org>
5010
5011 * INSTALL: Mention CPP.
5012
5013 2007-04-15 Glenn Morris <rgm@gnu.org>
5014
5015 * FTP: Replace with a pointer to the web version.
5016
5017 2007-04-13 Glenn Morris <rgm@gnu.org>
5018
5019 * INSTALL: In lib-src, timer, wakeup, yow are removed.
5020
5021 2007-04-04 Glenn Morris <rgm@gnu.org>
5022
5023 * configure.in (NON_GNU_CPP): Use associated preprocessor when
5024 compiling with Sun Studio on Solaris.
5025
5026 2007-03-23 Glenn Morris <rgm@gnu.org>
5027
5028 * configure.in: Restore support for hp800 (removed 2007-01-27)
5029 following clarification of legal status.
5030
5031 2007-03-22 Joe Buehler <jbuehler@spirentcom.com> (tiny change)
5032
5033 * configure.in: Add support for AIX4.3 on IBM RS6000.
5034
5035 * configure: Regenerate.
5036
5037 2007-03-20 Richard Stallman <rms@gnu.org>
5038
5039 * configure.in: Fix previous change.
5040
5041 2007-03-19 Deanna Phillips <deanna@sixbit.org> (tiny change)
5042
5043 * configure.in (arm-*-openbsd*, hppa-*-openbsd*)
5044 (m88k-*-openbsd*, mips64-*-openbsd*, sh-*-openbsd*): Added.
5045 (ns32k-*-openbsd*, ns32k-*-openbsd*): Deleted.
5046
5047 2007-03-19 Chong Yidong <cyd@stupidchicken.com>
5048
5049 * configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
5050 user specifies "without".
5051
5052 * configure: Regenerate.
5053
5054 2007-03-18 Jan Djärv <jan.h.d@swipnet.se>
5055
5056 * configure.in: Warning for Gtk+ and Cygwin added.
5057 (HAVE_XFT): OLD_CFLAGS changed to OLD_CPPFLAGS.
5058
5059 2007-02-27 Glenn Morris <rgm@gnu.org>
5060
5061 * make-dist (oldXMenu): Remove Imakefile.
5062 (etc/images): Add README.
5063
5064 2007-02-25 Dan Nicolaescu <dann@ics.uci.edu>
5065
5066 * configure.in (xtensa-*-linux-gnu*): New configuration.
5067
5068 * configure: Regenerate.
5069
5070 2007-02-22 Dan Nicolaescu <dann@ics.uci.edu>
5071
5072 * config.guess, config.sub: Updated from master source.
5073
5074 2007-01-31 Sascha Wilde <wilde@sha-bang.de> (tiny change)
5075
5076 * configure.in (PKG_CHECK_MODULES): Change ///* to / in cflags and libs.
5077
5078 2007-01-29 Chong Yidong <cyd@stupidchicken.com>
5079
5080 * configure.in: Restore support for hp800's not running HP-UX.
5081
5082 * configure: Regenerate.
5083
5084 2007-01-27 Chong Yidong <cyd@stupidchicken.com>
5085
5086 * configure.in: Remove support for hp800 and sr2k machine types.
5087
5088 * configure: Regenerate.
5089
5090 2007-01-26 Jan Djärv <jan.h.d@swipnet.se>
5091
5092 * configure.in: Add check for libXft.
5093
5094 2007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
5095
5096 * INSTALL: Info files moved to share/info.
5097
5098 2007-01-02 Stephen C. Gilardi <scgilardi@gmail.com> (tiny change)
5099
5100 * configure.in: Detect and use fink-installed in intel-based Mac
5101 builds; change Apple Darwin section to support both PowerPC and
5102 Intel-based Macs.
5103
5104 2006-12-26 Andreas Schwab <schwab@suse.de>
5105
5106 * Makefile.in (datarootdir): Define.
5107
5108 2006-12-24 Richard Stallman <rms@gnu.org>
5109
5110 * configure.in: Require Autoconf 2.61.
5111
5112 2006-12-22 Mark Davies <mark@mcs.vuw.ac.nz>
5113
5114 * configure.in: Add support for NetBSD on x86-64, hp800 and sh3el.
5115 Remove redundant entry for powerpc-apple-netbsd.
5116
5117 * configure: Regenerate.
5118
5119 2006-12-22 Chong Yidong <cyd@stupidchicken.com>
5120
5121 * configure: Regenerate with autoconf 2.61.
5122
5123 2006-12-20 Jan Djärv <jan.h.d@swipnet.se>
5124
5125 * configure.in: Detect alsa/asoundlib.h also.
5126 * configure: Regenerate.
5127
5128 2006-12-19 Jan Djärv <jan.h.d@swipnet.se>
5129
5130 * configure.in: Check if GTK+ compiles at all.
5131
5132 2006-12-10 Andreas Schwab <schwab@suse.de>
5133
5134 * configure.in: Remove check for struct timezone, its result is
5135 never used.
5136
5137 2006-12-08 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
5138
5139 * configure.in: Add support for Solaris 10 on x86-64.
5140
5141 2006-12-08 Jan Djärv <jan.h.d@swipnet.se>
5142
5143 * INSTALL (DETAILED BUILDING AND INSTALLATION): Document usage
5144 of PKG_CONFIG_PATH.
5145
5146 2006-12-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5147
5148 * configure.in (HAVE_SYNC): New test.
5149
5150 2006-12-03 Glenn Morris <rgm@gnu.org>
5151
5152 * Makefile.in: Fix Copyright format.
5153
5154 * configure.in (AH_TOP): Add missing Copyright year.
5155
5156 * update-subdirs: Add missing Copyright years.
5157
5158 2006-11-27 Chris Moore <christopher.ian.moore@gmail.com>
5159
5160 * Makefile.in: Touch only the parts of the share/emacs directory
5161 specific to this version.
5162
5163 2006-11-26 Chong Yidong <cyd@stupidchicken.com>
5164
5165 * configure.in (HAVE_X86_64_LIB64_DIR): New test.
5166
5167 2006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5168
5169 * configure.in (HAVE_CANCELMENUTRACKING): Remove test.
5170
5171 2006-11-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5172
5173 * configure.in: Prefer X11 to Carbon only when some X-specific
5174 option is specified (Thanks to Jan Djärv and Andreas Schwab).
5175
5176 2006-11-04 Romain Francoise <romain@orebokech.com>
5177
5178 * Makefile.in (bootstrap-clean-before): Fix typo.
5179 Use new target `bootstrap-clean' in the leim subdirectory.
5180
5181 2006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
5182
5183 * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
5184
5185 2006-10-30 Chong Yidong <cyd@stupidchicken.com>
5186
5187 * make-dist: Add makefile.w32-in to the man, lispref and lispintro
5188 directories.
5189
5190 2006-10-29 Jeramey Crawford <jeramey@jeramey.com>
5191
5192 * configure.in: Enable x86-64 OpenBSD compilation.
5193
5194 2006-10-28 Glenn Morris <rgm@gnu.org>
5195
5196 * AUTHORS: Add cal-html.el author.
5197
5198 2006-10-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5199
5200 * make-dist: Make links to mac/make-package and
5201 mac/Emacs.app/Contents/Resources/Emacs.icns.
5202
5203 2006-10-27 Chong Yidong <cyd@stupidchicken.com>
5204
5205 * README: Bump version number to 22.0.90.
5206
5207 2006-10-23 Andreas Schwab <schwab@suse.de>
5208
5209 * configure.in: Make sure x_default_search_path is always set even
5210 when x_libraries is empty, and look in .../share as well for each
5211 library directory.
5212
5213 2006-09-28 Kenichi Handa <handa@m17n.org>
5214
5215 * configure.in (locallisppath): Don't include leim dir.
5216 (lisppath): Include leim dir.
5217
5218 2006-09-15 Jay Belanger <belanger@truman.edu>
5219
5220 * COPYING: Replace "Library Public License" by "Lesser Public
5221 License" throughout.
5222
5223 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5224
5225 * make-dist (EMACS): Exit and fail if the EMACS environment
5226 variable is set to something other than an absolute file name.
5227
5228 2006-08-16 Andreas Schwab <schwab@suse.de>
5229
5230 * configure.in (PKG_CHECK_MODULES): Use AS_MESSAGE_LOG_FD instead
5231 of hardcoding it.
5232
5233 2006-08-16 Richard Stallman <rms@gnu.org>
5234
5235 * INSTALL.CVS: Clean up wording.
5236
5237 2006-07-14 Eli Zaretskii <eliz@gnu.org>
5238
5239 * configure.in (PKG_CHECK_MODULES): Redirect the output of
5240 $PKG_CONFIG --exists "$2" to config.log.
5241 * configure: Regenerate.
5242
5243 2006-07-09 Richard Stallman <rms@gnu.org>
5244
5245 * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections.
5246
5247 2006-07-09 Kim F. Storm <storm@cua.dk>
5248
5249 * CONTRIBUTE: Use outline format.
5250 Add section on copyright years (from admin/notes/years).
5251
5252 2006-07-08 Eli Zaretskii <eliz@gnu.org>
5253
5254 * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config
5255 to /dev/null, since we don't need the error message, just the
5256 exit status.
5257
5258 2006-07-07 Eli Zaretskii <eliz@gnu.org>
5259
5260 * CONTRIBUTE: Slight formatting changes and typo fixes.
5261 Add description of NEWS markings.
5262
5263 2006-07-07 Kim F. Storm <storm@cua.dk>
5264
5265 * CONTRIBUTE: Mention INSTALL.CVS.
5266
5267 2006-07-05 Romain Francoise <romain@orebokech.com>
5268
5269 * make-dist (top-level): Add CONTRIBUTE.
5270
5271 2006-07-04 Richard Stallman <rms@gnu.org>
5272
5273 * CONTRIBUTE: Much rewrite.
5274
5275 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
5276
5277 * CONTRIBUTE: New file.
5278
5279 2006-06-24 Eli Zaretskii <eliz@gnu.org>
5280
5281 * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.
5282
5283 2006-05-18 Jan Djärv <jan.h.d@swipnet.se>
5284
5285 * configure.in: Add check for ALSA.
5286
5287 2006-05-06 Eli Zaretskii <eliz@gnu.org>
5288
5289 * Makefile.in (INFO_FILES): Remove emacs-xtra.
5290
5291 * info/dir: Remove the Emacs-Xtra entry.
5292
5293 2006-04-20 Ramprasad B <ramprasad_i82@yahoo.com>
5294
5295 Update copyright year(s) in many files.
5296
5297 2006-04-01 Eli Zaretskii <eliz@gnu.org>
5298
5299 * configure: Regenerated.
5300
5301 2006-04-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5302
5303 * configure.in (HAVE_XAW3D): Disable Xaw3d check if
5304 --without-toolkit-scroll-bars was specified.
5305
5306 2006-04-01 Christoph Bauer <Christoph.Bauer@lms-gmbh.de> (tiny change)
5307
5308 * configure.in (hppa*-hp-hpux1[1-9]*): Add -D_INCLUDE__STDC_A1_SOURCE
5309 to CFLAGS. Update Copyright years written to src/config.in.
5310
5311 2006-03-18 Claudio Fontana <claudio@gnu.org>
5312
5313 * Makefile.in (INFO_FILES): New variable, contains all Info file names.
5314 (install-arch-indep, uninstall): Use $(INFO_FILES) to specify files
5315 to be installed/uninstalled.
5316 (uninstall): Invoke "$(INSTALL_INFO) --remove" to remove references
5317 to Info files installed by Emacs.
5318
5319 2006-03-03 Claudio Fontana <claudio@gnu.org>
5320
5321 * Makefile.in (install, uninstall): Add DESTDIR variable to
5322 support staged installations.
5323
5324 2006-02-14 Richard M. Stallman <rms@gnu.org>
5325
5326 * configure.in (s390x-*-linux-gnu*): New configuration.
5327
5328 2006-01-31 Jan Djärv <jan.h.d@swipnet.se>
5329
5330 * configure.in: Require GTK 2.4 or newer.
5331
5332 2006-01-29 Michael Olson <mwolson@gnu.org>
5333
5334 * Makefile.in (install-arch-indep, uninstall): Add ERC.
5335 * info/dir (ERC): New entry.
5336
5337 2006-01-29 Eli Zaretskii <eliz@gnu.org>
5338
5339 * info/dir: Fix last change.
5340
5341 2006-01-28 Luc Teirlinck <teirllm@auburn.edu>
5342
5343 * Makefile.in (install-arch-indep, uninstall): Add rcirc.
5344
5345 2006-01-27 Eli Zaretskii <eliz@gnu.org>
5346
5347 * info/dir: Untabify the whole file.
5348 (Rcirc): New entry.
5349
5350 2006-01-12 Andreas Schwab <schwab@suse.de>
5351
5352 * configure.in: Move AC_AIX and AC_GNU_SOURCE before first compile
5353 check.
5354
5355 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
5356
5357 * configure.in: Use -Wno-pointer-sign if available.
5358
5359 2005-12-29 Andreas Schwab <schwab@suse.de>
5360
5361 * config.guess, config.sub: Updated from master source.
5362
5363 2005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
5364
5365 * configure.in: Use amdx86-64 for freebsd on x86_64.
5366
5367 2005-11-22 Romain Francoise <romain@orebokech.com>
5368
5369 * make-dist: Add etc/images/icons.
5370
5371 2005-11-03 Andreas Schwab <schwab@suse.de>
5372
5373 * configure.in: Use GZIP_PROG instead of GZIP.
5374
5375 * Makefile.in (GZIP_PROG): Renamed from GZIP.
5376 (install-arch-indep): Adjust.
5377
5378 2005-11-01 Andreas Schwab <schwab@suse.de>
5379
5380 * Makefile.in (bootstrap): Fix dependencies for parallel build.
5381 (bootfast): Likewise.
5382
5383 2005-11-01 Romain Francoise <romain@orebokech.com>
5384
5385 * configure.in: Check for gzip.
5386
5387 * Makefile.in (install): Compress source files.
5388
5389 2005-10-24 Steven Tamm <steventamm@mac.com>
5390
5391 * configure.in: Fix darwin386 configuration issue.
5392
5393 2005-10-22 Eli Zaretskii <eliz@gnu.org>
5394
5395 * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure.
5396
5397 2005-10-17 Bill Wohler <wohler@newt.com>
5398
5399 * make-dist: Create and populate etc/images/low-color.
5400
5401 2005-10-15 Bill Wohler <wohler@newt.com>
5402
5403 * make-dist: Create and populate etc/images/gud.
5404
5405 2005-10-08 Richard M. Stallman <rms@gnu.org>
5406
5407 * make-dist (tempparent): Don't check for 14-char file name limit.
5408
5409 2005-10-07 Romain Francoise <romain@orebokech.com>
5410
5411 * make-dist: Add etc/images/ezimage and etc/images/mail
5412 directories. Install images in etc/images.
5413
5414 2005-10-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5415
5416 * configure.in: Prefer Carbon if --enable-carbon-app or
5417 --with-carbon is explicitly specified even when X11 is detected.
5418
5419 2005-09-15 Ulf Jasper <ulf.jasper@web.de>
5420
5421 * Makefile.in (install-arch-indep, uninstall):
5422 Handle newsticker manual.
5423 (info): Add - to commands.
5424
5425 2005-09-10 Giuseppe Scrivano <gscrivano@gmail.com>
5426
5427 Remove the MAXPATHLEN limitations:
5428
5429 * configure.in (AC_CHECK_FUNCS): Check for get_current_dir_name.
5430
5431 2005-09-09 Eli Zaretskii <eliz@gnu.org>
5432
5433 * configure.in <lynxsos*>: Support for LynxOS on PPC.
5434 * configure: Regenerate.
5435
5436 2005-09-05 Paul Eggert <eggert@cs.ucla.edu>
5437
5438 * config.guess, config.sub: Updated from master source.
5439
5440 2005-08-03 Juanma Barranquero <lekktu@gmail.com>
5441
5442 * .cvsignore: Add `lock'.
5443
5444 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
5445
5446 * .cvsignore: Add `data' and `site-lisp' (for in-place installs).
5447
5448 2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
5449
5450 Merge gnulib getopt implementation into Emacs.
5451
5452 * Makefile.in (AUTOCONF_INPUTS): New macro.
5453 ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
5454 so that these files also depend on m4/getopt.m4.
5455 * configure.in: Configure getopt by including m4/getopt.m4,
5456 and configuring a getopt replacement if necessary.
5457 * make-dist: Add m4 subdirectory. Unlink lib-src/getopt.h.
5458 * m4/getopt.m4: New file.
5459
5460 2005-07-06 Lute Kamstra <lute@gnu.org>
5461
5462 * configure.in: Fix capitalization.
5463
5464 2005-07-04 Lute Kamstra <lute@gnu.org>
5465
5466 Update FSF's address in GPL notices.
5467
5468 2005-06-19 Jérôme Marant <jerome@marant.org>
5469
5470 * Makefile.in (epaths-force): Protect both lisppath and
5471 buildlisppath from whitespace.
5472
5473 2005-06-08 Steven Tamm <steventamm@mac.com>
5474
5475 * configure.in: Support Darwin/MacOSX on Intel.
5476
5477 2005-06-06 Jan Djärv <jan.h.d@swipnet.se>
5478
5479 * configure.in (HAVE_CANCELMENUTRACKING): New test.
5480
5481 2005-05-19 Jérôme Marant <jmarant@marant.org>
5482
5483 * configure.in: Add --enable-locallisppath.
5484
5485 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5486
5487 * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
5488 Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS. Define
5489 USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
5490
5491 2005-05-07 Jérôme Marant <jerome@marant.org>
5492
5493 * make-dist: Remove references to makefile.nt and makefile.def.
5494 Include widgets and images subdirectories of etc. Do not exclude
5495 ldefs-boot.el.
5496
5497 2005-04-23 Andreas Schwab <schwab@suse.de>
5498
5499 * configure.in: Remove duplicate match for powerpc configuration.
5500
5501 2005-04-20 Thien-Thi Nguyen <ttn@gnu.org>
5502
5503 * configure.in: Check for <pwd.h>.
5504
5505 2005-04-14 Lute Kamstra <lute@gnu.org>
5506
5507 * make-dist: Distribute all ChangeLog files in lisp/.
5508 Don't distribute ldefs-boot.el.
5509 lisp/makefile.nt no longer exists.
5510
5511 2005-04-13 Lute Kamstra <lute@gnu.org>
5512
5513 * make-dist: Don't use DONTCOMPILE from lisp/Makefile.in; check
5514 for "no-byte-compile: t" in the file instead.
5515
5516 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
5517
5518 * configure.in <Motif>: Don't let a special LessTif/Motif1.2 install
5519 shadow the main Lesstif/Motif-2.1 libs and includes.
5520
5521 2005-03-10 Jan Djärv <jan.h.d@swipnet.se>
5522
5523 * configure.in: Only add XASSERTS to cppflags.
5524
5525 2005-03-04 Jan Djärv <jan.h.d@swipnet.se>
5526
5527 * configure.in: Added --enable-asserts.
5528
5529 2005-02-09 Kim F. Storm <storm@cua.dk>
5530
5531 Change release version from 21.4 to 22.1 throughout.
5532 Change development version from 21.3.50 to 22.0.50.
5533
5534 2005-01-19 Steven Tamm <steventamm@mac.com>
5535
5536 * configure.in: Check for <sys/utsname.h>.
5537
5538 2004-12-11 Kim F. Storm <storm@cua.dk>
5539
5540 * Makefile.in (info): Undo 2004-12-05 change.
5541
5542 2004-12-08 Luc Teirlinck <teirllm@auburn.edu>
5543
5544 * info/dir (File): Add URL and Org Mode manuals.
5545 * Makefile.in (install-arch-indep, uninstall): Add url and org
5546 manuals.
5547
5548 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
5549
5550 * configure.in (INLINE, RE_TRANSLATE_P): Move patches mistakenly
5551 committed to src/config.in.
5552
5553 2004-12-07 Jan Djärv <jan.h.d@swipnet.se>
5554
5555 * configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
5556 pthreads and define HAVE_GTK_AND_PTHREAD.
5557
5558 2004-12-05 Richard M. Stallman <rms@gnu.org>
5559
5560 * Makefile.in (info): Ignore errors building info files.
5561
5562 2004-11-27 Eli Zaretskii <eliz@gnu.org>
5563
5564 * config.bat: If 8-byte alignment is not supported, define
5565 NO_DECL_ALIGN in src/config.h, instead of trivially defining
5566 DECL_ALIGN. Protect & with "" because & is special for cmd.exe;
5567 filter through Sed to remove the quotes.
5568
5569 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
5570
5571 * info/.cvsignore: Ignore everything. It's OK since .cvsignore does
5572 not apply to files explicitly `cvs add'ed.
5573
5574 2004-11-12 Eli Zaretskii <eliz@gnu.org>
5575
5576 * config.bat: Don't require djecho.exe for the v1.x build.
5577 Add a test for DECL_ALIGN support, and add a trivial definition to
5578 src/config.h if 8-byte alignment is not supported.
5579
5580 2004-11-08 Kim F. Storm <storm@cua.dk>
5581
5582 * Makefile.in (bootstrap, bootstrap-clean-before): Remove .elc
5583 files before building.
5584 (bootfast, bootstrap-clean-before-fast): New targets, like
5585 bootstrap but don't remove .elc files.
5586
5587 2004-11-06 Lars Brinkhoff <lars@nocrew.org>
5588
5589 * configure.in: Add check for getrusage.
5590
5591 2004-11-02 Jan Djärv <jan.h.d@swipnet.se>
5592
5593 * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION):
5594 New tests for new and old GTK file dialogs.
5595 (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set
5596 to no.
5597
5598 2004-10-20 Jan Djärv <jan.h.d@swipnet.se>
5599
5600 * configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
5601 can be set. Remove SETARCH test.
5602
5603 2004-10-08 Steven Tamm <steventamm@mac.com>
5604
5605 * configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h.
5606
5607 2004-10-06 Jan Djärv <jan.h.d@swipnet.se>
5608
5609 * configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
5610 AC_MSG_WARN. Move output of warning message to end of configure run.
5611
5612 2004-10-05 Jan Djärv <jan.h.d@swipnet.se>
5613
5614 * configure.in (HAVE_RANDOM_HEAPSTART): Rename HAVE_EXECSHIELD.
5615 Run test to see if heap start address is random.
5616
5617 2004-09-29 Miles Bader <miles@gnu.org>
5618
5619 * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
5620 if setarch is present.
5621
5622 2004-09-25 Jan Djärv <jan.h.d@swipnet.se>
5623
5624 * configure.in (HAVE_EXECSHIELD): Only define on x86.
5625
5626 2004-09-24 Jan Djärv <jan.h.d@swipnet.se>
5627
5628 * configure.in: Check for exec-shield.
5629
5630 2004-09-04 Reiner Steib <Reiner.Steib@gmx.de>
5631
5632 * Makefile.in (install-arch-indep): Add pgg and sieve.
5633
5634 * info/.cvsignore: Added pgg and sieve.
5635
5636 2004-08-06 Andreas Schwab <schwab@suse.de>
5637
5638 * Makefile.in (install-arch-indep, uninstall): Add flymake.
5639
5640 2004-07-31 Eli Zaretskii <eliz@gnu.org>
5641
5642 * config.bat: Update URLs in the comments.
5643
5644 2004-07-05 Andreas Schwab <schwab@suse.de>
5645
5646 * Makefile.in (install-arch-indep): Remove .arch-inventory files.
5647
5648 2004-06-21 Kenichi Handa <handa@m17n.org>
5649
5650 * make-dist: Link leim-ext.el into tempdir.
5651
5652 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
5653
5654 * info/dir (File): Add emacs-xtra.
5655 * Makefile.in (install-arch-indep, uninstall): Add emacs-xtra.
5656
5657 2004-06-12 Juri Linkov <juri@jurta.org>
5658
5659 * info/dir: Move menu help lines from `* Menu:' to file header.
5660 Describe the purpose of a red *.
5661
5662 2004-05-04 Dave Love <fx@gnu.org>
5663
5664 * configure.in: Don't use `extrasub'.
5665
5666 2004-04-29 Dave Love <fx@gnu.org>
5667
5668 * configure.in: Don't forget to quote args to `test'.
5669
5670 2004-04-24 Thien-Thi Nguyen <ttn@gnu.org>
5671
5672 * autogen.sh: Update filename in "please read" message.
5673
5674 2004-04-17 Richard M. Stallman <rms@gnu.org>
5675
5676 * INSTALL: Move the info about site-lisp dirs,
5677 and say uninstalled Emacs looks there too.
5678
5679 2004-04-04 Eli Zaretskii <eliz@gnu.org>
5680
5681 * config.bat (lib-src): Recognize comment lines in Makefile.in
5682 that have a TAB after the #, to avoid errors in preprocessing with
5683 GCC 3.3.3.
5684
5685 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
5686
5687 * Makefile.in: Mention in comment that `make maintainer-clean'
5688 deletes .elc files.
5689
5690 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
5691
5692 * update-subdirs: Add local variables to prevent byte-compiling.
5693
5694 2004-03-21 Dave Love <fx@gnu.org>
5695
5696 * configure.in: Fix previous change.
5697
5698 2004-03-18 Dave Love <fx@gnu.org>
5699
5700 * configure.in: Add -znocombreloc to LDFLAGS if compiler supports it.
5701
5702 2004-03-15 Luc Teirlinck <teirllm@auburn.edu>
5703
5704 * info/dir (File): Add SMTP and SES.
5705
5706 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5707
5708 * Makefile.in (maintainer-clean): Clean in the lisp dir as well.
5709 (bootstrap): Use the new bootstrap-prepare target in lisp.
5710
5711 2004-02-18 Kim F. Storm <storm@cua.dk>
5712
5713 * INSTALL.CVS: Add info about ssh/cvs related problems and work-around.
5714
5715 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5716
5717 * make-dist: Don't link index.*perm and permute-index into tempdir.
5718
5719 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5720
5721 * AUTHORS (JonathanYavner): Rename testcover-*.el to tcover-*.el
5722 to match previous changes by Eli Zaretskii.
5723
5724 2004-02-09 Luc Teirlinck <teirllm@auburn.edu>
5725
5726 * Makefile.in: Set CDPATH to an empty string.
5727
5728 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
5729
5730 * configure.in <darwin>: Use fink packages if available.
5731
5732 2004-01-25 Jérôme Marant <jmarant@free.fr> (tiny change)
5733
5734 * make-dist (lispref): Do include lispref/index.texi.
5735
5736 2004-01-06 Eric Hanchrow <offby1@blarg.net>
5737
5738 * make-dist (tempdir): Include cursors in nt/icons.
5739
5740 2003-12-30 Eli Zaretskii <eliz@gnu.org>
5741
5742 * INSTALL.CVS: Renamed from INSTALL-CVS to avoid file-name
5743 clashes with install-sh on 8+3 filesystems.
5744
5745 2003-12-24 Miles Bader <miles@gnu.org>
5746
5747 * .cvsignore: Add .arch-inventory.
5748
5749 2003-12-24 Andreas Schwab <schwab@suse.de>
5750
5751 * configure.in: Check for <sys/socket.h>. Include it before
5752 including <net/if.h>. Move check for <net/if.h> before its use.
5753
5754 2003-12-24 Jan Djärv <jan.h.d@swipnet.se>
5755
5756 * Makefile.in (install-arch-dep): Don't let cd output go into
5757 pipe for carbon_appdir.
5758
5759 2003-12-24 Andreas Schwab <schwab@suse.de>
5760
5761 * configure.in (PKG_CHECK_MODULES): Fix quoting.
5762
5763 2003-12-01 Andreas Schwab <schwab@suse.de>
5764
5765 * configure.in (powerpc-apple-darwin*): Use ${CC-cc} instead of
5766 hardcoding gcc.
5767
5768 2003-11-16 Jan Djärv <jan.h.d@swipnet.se>
5769
5770 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
5771 multiple displays.
5772 Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
5773
5774 2003-09-23 Dave Love <fx@gnu.org>
5775
5776 * configure.in: Check members of struct ifreq.
5777
5778 2003-09-14 Kim F. Storm <storm@cua.dk>
5779
5780 * configure.in: Add checks for sys/ioctl.h and net/if.h.
5781
5782 2003-09-12 Luc Teirlinck <teirllm@mail.auburn.edu>
5783
5784 * Makefile.in (install-arch-indep, uninstall): Add SES manual.
5785
5786 2003-08-18 Lute Kamstra <lute@gnu.org>
5787
5788 * configure.in: Revert the change of 2003-07-29 as GTK+ 2.2 is not
5789 required anymore.
5790
5791 2003-08-07 Andrew Choi <akochoi@shaw.ca>
5792
5793 * configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
5794 option instead of -traditional-cpp for CPP.
5795
5796 2003-07-29 Richard M. Stallman <rms@gnu.org>
5797
5798 * configure.in (HAVE_XIM): Define if XIM is available.
5799
5800 2003-07-29 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
5801
5802 * configure.in: The function gtk_window_set_icon_from_file was
5803 introduced in GTK+ 2.2, so check for that release.
5804
5805 2003-07-23 Andreas Schwab <schwab@suse.de>
5806
5807 * configure.in: Add --enable-maintainer-mode, substitute MAINT.
5808
5809 * Makefile.in (YACC): Remove, not used.
5810 (MAINT): Don't set.
5811 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
5812 disable dependency on ${srcdir}/configure.in when maintainer mode
5813 is disabled.
5814
5815 2003-07-22 Dave Love <fx@gnu.org>
5816
5817 * configure.in: Make XRegisterIMInstantiateCallback test depend on
5818 HAVE_X11, not with_xim.
5819 (HAVE_CRTIN): Provide template.
5820 <with_png>: Test for png.h and libpng/png.h.
5821
5822 2003-07-15 Andreas Schwab <schwab@suse.de>
5823
5824 * configure.in: Temporarily leave quoting for AC_DEFINE.
5825
5826 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
5827
5828 * configure.in: Check for posix_memalign.
5829
5830 2003-07-12 Richard M. Stallman <rms@gnu.org>
5831
5832 * configure.in [netbsd systems]: Define HAVE_CRTIN properly.
5833
5834 2003-07-09 Kim F. Storm <storm@cua.dk>
5835
5836 * INSTALL (DETAILED BUILDING AND INSTALLATION): Describe new
5837 functionality of --without-xim.
5838
5839 2003-06-29 Dave Love <fx@gnu.org>
5840
5841 * configure.in: Fix XRegisterIMInstantiateCallback check for gcc.
5842
5843 2003-06-23 Dave Love <fx@gnu.org>
5844
5845 * configure.in: Check for sys/_mbstate_t.h.
5846 Test XRegisterIMInstantiateCallback prototype.
5847 (AH_BOTTOM): Define DO_BLOCK_INPUT, my_strftime.
5848
5849 2003-06-06 Dave Love <fx@gnu.org>
5850
5851 * configure.in: Check for locale.h.
5852
5853 2003-06-05 Dave Love <fx@gnu.org>
5854
5855 * configure.in: Check for memcpy, mempcpy, mblen, mbrlen.
5856 Use AC_FUNC_STRFTIME, AC_STRUCT_TIMEZONE, AC_TYPE_MBSTATE_T.
5857 (NLIST_STRUCT): Don't define.
5858 (AH_BOTTOM): Define my_strftime.
5859
5860 2003-06-02 Richard M. Stallman <rms@gnu.org>
5861
5862 * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
5863
5864 2003-05-24 Andreas Schwab <schwab@suse.de>
5865
5866 * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
5867 bzero, and bcmp.
5868
5869 2003-05-22 Dave Love <fx@gnu.org>
5870
5871 * configure.in: Remove redundant test for term.h. Test for difftime.
5872
5873 2003-05-20 Dave Love <fx@gnu.org>
5874
5875 * configure.in: Append * to s390-*-linux-gnu case.
5876 (LIBMAIL) <lockfile>: Don't define.
5877
5878 2003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
5879
5880 * INSTALL (* GNU/Linux development packages): Mention Debian and
5881 RedHat package names.
5882
5883 2003-04-30 Boyd Lynn Gerber <gerberb@zenez.com>
5884
5885 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5886
5887 2003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
5888
5889 * INSTALL (* GNU/Linux development packages): Tell people to
5890 install additional packages for compiling Emacs.
5891
5892 2003-04-30 Richard M. Stallman <rms@gnu.org>
5893
5894 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5895
5896 2003-04-28 Francesco Potortì <pot@gnu.org>
5897
5898 * configure.in: Undo last (RMS') change, as it is useless, per
5899 Dave Love.
5900
5901 2003-04-08 Richard M. Stallman <rms@gnu.org>
5902
5903 * configure.in: Put #include of jpeglib.h at start of line.
5904
5905 2003-04-06 Francesco Potortì <pot@gnu.org>
5906
5907 * configure.in: Use the same configuration for all aix5, not just
5908 aix5.1.
5909
5910 2003-03-16 Nelson H. F. Beebe <beebe@math.utah.edu> (tiny change)
5911
5912 * configure.in: Check for need for bigtoc support on IBM AIX for
5913 solving a linker table overflow problem.
5914
5915 2003-03-03 Rob Browning <rlb@defaultvalue.org>
5916
5917 * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
5918 (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
5919 over bzero, bcmp, and bcopy.
5920
5921 2003-02-23 Simon Josefsson <jas@extundo.com>
5922
5923 * Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
5924
5925 2003-02-21 Klaus Zeitler <kzeitler@lucent.com>
5926
5927 * configure.in: Set new hpux10-20.h as "major" include for 10.20.
5928
5929 2003-02-13 Robert J. Chassell <bob@rattlesnake.com> (tiny change)
5930
5931 * INSTALL (* Extra fonts): Say that Emacs doesn't include fonts.
5932
5933 2003-02-08 Andreas Schwab <schwab@suse.de>
5934
5935 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
5936 instead of the substitution.
5937
5938 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
5939
5940 * Makefile.in: Use @EXEEXT@ for Cygwin.
5941 Use USERNAME if LOGNAME is not set (for Cygwin).
5942
5943 * configure.in: Add opsys=cygwin.
5944
5945 2003-01-22 Andreas Schwab <schwab@suse.de>
5946
5947 * configure.in: Set HAVE_MENUS=yes when HAVE_CARBON=yes instead of
5948 redefining it explicitly in src/config.in.
5949
5950 2003-01-22 Markus Rost <rost@math.ohio-state.edu>
5951
5952 * Makefile.in (bootstrap): Make bootstrap-after.
5953
5954 2003-01-20 Jan Djärv <jan.h.d@swipnet.se>
5955
5956 * configure.in: Fix --with-gtk.
5957
5958 2003-01-19 Jan Djärv <jan.h.d@swipnet.se>
5959
5960 * configure.in: Add --with-gtk, --with-x-toolkit=gtk.
5961
5962 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add text about GTK.
5963
5964 2003-01-14 Francesco Potortì <pot@gnu.org>
5965
5966 * configure.in (m68k-motorola-sysv): Remove (obsolete).
5967
5968 2003-01-07 Steven Tamm <steventamm@mac.com>
5969
5970 * configure.in: New option, --enable-carbon-app, to specify
5971 that the application should be installed
5972 * Makefile.in (install-arch-dep): On Mac OS X, install the
5973 Emacs.app application if carbon-app is enabled.
5974
5975 2003-01-06 Dave Love <fx@gnu.org>
5976
5977 * configure.in: Check for nl_langinfo.
5978 [!HAVE_SIZE_T]: Fix typedef.
5979
5980 2003-01-06 David Kastrup <dak@gnu.org>
5981
5982 * Makefile.in (INSTALL_INFO): Get install-info command from configure.
5983
5984 * configure.in: Add tests for install-info.
5985
5986 2002-12-09 Markus Rost <rost@math.ohio-state.edu>
5987
5988 * configure.in (*-sunos5*, *-solaris*): Revert previous change -
5989 use again sol2-6 instead of sol2-8.
5990
5991 2002-12-09 Dave Love <fx@gnu.org>
5992
5993 * configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
5994
5995 2002-12-08 Andreas Schwab <schwab@suse.de>
5996
5997 * Makefile.in (install-arch-indep): Revert last change.
5998
5999 2002-11-27 Dave Love <fx@gnu.org>
6000
6001 * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST.
6002 Check for __sys_siglist too. Check for memset.
6003 Use AC_FUNC_GETPGRP. Add mipsel-*-linux-gnu* target.
6004
6005 2002-11-22 Juanma Barranquero <lektu@terra.es>
6006
6007 * config.guess, config.sub: Updated from master source.
6008
6009 2002-11-19 Karl Fogel <kfogel@red-bean.com>
6010
6011 * autogen.sh: New file.
6012
6013 2002-11-18 Dave Love <fx@gnu.org>
6014
6015 * configure.in: Tidy up various quoting issues throughout.
6016 Use AC_GNU_SOURCE.
6017 (AH_BOTTOM): Fix #endif protecting config.h. Maybe include
6018 alloca.h. Define GC_SETJMP_WORKS, GC_LISP_OBJECT_ALIGNMENT.
6019 Maybe define bcopy, bzero, bcmp.
6020 (powerpcle-*-solaris2.5*, powerpcle-*-solaris2*): Remove (use
6021 non-existent machine file).
6022 (sys/vlimit.h, sys/resource.h, fsync, __restrict): Test for.
6023 (term.h, X11/Xaw3d/Scrollbar.h): Avoid warning from test.
6024 (nlist.h): Move test up.
6025
6026 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
6027
6028 * configure.in (*-sunos5*, *-solaris*): Use sol2-8.
6029
6030 2002-11-14 Francesco Potortì <pot@gnu.org>
6031
6032 * configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
6033
6034 2002-11-11 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
6035
6036 * Makefile.in (install-arch-indep): Prepend $(srcdir)/ to lisp.
6037
6038 2002-11-08 Dave Love <fx@gnu.org>
6039
6040 * configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf 2.54.
6041 (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
6042
6043 2002-11-07 Miles Bader <miles@gnu.org>
6044
6045 * Makefile.in (maybe_bootstrap): Fix shell variable usage.
6046 Handle separate-build-dir case.
6047
6048 2002-11-06 Richard M. Stallman <rms@gnu.org>
6049
6050 * Makefile.in (maybe_bootstrap): Add doublequotes to make it
6051 bulletproof. $bar may be empty when there are no .elc files.
6052
6053 2002-10-30 Dave Love <fx@gnu.org>
6054
6055 * configure.in: Require autoconf 2.53. Test for pty.h,
6056 sys/mman.h, sys/param.h, mremap, memmove.
6057 (AH_BOTTOM): Maybe include strings.h. Add local variables for mode.
6058 (AC_PROG_YACC): Delete.
6059 (size_t): Use AC_CHECK_TYPES.
6060 (AH_TOP): Up-date copyright.
6061
6062 2002-10-01 Juanma Barranquero <lektu@terra.es>
6063
6064 * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
6065
6066 2002-09-19 Richard M. Stallman <rms@gnu.org>
6067
6068 * configure.in: Fix the LessTif-directory-finder for real.
6069
6070 2002-09-14 Richard M. Stallman <rms@gnu.org>
6071
6072 * Makefile.in (maybe_bootstrap): Test for complete absence
6073 of compiled Lisp files.
6074
6075 2002-09-11 Stefan Monnier <monnier@cs.yale.edu>
6076
6077 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
6078 (bootstrap-clean-after): Delete.
6079 (bootstrap): Make the sequencing explicit.
6080
6081 2002-09-10 Richard M. Stallman <rms@gnu.org>
6082
6083 * configure.in: Fix previous LessTif change.
6084
6085 2002-09-09 Richard M. Stallman <rms@gnu.org>
6086
6087 * configure.in (powerpcle-*-solaris2.5*): New configuration.
6088 (powerpcle-*-solaris*): Use version 2.6 as default.
6089 (*-sunos5.6*, *-solaris2.6*): New alternative.
6090 (*-sunos5*): Use version 2.6 as default.
6091
6092 2002-09-06 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6093
6094 * configure.in: Fix typo.
6095
6096 2002-09-05 Richard M. Stallman <rms@gnu.org>
6097
6098 * configure.in: Look for LessTif in /usr/X11R6/LessTif/ before Motif.
6099
6100 * configure.in: Handle $GCC_LINK_TEST_OPTIONS and
6101 $NON_GCC_LINK_TEST_OPTIONS after the AC_PROG_... macros.
6102
6103 2002-08-26 Kim F. Storm <storm@cua.dk>
6104
6105 * Makefile.in (install-arch-indep): Do not remove DOC file
6106 when it is the only DOC file installed; this is the case when
6107 CANNOT_DUMP is defined. From Joe Buehler (tiny change).
6108
6109 2002-07-24 Markus Rost <rost@math.ohio-state.edu>
6110
6111 * configure.in: Fix typo.
6112
6113 2002-07-24 Richard M. Stallman <rms@gnu.org>
6114
6115 * configure.in: Don't print anything special about gamedir.
6116
6117 * configure.in: Delete nonstandard --with-game-user option.
6118
6119 2002-07-21 Richard M. Stallman <rms@gnu.org>
6120
6121 * Makefile.in (gamedir, localstatedir): New variables.
6122 (epaths-force): Insert value of gamedir into PATH_GAME.
6123
6124 * configure.in (gamedir): Handle it like lispdir.
6125 (--with-game-dir option): Delete.
6126
6127 2002-06-21 Pavel Janík <Pavel@Janik.cz>
6128
6129 * configure.in: Add support for mipseb-*-netbsd* machines.
6130
6131 2002-06-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6132
6133 * Makefile.in (install-arch-indep, uninstall): Add Tramp.
6134
6135 2002-06-17 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6136
6137 * info/dir (File): Add an entry for Tramp.
6138
6139 2002-06-17 Eli Zaretskii <eliz@is.elta.co.il>
6140
6141 * INSTALL-CVS: New file.
6142
6143 2002-06-07 Andreas Schwab <schwab@suse.de>
6144
6145 * configure.in (x86_64-*-linux-gnu*): New system.
6146
6147 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
6148
6149 * config.bat: Handle the case when lispintro is truncated to lispintr.
6150
6151 2002-05-26 Paul Eggert <eggert@twinsun.com>
6152
6153 * config.guess, config.sub: Updated from master source.
6154
6155 2002-05-09 Richard M. Stallman <rms@gnu.org>
6156
6157 * configure.in (emacs_cv_speed_t): Add square brackets for clarity.
6158
6159 2002-05-04 Pavel Janík <Pavel@Janik.cz>
6160
6161 * make-dist: Do not distribute lock/ directory.
6162
6163 2002-04-30 Andrew Choi <akochoi@shaw.ca>
6164
6165 * configure.in: Provide documentation string when defining
6166 variable HAVE_CARBON. Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
6167 and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
6168
6169 2002-04-29 Colin Walters <walters@verbum.org>
6170
6171 * configure.in: Delete configure check for access to the game user.
6172
6173 2002-04-29 Pavel Janík <Pavel@Janik.cz>
6174
6175 * make-dist: lwlib/Imakefile is removed.
6176
6177 2002-04-26 Andrew Choi <akochoi@shaw.ca>
6178
6179 * configure.in: Add support for powerpc-apple-darwin*.
6180 (HAVE_CARBON): Add.
6181
6182 * make-dist: Create directories in mac/Emacs.app.
6183
6184 2002-04-25 Pavel Janík <Pavel@Janik.cz>
6185
6186 * make-dist: lwlib-Xol* are removed.
6187
6188 2002-04-23 Andreas Schwab <schwab@suse.de>
6189
6190 * Makefile.in (MAINT): New variable.
6191 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
6192 instead of configure.in, to avoid running autoconf and autoheader
6193 unless explicitly requested.
6194
6195 2002-04-16 Eli Zaretskii <eliz@gnu.org>
6196
6197 * config.bat: Update for msdos/sed2v2.inp.
6198
6199 2002-04-15 Andreas Schwab <schwab@suse.de>
6200
6201 * Makefile.in ($(srcdir)/src/config.in): Generate using autoheader.
6202 * configure.in: Add config header templates to all AC_DEFINE and
6203 AC_DEFINE_UNQUOTED symbols.
6204 * make-dist: Run autoheader if necessary.
6205
6206 2002-04-10 Colin Walters <walters@verbum.org>
6207
6208 * configure.in: Add --game-dir, --game-user. Test to see if we
6209 can use them.
6210
6211 2002-04-08 Pavel Janík <Pavel@Janik.cz>
6212
6213 * configure.in: Add --with-sound.
6214
6215 2002-03-18 Kim F. Storm <storm@cua.dk>
6216
6217 * configure.in: Test for sendto, recvfrom, getsockopt, setsockopt,
6218 and getsockname functions. Test for sys/un.h include file.
6219
6220 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
6221
6222 * configure.in: Support AIX 5.1.
6223
6224 2002-03-10 Jan Djärv <jan.h.d@swipnet.se>
6225
6226 * configure.in: Added test for X Session Management (HAVE_X_SM).
6227
6228 2002-03-03 Richard M. Stallman <rms@gnu.org>
6229
6230 * Makefile.in (install-arch-indep): Use umask 022 for DOC* and lisp/.
6231 Run chown $${LOGNAME} on files installed by tar xvf.
6232
6233 2002-03-03 Kim F. Storm <storm@cua.dk>
6234
6235 * configure.in: Test for getpeername.
6236
6237 2002-03-01 Richard M. Stallman <rms@gnu.org>
6238
6239 * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b.
6240 (HAVE_GIF): Don't use old libungif versions that crash.
6241
6242 2002-02-26 Richard M. Stallman <rms@gnu.org>
6243
6244 * configure.in <making srcdir absolute>: Verify that PWD is correct,
6245 not just well-formed and valid.
6246 (mips-compaq-nonstopux*): New configuration.
6247
6248 2002-02-18 Paul Eggert <eggert@twinsun.com>
6249
6250 * make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
6251 "sed q" is a portable equivalent to plain "head -1".
6252
6253 2002-02-13 Richard M. Stallman <rms@gnu.org>
6254
6255 * Makefile.in (maybe_bootstrap): Do `exit 1'.
6256 (all): Don't depend on maybe_bootstrap here.
6257 (${SUBDIR}): Depend on it here instead.
6258
6259 2002-02-08 Richard M. Stallman <rms@gnu.org>
6260
6261 * Makefile.in (maybe_bootstrap): Add an infinite sleep-loop.
6262
6263 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
6264
6265 * configure.in: Recognize BSD/OS 5.0.
6266
6267 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
6268
6269 * make-dist: Make version checking in emacs.texi consistent with
6270 how we set it there.
6271
6272 2001-12-29 Kim F. Storm <storm@cua.dk>
6273
6274 * INSTALL: <CONFIGURATION BY HAND> Now requires autoconf 2.51.
6275
6276 2001-12-28 Richard M. Stallman <rms@gnu.org>
6277
6278 * configure.in: Test for mbsinit.
6279
6280 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
6281
6282 These changes make Leim part of the standard distribution:
6283
6284 * README: Add info about the `leim' directory.
6285
6286 * INSTALL: Remove text that describes Leim as a separate package.
6287
6288 * noleim-Makefile.in: File removed.
6289
6290 * make-dist: Don't copy noleim-Makefile.in to the leim subdirectory.
6291 Link Leim files to ${tempdir}/leim, not to real-leim. Don't move
6292 Leim files out of the Emacs tree. Don't prepare a separate tarball
6293 for Leim.
6294
6295 2001-12-11 Richard M. Stallman <rms@gnu.org>
6296
6297 * configure.in (hppa*-*-linux-gnu*): New alternative.
6298
6299 2001-12-08 Pavel Janík <Pavel@Janik.cz>
6300
6301 * make-dist: Copy COPYING to leim/, lwlib/, mac/ and nt/ when
6302 creating distribution.
6303
6304 2001-12-06 Paul Eggert <eggert@twinsun.com>
6305
6306 * configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
6307 (AC_FUNC_VFORK): Remove.
6308 (AC_FUNC_FORK): Add.
6309 (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
6310 this is required by recent Autoconf versions.
6311
6312 2001-12-02 Pavel Janík <Pavel@Janik.cz>
6313
6314 * make-dist: Do not try to link removed files (aclocal.m4, _emacs,
6315 TODO, vms-pp.trans and others).
6316
6317 2001-11-29 Pavel Janík <Pavel@Janik.cz>
6318
6319 * make-dist: Use COPYING from the top-level directory.
6320
6321 2001-11-29 Gerd Moellmann <gerd@gnu.org>
6322
6323 * configure.in: Add support for FreeBSD/Alpha.
6324
6325 2001-11-29 Pavel Janík <Pavel@Janik.cz>
6326
6327 * make-dist: Add COPYING to the top-level directory of the
6328 distribution. Simplify the logic behind copying.
6329
6330 * Makefile.in (maybe_bootstrap): Fix previous change.
6331
6332 2001-11-28 Richard M. Stallman <rms@gnu.org>
6333
6334 * Makefile.in (maybe_bootstrap): Don't bootstrap, just suggest it.
6335
6336 2001-11-26 Richard M. Stallman <rms@gnu.org>
6337
6338 * Makefile.in: bootstrap should not delete dumped executables.
6339 (bootstrap-clean-before): New target.
6340 (bootstrap): Use bootstrap-clean-before instead of clean.
6341 (bootstrap-clean-after): Rename from bootstrap-clean. Calls changed.
6342
6343 2001-11-24 Eli Zaretskii <eliz@is.elta.co.il>
6344
6345 These changes add the Emacs Lisp Introduction manual to the
6346 distribution:
6347
6348 * Makefile.in (install-arch-indep, uninstall): Add ELisp Intro files.
6349
6350 * make-dist: Copy the files in lispintro directory.
6351
6352 * config.bat: Configure in the lispintro directory.
6353
6354 * configure.in (AC_OUTPUT): Add lispintro/Makefile.
6355
6356 * Makefile.in (SUBDIR_MAKEFILES): Add lispintro.
6357 (lispintro/Makefile): New target.
6358 (mostlyclean, clean, distclean, maintainer-clean): Add lispintro.
6359 (unlock, relock, info, dvi): Ditto.
6360
6361 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
6362
6363 * Makefile.in (uninstall, install-arch-indep): Don't install gfdl.1.
6364
6365 * make-dist (etc): Don't distribute gfdl.1.
6366
6367 2001-11-22 Colin Walters <walters@debian.org>
6368
6369 * Makefile.in (install-arch-indep): Install the calc .info files.
6370 (uninstall): Handle deletion of calc .info files (thanks Pavel Janík).
6371
6372 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
6373
6374 * make-dist (lispref): Add *.txt, *.el, permute-index, and
6375 tindex.pl to the list of those being put into the distribution.
6376
6377 2001-11-16 Eli Zaretskii <eliz@gnu.org>
6378
6379 * configure.in: Add coff.h to the list in AC_CHECK_HEADERS.
6380
6381 2001-11-15 Pavel Janík <Pavel@Janik.cz>
6382
6383 * Makefile.in (uninstall): Fix previous change.
6384
6385 * configure.in, Makefile.in: Add support for --program-prefix,
6386 --program-suffix and --program-transform-name options.
6387
6388 2001-11-13 Pavel Janík <Pavel@Janik.cz>
6389
6390 * Makefile.in (install-arch-indep): Use `${manext}' instead of `.1'.
6391 (install-arch-indep): Install emacsclient manual page.
6392 (uninstall): Uninstall emacsclient manual page.
6393
6394 2001-11-12 Eli Zaretskii <eliz@is.elta.co.il>
6395
6396 * make-dist: Add lispref/index.*perm files to the distribution.
6397 From Pavel Janík <Pavel@Janik.cz>.
6398
6399 2001-11-12 Pavel Janík <Pavel@Janik.cz>
6400
6401 * Makefile.in (uninstall): Remove gfdl.1 when uninstalling.
6402
6403 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
6404
6405 * configure.in: AC_OUTPUT lispref/Makefile.
6406
6407 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
6408
6409 The following changes add the ELisp reference manual to the
6410 distribution.
6411
6412 * make-dist: Add the lispref directory to the distribution.
6413
6414 * Makefile.in (install-arch-indep): Add elisp* to the list of
6415 installed Info files.
6416 (SUBDIR_MAKEFILES): Add lispref/Makefile.
6417 (lispref/Makefile): New target.
6418 (mostlyclean, clean, distclean, maintainer-clean, unlock, relock):
6419 Add commands for the lispref directory.
6420 (info, dvi): Ditto.
6421
6422 * config.bat: Configure in `lispref'.
6423
6424 2001-11-09 Richard M. Stallman <rms@gnu.org>
6425
6426 * Makefile.in (bootstrap-lisp): Don't suppress error messages.
6427
6428 2001-11-07 Eli Zaretskii <eliz@is.elta.co.il>
6429
6430 * make-dist (tempdir): Copy AUTHORS as well.
6431
6432 2001-11-06 Sam Steingold <sds@gnu.org>
6433
6434 * configure.in: Added a check for <nlist.h>.
6435
6436 2001-11-01 Pavel Janík <Pavel@Janik.cz>
6437
6438 * configure.in: Reindent --help output.
6439 From Per Starbäck (starback@ling.uu.se).
6440
6441 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
6442
6443 * configure.in: New entry for HP/UX-11.
6444
6445 * Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
6446 From Eric S. Raymond <esr@golux.thyrsus.com>.
6447
6448 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
6449
6450 * configure.in (s390-*-linux-gnu): New system. From Adam Thornton
6451 <athornton@sinenomine.net>.
6452
6453 2001-10-25 Gerd Moellmann <gerd@gnu.org>
6454
6455 * Makefile.in (maybe_bootstrap): New target.
6456 (all): Add to prerequisites to bootstrap if abbrev.elc doesn't exist.
6457
6458 2001-10-24 Ken Raeburn <raeburn@gnu.org>
6459
6460 * configure.in: If --with-hesiod is given, look for
6461 hes_getmailhost and res_send or __res_send; check hesiod and
6462 resolv libraries respectively if system libraries don't supply them.
6463
6464 2001-10-24 Gerd Moellmann <gerd@gnu.org>
6465
6466 * configure.in: Use $MAKE for `make' if set.
6467
6468 2001-10-22 Gerd Moellmann <gerd@gnu.org>
6469
6470 * Makefile.in (install-arch-indep): Add -h (follow symlinks)
6471 to tar options.
6472
6473 2001-10-20 Gerd Moellmann <gerd@gnu.org>
6474
6475 * (Version 21.1 released).
6476
6477 2001-10-20 Miles Bader <miles@gnu.org>
6478
6479 * configure.in (configuration): Set from `host' if `host_alias'
6480 isn't defined.
6481
6482 2001-10-19 Andreas Schwab <schwab@suse.de>
6483
6484 * configure.in: Make ready for autoconf 2.5x.
6485 (AC_PREREQ): Require autoconf 2.50.
6486 * aclocal.m4: Removed.
6487 * Makefile.in (${srcdir}/configure): Don't depend on aclocal.m4.
6488
6489 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
6490
6491 * README: Bump Emacs version to 21.1.50.
6492
6493 2001-10-05 Gerd Moellmann <gerd@gnu.org>
6494
6495 * Branch for 21.1.
6496
6497 2001-09-05 Gerd Moellmann <gerd@gnu.org>
6498
6499 * configure.in: Avoid `$@' which is handled specially in
6500 Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
6501
6502 2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
6503
6504 * make-dist (nt): Add subdirs.el to the list of distributed files.
6505
6506 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
6507
6508 * configure.in (machine): Add an entry for
6509 hppa1.1-hitachi-hiuxwe2*.
6510
6511 2001-05-28 Gerd Moellmann <gerd@gnu.org>
6512
6513 * make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
6514 LC_MESSAGES and LANG. From Karl Eichwalder <keichwa@gmx.net>.
6515
6516 2001-05-14 Gerd Moellmann <gerd@gnu.org>
6517
6518 * make-dist: Copy texinfo.tex unconditionally.
6519
6520 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
6521
6522 * Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
6523 that are installed.
6524
6525 2001-04-06 Gerd Moellmann <gerd@gnu.org>
6526
6527 * make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
6528 Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
6529
6530 * make-dist: Handle leim/MISC-DIC. Only include
6531 `[a-zA-Z]*.{el,elc}' from leim/quail.
6532
6533 2001-04-05 Gerd Moellmann <gerd@gnu.org>
6534
6535 * Makefile.in (install-arch-indep): Remove .cvsignore files.
6536
6537 2001-03-30 Gerd Moellmann <gerd@gnu.org>
6538
6539 * Makefile.in (.PHONY): Add for bootstrap targets.
6540 (bootstrap-clean): New target.
6541 (bootstrap): Use it instead of `clean'.
6542
6543 2001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
6544
6545 * Makefile.in (SUBDIR): Remove leim.
6546 (all, .RECURSIVE, extraclean): Add leim explicitly.
6547 (leim): Provide separate rule which exports PARALLEL=0 into the
6548 environment.
6549
6550 2001-03-20 Gerd Moellmann <gerd@gnu.org>
6551
6552 * configure.in (HAVE_XPM): Don't print the result of the check for
6553 XpmReturnAllocPixels if we don't have an xpm.h.
6554
6555 2001-03-05 Gerd Moellmann <gerd@gnu.org>
6556
6557 * COPYING: New file.
6558
6559 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
6560
6561 * config.bat: Update the copyright.
6562
6563 2001-02-23 Kenichi Handa <handa@etl.go.jp>
6564
6565 * configure.in: Use AC_EGREP_CPP to check if the C preprocessor
6566 converts `..' to `. .'. If it converts, set CPP_NEED_TRADITIONAL
6567 to `yes'. Later in AC_OUTPUT, check this variable.
6568
6569 2001-02-09 Dave Love <fx@gnu.org>
6570
6571 * AUTHORS: Updated.
6572
6573 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
6574
6575 * info/dir (Ebrowse): Fix the entry (was missing a dot).
6576
6577 2001-02-02 Gerd Moellmann <gerd@gnu.org>
6578
6579 * mkinstalldirs (errstatus): Chmod a+rx directories we create.
6580
6581 * Makefile.in (uninstall): Ignore exit code of `rm'.
6582
6583 * Makefile.in (uninstall): Remove more info files. Remove
6584 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
6585
6586 2001-01-31 Gerd Moellmann <gerd@gnu.org>
6587
6588 * noleim-Makefile.in (extraclean): Add.
6589
6590 2001-01-28 Gerd Moellmann <gerd@gnu.org>
6591
6592 * Makefile.in (extraclean): Added -f to -rm config-tmp-* to keep
6593 it quiet.
6594
6595 2001-01-24 Colin Walters <walters@cis.ohio-state.edu>
6596
6597 * Makefile.in (tags): Fix typo.
6598
6599 2001-01-13 Kenichi Handa <handa@etl.go.jp>
6600
6601 * configure.in: Fix typo in the code setting x_search_path.
6602
6603 2001-01-10 Dave Love <fx@gnu.org>
6604
6605 * configure.in: Don't reset LIBS at end of -lXmu test. Test for
6606 -lXext.
6607 (HAVE_XKBGETKEYBOARD): Fix reporting of result.
6608 (HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
6609 (HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
6610 Don't frob CFLAGS. Remove extra X libs from AC_CHECK_LIB
6611 (now in $LIBS).
6612
6613 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
6614
6615 * config.bat: Run the preprocessor with -traditional.
6616
6617 2001-01-01 Eli Zaretskii <eliz@is.elta.co.il>
6618
6619 * INSTALL: Move copying conditions to end of file.
6620
6621 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
6622
6623 * INSTALL: Add basic installation procedure which assumes
6624 `configure' does its job. Elaborate on image support libraries.
6625 Add a pointer to Xaw3d library. Add advice about solving
6626 configure-time problems by looking in config.log and setting
6627 variables in the environment.
6628
6629 2000-12-27 Gerd Moellmann <gerd@gnu.org>
6630
6631 * Makefile.in (install-arch-indep): If tar fails, exit with
6632 exit code 1.
6633
6634 2000-12-19 Gerd Moellmann <gerd@gnu.org>
6635
6636 * configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
6637 source file includes XKBlib.h. On some broken Solaris systems,
6638 there is an XKBlib.h, reportedly, but header files included by
6639 XKBlib.h are missing.
6640
6641 2000-12-14 Gerd Moellmann <gerd@gnu.org>
6642
6643 * configure.in: AC_CHECK_FUNC XkbGetKeyboard.
6644
6645 2000-12-11 Dave Love <fx@gnu.org>
6646
6647 * configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
6648
6649 2000-12-11 Paul Eggert <eggert@twinsun.com>
6650
6651 * aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
6652 Merge fixes from latest GNU tar version. These macros no longer
6653 futz with _XOPEN_SOURCE, as that was not portable in practice.
6654 (AC_FUNC_FSEEKO): New macro.
6655
6656 * configure.in: Use it instead of invoking AC_CHECK_FUNCS on
6657 ftello.
6658
6659 2000-12-05 Dave Love <fx@gnu.org>
6660
6661 * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
6662
6663 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
6664
6665 * info/dir: Change the category to "Emacs".
6666
6667 2000-12-01 Gerd Moellmann <gerd@gnu.org>
6668
6669 * make-dist (tempdir): Remove epaths.h from the distribution
6670 instead of paths.h.
6671
6672 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
6673
6674 * config.bat: Check for existence of djecho.exe, and print an
6675 error message if it is not available.
6676
6677 * INSTALL: Describe possible problem with djecho.exe in old
6678 versions of DJGPP v2.x.
6679
6680 2000-11-23 Gerd Moellmann <gerd@gnu.org>
6681
6682 * configure.in: Initialize HAVE_LIBXP to no.
6683
6684 2000-11-22 Gerd Moellmann <gerd@gnu.org>
6685
6686 * configure.in: Use m/macppc.h instead of the non-existent
6687 m/powerpc.h.
6688
6689 2000-11-21 Gerd Moellmann <gerd@gnu.org>
6690
6691 * Makefile.in (install-arch-indep): Also install info/eshell*
6692 and info/speedbar*.
6693
6694 * configure.in (HAVE_PNG): Check for the presence of
6695 png_get_channels to rule out older PNG libs.
6696
6697 * configure.in (AC_OUTPUT): Arrange to emit definitions of
6698 GCC and NON_GNU_CPP into config.status.
6699
6700 2000-11-20 Dave Love <fx@gnu.org>
6701
6702 * configure.in: Fix last change.
6703
6704 * GETTING.GNU.SOFTWARE: Deleted.
6705 * FTP: New file to replace it.
6706 * make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
6707
6708 2000-11-20 Gerd Moellmann <gerd@gnu.org>
6709
6710 * configure.in: Use -traditional with GNU cpp.
6711
6712 2000-11-17 Gerd Moellmann <gerd@gnu.org>
6713
6714 * make-dist: Handle the Mac port. Distribute all makefile.w32-in.
6715 Distribute more files from the nt/ subdir. Distribute PBM
6716 image files from subdirs of lisp/. Distribute old change logs
6717 from subdirs of lisp/. Distribute play/5x5.el.
6718
6719 2000-11-11 Dave Love <fx@gnu.org>
6720
6721 * config.sub, config.guess: Updated from master source.
6722
6723 2000-11-07 Dave Love <fx@gnu.org>
6724
6725 * configure.in: Test for mkstemp.
6726
6727 2000-11-01 Eli Zaretskii <eliz@is.elta.co.il>
6728
6729 * info/dir (Top): Rearrange menu items more logically, and put
6730 them into a single category. Add menu items for RefTeX and
6731 Widget.
6732
6733 2000-10-29 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6734
6735 * Makefile.in (install-arch-indep): Use --info-dir instead of
6736 --dir-file, and a simple argument instead of --info-file, so that
6737 the Debian version of install-info also works.
6738
6739 2000-10-19 Eric M. Ludlam <zappo@ultranet.com>
6740
6741 * info/dir (Speedbar): Add entry.
6742
6743 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
6744
6745 * INSTALL: Describe the new image-support options to the configure
6746 script. List URLs where image support libraries can be found.
6747
6748 2000-10-14 Eli Zaretskii <eliz@is.elta.co.il>
6749
6750 * info/dir (Top): Add an entry for Eshell.
6751
6752 2000-10-02 Dave Love <fx@gnu.org>
6753
6754 * configure.in: Check for gai_strerror.
6755
6756 2000-10-01 Andreas Schwab <schwab@suse.de>
6757
6758 * Makefile.in (install-arch-indep): Update list of installed info files.
6759
6760 2000-09-30 Gerd Moellmann <gerd@gnu.org>
6761
6762 * configure.in: Support `sparc*-*-netbsd*'.
6763
6764 2000-09-29 Eli Zaretskii <eliz@is.elta.co.il>
6765
6766 * info/dir (MIME): Add entry for emacs-mime.
6767
6768 2000-09-29 Dave Love <fx@gnu.org>
6769
6770 * configure.in: Fix alpha*-dec-osf4 using the osf5 config.
6771
6772 2000-09-26 Gerd Moellmann <gerd@gnu.org>
6773
6774 * make-dist: Adapt to the change of leim/Makefile which was
6775 necessary to ensure a reasonably working `make dist'.
6776
6777 * leim-Makefile.in: Moved to leim/Makefile.in..
6778
6779 * noleim-Makefile.in: New file, formerly leim/Makefile.in.
6780
6781 2000-09-21 Kenichi Handa <handa@etl.go.jp>
6782
6783 * leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
6784 (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
6785 (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
6786 files to .elc.
6787 (${TIT}): Adjusted for the above change.
6788 (clean mostlyclean): Likewise.
6789 (.el.elc): New target.
6790
6791 2000-09-19 Gerd Moellmann <gerd@gnu.org>
6792
6793 * make-dist: Include XPM and XBM files in lisp/ and subdirs
6794 in the distribution.
6795
6796 2000-09-18 Gerd Moellmann <gerd@gnu.org>
6797
6798 * make-dist (skk): Rename to `ja-dic' because the leim directory
6799 was renamed.
6800
6801 2000-09-14 Dave Love <fx@gnu.org>
6802
6803 * configure.in: Fix spurion in last change.
6804
6805 2000-09-14 Gerd Moellmann <gerd@gnu.org>
6806
6807 * configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
6808 configuration files instead of REL_ALLOC_MMAP. Set REL_ALLOC
6809 to `no' if defined. Change result report.
6810
6811 2000-09-08 Dave Love <fx@gnu.org>
6812
6813 * configure.in: Remove spurious `@'s.
6814
6815 * aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
6816 autoconf.
6817
6818 2000-09-06 Gerd Moellmann <gerd@gnu.org>
6819
6820 * configure.in (REL_ALLOC_MMAP): Recognize in system configuration
6821 file and print informational message.
6822
6823 * configure.in (AC_FUNC_MMAP): Add.
6824
6825 2000-09-01 Gerd Moellmann <gerd@gnu.org>
6826
6827 * configure.in: Add ``checking'' messages for
6828 XpmReturnAllocPixels.
6829
6830 2000-08-28 Gerd Moellmann <gerd@gnu.org>
6831
6832 * configure.in: Check <strings.h>; check `index' and `rindex'
6833 functions.
6834
6835 2000-08-26 Kenichi Handa <handa@etl.go.jp>
6836
6837 * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
6838 "case "${canonical}" in".
6839
6840 2000-08-25 Dave Love <fx@gnu.org>
6841
6842 * configure.in <osf>: Use NON_GNU_CPP='cpp' always.
6843
6844 2000-08-25 Kenichi Handa <handa@etl.go.jp>
6845
6846 * leim-Makefile.in: Rename skk to ja-dic throughout the file.
6847
6848 2000-08-24 Gerd Moellmann <gerd@gnu.org>
6849
6850 * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
6851 contains a relative path. Protect against unusable values of $PWD.
6852
6853 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
6854
6855 * info/dir (WoMan): Add entry.
6856
6857 * config.bat (maindir): Update src/_gdbinit even if it does
6858 already exist.
6859
6860 2000-08-07 Gerd Moellmann <gerd@gnu.org>
6861
6862 * Makefile.in (config.status): Prepend `$(srcdir)/' to `configure'.
6863
6864 2000-08-03 Gerd Moellmann <gerd@gnu.org>
6865
6866 * configure.in: Add support for ia64*-*-linux*.
6867
6868 2000-07-27 Gerd Moellmann <gerd@gnu.org>
6869
6870 * make-dist (aclocal.m4): Include in distribution.
6871
6872 2000-07-26 Dave Love <fx@gnu.org>
6873
6874 * configure.in (AC_SYS_LARGEFILE): Moved earlier.
6875
6876 2000-07-24 Dave Love <fx@gnu.org>
6877
6878 * configure.in: Add AC_SIZE_T.
6879
6880 2000-07-18 Dave Love <fx@gnu.org>
6881
6882 * configure.in: Reorder so that most tests are done after CPPFLAGS
6883 is set from the C_SWITCH_... definitions.
6884
6885 2000-07-10 Gerd Moellmann <gerd@gnu.org>
6886
6887 * configure.in (HAVE_XPM): Undo previous change. Check for
6888 preprocessor define XpmReturnAllocPixels.
6889
6890 2000-07-06 Gerd Moellmann <gerd@gnu.org>
6891
6892 * configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
6893 instead of XpmReadFileToPixmap.
6894
6895 2000-07-05 Ken Raeburn <raeburn@gnu.org>
6896
6897 * configure.in: Check for <soundcard.h>. Look for ossaudio
6898 library, and set LIBSOUND accordingly.
6899
6900 2000-07-05 Dave Love <fx@gnu.org>
6901
6902 * configure.in: Use AC_HEADER_SYS_WAIT.
6903
6904 2000-07-05 Gerd Moellmann <gerd@gnu.org>
6905
6906 * make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
6907 lisp/Makefile. Distribute lisp/Makefile.in instead of
6908 lisp/Makefile.
6909
6910 2000-06-30 Ken Raeburn <raeburn@gnu.org>
6911
6912 * configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
6913 while searching for image-handling libraries.
6914
6915 2000-06-26 Gerd Moellmann <gerd@gnu.org>
6916
6917 * configure.in (--with-xim): New option.
6918
6919 2000-06-23 Dave Love <fx@gnu.org>
6920
6921 * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
6922 for struct timezone and test how we can call gettimeofday.
6923 Check for OSF 5+. Check for term.h.
6924
6925 * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
6926 version.
6927
6928 2000-06-23 Gerd Moellmann <gerd@gnu.org>
6929
6930 * configure.in (HAVE_LIBXP): Change test for libXp.
6931
6932 2000-06-21 Dave Love <fx@gnu.org>
6933
6934 * configure.in: Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not
6935 simple test for getloadavg and substitute GETLOADAVG_LIBS.
6936 Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
6937
6938 2000-06-19 Dave Love <fx@gnu.org>
6939
6940 * configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
6941 _XOPEN_SOURCE is defined.
6942
6943 2000-06-16 Gerd Moellmann <gerd@gnu.org>
6944
6945 * Makefile.in (distclean): Also make distclean in lisp/.
6946
6947 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
6948
6949 * config.bat: Generate lisp/Makefile from lisp/Makefile.in.
6950
6951 2000-06-15 Gerd Moellmann <gerd@gnu.org>
6952
6953 * make-dist: Add --help and --snapshot options.
6954
6955 2000-06-14 Gerd Moellmann <gerd@gnu.org>
6956
6957 * configure.in: Generate lisp/Makefile.
6958
6959 * configure.in: Add support for `*-lynxos*'.
6960 Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
6961 recommended by <Karen.Dorhamer@compaq.com> to fix problems
6962 on Tru64 UNIX v5.0.
6963
6964 2000-06-13 Ken Raeburn <raeburn@gnu.org>
6965
6966 * Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
6967 it's on a continuation line.
6968
6969 2000-06-02 Dave Love <fx@gnu.org>
6970
6971 * Makefile.in (install-arch-indep): Add pcl-cvs to list of info
6972 files.
6973
6974 * configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
6975 Check for struct exception. Use AC_SYS_LARGEFILE and move ftello
6976 test.
6977
6978 * aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
6979 (AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
6980
6981 2000-05-26 Gerd Moellmann <gerd@gnu.org>
6982
6983 * configure.in: Add check for speed_t typedef.
6984
6985 2000-05-25 Ken Raeburn <raeburn@gnu.org>
6986
6987 * Makefile.in (install-arch-dep): Install fns-*.el only if it
6988 exists; it won't in the CANNOT_DUMP case.
6989
6990 2000-05-25 Gerd Moellmann <gerd@gnu.org>
6991
6992 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
6993 On FreeBSD, the exit status is 1 if CDPATH is not set.
6994 (install-arch-indep): Install ebrowse.info.
6995
6996 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
6997
6998 * configure.in: Check for grandpt and getpt.
6999
7000 2000-05-09 Dave Love <fx@gnu.org>
7001
7002 * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
7003
7004 2000-05-05 Gerd Moellmann <gerd@gnu.org>
7005
7006 * make-dist: Make a link for lib-src/grep-changelog.
7007 Copy install-sh.
7008
7009 2000-05-01 Eli Zaretskii <eliz@is.elta.co.il>
7010
7011 * config.bat: Identify the beginning of the cpp stuff in
7012 src/Makefile.in and lib-src/Makefile.in more accurately.
7013
7014 2000-04-27 Gerd Moellmann <gerd@gnu.org>
7015
7016 * configure.in: Add support for `powerpc*-*-linux-gnu*'.
7017
7018 2000-04-19 Gerd Moellmann <gerd@gnu.org>
7019
7020 * configure.in: Add support for `powerpc-*-netbsd*'.
7021
7022 2000-04-19 Dave Love <fx@gnu.org>
7023
7024 * configure.in: Don't use AC_FUNC_GETLOADAVG.
7025
7026 * aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
7027
7028 2000-04-16 Dave Love <fx@gnu.org>
7029
7030 * Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
7031
7032 2000-04-14 Dave Love <fx@gnu.org>
7033
7034 * configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
7035
7036 * aclocal.m4 (AC_FUNC_MKTIME): New.
7037
7038 2000-03-28 Ken Raeburn <raeburn@gnu.org>
7039
7040 * configure.in: Line up "--help" output a little better.
7041
7042 2000-03-26 Gerd Moellmann <gerd@gnu.org>
7043
7044 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
7045 New targets.
7046 (bootstrap): Rewritten in terms of the new targets above. Make
7047 info files, too.
7048
7049 2000-03-12 Gerd Moellmann <gerd@gnu.org>
7050
7051 * config.guess, config.sub: Use the versions of the files from
7052 subversions.
7053
7054 2000-03-08 Dave Love <fx@gnu.org>
7055
7056 * configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
7057 AC_C_VOLATILE. Define POINTER_TYPE.
7058
7059 * aclocal.m4: New file.
7060
7061 2000-03-02 Gerd Moellmann <gerd@gnu.org>
7062
7063 * configure.in (machine): Add `mipsel-*-netbsd*' and
7064 `arm-*-netbsd*'.
7065
7066 2000-03-01 Gerd Moellmann <gerd@gnu.org>
7067
7068 * configure.in (machine): Add support for `*-auspex-sunos*'.
7069
7070 2000-02-29 Gerd Moellmann <gerd@gnu.org>
7071
7072 * configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
7073
7074 2000-02-18 Dave Love <fx@gnu.org>
7075
7076 * configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
7077
7078 2000-02-18 Andreas Schwab <schwab@suse.de>
7079
7080 * Makefile.in (install-arch-indep): Add eudc to list of installed
7081 info files.
7082
7083 2000-02-17 Ken Raeburn <raeburn@gnu.org>
7084
7085 * configure.in: Include -lz and -ljpeg (if it's available) when
7086 testing for the tiff library.
7087
7088 2000-02-17 Gerd Moellmann <gerd@gnu.org>
7089
7090 * configure.in: Remove LISP_FLOAT_TYPE.
7091
7092 2000-02-12 Dave Love <fx@gnu.org>
7093
7094 * configure.in: Use AC_FUNC_VFORK.
7095
7096 2000-02-01 Gerd Moellmann <gerd@gnu.org>
7097
7098 * make-dist: Various fixes for new development tree.
7099
7100 * leim-Makefile.in: New file.
7101
7102 2000-01-31 Gerd Moellmann <gerd@gnu.org>
7103
7104 * Makefile.in (dist): Call ./make-dist.
7105
7106 2000-01-24 Dave Love <fx@gnu.org>
7107
7108 * configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
7109
7110 2000-01-18 Gerd Moellmann <gerd@gnu.org>
7111
7112 * configure.in (HAVE_GIF): Check for DGifOpen instead of
7113 DGifOpenFileName.
7114
7115 2000-01-11 Andreas Schwab <schwab@suse.de>
7116
7117 * Makefile.in (install-arch-indep): Update list of info files to
7118 be installed.
7119
7120 2000-01-05 Dave Love <fx@gnu.org>
7121
7122 * configure.in: Check for jerror.h as well as libjpeg.
7123
7124 2000-01-03 Andreas Schwab <schwab@suse.de>
7125
7126 * Makefile.in (install-arch-indep): Install autotype*. Run
7127 install-info on autotype and emacs-faq.info.
7128
7129 1999-12-04 Dave Love <fx@gnu.org>
7130
7131 * Makefile.in (install-arch-indep): Depend on `info'.
7132 (install-strip): Use `install' as sub-make target.
7133
7134 1999-11-23 Ken Raeburn <raeburn@gnu.org>
7135
7136 * configure.in: Restore Kerberos code deleted on 1999-05-29 that
7137 didn't need to be deleted. Check for the k5crypto library as well
7138 as the crypto library; MIT Kerberos 1.1 changed the name.
7139
7140 1999-11-18 Dave Love <fx@gnu.org>
7141
7142 * configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
7143
7144 1999-11-11 Erik Naggum <erik@naggum.no>
7145
7146 * configure.in (bitmapdir): Allow for both "bitmaps" directories.
7147
7148 1999-11-08 Dave Love <fx@gnu.org>
7149
7150 * configure.in: Fix change for --with-pop default.
7151
7152 1999-11-04 Dave Love <fx@gnu.org>
7153
7154 * configure.in: Default to --with-pop. Change sense of with-gcc
7155 and with-toolkit-scroll-bars messages to reflect the defaults.
7156
7157 1999-11-01 Gerd Moellmann <gerd@gnu.org>
7158
7159 * INSTALL: Mention the Emacs Lisp Reference.
7160
7161 1999-10-27 Noah Friedman <friedman@splode.com>
7162
7163 * configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
7164
7165 1999-10-23 Gerd Moellmann <gerd@gnu.org>
7166
7167 * Makefile.in (bootstrap): New target.
7168
7169 1999-10-19 Paul Eggert <eggert@twinsun.com>
7170
7171 Add support for large files. Merge glibc 2.1.2.
7172
7173 * configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
7174 (HAVE_TM_GMTOFF): New symbol.
7175 (AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
7176 mbrlen, strsignal.
7177 (LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
7178
7179 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
7180
7181 * make-dist (dontcompile): Look for the DONTCOMPILE variable rather
7182 than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
7183
7184 1999-10-09 Richard M. Stallman <rms@gnu.org>
7185
7186 * Makefile.in (uninstall, install-arch-indep, install-arch-dep):
7187 Unset CDPATH to prevent cd from generating output.
7188
7189 1999-10-08 Stefan Monnier <monnier@cs.yale.edu>
7190
7191 * update-subdirs: Also ignore CVS subdirs.
7192
7193 1999-10-07 Gerd Moellmann <gerd@gnu.org>
7194
7195 * Makefile.in (install-arch-indep): Add ada-mode.
7196
7197 1999-10-06 Dave Love <fx@gnu.org>
7198
7199 * Makefile.in: Add rules for config.status, configure.
7200
7201 1999-09-07 Gerd Moellmann <gerd@gnu.org>
7202
7203 * configure.in (--with-sound): Removed.
7204
7205 1999-08-30 Gerd Moellmann <gerd@gnu.org>
7206
7207 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
7208 the test for Xaw3d.
7209 (HAVE_TIFF): Add -lm to library check.
7210
7211 1999-08-28 Richard Stallman <rms@gnu.org>
7212
7213 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
7214 -lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
7215 after the other X-related libraries.
7216
7217 1999-08-21 Dave Love <fx@gnu.org>
7218
7219 * configure.in: Don't check for jpeglib.h.
7220
7221 1999-08-20 Gerd Moellmann <gerd@gnu.org>
7222
7223 * configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
7224 (HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
7225
7226 1999-08-18 Dave Love <fx@gnu.org>
7227
7228 * configure.in: Check for termcap.h.
7229
7230 1999-08-15 Gerd Moellmann <gerd@gnu.org>
7231
7232 * configure.in: Add --with-toolkit-scroll-bars. If "no",
7233 use Emacs' scroll bars, even if configured for Motif or when
7234 Xaw3d is available.
7235
7236 1999-08-12 Wolfgang Rupprecht <wolfgang@wsrcc.com>
7237
7238 * configure.in: Check for getaddrinfo.
7239
7240 1999-08-04 Eli Zaretskii <eliz@gnu.org>
7241
7242 * config.bat: Make --no-debug work again by removing -gcoff.
7243
7244 1999-07-30 Dave Love <fx@gnu.org>
7245
7246 * configure.in: Check for stdlib.h.
7247
7248 1999-07-19 Dave Love <fx@gnu.org>
7249
7250 * configure.in: Grok sparc64-*-linux-gnu*.
7251
7252 1999-07-12 Richard Stallman <rms@gnu.org>
7253
7254 * Version 20.4 released.
7255
7256 1999-06-23 Karl Heuer <kwzh@gnu.org>
7257
7258 * make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
7259 Quote $EMACS, in case it's a program with args.
7260
7261 1999-06-15 Gerd Moellmann <gerd@gnu.org>
7262
7263 * configure.in (HAVE_GIF): Use libungif instead of libgif
7264 because the former doesn't contain patented compression code.
7265
7266 1999-05-29 Richard M. Stallman <rms@gnu.org>
7267
7268 * configure.in: Delete the Kerberos stuff.
7269
7270 1999-05-27 Greg Hudson <ghudson@mit.edu>
7271
7272 * configure.in: Prefer kerberos 5 names.
7273
7274 1999-04-26 Richard M. Stallman <rms@gnu.org>
7275
7276 * configure.in: Check for libXp.
7277
7278 1999-04-08 Richard Stallman <rms@gnu.org>
7279
7280 * make-dist: Include change logs in subdirs of `lisp'.
7281
7282 1999-04-05 Richard Stallman <rms@gnu.org>
7283
7284 * Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
7285 (install-arch-indep): Make ${datadir}/emacs world-readable.
7286
7287 1999-03-30 Eli Zaretskii <eliz@gnu.org>
7288
7289 * config.bat: Use epaths.* instead of paths.*.
7290
7291 1999-03-07 Eli Zaretskii <eliz@gnu.org>
7292
7293 * INSTALL: Add detailed instructions to unpack and install
7294 intlfonts on MS-DOS.
7295
7296 1999-02-26 Richard Stallman <rms@gnu.org>
7297
7298 * configure.in: Use epaths.h and epaths-force instead of paths...
7299
7300 * Makefile.in (epaths-force): Renamed from paths-force;
7301 operate on epaths.in and produce epaths.h.
7302
7303 1999-02-24 Richard Stallman <rms@gnu.org>
7304
7305 * make-dist: Fix nt/icons directory handling.
7306
7307 1999-02-22 Simon Josefsson <jas@pdc.kth.se>
7308
7309 * configure.in (f301-fujitsu-uxpv4.1): New target.
7310
7311 1999-02-20 Richard Stallman <rms@gnu.org>
7312
7313 * make-dist (tempparent): Fix command to update info files.
7314
7315 1999-02-09 Richard Stallman <rms@gnu.org>
7316
7317 * configure.in (powerpc-apple-netbsd*): New alternative.
7318
7319 1999-01-25 Geoff Voelker <voelker@cs.washington.edu>
7320
7321 * make-dist: Include the new directory nt/icons in distributions.
7322
7323 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
7324
7325 * configure.in: Change message about HAVE_XFREE386.
7326
7327 1999-01-07 Eli Zaretskii <eliz@gnu.org>
7328
7329 * config.bat: Support configuring with leim.
7330
7331 1998-12-16 Petri Kaurinkoski <Petri.Kaurinkoski@hut.fi>
7332
7333 * configure.in (mips-sgi-irix6.5): New target.
7334
7335 1998-12-16 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7336
7337 * configure.in: Remove GSS-API support, since it has been removed
7338 from movemail.
7339
7340 1998-12-04 Markus Rost <rost@delysid.gnu.org>
7341
7342 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
7343
7344 1998-12-04 Andreas Schwab <schwab@delysid.gnu.org>
7345
7346 * Makefile.in: Don't install customize info file.
7347 Run install-info on viper info file.
7348
7349 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
7350
7351 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
7352
7353 1998-11-16 Kenichi Handa <handa@etl.go.jp>
7354
7355 * configure.in (*-*-bsdi4*): New target.
7356
7357 1998-11-13 Ehud Karni <ehud@unix.simonwiesel.co.il>
7358
7359 * configure.in: Fix previous change.
7360
7361 1998-11-11 Richard Stallman <rms@gnu.org>
7362
7363 * configure.in (aviion-intel): New machine.
7364
7365 1998-11-04 Kenichi Handa <handa@etl.go.jp>
7366
7367 * configure.in (mips-nec-sysv4*): New target.
7368
7369 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
7370
7371 * Makefile.in (install-arch-dep): Fix last change and use fns-*.el
7372 from lisp.
7373
7374 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
7375
7376 * make-dist: Don't include fns*.el in dist.
7377
7378 1998-10-30 Dave Love <fx@gnu.org>
7379
7380 * configure.in: Don't mkdir cpp.
7381
7382 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
7383
7384 * Makefile.in (install-arch-dep): Install src/fns-*.el in
7385 ${archlibdir}.
7386
7387 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
7388
7389 * Version 20.3 released.
7390
7391 1998-07-30 Paul Eggert <eggert@twinsun.com>
7392
7393 * Makefile.in (Makefile, src/Makefile, src/config.stamp)
7394 (lib-src/Makefile, man/Makefile, oldXMenu/Makefile)
7395 (lwlib/Makefile, leim/Makefile):
7396 Prepend $(srcdir)/ to rule dependencies outside this dir.
7397
7398 1998-06-30 Richard Stallman <rms@psilocin.ai.mit.edu>
7399
7400 * configure.in: Use unset CDPATH instead of making it empty.
7401
7402 1998-06-20 Karl Heuer <kwzh@gnu.org>
7403
7404 * configure.in: Assume unspecified Solaris is 2.5, not 2.4.
7405
7406 1998-06-07 Richard Stallman <rms@psilocin.ai.mit.edu>
7407
7408 * make-dist (MANIFEST): Include most subdirs, but exclude subdirs.el
7409 and default.el. Sort the results.
7410
7411 1998-05-31 Karl Heuer <kwzh@gnu.org>
7412
7413 * Makefile.in (install-arch-indep): Don't die if site-lisp/ isn't
7414 writable.
7415
7416 1998-05-14 Richard Stallman <rms@psilocin.ai.mit.edu>
7417
7418 * Makefile.in (install-arch-indep):
7419 Don't alter site-lisp/subdirs.el if it exists.
7420
7421 1998-05-12 Richard Stallman <rms@psilocin.ai.mit.edu>
7422
7423 * Makefile.in (install-arch-indep): Put `-' on commands to create
7424 subdirs.el in site-lisp dirs.
7425
7426 1998-05-07 Richard Stallman <rms@psilocin.gnu.org>
7427
7428 * Makefile.in (install-arch-indep): Fix typo in previous change.
7429
7430 1998-05-06 Richard Stallman <rms@psilocin.gnu.org>
7431
7432 * Makefile.in (install-arch-indep): Pass --dir-file to install-info.
7433
7434 1998-04-28 Richard Stallman <rms@psilocin.gnu.org>
7435
7436 * Makefile.in (mkdir): Create the site-lisp dirs.
7437 (install-arch-indep): Make site-lisp/subdirs files world-readable.
7438
7439 1998-04-26 Richard Stallman <rms@psilocin.gnu.org>
7440
7441 * Makefile.in (INSTALL_INFO): New variable.
7442 (install-arch-indep): Don't replace the dir file if it already exists.
7443 Use the install-info program, via INSTALL_INFO, to add entries.
7444 Make the `info' subdir and the Info files world-readable.
7445
7446 1998-04-16 Eli Zaretskii <eliz@delysid.gnu.org>
7447
7448 * config.bat: Make sure the environment is large enough to support
7449 all the "set foo=bar" commands. Update pointers to DJGPP FTP sites.
7450
7451 1998-04-10 Karl Heuer <kwzh@gnu.org>
7452
7453 * make-dist: Don't accept EMACS=t when testing for $EMACS set.
7454
7455 1998-04-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7456
7457 * configure.in: Add --with-gssapi to specify GSS-API
7458 authentication support for movemail.
7459
7460 1998-04-02 Richard Stallman <rms@psilocin.ai.mit.edu>
7461
7462 * Makefile.in (install-arch-indep): Fix previous change.
7463
7464 1998-03-30 Richard Stallman <rms@psilocin.ai.mit.edu>
7465
7466 * Makefile.in (info): Run man in build dir, not srcdir.
7467
7468 1998-03-28 Richard Stallman <rms@psilocin.ai.mit.edu>
7469
7470 * Makefile.in (install-arch-indep): Fix previous change.
7471
7472 1998-03-23 Kenichi Handa <handa@etl.go.jp>
7473
7474 * Makefile.in (top_distclean): Check the existence of `lock' subdir.
7475
7476 1998-03-22 Richard Stallman <rms@gnu.org>
7477
7478 * Makefile.in (install-arch-indep): Put special subdirs.el files
7479 in site-lisp dirs. Use normal-top-level-add-subdirs-to-load-path.
7480
7481 1998-03-21 Richard Stallman <rms@psilocin.gnu.org>
7482
7483 * make-dist: Fix shell syntax in check for missing .el or .elc files.
7484
7485 1998-03-09 Richard Stallman <rms@psilocin.gnu.org>
7486
7487 * configure.in (hppa-hp-hpux1[0-9]*): Handle versions 1X like 10.
7488 (m68*-hp-hpux*): Handle versions 1X like 10.
7489
7490 1998-03-07 Richard Stallman <rms@psilocin.gnu.org>
7491
7492 * make-dist: PROBLEMS is now in etc, not top level dir.
7493
7494 * Makefile.in (SOURCES): Delete PROBLEMS.
7495
7496 1998-02-25 Richard Stallman <rms@gnu.org>
7497
7498 * configure.in (hppa*-hp-hpux*): Use hpux10 by default.
7499
7500 * Makefile.in (install-arch-indep): Do chmod a+x on subdirs.
7501
7502 1998-01-17 Richard Stallman <rms@gnu.org>
7503
7504 * Makefile.in (install-arch-indep): Add semicolon before `else'.
7505
7506 1998-01-02 Richard Stallman <rms@psilocin.gnu.org>
7507
7508 * make-dist (tempparent): New option --no-check.
7509
7510 * make-dist: Don't do anything with cpp directory.
7511
7512 1997-12-20 Richard Stallman <rms@psilocin.gnu.org>
7513
7514 * configure.in (sparc-fujitsu-sysv4*): New target.
7515
7516 1997-12-17 Andreas Schwab <schwab@gnu.org>
7517
7518 * configure.in: Cache more tests. Add missing quotes around
7519 message with embedded comma.
7520
7521 1997-12-04 Karl Heuer <kwzh@gnu.org>
7522
7523 * Makefile.in (unlock, relock): Don't reference cpp/ directory.
7524
7525 1997-11-26 Joel N. Weber II <devnull@gnu.org>
7526
7527 * make-dist: Changed the comment about `umask 0' to say `Don't
7528 restrict access to any files.'; previously it said `Don't protect
7529 any files', which may have implied that we think fascism is good.
7530
7531 1997-11-24 Paul Eggert <eggert@twinsun.com>
7532
7533 * configure.in (AC_CHECK_FUNCS): Add strftime. The new GNU C library
7534 strftime needs the underlying host's strftime for locale dependent
7535 formats.
7536
7537 1997-11-20 Abraham Nahum <miko@uxsrvc.tti.co.il>
7538
7539 * configure.in (i586-dg-dguxR4.*): New name in case branch.
7540
7541 1997-11-20 Eli Zaretskii <eliz@is.elta.co.il>
7542
7543 * config.bat: Configure the man subdirectory.
7544
7545 1997-11-07 Paul Eggert <eggert@twinsun.com>
7546
7547 * configure.in (AC_CHECK_LIB): Add -lintl.
7548
7549 1997-11-07 Karl Heuer <kwzh@gnu.org>
7550
7551 * make-dist (check for .elc files): Avoid bash-specific syntax.
7552 (check for overflow 14-char limit): Simplify.
7553
7554 1997-11-07 Richard Stallman <rms@gnu.org>
7555
7556 * Makefile.in (install): Move blessmail last.
7557
7558 1997-10-02 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7559
7560 * configure.in (gettimeofday, one arg or two):
7561 Clarify messages by avoiding double negative.
7562
7563 1997-09-30 Karl Eichwalder <ke@suse.de>
7564
7565 * Makefile.in (install-arch-indep): Install the widget info file.
7566
7567 1997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7568
7569 * configure.in (with-pop, with-kerberos): Need to check Kerberos
7570 libraries in reverse order, so that libraries will appear in the
7571 correct dependency order on the link line (and so that the
7572 configure checks themselves will work properly when early
7573 libraries depend on later ones).
7574
7575 1997-09-21 Erik Naggum <erik@naggum.no>
7576
7577 * make-dist (making links to `src'): Keep timestamp on copied files.
7578
7579 * make-delta: New script to produce delta distributions.
7580
7581 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7582
7583 * Version 20.2 released.
7584
7585 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7586
7587 * Version 20.1 released.
7588
7589 * Makefile.in (install-leim): Depend on mkdir.
7590 (leim): Depend on src.
7591
7592 1997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7593
7594 * configure.in: Recognize alpha* instead of just alpha.
7595
7596 1997-09-12 Paul Eggert <eggert@twinsun.com>
7597
7598 * leim-Makefile.in (mostlyclean, maintainer-clean): New targets.
7599
7600 1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7601
7602 * update-subdirs: Use rm -f.
7603
7604 1997-09-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7605
7606 * update-subdirs: Delete subdirs.el if this dir has no subdirs.
7607 Ignore subdirs named Old.
7608
7609 1997-08-04 Kenneth Stailey <kstailey@elbereth.disclosure.com>
7610
7611 * configure.in: Add OpenBSD clause to set $machine.
7612
7613 1997-09-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7614
7615 * make-dist: Recompile everything after updating various Lisp files.
7616 Recompile in leim as well as lisp.
7617 Check in leim as well as lisp for mismatched files and too-long names.
7618
7619 1997-09-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7620
7621 * Makefile.in (TAGS tags): Simply refer this to the src subdir.
7622
7623 1997-08-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7624
7625 * Makefile.in (install-arch-indep): Verify ./lisp has simple.el in it
7626 before trying to copy anything from it.
7627
7628 1997-08-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7629
7630 * Makefile.in (man/Makefile): New target.
7631 (tags): Define env var EMACS and run Makefile from build dir.
7632
7633 1997-08-27 Eli Zaretskii <eliz@psilocin.gnu.ai.mit.edu>
7634
7635 * config.bat: If src/_gdbinit doesn't exist, try using
7636 src/.gdbinit to create it (for building on Windows 95).
7637
7638 1997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7639
7640 * Makefile.in (install-arch-indep):
7641 Discard extra data in tar | tar pipes.
7642
7643 1997-08-24 NIIBE Yutaka <gniibe@mri.co.jp>
7644
7645 * configure.in (x_default_search_path): Corrected
7646 '${x_library}' to '${x_library}/X11'.
7647
7648 1997-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7649
7650 * configure.in (HAVE_MOTIF_2_1): Test for Motif 2.1.
7651
7652 1997-08-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7653
7654 * configure.in: Support auto-configuration of both Kerberos V4 and
7655 Kerberos V5 for movemail, including detection of V4 and V5 header
7656 files and libraries.
7657
7658 1997-08-16 NIIBE Yutaka <gniibe@etl.go.jp>
7659
7660 * configure.in: Compute x_default_search_path
7661 and substitute into makefiles.
7662
7663 * Makefile.in (paths-force): Store PATH_X_DEFAULTS in paths.h.
7664
7665 1997-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7666
7667 * Makefile.in (install-arch-indep): Run list-load-path-shadows.
7668
7669 1997-08-07 Erik Naggum <erik@naggum.no>
7670
7671 * configure.in: Remove lockdir, it is no longer needed.
7672 * Makefile.in (mkdir): Don't create lockdir.
7673 (lockdir): Variable deleted.
7674 (paths-force): Don't operate on PATH_LOCK.
7675
7676 1997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7677
7678 * leim-Makefile.in (clean, distclean): New targets.
7679
7680 * make-dist: Include leim/ChangeLog in leim distribution.
7681
7682 1997-08-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7683
7684 * configure.in (i*86-*-sysv4.2uw*): Set NON_GNU_CPP.
7685
7686 1997-07-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7687
7688 * Makefile.in (CPPFLAGS): Get this from configure, like CFLAGS.
7689
7690 1997-07-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7691
7692 * Makefile.in (LDFLAGS): Get this from configure, like CFLAGS.
7693
7694 1997-07-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7695
7696 * make-dist: Update leim/leim-list.el.
7697 Pass along value of $EMACS when updating lisp dir.
7698
7699 1997-07-25 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7700
7701 * configure.in (doug_lea_malloc): Make __after_morecore_hook a
7702 prerequisite to the use of Doug Lea's malloc.
7703
7704 1997-07-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7705
7706 * Makefile.in (top_distclean): Use -f to delete contents of lock dir.
7707
7708 * make-dist: Use name leim/SKK-DIC, not leim/SKK.
7709
7710 1997-07-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7711
7712 * make-dist: Arrange for the leim tar file to unpack in emacs-M.N/leim.
7713
7714 1997-07-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7715
7716 * configure.in (mips-sony-newsos6*): File news-risc.h renamed
7717 to news-r6.h.
7718
7719 1997-07-10 Eli Zaretskii <eliz@is.elta.co.il>
7720
7721 * config.bat: Use `sed' instead of `cp', which might not be
7722 installed.
7723
7724 1997-07-09 Kenichi Handa <handa@etl.go.jp>
7725
7726 * Makefile.in (mostlyclean): Add cleaning leim directory.
7727 (clean, distclean, maintainer-clean): Likewise.
7728
7729 1997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7730
7731 * make-dist (bogosities): Check subdirs of `lisp' also.
7732
7733 1997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7734
7735 * make-dist (etc): Really avoid symlinks now.
7736 (lisp): Don't delete from subdirs the things we never copy.
7737
7738 1997-07-07 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7739
7740 * Makefile.in (install-arch-indep): Correct the target name.
7741 The first letter `i' was dropped by the previous change of mine.
7742
7743 1997-07-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7744
7745 * configure.in (leim/Makefile): Generate this.
7746 (*-sysv4.2uw*): Recognize new alternative.
7747
7748 * leim-Makefile.in: Renamed from leim-Makefile.
7749
7750 * make-dist: Set up real-leim subdirectory,
7751 with the real contents of leim; then move it to
7752 a separate top-level directory.
7753
7754 * make-dist: Don't mention site-lisp, site-init, site-start
7755 or default, when listing files hat are not compiled and should be.
7756
7757 * configure.in: Create src/config.stamp at the end.
7758
7759 1997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7760
7761 * Makefile.in (install-leim): Correct previous change.
7762
7763 1997-07-02 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7764
7765 * Makefile.in (install-leim): New target.
7766 (install): Depend on install-leim.
7767
7768 1997-07-01 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7769
7770 * Makefile.in (SUBDIR): Add leim.
7771 (SUBDIR_MAKEFILES): Add leim/Makefile.
7772 (leim/Makefile): New target.
7773
7774 1997-07-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7775
7776 * leim-Makefile: New file.
7777 * make-dist: Initialize a `leim' subdirectory with that makefile.
7778
7779 1997-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7780
7781 * configure.in (GNU_MALLOC_reason): Fix message text.
7782
7783 1997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7784
7785 * make-dist (lisp): Don't process subdirs that start with =.
7786 (etc): Copy symlinks, as in src.
7787
7788 1997-06-26 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7789
7790 * configure.in (i*86-*-unixware*): New alternative.
7791
7792 1997-06-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7793
7794 * Makefile.in (src/config.stamp): Target renamed from src/config.h
7795 and touch it explicitly.
7796
7797 * configure.in (mips-sony-newsos6*): New alternative.
7798 (mips-*-linux-gnu*): New alternative.
7799 (*-*-bsdi*): New alternative.
7800 (i*86-*-bsd386, i*86-*-bsdi...): Delete old alternatives.
7801
7802 1997-06-22 Dave Love <d.love@dl.ac.uk>
7803
7804 * Makefile.in (lib-src): Depend on src/config.h (e.g. for movemail.o).
7805 (src/config.h): New target to re-configure if src/config.in is patched.
7806
7807 1997-06-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7808
7809 * configure.in (shutdown): Check for `shutdown' function.
7810
7811 1997-06-18 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7812
7813 * update-subdirs: Include the directory "language" in subdirs.
7814
7815 1997-06-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7816
7817 * configure.in (m88k-dg-dgux4*): New alternative.
7818 (alpha-*-netbsd*): New alternative.
7819 (powerpcle-*-solaris2*): New alternative.
7820
7821 1997-05-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7822
7823 * make-dist: Warn about .el files that are not compiled.
7824
7825 1997-05-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7826
7827 * Makefile.in (dist): Don't run update-subdirs here,
7828 since make-dist now gets that done.
7829
7830 * make-dist: Use the new `updates' target in lisp/Makefile.
7831
7832 * make-dist: Use new non-file targets in lisp/Makefile.
7833
7834 1997-04-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7835
7836 * make-dist: Handle all subdirs of `lisp' uniformly.
7837 Don't handle `term' and `language' specially.
7838 Clear out umask at the beginning.
7839
7840 1997-04-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7841
7842 * make-dist: Use Make to update finder-inf.el and autoloads.
7843 Also update cus-load.el.
7844
7845 1997-04-09 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7846
7847 * configure.in (doug_lea_malloc): First check for SYSTEM_MALLOC,
7848 in case it is desirable to disable the GNU malloc features with glibc.
7849
7850 1997-04-08 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7851
7852 * configure.in (DOUG_LEA_MALLOC):
7853 Define if malloc_{get,set}_state exist.
7854
7855 1997-03-05 Kenichi Handa <handa@etl.go.jp>
7856
7857 * make-dist: Make links for files under lisp/language.
7858
7859 1997-02-20 Kenichi Handa <handa@etl.go.jp>
7860
7861 * update-subdirs: Exclude the directory "language" from subdirs.
7862
7863 1997-01-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
7864
7865 * configure.in: Check for rint and cbrt.
7866
7867 1997-01-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7868
7869 * make-dist: Use $EMACS to say where to run Emacs.
7870 Add --no-update option.
7871
7872 1996-12-30 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7873
7874 * configure.in (hppa1.1-hitachi-hiuxmpp): New configuration.
7875
7876 1996-12-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7877
7878 * make-dist (copying src): Check thoroughly for symlinks
7879 and copy them in all cases. Regularize the linking of *.in
7880 and *.opt and ChangeLog files.
7881 (copying lib-src): Likewise.
7882 Don't rm getdate.c or y.tab.*--they don't exist any more.
7883
7884 1996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
7885
7886 * configure.in: Check for libmail, maillock.h and
7887 touchlock (for movemail).
7888
7889 1996-12-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7890
7891 * configure.in (limits.h): Check for this file.
7892
7893 1996-12-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7894
7895 * configure.in (rs6000-ibm-aix4.2): New alternative.
7896 (rs6000-ibm-aix4.0): New alternative.
7897 (rs6000-ibm-aix4*): Assume aix 4.1 by default.
7898
7899 1996-11-22 Ben Harris <bjh21@cam.ac.uk>
7900
7901 * configure.in: Recognize vax-*-netbsd*.
7902
7903 1996-11-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7904
7905 * configure.in (locallisppath): Add leim directory.
7906
7907 1996-10-31 Eli Zaretskii <eliz@is.elta.co.il>
7908
7909 * config.bat: Make sure `mv' supports forward slashes and -f.
7910
7911 1996-10-28 Christian Limpach <chris@nice.ch>
7912
7913 * configure.in (hppa*-next-nextstep*): * added after hppa
7914 to accept hppa1.0 and hppa1.1.
7915
7916 1996-10-05 Marcus G. Daniels <marcus@coulee.tdb.com>
7917
7918 * configure.in: Provide an empty default for LD_SWITCH_X_SITE_AUX.
7919 * configure.in (ld_switch_machine): Fix typo.
7920
7921 1996-09-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7922
7923 * configure.in: Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
7924 from config.h and use them in $ac_link.
7925
7926 1996-09-28 Erik Naggum <erik@psilocin.gnu.ai.mit.edu>
7927
7928 * configure.in: Create a subdir named `lisp'.
7929
7930 1996-09-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7931
7932 * configure.in: Check for getcwd.
7933
7934 1996-09-04 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7935
7936 * configure.in: Check for termios.h. Check for setpgid.
7937
7938 1996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7939
7940 * configure.in: Check for setrlimit.
7941
7942 1996-08-31 Paul Eggert <eggert@twinsun.com>
7943
7944 * configure.in: Check for sys/systeminfo.h, getdomainname, sysinfo.
7945
7946 1996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7947
7948 * configure.in: Check for utimes.
7949
7950 * configure.in: Check for com_err library, but only
7951 if --with-kerberos was used. Check for krb and des
7952 only if --with-kerberos.
7953
7954 1996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7955
7956 * Makefile.in (INSTALL_STRIP): New variable.
7957 (install-strip): Set INSTALL_STRIP, not INSTALL_PROGRAM.
7958 (install-arch-dep): Use INSTALL_STRIP, and pass it to lib-src.
7959
7960 1996-08-25 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7961
7962 * configure.in: Check for krb and des libraries.
7963
7964 1996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7965
7966 * configure.in (*-sunos4.1.[3-9]*noshare):
7967 Use sunos413, not sunos4-1-3.
7968 (m88k-dg-dgux5.4R3*): Use dgux5-4-3, not dgux5-4r3.
7969 (arm-acorn-riscix1.2*): Use riscix12, not riscix1-2.
7970
7971 1996-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7972
7973 * Makefile.in (src/paths.h): Target deleted.
7974 (paths-force): Delete all dependencies on this target
7975 but don't delete the target.
7976 (install): Depend on `all'.
7977 (paths-force): Don't print a message.
7978
7979 * configure.in: Generate src/paths.h here.
7980
7981 1996-08-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7982
7983 * configure.in (NON_GCC_LINK_TEST_OPTIONS, GCC_LINK_TEST_OPTIONS):
7984 New variables that affect linking only.
7985 (alpha-dec-osf*): Use those instead of previous change.
7986
7987 1996-08-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7988
7989 * Makefile.in (install-arch-indep): Install info/messages.
7990
7991 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7992
7993 * Version 19.33 released.
7994
7995 1996-08-10 Marcus G. Daniels <marcus@sayre.sysc.pdx.edu>
7996
7997 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
7998 Fix previous change.
7999
8000 1996-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8001
8002 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
8003 New alternative.
8004
8005 1996-08-07 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8006
8007 * configure.in (alpha-dec-osf*): Specify GCC_TEST_OPTIONS
8008 and NON_GCC_TEST_OPTIONS.
8009
8010 1996-08-06 Paul Eggert <eggert@twinsun.com>
8011
8012 * configure.in (LOCALTIME_CACHE): Don't put a string literal
8013 "TZ=..." in environ.
8014
8015 1996-08-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8016
8017 * make-dist (msdos): Add is_exec.c, sigaction.c to distribution.
8018
8019 1996-08-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8020
8021 * configure.in (*-sunos4.1.[3-9]*noshare): Move this before
8022 the more general *-sunos4.1.[3-9]* clause.
8023
8024 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8025
8026 * Version 19.32 released.
8027
8028 * configure.in (*-sco3.2v5*):
8029 Set OVERRIDE_CPPFLAG to a string of one space.
8030 Fix the code that uses OVERRIDE_CPPFLAG.
8031
8032 1996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
8033
8034 * configure.in: Undo previous change.
8035
8036 1996-07-16 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8037
8038 * config.sub: Use `pc', not `unknown', when canonicalizing
8039 the vendor for ...86.
8040
8041 1996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
8042
8043 * configure.in: Check for termios.h header.
8044
8045 1996-07-11 Bill Mann <dvmann@dvncr.praxisint.com>
8046
8047 * configure.in: Use s/usg5-4-3.h for ncr-i[3456]86-sysv4.3.
8048
8049 1996-07-07 Karl Heuer <kwzh@gnu.ai.mit.edu>
8050
8051 * configure.in: Split bsdos2 and bsdos2-1.
8052
8053 1996-07-06 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8054
8055 * config.sub: If last two words are not a recognized
8056 KERNEL-OS pair, use just the last word as OS, as in 19.31.
8057 Make conversion of gnu/linux to linux-gnu really work.
8058
8059 * config.sub: If vendor unspecified with i386, use `pc' not `unknown'.
8060
8061 1996-06-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8062
8063 * configure.in (check for using Lucid widgets by default):
8064 Eliminate indentation that confuses some compilers.
8065
8066 1996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8067
8068 * config.sub: Convert linux and gnu/linux to linux-gnu.
8069
8070 * make-dist: Don't update getdate.c.
8071 Ignore =... files when checking for too-long Lisp file names.
8072
8073 1996-06-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8074
8075 * configure.in (euidaccess): Check for that, not for eaccess.
8076
8077 1996-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8078
8079 * configure.in (sunos4.1.[3-9]*noshare): Eliminate dash from
8080 before `noshare'.
8081 (mips-sgi-irix6*): Specify NON_GCC_TEST_OPTIONS.
8082
8083 1996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8084
8085 * configure.in: Rename lignux to linux-gnu in configuration names.
8086 Use gnu-linux as the opsys value (s/ file name).
8087 Allow i686 just like i386, i486, i586.
8088
8089 1996-06-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8090
8091 * configure.in (i*86-*-sco3.2v5): New alternative.
8092 (OVERRIDE_CPPFLAG): New variable.
8093 (CPPFLAGS): If OVERRIDE_CPPFLAG is set, use that.
8094
8095 * configure.in: Specify vpath for .texi files.
8096
8097 1996-06-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8098
8099 * configure.in: Always check for HAVE_X11R5.
8100 Separately decide whether to use a toolkit by default.
8101
8102 1996-06-04 Bill Mann <dvmann@dvhpux1.praxisint.com>
8103
8104 * configure.in: If X11R5 is missing the Xaw headers,
8105 default to --with-x-toolkit=no.
8106
8107 1996-05-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8108
8109 * configure.in (powerpc-*-solaris2*): Use ibmrs6000, not rs6000.
8110
8111 1996-05-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8112
8113 * Makefile.in (install-arch-indep): If cd etc makes output,
8114 don't treat that as part of the tar data.
8115 Check that ./lisp actually exists.
8116
8117 1996-05-29 Karl Heuer <kwzh@gnu.ai.mit.edu>
8118
8119 * make-dist: Check for long file names.
8120
8121 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
8122
8123 * Version 19.31 released.
8124
8125 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
8126
8127 * configure.in: Recognize sparc-*-lignux.
8128
8129 1996-05-03 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
8130
8131 * make-dist: Include nt/inc/arpa and nt/inc/netinet in the dist.
8132 Don't include config.w95.
8133
8134 1996-04-21 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
8135
8136 * make-dist: Replace --no-clean-up and --no-tar options
8137 with --clean-up and --tar, so that the default is useful.
8138
8139 1996-04-15 Eli Zaretskii <eliz@is.elta.co.il>
8140
8141 * config.bat: Make sure the GDB init file is called src/_gdbinit;
8142 if not, tell the user to rename it and abort.
8143
8144 1996-04-14 Eli Zaretskii <eliz@is.elta.co.il>
8145
8146 * config.bat: With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE
8147 test program.
8148
8149 1996-04-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8150
8151 * config.bat (djgpp_ver): Variable renamed from djgpp-ver.
8152
8153 * make-dist (MANIFEST): Fix previous change.
8154 (msdos): Put mainmake.v2 into the dist.
8155
8156 1996-04-10 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
8157
8158 * make-dist: Exit if autoconf fails.
8159
8160 1996-04-10 Eli Zaretskii <eliz@is.elta.co.il>
8161
8162 * config.bat: Set djgpp-ver, and unset it at the end.
8163 Add a number of conditionals for DJGPP version 2.
8164 Rename label libsrc2 to libsrc3.
8165 Substitute for LDFLAGS in src/Makefile.
8166 Substitute for ALL_CFLAGS in lib-src/Makefile.
8167
8168 1996-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8169
8170 * configure.in (ncurses): Check this after checking fns like strerror.
8171
8172 1996-04-08 Erik Naggum <erik@naggum.no>
8173
8174 * make-dist (MANIFEST): Don't include lines from =files.
8175
8176 1996-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8177
8178 * make-dist: Don't put lisp/dired.todo in the dist.
8179
8180 1996-04-05 Richard Stallman <rms@lucy.gnu.ai.mit.edu>
8181
8182 * configure.in (HAVE_NCURSES): Look for library named ncurses.
8183
8184 * configure.in (setlocale): Check for it.
8185
8186 * configure.in (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp.
8187
8188 1996-03-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8189
8190 * configure.in: Use lignux instead of linux as value of opsys.
8191
8192 1996-03-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8193
8194 * Makefile.in (install-strip): Fix whitespace.
8195 Get rid of continuation.
8196
8197 * config.sub: Convert linux or gnu/linux to lignux.
8198
8199 1996-03-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8200
8201 * configure.in: Accept lignux in configuration name.
8202
8203 1996-03-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8204
8205 * Makefile.in (install-strip): New target.
8206
8207 1996-03-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8208
8209 * Makefile.in (top_distclean): Use `|| true' to ignore error in rm.
8210 -f failed to do the job on Suns.
8211
8212 1996-03-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8213
8214 * Makefile.in (install-arch-dep): Don't depend on install-arch-indep.
8215
8216 * configure.in (linux/version.h): Check for this header.
8217
8218 1996-03-12 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
8219
8220 * configure.in: Remove -fno-builtin hackery from -lm check.
8221
8222 1996-03-08 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
8223
8224 * configure.in (-lm check): If $GCC, append -fno-builtin to $CC for
8225 just this test.
8226
8227 * configure.in (AC_PREREQ): Require version 2.8 of Autoconf.
8228
8229 1996-03-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8230
8231 * configure.in: Check for ncurses.
8232
8233 1996-02-28 Paul Eggert <eggert@twinsun.com>
8234
8235 * configure.in (LOCALTIME_CACHE):
8236 Also define if localtime mishandles unsetting TZ.
8237 This works around a localtime bug in mips-dec-ultrix.
8238
8239 1996-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8240
8241 * make-dist (finder-inf.el): Use finder-compile-keywords-make-dist.
8242
8243 * configure.in: Improve messages about X versions.
8244
8245 1996-02-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8246
8247 * configure.in (LOCALTIME_CACHE): Cope if $ac_cv_func_tzset is null.
8248
8249 1996-02-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8250
8251 * configure.in (HAVE_X11XTR6): Set it as a shell variable.
8252 (HAVE_LIBXMU): If HAVE_X11XTR6, use -lSM and -lICE.
8253
8254 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
8255 (install): Put install-arch-indep before install-arch-dep.
8256
8257 1996-02-20 Dave Love <d.love@dl.ac.uk>
8258
8259 * INSTALL: Clarify info about MS-DOS path handling.
8260
8261 1996-02-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8262
8263 * Makefile.in (install-arch-indep): Install info/ccmode*.
8264 In previous change, protect against /bin/pwd returning null string.
8265
8266 1996-02-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8267
8268 * Makefile.in (install-arch-indep): Copy build-dir's lisp subdir
8269 to lispdir.
8270
8271 1996-02-01 Paul Eggert <eggert@twinsun.com>
8272
8273 * configure.in (LD_RUN_PATH): Prepend x_libraries to this envvar.
8274
8275 1996-01-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8276
8277 * configure.in (HAVE_TIMEVAL): Set explicitly to `no' if test fails.
8278
8279 1996-01-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8280
8281 * Makefile.in (extraclean): Use ${top_distclean} to ensure
8282 we delete everything distclean deletes.
8283
8284 1996-01-23 Karl Heuer <kwzh@gnu.ai.mit.edu>
8285
8286 * make-dist (lwlib): Don't distribute lwlib-Xol* files.
8287
8288 1996-01-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8289
8290 * configure.in (HAVE_X11): Merge $LD_SWITCH_X_SITE
8291 into LDFLAGS instead of into LIBS.
8292
8293 1996-01-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8294
8295 * configure.in (HAVE_XMU): Fix typo in previous change.
8296
8297 1996-01-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8298
8299 * configure.in [Solaris]: Don't let $CC make us use /usr/ucb/cc.
8300
8301 1996-01-10 Erik Naggum <erik@naggum.no>
8302
8303 * configure.in (USE_X_TOOLKIT = maybe): Delete redundant `fi'.
8304
8305 1996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
8306
8307 * Makefile.in (install-arch-indep): Ignore error if no chmod -R.
8308
8309 1996-01-10 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8310
8311 * configure.in (HAVE_XMU): Check for libXmu.a only if using toolkit
8312 and use -lXt to link it.
8313
8314 1996-01-08 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8315
8316 * configure.in (locallisppath): Put version-specific dir first.
8317
8318 1996-01-07 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8319
8320 * configure.in (hppa-*-nextstep*): New alternative.
8321 (USE_X_TOOLKIT): By default, set this to "maybe";
8322 and change that later to LUCID or "no" according to X11 version.
8323
8324 * make-dist: Recompile outdated .elc files and update all autoloads.
8325
8326 1996-01-05 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
8327
8328 * configure.in (locallisppath): Fix typo in last change: " -> '.
8329
8330 1996-01-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8331
8332 * configure.in (locallisppath): Add ../emacs/VERSION/site-lisp.
8333
8334 1995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8335
8336 * Makefile.in (install-arch-indep): Give all files read permission.
8337
8338 1995-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8339
8340 * configure.in (hppa*-hp-hpux9shr*, hppa*-hp-hpux9*, hppa*-hp-hpux*):
8341 If it is hpux 9, check for /usr/include/X11R5 and /usr/lib/x11R5.
8342
8343 1995-12-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8344
8345 * configure.in: Determine HAVE_X11R6.
8346 (HAVE_MENUS): Renamed from HAVE_X_MENU.
8347
8348 1995-12-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8349
8350 * configure.in: Just "solaris" now defaults to version 2.4.
8351 Add sunos4.1.n-noshare as alternative.
8352
8353 1995-12-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8354
8355 * configure.in (mips-sgi-irix6*): Set NON_GNU_CPP.
8356
8357 1995-11-29 Erik Naggum <erik@naggum.no>
8358
8359 * Makefile.in (install-arch-indep): Add missing backslash.
8360
8361 1995-11-29 Karl Eichwalder <ke@ke.Central.DE>
8362
8363 * Makefile.in (install-arch-indep): Don't install
8364 lispdir/[Mm]akefile*, lispdir/ChangeLog, lispdir/dired.todo.
8365
8366 1995-11-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8367
8368 * Makefile.in (install-arch-indep): Fix previous change.
8369
8370 * configure.in (mips-sni-sysv*): New alias for mips-siemens-sysv*.
8371
8372 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8373
8374 * Version 19.30 released.
8375
8376 * make-dist (lisp): Exclude subdirs.el.
8377
8378 1995-11-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8379
8380 * make-dist (etc): Delete *.orig and *.rej.
8381
8382 1995-11-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8383
8384 * Makefile.in (install-arch-indep): Rename old info/dir only if exists.
8385
8386 1995-11-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8387
8388 * configure.in (hppa*-hp-hpux10*): Use s/hpux10.h.
8389
8390 1995-11-14 Geoff Voelker <voelker@cs.washington.edu>
8391
8392 * make-dist (nt): Rename install, readme, and todo to
8393 INSTALL, README, and TODO.
8394
8395 1995-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8396
8397 * make-dist (lisp): Don't distribute site-start.
8398
8399 1995-11-06 Karl Heuer <kwzh@gnu.ai.mit.edu>
8400
8401 * make-dist: Break the hard link on alloca.c.
8402
8403 1995-11-04 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8404
8405 * configure.in (LIBS): Add libsrc_libs and keep the old LIBS.
8406
8407 1995-11-02 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8408
8409 * make-dist (src, lib-src): Don't distribute Makefile.c.
8410 (etc/e): Do cleanup in $tempdir/etc/e, not $tempdir/etc.
8411
8412 1995-10-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8413
8414 * Makefile.in (mkdir): Create man1dir, not mandir.
8415 (uninstall): Use man1dir, not mandir.
8416
8417 1995-10-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8418
8419 * Makefile.in (man1dir): New variable.
8420 (install-arch-indep): Use man1dir.
8421
8422 * configure.in (sparc-*-nextstep*): Remove incorrect .h's.
8423
8424 * make-dist: Create lisp/MANIFEST.
8425
8426 1995-10-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
8427
8428 * configure.in (m68k-*-linux*): New alternative.
8429
8430 1995-10-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8431
8432 * make-dist: Use new names config.in, paths.in, and
8433 {src,lib-src}/Makefile.in.
8434
8435 1995-10-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8436
8437 * configure.in: Don't bother checking for drem.
8438
8439 1995-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8440
8441 * Makefile.in (distclean): Delete line with just a tab in it.
8442 (install-arch-indep): Delete spaces that precede tabs.
8443 Delete spurious `fi' left from previous change.
8444 (install): Supply `true' as command, to avoid null command.
8445
8446 1995-10-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8447
8448 * configure.in (--with-x-toolkit)): Add `athen' as alias for `athena'.
8449
8450 1995-09-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8451
8452 * configure.in (powerpc-*-solaris2): New alternative.
8453
8454 1995-09-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
8455
8456 * Makefile.in (src/paths.h, paths-force): Use paths.h.$$ instead
8457 of paths.h.tmp$$, to avoid going beyond 14 characters.
8458
8459 1995-09-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8460
8461 * configure.in: Improve error msg for invalid --with-x-toolkit value.
8462
8463 1995-09-06 Paul Eggert <eggert@twinsun.com>
8464
8465 * configure.in (LOCALTIME_CACHE): Define if tzset exists and
8466 if localtime caches TZ. Check for tzset.
8467
8468 1995-09-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8469
8470 * config.bat: Simplify using new names file names src/makefile.in,
8471 config.in, paths.in. Change Echo commands not to use `.
8472
8473 1995-08-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8474
8475 * Makefile.in (install-arch-indep): Always install the new dir file;
8476 rename the previous dir file to dir.bak or dir.old.
8477
8478 1995-08-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8479
8480 * configure.in (RANLIB): Substitute this into makefiles.
8481 Set it specially on solaris; set it by default on other systems.
8482
8483 * configure.in: Fix previous Alpha change.
8484
8485 1995-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8486
8487 * configure.in (i*386-*-isc4.*): Set GCC_TEST_OPTIONS and
8488 NON_GCC_TEST_OPTIONS.
8489
8490 1995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8491
8492 * configure.in (CFLAGS): When computing CFLAGS and REAL_CFLAGS
8493 from config.h, use SPECIFIED_CFLAGS to get what the user specified.
8494
8495 * configure.in (alpha-*-linux*): New configuration.
8496
8497 1995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8498
8499 * configure.in (m68*-next-*): Use m68k.h and nextstep.h.
8500 (m68k-next-nextstep*): New alias for that.
8501 (i*86-*-nextstep*): Use nextstep.h.
8502 (sparc-*-nextstep*): New configuration.
8503
8504 1995-08-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8505
8506 * configure.in (CPP): Save original CFLAGS value in SPECIFIED_CFLAGS.
8507 And get CFLAGS from config.h if SPECIFIED_CFLAGS is null.
8508
8509 1995-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8510
8511 * configure.in: Handle sunos4shr by sharing; not like sunos4*.
8512 Determine GETTIMEOFDAY_ONE_ARGUMENT by experiment.
8513
8514 1995-07-18 Mike Long <mike.long@analog.com>
8515
8516 * make-dist: Fix update of finder-inf.el, and byte-compile it.
8517
8518 1995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8519
8520 * Makefile.in (src/paths.h, paths-force):
8521 Rename src/paths.h.in to src/paths.in.
8522 (Makefile): Depend on src/Makefile.in, not src/Makefile.in.in.
8523
8524 * configure.in: Rename {src,lib-src}/Makefile.in.in to Makefile.in.
8525 Use Makefile.c for intermediate file.
8526 Rename src/config.h.in to src/config.in.
8527
8528 1995-07-17 Richard Stallman <rms@gnu.ai.mit.edu>
8529
8530 * configure.in (mips-dec-ultrix*): Assume version 4.3.
8531 (mips-dec-ultrix4.[12]): New alternative for old versions.
8532
8533 1995-07-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8534
8535 * make-dist: Don't break intra-tree links.
8536
8537 1995-07-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8538
8539 * configure.in: Put back archlibdir initialization. Require
8540 autoconf 2.4.1 or later.
8541
8542 1995-07-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8543
8544 * configure.in: Use sunos4shr normally for Sunos 4.1.[3-9].
8545 (mips-mips-riscos5*): New alternative.
8546
8547 1995-06-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8548
8549 * Makefile.in (uninstall, install-arch-indep): Install info/ediff*.
8550
8551 1995-06-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8552
8553 * configure.in (bindir, datadir, sharedstatedir, libexecdir)
8554 (mandir, infodir, archlibdir): Initializations deleted.
8555
8556 * configure.in: On hpux9, use hpux9-x11r4.h if we have X11R4.
8557 On hpux9shr, use hpux9shxr4.h.
8558
8559 1995-06-24 Morten Welinder <terra+@cs.cmu.edu>
8560
8561 * configure.in: Added target mips-dec-mach_bsd4.3.
8562 * config.guess: Guess mips-dec-mach_bsd4.3.
8563
8564 1995-06-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8565
8566 * Makefile.in (mkdir): Use symbolic chmod.
8567
8568 1995-06-22 Paul Eggert <eggert@twinsun.com>
8569
8570 * configure.in: Treat SunOS 4.1.4 like SunOS 4.1.3. (Likewise for
8571 SunOS 4.1.5 through 4.1.9, should they ever exist.)
8572
8573 1995-06-22 Paul Eggert <eggert@twinsun.com>
8574
8575 * Makefile.in (SUBDIR_MAKEFILES):
8576 Add man/Makefile, so `make distclean' removes it.
8577 (top_distclean): Add config.log to the list of files to be removed.
8578
8579 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8580
8581 * Version 19.29 released.
8582
8583 1995-06-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8584
8585 * configure.in: Fix the previous change to verify that the -b
8586 option really solves the problem.
8587
8588 * make-dist (nt): Explicitly include makefile.nt and makefile.def only.
8589
8590 1995-06-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8591
8592 * configure.in: Test whether XFree86 needs -b i486-linuxaout to link.
8593
8594 1995-06-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8595
8596 * configure.in: Report more clearly when there is no special
8597 dir to search for X includes or libraries.
8598
8599 1995-06-13 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8600
8601 * configure.in: Check for -lpthreads, not -lpthread.
8602
8603 1995-06-09 Geoff Voelker <voelker@cs.washington.edu>
8604
8605 * make-dist: Copy new files nt/addpm.c and nt/emacs.bat.in.
8606
8607 1995-06-08 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8608
8609 * configure.in: Check for -lpthread.
8610
8611 1995-06-05 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8612
8613 * Makefile.in (install-arch-indep): Install info files for mh-e.
8614 (uninstall): Uninstall info files for dired-x, gnus, mh-e, and sc.
8615
8616 1995-06-01 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8617
8618 * configure.in (*-solaris2.5): New configuration.
8619
8620 * make-dist: Copy new files config.nt and config.w95.
8621
8622 1995-05-30 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8623
8624 * configure.in: Use x_includes, not x_libraries, for -I.
8625 Make bitmapdir a colon-separated list.
8626
8627 1995-05-27 Richard Stallman <rms@gnu.ai.mit.edu>
8628
8629 * configure.in (hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
8630
8631 * configure.in: Allow x_libraries and x_includes to be paths.
8632
8633 1995-05-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8634
8635 * configure.in: Fix typo.
8636
8637 1995-05-24 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8638
8639 * INSTALL: Clarify use of site-init.el.
8640
8641 1995-05-22 enami tsugutomo <enami@sys.ptg.sony.co.jp>
8642
8643 * configure.in: Pass arg to sqrt.
8644
8645 1995-05-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8646
8647 * make-dist: Fix May 6 change.
8648
8649 1995-05-17 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8650
8651 * vpath.sed: Delete reference to ymakefile.
8652
8653 1995-05-09 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8654
8655 * configure.in: Use sqrt (more portable) instead of fmod in -lm check.
8656
8657 1995-05-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8658
8659 * make-dist: Put nt/emacs.ico and nt/emacs.rc in dist.
8660
8661 * update-subdirs: Specify /bin/sh to run the script.
8662
8663 1995-05-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8664
8665 * make-dist: Put src/makefile.nt in dist.
8666
8667 * configure.in (i[345]86-*-bsdi2*): New configuration.
8668 (vax-dec-bsd386*): Deleted.
8669
8670 1995-05-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8671
8672 * configure.in: Make sure CDPATH doesn't mess up PWD check.
8673 Check whether X bitmaps are in X11/bitmaps instead of bitmaps.
8674 Use fmod instead of logb in -lm check.
8675
8676 1995-05-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8677
8678 * configure.in (m68*-apollo-*): Renamed from m68*-apollo*.
8679 Use bsd4-3. Don't set NON_GNU_CPP.
8680
8681 * make-dist: Don't copy in src/s/*.inp. Don't copy nt/src.
8682 In nt, copy various different things, but not *.cmd.
8683 Fix the ln commands for the subdirs of nt.
8684
8685 1995-04-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8686
8687 * configure.in (*-sun-sunos4.1.3*): Use sunos4shr.h.
8688
8689 1995-04-27 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8690
8691 * configure.in (*-sun-sunos4.1.3*): Use shared libraries,
8692 since that's what the header file expects.
8693
8694 1995-04-24 Francesco Potortì (pot@cnuce.cnr.it)
8695
8696 * configure.in (m68k-motorola-sysv*): Distinguish between 68030
8697 and 68040 based machines when choosing options for gnucc.
8698
8699 1995-04-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8700
8701 * Makefile.in (top_distclean): Delete config.cache.
8702
8703 1995-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8704
8705 * Makefile.in (install-arch-indep): Delete .#* when copying subdirs.
8706
8707 * configure.in: Use m/ncr386.h.
8708
8709 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8710
8711 * Makefile.in (install-arch-indep): Undo Sep 23 change.
8712
8713 1995-04-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8714
8715 * make-dist (lib-src): Don't copy *.lex; it doesn't exist anymore.
8716 (man): Don't copy texindex.c and getopt.c; they're deleted.
8717 (etc): Omit `e'; it's a subdirectory.
8718 (etc/e): Use `../..', not `..', to reference top level.
8719
8720 1995-04-06 Simon Leinen <simon@lia.di.epfl.ch>
8721
8722 * Makefile.in (install-arch-indep, dist):
8723 Look for `update-subdir' in $(srcdir).
8724
8725 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8726
8727 * make-dist: Include mkinstalldirs in distribution.
8728
8729 1995-04-05 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8730
8731 * make-dist: Add missing close backquote.
8732
8733 1995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8734
8735 * make-dist: Don't distribute shortnames directory.
8736
8737 1995-03-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8738
8739 * Makefile.in (blessmail): Pass archlibdir to the sub-make.
8740
8741 1995-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8742
8743 * configure.in (m88k-motorola-sysv4*): Use usg5-4-2.
8744
8745 1995-02-23 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8746
8747 * configure.in (EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
8748
8749 1995-02-13 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8750
8751 * configure.in (mips-sgi-irix6): New configuration.
8752
8753 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8754
8755 * Makefile.in (maintainer-clean): Renamed from realclean.
8756
8757 1995-02-02 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8758
8759 * configure.in: Create a .gdbinit that sources the real one,
8760 if using a different build directory.
8761
8762 1995-01-23 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8763
8764 * configure.in: Check for sys/select.h.
8765
8766 1995-01-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8767
8768 * configure.in: On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
8769
8770 1994-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8771
8772 * configure.in: Handle isc 4.1 operating system.
8773
8774 1994-12-10 Richard Stallman <rms@kepa>
8775
8776 * configure.in (rs6000-ibm-aix4.1*): New alternative.
8777 (rs6000-ibm-aix4*): New alternative.
8778
8779 1994-12-06 Richard Stallman <rms@kepa>
8780
8781 * configure.in: For SVR4.2, set NON_GNU_CPP if not already set.
8782
8783 1994-11-30 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8784
8785 * configure.in: Don't try to make directories that are guaranteed
8786 to already exist.
8787
8788 1994-11-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8789
8790 * configure.in: Generate man/Makefile from man/Makefile.in.
8791 Create the man subdir.
8792
8793 * Makefile.in (dvi): Run Make in our man subdir.
8794
8795 * make-dist: Create subdir etc/e.
8796 Make links to it.
8797 Put man/Makefile.in in dist, instead of man/Makefile.
8798
8799 1994-11-21 David J. MacKenzie (djm@mole.gnu.ai.mit.edu)
8800
8801 * configure.in: Add --with-pop, --with-kerberos, and
8802 --with-hesiod for movemail.
8803
8804 1994-11-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8805
8806 * configure.in (m68*-apollo*): Use s/domain.h.
8807
8808 1994-11-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8809
8810 * configure.in (m68*-apollo*): Set NON_GNU_CPP.
8811
8812 1994-11-14 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8813
8814 * configure.in: Don't add -I, -L, -R options for cc if their
8815 arguments would be empty.
8816
8817 1994-11-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8818
8819 * configure.in (i860-intel-osf1*): New alternative.
8820 (mips-sgi-irix5.[01]*): Distinguish from irix5*.
8821 (mips-sgi-irix*): Now an alias for mips-sgi-irix5*.
8822
8823 1994-11-09 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8824
8825 * configure.in: Make h_errno check not use nested functions.
8826
8827 1994-11-09 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8828
8829 * Makefile.in (install-arch-indep): Delete *.orig in copied dirs.
8830
8831 1994-11-08 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
8832
8833 * Makefile.in (install-arch-indep): Avoid continued comment
8834 swallowing target line.
8835
8836 1994-11-08 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
8837
8838 * configure.in: Protect a character class with `changequote'.
8839
8840 1994-11-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8841
8842 * configure.in: Accept `news' as a synonym for `newsos'.
8843
8844 1994-11-03 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8845
8846 * Makefile.in: Don't rm files if cd fails.
8847
8848 1994-11-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8849
8850 * make-dist: Put nt subdir and its subdirs in the dist.
8851 (lib-src): Put makefile.nt in the dist.
8852 (lisp): Put makefile.nt in the dist.
8853
8854 1994-10-29 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8855
8856 * configure.in: Change a stray `[' to `test'.
8857
8858 1994-10-28 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8859
8860 * configure.in: Adapt for Autoconf v2. Use the standard argument
8861 parser, host type canonicalizer, X11 finder, and message
8862 printing macros. Use the new macro names. Use `test' instead of `['.
8863
8864 1994-10-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8865
8866 * configure.in: Check for getpagesize.
8867
8868 1994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8869
8870 * make-dist (msdos): Put sed* in the distribution.
8871
8872 1994-10-17 Morten Welinder <terra@mole.gnu.ai.mit.edu>
8873
8874 * config.bat: New option, `--with-x', for configuring Emacs
8875 for use with the X11 system DesqView/X.
8876 New option, `--no-debug', for compiling Emacs without debug
8877 information thus saving disk space.
8878 (src/config.h, src/paths.h): Use `update' (which is like
8879 `move-if-changed') to change the file.
8880 (src/config.h): When configuring for X11 perform extra changes.
8881 (src/makefile): When configuring for X11 perform extra changes.
8882 (lib-src): Remove temporary files.
8883 (): Check that `sed', `rm', `mv', and `gcc' are available.
8884
8885 1994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8886
8887 * Makefile.in (sharedstatedir): Substitute sharedstatedir properly.
8888
8889 * configure.in (bitmapdirs): Default to /usr/include/X11/bitmaps.
8890
8891 1994-10-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8892
8893 * configure.in (EMACS_CONFIGURATION): Use $canonical as value.
8894
8895 * configure.in (canonical): Substitute var into makefiles.
8896 (bitmapdir): Likewise.
8897
8898 * Makefile.in (bitmapdir): New variable.
8899 (src/paths.h, paths-force): Edit PATH_BITMAPS.
8900
8901 1994-10-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8902
8903 * make-dist: Put update-subdirs and lisp/subdirs.el in the dist.
8904
8905 * Makefile.in (dist, install-arch-indep): Run update-subdirs.
8906 * update-subdirs: New shell script.
8907
8908 1994-10-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8909
8910 * Makefile.in (top_distclean): Don't rm build-install.
8911 (SOURCES): Delete build-install.in.
8912
8913 * make-dist: Don't distribute build-ins.in.
8914 * build-ins.in: File deleted.
8915
8916 1994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
8917
8918 * Makefile.in (mkdir): Use mkinstalldirs instead of make-path.
8919
8920 1994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8921
8922 * Makefile.in: Use libexecdir and sharedstatedir as appropriate.
8923
8924 * configure.in (libexecdir): Renamed from libdir. New default.
8925 (sharedstatedir): Renamed from statedir. New default.
8926 (datadir): New default.
8927
8928 * make-dist: Don't distribute subdirs.el.
8929
8930 1994-10-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8931
8932 * configure.in (eaccess): Check for it.
8933
8934 1994-10-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8935
8936 * configure.in (mktime): Check for it.
8937
8938 1994-10-02 Paul Reilly <pmr@geech.gnu.ai.mit.edu>
8939
8940 * configure.in (motif): Add support for usage and option checking.
8941
8942 1994-09-24 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
8943
8944 * configure.in (utimes): Check for it.
8945
8946 1994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
8947
8948 * Makefile.in (install-arch-indep): Don't do mkdir here.
8949
8950 1994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8951
8952 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8953 riscix.h renamed to acorn.h.
8954
8955 1994-09-21 Michael Ben-Gershon (mybg@cs.huji.ac.il)
8956
8957 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8958 New configurations.
8959
8960 1994-09-21 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8961
8962 * configure.in: Remove trailing slashes from srcdir.
8963
8964 1994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8965
8966 * configure.in (i[345]86-sequent-ptx*): Handle.
8967
8968 1994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8969
8970 * Makefile.in (paths-force): Depend on src/paths.h.
8971
8972 1994-09-19 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8973
8974 * configure.in (config_options): Save all arguments, not just some.
8975
8976 1994-09-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8977
8978 * Makefile.in (install-arch-indep): Copy DOC-*, not DOC*.
8979
8980 * configure.in: Add AC_AIX.
8981 Add checks to set HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL, HAVE_SELECT.
8982
8983 1994-09-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8984
8985 * configure.in (parsing options): Simplify sed command to delete -'s.
8986
8987 1994-09-16 Karl Heuer <kwzh@churchy.gnu.ai.mit.edu>
8988
8989 * configure.in (config_options): New shell variable.
8990 Pass its value to C code in EMACS_CONFIG_OPTIONS.
8991
8992 1994-09-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8993
8994 * configure.in (alpha-dec-osf*): New target.
8995
8996 * Makefile.in: Use just one FRC target.
8997
8998 1994-09-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8999
9000 * Makefile.in (removenullpaths, paths-force):
9001 Use name paths.h.tmp$$, which depends on the pid.
9002
9003 1994-09-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9004
9005 * Makefile.in (removenullpaths, paths-force):
9006 Put paths.h.tmp in top-level dir, not in src.
9007
9008 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9009
9010 * Version 19.27 released.
9011
9012 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9013
9014 * Version 19.26 released.
9015
9016 1994-09-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9017
9018 * configure.in: Check for lrand48, not rand48.
9019
9020 1994-09-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9021
9022 * configure.in (powerpc-ibm-aix3.1*, powerpc-ibm-aix3.2.5)
9023 (powerpc-ibm-aix*): New aliases.
9024
9025 1994-08-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9026
9027 * make-dist (src/m, src/s): Put *.inp in distribution.
9028
9029 1994-08-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9030
9031 * configure.in: Accept i586 and i486 along with i386.
9032
9033 1994-08-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9034
9035 * configure.in: Do compute unexec, LIBX, system_malloc, etc
9036 even if CPP env var was set by the user.
9037
9038 * configure.in (i[34]86-*-*): For SCO 3.2v4, fix NON_GNU_CPP value.
9039
9040 1994-08-14 Jonathan I. Kamens (jik@gza-client1.aktis.com)
9041
9042 * Makefile.in: Uninstall "$(EMACS)", not "emacs".
9043
9044 1994-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9045
9046 * configure.in (i[34]86-*-*): For SCO 3.2v4, set NON_GNU_CPP.
9047
9048 1994-08-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9049
9050 * configure.in: Check more specifically for i*86-sun-sunos.
9051
9052 1994-08-03 Caveh Jalali (caveh@eng.sun.com)
9053
9054 * configure.in: Handle solaris 2.4.
9055
9056 1994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9057
9058 * configure.in (rand48): Check for it.
9059
9060 1994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9061
9062 * make-dist: Update the info files.
9063
9064 1994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9065
9066 * configure.in: Make "checking..." messages' style consistent.
9067 (HAVE_H_ERRNO): New test.
9068
9069 1994-07-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9070
9071 * configure.in (i860-*-sysv4*): Set NON_GNU_CC and NON_GNU_CPP.
9072
9073 1994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9074
9075 * configure.in (CFLAGS): If the envvar was specified, use that.
9076 And set REAL_CFLAGS from it too.
9077
9078 1994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9079
9080 * make-dist: Update finder-inf.el.
9081
9082 1994-07-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9083
9084 * make-dist (msdos): Include sed4.inp in dist.
9085
9086 * Makefile.in (libsrc_libs): Var deleted.
9087
9088 1994-07-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9089
9090 * Makefile.in (mkdir, removenullpaths): Put g in sed replace commands.
9091
9092 1994-06-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9093
9094 * configure.in (mips-sony-newsos4*): New alias.
9095
9096 1994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9097
9098 * configure.in (*-convex-bsd*): Set NON_GNU_CPP.
9099 (*-convex-convexos*): Accept this as alias.
9100
9101 1994-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9102
9103 * configure.in: Get CFLAGS both with and without THIS_IS_CONFIGURE,
9104 for two different uses.
9105
9106 1994-06-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9107
9108 * configure.in: Define THIS_IS_CONFIGURE when extracting CFLAGS etc.
9109
9110 1994-06-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9111
9112 * make-dist: Put ./BUGS into the distrib.
9113
9114 1994-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9115
9116 * configure.in: Handle 386 running Solaris 2.
9117
9118 1994-06-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9119
9120 * configure.in (mips-siemens-sysv*): Use cpp, not cc -E.
9121
9122 1994-06-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9123
9124 * configure.in (mips-sony-newsos*): Use news-risc.h.
9125
9126 * configure.in: Accept bsdi as opsys, like bsd386.
9127
9128 1994-06-01 Morten Welinder (terra@diku.dk)
9129
9130 * config.bat (src/paths.h): Use sed script msdos/sed4.inp.
9131
9132 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9133
9134 * Version 19.25 released.
9135
9136 * make-dist (shortversion): Don't assume another period follows.
9137
9138 1994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9139
9140 * Makefile.in (install-arch-indep): Use /bin/pwd uniformly, not pwd.
9141 (uninstall): Use /bin/pwd.
9142
9143 * Makefile.in (blessmail): Depend on src.
9144 (all): Don't depend on blessmail.
9145
9146 * Makefile.in (src/paths.h): Don't force recomputation.
9147 (paths-force): New target; force recomputation of paths.h.
9148 (all): Depend on paths-force.
9149 (src, lib-src): Depend on src/paths.h.
9150
9151 * configure.in (*-sun-sunos4*): Set GCC_TEST_OPTIONS,
9152 NON_GCC_TEST_OPTIONS.
9153
9154 1994-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9155
9156 * configure.in: Don't insist on subversions for irix.
9157
9158 1994-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9159
9160 * configure.in (hppa*-hp-hpux9shr): Move alternative up.
9161
9162 * configure.in (i[34]86-next-*): New alternative.
9163
9164 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9165
9166 * Version 19.24 released.
9167
9168 * configure.in: New config hppa*-hp-hpux9shr*.
9169
9170 1994-05-22 Morten Welinder (terra@tyr.diku.dk)
9171
9172 * config.bat: Doc fix.
9173
9174 1994-05-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9175
9176 * Makefile.in (mostlyclean, clean, distclean, realclean)
9177 (extraclean): Don't act on man subdir if it doesn't exist.
9178
9179 1994-05-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9180
9181 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS): New vars.
9182 Use them to set up CC.
9183 (*-sun-sunos4.1.3): Set them.
9184
9185 1994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9186
9187 * Makefile.in (lib-src): Don't depend on src/paths.h.
9188
9189 1994-05-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9190
9191 * build-ins.in (copydests): Get rid of spurious `-'s.
9192
9193 * configure.in: Define EMACS_CONFIGURATION instead of CONFIGURATION.
9194
9195 1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9196
9197 * Version 19.23 released.
9198
9199 * configure.in [HAVE_X11]: Merge $C_SWITCH_X_SITE into CFLAGS
9200 for the Xlib and Xt checks; then restore old CFLAGS.
9201
9202 1994-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9203
9204 * configure.in (HAVE_X11XTR6): Add newline before #if.
9205 Add newline after #endif.
9206
9207 1994-05-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9208
9209 * configure.in (HAVE_X11XTR6): Arrange to define it.
9210
9211 1994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9212
9213 * Makefile.in (install): Depend on blessmail.
9214
9215 1994-05-12 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
9216
9217 * configure.in (mips-siemens-sysv*): Put quotes around value
9218 containing blanks.
9219
9220 1994-05-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9221
9222 * Makefile.in (TAGS): Use the makefile in src subdir.
9223
9224 1994-05-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9225
9226 * configure.in (opsys): Recognize `gnu'.
9227
9228 1994-05-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9229
9230 * configure.in (using NON_GNU_CPP): Fix test for CPP already set.
9231
9232 1994-05-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
9233
9234 * configure.in: Remove AC_LANG_C call. Not needed with Autoconf
9235 version > 1.8.
9236
9237 1994-05-08 Morten Welinder (terra@diku.dk)
9238
9239 * config.bat: Forcibly remove "# " style comments from makefiles.
9240
9241 1994-05-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9242
9243 * Makefile.in (uninstall): When processing lispdir and etcdir,
9244 do nothing unless it exists and is a directory.
9245
9246 1994-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9247
9248 * Makefile.in (install-arch-indep): Do install info/dired-x*.
9249 Merge code in from install-doc.
9250 (install-doc): Merge code back into install-arch-indep.
9251 (install-arch-dep): Don't depend on install-doc.
9252
9253 * configure.in (run_in_place): Don't use pwd for archlibdir and docdir.
9254
9255 1994-05-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9256
9257 * configure.in (making src/Makefile and lib-src/Makefile):
9258 Split off the autoconf substitutions and don't pass them thru cpp.
9259 (undefs): Use $canonical as well as $configuration.
9260
9261 * make-dist: Distribute lisp/Makefile.
9262
9263 * configure.in: Recognize m88k-dg-dgux5.4.3* and m88k-dg-dgux5.4.2*.
9264 Use lower case names for the s files.
9265
9266 1994-05-03 Morten Welinder (terra@diku.dk)
9267
9268 * config.bat: Added possibility for different file name
9269 transcriptions in lib-src.
9270
9271 1994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9272
9273 * Makefile.in (lib-src): Undo previous change.
9274 (blessmail): New target to run maybe-blessmail in lib-src.
9275 (all): Depend on blessmail.
9276
9277 * Makefile.in (lib-src): Depend on src.
9278
9279 1994-04-30 Paul Reilly (pmr@churchy.gnu.ai.mit.edu)
9280
9281 * configure.in (m88k-dg-dgux5.4R3): Use dgux5-4R3.
9282 (m88k-dg-dgux5.4R2): dgux5.4R2.
9283
9284 1994-04-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9285
9286 * configure.in (window_system): Restore accidentally deleted code
9287 that uses AC_FIND_X.
9288
9289 * make-dist: Distribute config.bat.
9290
9291 1994-04-29 Morten Welinder (terra@diku.dk)
9292
9293 * config.bat: Corrected the configuration of lib-src
9294 to keep up with configure. Add note about dos version 3
9295 or better needed (djgpp needs that). Add note explaining
9296 that either install in c:/emacs or edit the script.
9297 Don't change to c:/emacs, but assume we're there (to minimize
9298 the number of places to change).
9299
9300 * config.bat: Build-in the first step towards X11 support with
9301 the X11 emulator that exists. At this time it won't work,
9302 and several files are missing.
9303
9304 1994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9305
9306 * configure.in: Use m/hp800.h in place of m/hp9000s800.h.
9307 Don't look for -lresolv.
9308
9309 * Makefile.in (lib-src): Depend on src/paths.h.
9310
9311 1994-04-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9312
9313 * configure.in: Restore deleted AC_SUBST of `configuration'.
9314 Improve error message for bad --with-x-toolkit value.
9315
9316 * configure.in: Define CONFIGURATION in src/config.h
9317 rather than substituting in src/Makefile.in.
9318
9319 1994-04-26 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9320
9321 * Makefile.in (install-doc): New target.
9322 (install-arch-dep): Depend on install-doc.
9323 (mkdir): Create docdir.
9324
9325 1994-04-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9326
9327 * configure.in: Test for libresolv.a.
9328 Substitute machfile and opsysfile.
9329
9330 1994-04-22 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9331
9332 * Makefile.in (.PHONY, install): Kill reference to obsolete do-install.
9333 (install-arch-dep): Install under the name $(EMACS).
9334
9335 1994-04-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9336
9337 * configure.in (version): Use entire value of emacs-version.
9338 (mips-siemens-sysv*): New alternative.
9339
9340 1994-04-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9341
9342 * Makefile.in (install-arch-indep): Don't install dired-x*.
9343
9344 1994-04-18 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9345
9346 * configure.in (src/Makefile, lib-src/Makefile): Delete ^L.
9347 Fix definition of $undefs.
9348
9349 1994-04-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9350
9351 * configure.in (window_system): Obey --with-x11=no and --with-x10=no.
9352
9353 * configure.in (lib-src/Makefile.in): Use src, not lib-src, in -I.
9354
9355 1994-04-16 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
9356
9357 * configure.in: Call AC_LANG_C, if it's defined, after AC_PREPARE.
9358
9359 1994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9360
9361 * configure.in (lib-src/Makefile.in): Make this from Makefile.in.in
9362 and run it thru cpp, as with src/Makefile.in.
9363
9364 * configure.in: Use AC_SET_MAKE.
9365
9366 1994-04-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9367
9368 * configure.in (i[34]86-ncr-sysv*): Use usg5-4-2.
9369
9370 1994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9371
9372 * Makefile.in (MAKE): Don't just assign it--use @SET_MAKE@.
9373
9374 * configure.in (CFLAGS): Exclude ${CFLAGS} from singlequotes.
9375 (printing the choices): Make the toolkit message unconditional.
9376 (USE_X_TOOLKIT): Use `none', not `no', if none.
9377 (include libsrc_libs): Include config.h, and specify -I for srcdir.
9378 Get rid of temp file foofoo1.
9379
9380 1994-04-13 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9381
9382 * configure.in (CFLAGS): Use shell syntax, not Makefile.
9383
9384 1994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9385
9386 * configure.in (window_system): If no X, set USE_X_TOOLKIT=no.
9387 (printing the choices): State choice of toolkit.
9388 (libsrc_libs): Recalculate after writing config.h;
9389 then update lib-src/Makefile.
9390
9391 1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9392
9393 * configure.in: Add sunos4shr as alternative for suns.
9394 Conditionals testing for null $CC were backwards.
9395
9396 1994-04-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9397
9398 * make-dist (msdos): Don't link patch1. Link sed*.inp, not sed.in*.
9399
9400 1994-04-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9401
9402 * configure.in: Handle -isc4.0*.
9403
9404 1994-03-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9405
9406 * configure.in (esix5): Set NON_GNU_CPP.
9407
9408 1994-03-24 Roland McGrath (roland@mole.gnu.ai.mit.edu)
9409
9410 * Makefile.in (thisdir): Nonsensical variable removed.
9411 (install-arch-indep): Set shell var thisdir=`pwd` before cd and cd
9412 back to $thisdir, rather than the directory `this_dir'.
9413
9414 1994-03-17 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9415
9416 * Makefile.in (install-arch-indep): Add missing backslash after a
9417 `then'.
9418
9419 1994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9420
9421 * Makefile.in (thisdir): New variable.
9422 (install-arch-indep): Go back to thisdir to run INSTALL_DATA.
9423
9424 1994-03-08 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9425
9426 * configure.in: Add freebsd.
9427
9428 1994-03-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9429
9430 * configure.in: Check for fpathconf.
9431
9432 1994-03-02 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9433
9434 * configure.in (with_x_toolkit): Fix typo in previous change.
9435
9436 1994-03-01 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9437
9438 * configure.in: New s-file for rs60000-ibm-aix3.2.5.
9439
9440 1994-02-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9441
9442 * configure.in (with_x_toolkit): Don't allow motif or open-look.
9443
9444 1994-02-24 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9445
9446 * configure.in: Fix value of docdir.
9447 * Makefile.in (install-arch-indep): Install DOC* in docdir.
9448
9449 1994-02-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9450
9451 * configure.in (*-sysv4.1): Set NON_GNU_CPP.
9452
9453 1994-02-22 Karl Heuer (kwzh@geech.gnu.ai.mit.edu)
9454
9455 * configure.in: New variable docdir to control where the docstring
9456 file goes.
9457 Makefile.in: Use it to initialize PATH_DOC in paths.h.
9458
9459 1994-02-22 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9460
9461 * configure.in: When --run-in-place, don't inherit archlibdir.
9462
9463 1994-02-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9464
9465 * Makefile.in (install-arch-dep, install-arch-indep):
9466 New targets split up former do-install rule.
9467 (do-install): Target deleted.
9468
9469 1994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9470
9471 * configure.in (mips-sony-newsos*): New configuration.
9472
9473 1994-02-14 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
9474
9475 * configure.in (rs6000-bull-bosx*): Added support for BULL dpx20.
9476
9477 1994-02-11 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9478
9479 * configure.in: Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
9480
9481 1994-02-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9482
9483 * configure.in: Don't initialize CC.
9484
9485 1994-02-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9486
9487 * configure.in (creating src/Makefile): Also generate -U switches
9488 for symbols in the $configuration value.
9489
9490 * configure.in: Check for sys_siglist being declared in system header.
9491
9492 1994-02-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9493
9494 * configure.in (creating src/Makefile): Delete blank lines
9495 along with lines of whitespace.
9496 (m68k-motorola-sysv*, m68000-motorola-sysv*): Compute proper CC value.
9497
9498 1994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9499
9500 * configure.in: Get, use, and substitute C_SWITCH_MACHINE
9501 like C_SWITCH_SYSTEM.
9502 (m68*-motorola-sysv*): Set CC. Require cpu type to be m68k or m68000.
9503
9504 1994-02-04 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9505
9506 * configure.in (drem): Check for this function.
9507
9508 1994-02-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9509
9510 * configure.in (Using NON_GNU_CPP): Don't lose if it has spaces.
9511 If CPP was inherited from environment, don't use NON_GNU_CPP.
9512 (NON_GNU_CC): Likewise.
9513 (handling with_gcc): Use explicit if in the `no' case.
9514 (cc_specified): New variable; if set, don't use NON_GNU_CC.
9515
9516 1994-02-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9517
9518 * configure.in (mips-mips-riscos4*): Set NON_GNU_CPP.
9519
9520 1994-02-01 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9521
9522 * configure.in: Check whether fmod exists.
9523
9524 1994-01-31 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9525
9526 * make-dist: Distribute {src,lisp}/ChangeLog.? instead of
9527 {src,lisp}/OChangeLog.
9528
9529 1994-01-22 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9530
9531 * configure.in: Restore Jan 8 and Jan 16 changes. The -U hack is
9532 necessary for proper operation. This code works with the current
9533 released version of Autoconf.
9534
9535 1994-01-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9536
9537 * configure.in (with_x_toolkit): Treat values athena and lucid alike.
9538 (USE_X_TOOLKIT): Define it for all values except `no'.
9539
9540 * configure.in: Undo first Jan 8 change and Jan 16 change.
9541
9542 1994-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9543
9544 * configure.in: Handle --with-x-toolkit. Produce lwlib/Makefile.
9545 Substitute USE_X_TOOLKIT as both C macro and Make variable.
9546
9547 * Makefile.in (lwlib/Makefile): New target.
9548 (SUBDIR_MAKEFILES): Depend on lwlib/Makefile.
9549 (clean, mostlyclean, distclean, realclean): Handle lwlib subdir.
9550 (unlock, relock): Handle lwlib subdir.
9551
9552 * Makefile.in: Add some .PHONY targets.
9553
9554 * make-dist: Handle lwlib subdir like oldXMenu subdir.
9555
9556 * lwlib: New subdirectory.
9557
9558 1994-01-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9559
9560 * configure.in: If CPP has a value that is a directory,
9561 discard the value.
9562
9563 1994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9564
9565 * configure.in (srcdir_undefs): Add g flag to sed substitution to
9566 remove -U[0-9]*.
9567
9568 1994-01-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9569
9570 * Makefile.in (do-install): Install the dired-x info files.
9571
9572 * configure.in: Provide for variable LD_SWITCH_X_SITE_AUX.
9573 (See src/s/sol2.h.)
9574
9575 1994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9576
9577 * configure.in (m68k-harris-cxux*, m88k-harris-cxux*): New configs.
9578
9579 1994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9580
9581 * configure.in (creating src/Makefile): Put code inside 2nd arg to
9582 AC_OUTPUT as it should be; hopefully no one will again see fit to
9583 gratuitously break this and not make a change log entry.
9584 Optimized sed processing of Makefile.in and cpp output; now
9585 preserves comments previously removed from the cpp input.
9586 Eliminated temp file for cpp output. Generate -U switches to
9587 undefine all identifiers that appear in the directory name
9588 ${srcdir}; pass these to cpp.
9589
9590 * configure.in (version): Fix sed regexp to match two-elt version
9591 number.
9592
9593 * configure.in: Check for strerror.
9594
9595 1994-01-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9596
9597 * configure.in: Test for bcmp.
9598
9599 1994-01-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9600
9601 * make-dist (tempdir): Put subdir msdos into the distribution.
9602
9603 1993-01-07 Morten Welinder (terra@diku.dk)
9604
9605 * config.bat: New file.
9606
9607 1994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9608
9609 * Makefile.in (${SUBDIR} target): Pass down LDFLAGS and CPPFLAGS.
9610
9611 1994-01-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9612
9613 * configure.in (m68*-next-*): Don't care about which os is specified.
9614 (i[34]86-*-*): Check for *-nextstop*.
9615
9616 1993-12-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9617
9618 * configure.in: Check for setsid.
9619
9620 1993-12-17 Richard Stallman (rms@srarc2)
9621
9622 * configure.in (*-sun-solaris*): Add special case for Solaris 2.3.
9623
9624 1993-12-15 Richard Stallman (rms@srarc2)
9625
9626 * Makefile.in (mkdir): Make only the lockdir writable.
9627
9628 * configure.in (i860-*-sysv4): Renamed from i860-*-sysvr4.
9629
9630 1993-12-11 Richard Stallman (rms@srarc2)
9631
9632 * Makefile.in (libdir): Use @libdir@.
9633
9634 1993-12-08 Richard Stallman (rms@srarc2)
9635
9636 * Makefile.in (install): Add empty command.
9637
9638 1993-12-04 Richard Stallman (rms@srarc2)
9639
9640 * make-dist: Put man/getopt.c in the dist.
9641
9642 * configure.in (LIBS): Add test for existence of XSetWMProtocols.
9643
9644 * Makefile.in (install): Depend on ${SUBDIR}, not `all'.
9645
9646 1993-12-03 Richard Stallman (rms@srarc2)
9647
9648 * configure.in (solaris): Set NON_GNU_CPP instead of CPP.
9649 Set it for all solaris versions.
9650 (mips-mips-riscos4*): Set NON_GNU_CC, not CC.
9651 (after checking for GCC): If not GCC, and NON_GNU_CPP is set, set CPP.
9652 Likewise for NON_GNU_CC and CC.
9653
9654 1993-12-01 Richard Stallman (rms@srarc2)
9655
9656 * configure.in (mips-mips-riscos4*): Assign variable CC.
9657 (checking ${with_gcc}): If "no", don't override CC if already set.
9658 (CC): Initialize it as empty.
9659
9660 1993-11-30 Richard Stallman (rms@srarc2)
9661
9662 * configure.in (Suns): Set CPP if *-solaris2.3*.
9663
9664 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9665
9666 * Version 19.22 released.
9667
9668 * Makefile.in (do-install): Use umask 022 in copying etc and lisp dirs.
9669
9670 1993-11-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9671
9672 * make-dist: When breaking links, use cp -p.
9673 Copy install.sh into distribution.
9674 Move the temp dir up into the parent dir;
9675 don't leave the staging dir make-dist.tmp... in existence.
9676 * install.sh: New file.
9677
9678 1993-11-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9679
9680 * configure.in (i[34]86-ncr-sysv*): New specific alternative.
9681
9682 1993-11-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9683
9684 * configure.in (version): When --run-in-place, exclude
9685 ${datadir}/emacs/site-lisp from locallisppath.
9686
9687 1993-11-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9688
9689 * configure.in: Delete jumk.c before writing it.
9690
9691 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9692
9693 * Version 19.21 released.
9694
9695 * Makefile.in (mkdir): Ignore error from chmod.
9696
9697 1993-11-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9698
9699 * make-dist: Don't put lisp/forms.README in the distribution.
9700
9701 1993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9702
9703 * configure.in (creating src/Makefile): Before running cpp,
9704 discard all lines that start with `# Generated' or /**/#.
9705
9706 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9707
9708 * Version 19.20 released.
9709
9710 * make-dist: Use build-ins.in, not build-install.in.
9711 Don't bother updating TAGS since it's not included.
9712
9713 * build-ins.in: Renamed from build-install.in.
9714
9715 1993-11-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9716
9717 * make-dist: Don't try to link *.texinfo--there are none now.
9718 When running make in lib-src, specify YACC var value.
9719
9720 1993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9721
9722 * configure.in (extrasub): Add vpath patterns for %.[yls].
9723
9724 * configure.in: Don't do seddery on config.status after AC_OUTPUT.
9725 Instead just include the commands to make src/Makefile as the
9726 second arg to AC_OUTPUT.
9727
9728 * configure.in: Use : instead of dnl for comment inside
9729 $makefile_command.
9730
9731 * configure.in: No longer use vpath_sed. Instead, when we notice
9732 srcdir already configured, set extrasub to hack vpath in the
9733 makefiles.
9734
9735 * configure.in: In cmds to make src/Makefile, chmod Makefile.new
9736 before moving it.
9737 * Makefile.in (VPATH): Define to @srcdir@.
9738
9739 1993-09-28 Brian J. Fox (bfox@cubit)
9740
9741 * configure.in: Don't copy ${srcdir}/src/Makefile.in; that file
9742 doesn't exist. Just copy src/Makefile.in instead. Touch
9743 all of the Makefiles after editing config.status.
9744
9745 * INSTALL: Update documentation to match new configuration
9746 mechanism.
9747
9748 1993-09-27 Brian J. Fox (bfox@ai.mit.edu)
9749
9750 * configure.in: Allow any of the path or directory Makefile
9751 variables to be set with flags to configure. Create all Makefiles
9752 at configure time. Edit special commands into config.status after
9753 src/Makefile.in is built from src/Makefile.
9754
9755 * Makefile.in (src/Makefile, lib-src/Makefile, oldXMenu/Makefile):
9756 If these files are out of date, simply have config.status
9757 rebuild them; don't rebuild them explicitly.
9758
9759 1993-09-25 Brian J. Fox (bfox@ai.mit.edu)
9760
9761 * build-install.in: Change src/xemacs to src/emacs. We no longer
9762 create src/xemacs, so the file wouldn't be found.
9763
9764 * make-dist: Remove `src/ymakefile', add `src/Makefile.in.in'.
9765
9766 1993-09-24 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
9767
9768 * configure.in: Avoid forcing the search of /usr/include before
9769 fixed include files by resetting C_SWITCH_X_SITE if it is
9770 "-I/usr/include".
9771
9772 1993-09-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9773
9774 * Makefile.in (@rip_paths@locallisppath):
9775 Delete ${datadir}/emacs/site-lisp.
9776
9777 1993-09-15 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9778
9779 * configure.in:
9780 Use AC_QUOTE_SQUOTE twice to properly quote vpath_sed value.
9781 Remove ${extra_output} from AC_OUTPUT call.
9782
9783 1993-09-17 Brian J. Fox (bfox@inferno)
9784
9785 * make-dist: Quote backquotes found in strings to be echoed.
9786
9787 * configure.in: Use "sh -c pwd" when we want to avoid having the
9788 shell fix up the value of $PWD.
9789
9790 1993-09-13 Brian J. Fox (bfox@inferno)
9791
9792 * Makefile.in (do-install): Don't abort if ln or chmod at the end
9793 of the installation fail. Suggested by Karl Berry.
9794
9795 1993-08-30 Brian J. Fox (bfox@inferno)
9796
9797 * Makefile.in (*clean): Use "$(MAKE) $(MAKEFLAGS)" wherever "make"
9798 was used. Set MAKEFLAGS from MFLAGS.
9799
9800 1993-09-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9801
9802 * configure.in: Test for res_init in libc.
9803
9804 1993-09-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9805
9806 * configure.in: In the file ${tempcname}, use configure___
9807 instead of @configure@.
9808
9809 1993-09-12 Roland McGrath (roland@sugar-bombs.gnu.ai.mit.edu)
9810
9811 * make-dist: Dist vpath.sed.
9812
9813 * Makefile.in (lib-src/Makefile, src/Makefile, oldXMenu/Makefile):
9814 Depend on vpath.sed.
9815 Replace sed command for VPATH with @vpath_sed@.
9816
9817 * configure.in: Substitute variable `vpath_sed'.
9818 If not in $srcdir and $srcdir is configured,
9819 issue warning that GNU make is required,
9820 and set vpath_sed to use vpath.sed script.
9821
9822 1993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9823
9824 * configure.in: Remove check for $srcdir being configured. This
9825 pretty much works now.
9826 Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
9827 Check for XFree86 (/usr/X386/include) independent of whether
9828 -lXbsd exists.
9829
9830 * Makefile.in (info, dvi, clean, mostlyclean, distclean,
9831 realclean, unlock, relock): Use `$(MAKE)' in place of plain
9832 `make'.
9833
9834 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9835
9836 * Version 19.19 released.
9837
9838 * configure.in (i386-*-sunos4): Assume Sunos 4.0.
9839
9840 1993-08-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9841
9842 * configure.in: Check for XScreenNumberOfScreen.
9843
9844 1993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9845
9846 * configure.in: Add * to end of all configuration alternatives.
9847 (m68*-sony-newsos3*): New alternative.
9848
9849 1993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9850
9851 * make-dist: Include getdate.c in distribution.
9852
9853 * configure.in: For --help, use $PAGER if it is set.
9854 (LIB_X11_LIB): Default to -lX11.
9855 (mips-sgi-irix5.*): New alternative.
9856
9857 * Makefile.in (do-install): Install info/gnus* and info/sc*.
9858
9859 * configure.in (m68*-hp-hpux*, hppa*-hp-hpux*):
9860 Recognize *.B8.* as hpux version 8.
9861 (m68*-tektronix-bsd*): Fix typo in tek4300.
9862 (AC_HAVE_FUNCS): Add ftime.
9863
9864 1993-08-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9865
9866 * configure.in (m88k-tektronix-sysv3*): Added the missing *.
9867 Use tekxd88, not tekXD88.
9868
9869 1993-08-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9870
9871 * configure.in: Check for -lm. Then can check for frexp and logb.
9872
9873 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9874
9875 * Version 19.18 released.
9876
9877 * make-dist (src): Don't put gnu-hp300 in dist.
9878 (src, lisp): Include OChangeLog in dist.
9879
9880 1993-08-08 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9881
9882 * configure.in: Test for presence of logb and frexp functions.
9883
9884 1993-08-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9885
9886 * configure.in (machine): Add i370-ibm-aix*.
9887
9888 1993-08-03 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9889
9890 * configure.in (function checks): Test for mkdir and rmdir.
9891
9892 * configure.in (function checks): Don't test for random and bcopy
9893 only when we're building with X; look for them all the time.
9894
9895 1993-07-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9896
9897 * configure.in: Test for availability of bcopy functions, searching
9898 the X libraries if we're using X.
9899
9900 * configure.in: Test for the presence of/usr/lpp/X11/bin/smt.exp,
9901 and #define HAVE_AIX_SMT_EXP if we do. This is present in some
9902 versions of AIX, and needs to be passed to the loader.
9903
9904 * configure.in: Test for the availability of the
9905 XScreenResourceString function.
9906
9907 1993-07-30 David J. MacKenzie (djm@frob.eng.umd.edu)
9908
9909 * configure.in: If we found X on our own, set C_SWITCH_X_SITE and
9910 LD_SWITCH_X_SITE and assume --with-x11.
9911 Only look for X11 files if we weren't told about a window system
9912 or if we were told to use X11 but not told where.
9913 Search the libraries from the s and/or m files when checking for
9914 functions.
9915
9916 * configure.in: Remove any trailing slashes in prefix and exec_prefix.
9917
9918 1993-07-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9919
9920 * make-dist: Include lisp/dired.todo in the distribution.
9921
9922 1993-07-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9923
9924 * configure.in: Add code to set HAVE_INET_SOCKETS.
9925
9926 1993-07-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9927
9928 * configure.in: If we do find x_includes and x_libraries
9929 via AC_FIND_X, set C_SWITCH_X_SITE and LD_SWITCH_X_SITE.
9930
9931 1993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9932
9933 * make-dist: Include src/gnu-hp300 in the dist.
9934
9935 * configure.in (canonical): New variable holds the canonicalized
9936 configuration. Don't alter `configuration'. Use `configuration'
9937 for Makefile.in for file naming.
9938 (testing x_includes and x_libraries): Use =, not ==.
9939
9940 1993-07-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9941
9942 * Version 19.17 released.
9943
9944 * Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
9945 directory's makefile. This allows the invocation of CPP which
9946 builds xmakefile to receive these switches. The SunSoft C
9947 preprocessor inserts spaces between tokens if it doesn't get the
9948 -Xs flag requested in src/s/sol2.h.
9949
9950 1993-07-12 Frederic Pierresteguy (F.Pierresteguy@frcl.bull.fr)
9951
9952 * configure.in (m68k-bull-sysv3): New config.
9953
9954 1993-07-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9955
9956 * configure.in: Use the autoconf AC_FIND_X macro to try to find
9957 the X Windows libraries.
9958
9959 1993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9960
9961 * make-dist (tempdir): Don't create lisp/forms-mode directory in
9962 the distribution. Those files aren't kept in their own
9963 subdirectory any more.
9964
9965 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9966
9967 * Version 19.16 released.
9968
9969 1993-06-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9970
9971 * configure.in: Add --verbose flag.
9972
9973 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9974
9975 * version 19.15 released.
9976
9977 1993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9978
9979 * Makefile.in (top_distclean): Use -f switch when cleaning out
9980 lock dir; it might be empty.
9981
9982 * configure.in: Only check for -lXbsd once.
9983
9984 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9985
9986 * Version 19.14 released.
9987
9988 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9989
9990 * make-dist: If using gzip, create distribution with '.gz' extension.
9991
9992 * make-dist (lisp/term): This doesn't have a ChangeLog anymore.
9993 (lisp/forms-mode): This doesn't exist anymore.
9994
9995 * configure.in: Look for the closedir function.
9996
9997 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9998
9999 * configure.in (CPP): Autoconf sets this to a shell variable
10000 reference, which doesn't work when it's edited into a makefile.
10001 Expand that variable reference.
10002
10003 * Makefile.in (CPP): New variable.
10004 (src/Makefile): Edit CPP into src/Makefile.
10005
10006 * Makefile.in (src/Makefile): Don't bother exiting single quotes
10007 and entering double quotes to get the values of LD_SWITCH_X_SITE
10008 and the other make variables; make substitutes them in anyway.
10009
10010 * Makefile.in (uninstall): Don't remove the lisp and etc
10011 directories if they're in the source tree.
10012
10013 Bring mumbleclean targets into conformance with GNU coding standards.
10014 * Makefile.in (mostlyclean, clean): Separate these two; just have
10015 them pass the request to the subdirectory makefiles.
10016 (distclean): Pass the request down, and then get rid of the
10017 files configure built, and get rid of the Makefiles.
10018 (realclean): Pass the request down, and then do the same things
10019 distclean does.
10020 (uninstall, info, dvi): New targets.
10021
10022 * configure.in: Move clause for PC-compatible i386 box to the end
10023 of the case statement, to avoid masking configurations below.
10024
10025 * configure.in: Add case for m88k-motorola-sysv4.
10026
10027 * configure.in: Add support for HP/UX versions 7, 8, and 9 on
10028 the HP 68000 machines.
10029
10030 * configure.in: Put the arguments to LD_SWITCH_X_SITE's and
10031 C_SWITCH_X_SITE's -L and -I switches in quotes, so the
10032 preprocessor won't fiddle with them.
10033
10034 1993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10035
10036 * Makefile.in (TAGS): cd to src to run etags.
10037
10038 1993-06-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10039
10040 * configure.in (version): Check the X libraries for XrmSetDatabase
10041 and random, and see if we have -lXbsd.
10042
10043 1993-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10044
10045 * configure.in: Pass "-Isrc" to the CPP we run to examine the
10046 s/*.h and m/*.h files. Martin Tomes
10047 <mt00@controls.eurotherm.co.uk> says ISC Unix 3.0.1 needs it.
10048
10049 1993-06-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10050
10051 * configure.in: Move i386-prime-sysv* and i386-sequent-bsd*
10052 above the general i386 alternative.
10053
10054 1993-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10055
10056 * configure.in: Recognize configuration name for Data General
10057 AViiON machines.
10058
10059 * configure.in: Use AC_LONG_FILE_NAMES.
10060
10061 1993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10062
10063 * configure.in: Test for bison.
10064 * Makefile.in (YACC): New variable.
10065 (lib-src/Makefile.in): Edit YACC into the makefile.
10066
10067 1993-06-08 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10068
10069 * Version 19.13 released.
10070
10071 * configure.in (CFLAGS): Don't set this according to the value of
10072 the GCC shell variable. Instead, consult the machine and system
10073 files for the values of C_OPTIMIZE_SWITCH and C_DEBUG_SWITCH, and
10074 test __GNUC__ while we're at it.
10075
10076 * configure.in: Remove extra ;; from hpux cases.
10077
10078 1993-06-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10079
10080 * configure.in: Check to see if the system has -ldnet.
10081
10082 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10083
10084 * make-dist: Add clauses to distribute lisp/forms-mode.
10085
10086 1993-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10087
10088 * configure.in (machine): Fix the versions in hpux version number test.
10089 Do not guess based on cpu type. Do check for explicit system version.
10090
10091 1993-06-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10092
10093 * configure.in: Do NOT look for `unknown' as company name.
10094
10095 1993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10096
10097 * configure.in: Fix typo in message.
10098
10099 1993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10100
10101 * Version 19.12 released.
10102
10103 * Makefile.in (do-install): Correct previous etc-copying change.
10104 Partially rewrite using `if'.
10105 (src/Makefile): Insert --x-libraries option into LD_SWITCH_X_SITE.
10106
10107 * Version 19.11 released.
10108
10109 * configure.in: Handle 386bsd.
10110
10111 1993-05-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10112
10113 * make-dist: Update getdate.c.
10114
10115 * configure.in: Handle bsd386.
10116
10117 * Makefile.in (do-install): Use `-' in tar options.
10118
10119 * configure.in: Change ! "${...}" to x"${...}" = x.
10120
10121 * Makefile.in (do-install): Copy the DOC-* files from the build
10122 etc directory, as well as lots of things from ${srcdir}/etc.
10123
10124 * make-dist: Copy config.guess.
10125
10126 * configure.in: Handle AIX versions 1.2, 1.3.
10127
10128 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10129
10130 * configure.in: Use s/bsd4-3.h for mips-mips-riscos4, and add
10131 the configuration name mips-mips-usg* to represent USG systems.
10132
10133 * configure.in: Fix logic to detect if srcdir is already configured.
10134
10135 * Makefile.in: Pass in LD_SWITCH_X_SITE.
10136
10137 * Makefile.in (mkdir, clean, mostlyclean, do-install): Use `(cd
10138 foo && pwd)` instead of `(cd foo ; pwd)` to get the canonical name
10139 of a directory; cd might fail, and have pwd print out the current
10140 directory.
10141
10142 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10143
10144 * configure.in: When looking for sources, use '.', not `.`. Also '..'.
10145
10146 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10147
10148 * configure.in: Complain if srcdir points at an already-configured
10149 tree.
10150
10151 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10152
10153 * Version 19.10 released.
10154
10155 1993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10156
10157 * Makefile.in: Use Makefile comments, not C comments.
10158
10159 * configure.in: Add case for the Tektronix XD88.
10160
10161 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10162
10163 * configure.in: Handle sysv4.2 and sysvr4.2.
10164
10165 1993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10166
10167 * configure.in: Traverse the argument list without destroying it;
10168 don't use shift. It turns out that "set - ${saved_arguments}"
10169 doesn't work portably.
10170
10171 * configure.in: Add missing "fi".
10172
10173 * make-dist: Rebuild configure if configure.in is newer.
10174
10175 * Makefile.in (src:, lib-src:, FRC:): Force the src and lib-src
10176 targets to be executed even if make remembers that it has already
10177 satisfied FRC.
10178
10179 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10180
10181 * Makefile.in (do-install): Delete redundant code to copy etc twice.
10182
10183 * configure.in (romp): Handle various version numbers with aos and bsd.
10184
10185 1993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10186
10187 * configure.in: Fix message text.
10188
10189 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10190
10191 * make-dist: Make a `site-lisp' directory in the distribution,
10192 instead of a `local-lisp' directory, which hasn't been the
10193 appropriate name for a long time.
10194 * Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
10195 from the distribution first, then /usr/local/lib/emacs/site-lisp.
10196
10197 * Makefile.in (do-install): Correctly detect if ./etc and
10198 ${srcdir}/etc are the same.
10199
10200 * configure.in: Extract UNEXEC from the system configuration
10201 files, compute the name of the source file corresponding to the
10202 object file, and #define it as UNEXEC_SRC in config.h.
10203
10204 * configure.in: If srcdir is '.', then try using PWD to make it
10205 absolute.
10206
10207 * configure.in: Include ${srcdir} in the printed report, to help
10208 people notice if it's an automounter path.
10209
10210 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10211
10212 * configure.in (prefix): Don't run pwd on srcdir unnecessarily.
10213
10214 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10215
10216 * Makefile.in (do-install): Delete the dest dir, not the source dir,
10217 when they are different. Add `shift' command.
10218 (COPYDESTS, COPYDIR): Delete external-lisp dir.
10219 (externallispdir): Var deleted.
10220
10221 * configure.in: Delete spurious paren outputting short_usage.
10222
10223 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10224
10225 * Version 19.9 released.
10226
10227 1993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10228
10229 * Makefile.in (${SUBDIR}): Pass the value of the make variable to
10230 subdirectory makes.
10231
10232 * make-dist: Check for .elc files with no corresponding .el file.
10233
10234 * Makefile.in (mkdir): Make all the directories in locallisppath.
10235
10236 * config.guess: New file.
10237 * configure.in: Use it, tentatively.
10238 * INSTALL: Mention its usage.
10239
10240 * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;
10241 the former gives you the operating system rev directly. Use
10242 s/hpux.h if we don't recognize what we got.
10243
10244 * Makefile.in (do-install): Don't remove a destination directory
10245 if it's the same as the source. If ${srcdir}/info == ${infodir},
10246 don't try to copy the info files.
10247
10248 * Makefile.in (COPYDIR, COPYDESTS): Don't mention etc twice; this
10249 doesn't work if you're not using a separate source directory.
10250 (do-install): Copy the build tree's etc directory only after
10251 making sure it's not also the source tree's etc directory.
10252
10253 1993-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10254
10255 * configure.in: Handle sunos4.1.3 specially.
10256
10257 1993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10258
10259 * Makefile.in (INSTALL): Add definition.
10260
10261 * configure.in: Fix some messages. Support -with-gnu-cc.
10262 At the end, use `set --', not `set -'.
10263 Delete spurious `.h' in hpux alternatives.
10264
10265 1993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10266
10267 * Version 19.8 released.
10268
10269 1993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10270
10271 * configure.in: When looking for source in the same directory as
10272 the configure script, make the path thus discovered absolute.
10273 If the user specifies the `--srcdir' switch, make that directory
10274 absolute too.
10275
10276 * Makefile.in (srcdir): Remove comment saying this doesn't work.
10277
10278 * Makefile.in (src/paths.h): Edit the `infodir' variable into this
10279 too, as the value of the PATH_INFO macro.
10280
10281 * configure.in: Check to see if the source lives in the same
10282 directory as the configure script.
10283
10284 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10285
10286 * Makefile.in (install): Split this into `install' and
10287 `do-install', to give people more control over exactly what gets
10288 done.
10289 (do-install): New target, containing the guts of `install'. Don't
10290 remove and recreate the directories inside the copying loop - do
10291 it all before the copying loop. Pass more flags to the lib-src
10292 make.
10293 (mkdir): Create ${infodir}, ${mandir}, and ${sitelispdir} here, to
10294 avoid errors and warnings.
10295
10296 * configure.in: For generic IBM PC boxes, insist on "unknown" for
10297 the manufacturer - the more general case was blocking other i386
10298 configuration names below, and that's how the names are written in
10299 MACHINES anyway.
10300
10301 * make-dist: When breaking links, remove the link before moving
10302 the copy onto it, to avoid interactive behavior.
10303
10304 * Makefile.in: Doc fix.
10305
10306 * configure.in: Doc fix.
10307
10308 * INSTALL: Mention --exec-prefix option.
10309
10310 * configure.in: Add support for the `--exec-prefix' option.
10311 * Makefile.in: Accept that support.
10312
10313 * configure.in: Use the AC_PROG_INSTALL macro.
10314 * Makefile.in (INSTALL): Variable removed.
10315 (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
10316
10317 * configure.in: Distinguish between hp800's and hp700's by calling
10318 "uname -m".
10319
10320 1993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10321
10322 * configure.in: Recognize configuration names for i860 boxes
10323 running SYSV.
10324
10325 1993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10326
10327 * configure.in: Distinguish between hp800's and hp700's by the
10328 version of HP/UX they run, since that's something people are more
10329 likely to know - hp700's run 8.0.
10330 Add HP 700 configuration.
10331
10332 * configure.in: Test for the presence of the `rename' function.
10333
10334 * Makefile.in (C_SWITCH_X_SITE): New variable - get this from
10335 configure.in.
10336 (oldXMenu/Makefile): Edit C_SWITCH_X_SITE into this.
10337
10338 * make-dist: Break intra-tree links.
10339
10340 * configure.in: Explain that this is an autoconf script, and give
10341 instructions for rebuilding configure from it. Arrange to put
10342 comments in configure explaining this too.
10343
10344 * configure.in: Make the first line of the configure script be
10345 "#!/bin/sh". Leaving the first line blank didn't work.
10346
10347 * configure.in (long_usage): Removed; made short_usage describe
10348 the options briefly.
10349
10350 * configure.in: Implement the --prefix option.
10351 * Makefile.in (prefix): Add support for it here.
10352 * INSTALL: Document it here.
10353
10354 * Makefile.in (install): Don't assume that the files in the `info'
10355 subdirectory match *.info. They don't have that prefix.
10356
10357 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10358
10359 * configure.in: Add case for version 5 of Esix.
10360
10361 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10362
10363 * Version 19.7 released.
10364
10365 * make-dist: There aren't any *.com files in lib-src anymore.
10366
10367 * make-dist: Copy texinfo.tex and texindex.c, rather than linking
10368 them; they're symlinks to other filesystems on the GNU machines.
10369
10370 * make-dist: Check that the manual reflects the same version of
10371 Emacs as stated in lisp/version.el. Edit that version number into
10372 the README file.
10373
10374 1993-05-21 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10375
10376 * configure.in: Remove the hack of AC_DEFINE; use
10377 AC_DEFINE_UNQUOTED.
10378
10379 1993-05-20 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10380
10381 * make-dist: Don't distribute precomp.com, compile.com, or
10382 link.com from ./src; they're in ./vms now.
10383
10384 Some time-handling patches from Paul Eggert:
10385 * configure.in: Add AC_TIMEZONE.
10386
10387 1993-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10388
10389 * configure.in: Recognize Linux as a valid operating system for
10390 the i386.
10391
10392 1993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10393
10394 * make-dist: Distribute some VMS files we got from Richard Levitte.
10395
10396 * Makefile.in (oldXMenu/Makefile): Take oldXMenu/Makefile.in as
10397 the source for the sed command, not oldXMenu/Makefile.
10398
10399 1993-05-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10400
10401 * INSTALL: Don't claim the srcdir option doesn't work.
10402
10403 1993-05-16 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10404
10405 * configure.in: Include remarks saying what order the autoconf
10406 tests should go in, and remind people to change config.h.in
10407 whenever they add autoconf tests which make #definitions.
10408
10409 * make-dist: Distribute oldXMenu/Makefile.in, not oldXMenu/Makefile.
10410
10411 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10412
10413 * Makefile.in (oldXMenu/Makefile): Make this depend on
10414 ${srcdir}/oldXMenu/Makefile.in, not itself.
10415
10416 * PROBLEMS: Some updates from David J. Mackenzie.
10417
10418 More changes from David J. Mackenzie.
10419 * Makefile.in (install.sysv, install.xenix, install.aix): Targets
10420 removed; autoconf and config.h should specify all these
10421 differences.
10422 (buildlisppath): Make this path depend on ${srcdir}.
10423 (INSTALLFLAGS): Removed.
10424 (INSTALL): Include the -c flag.
10425 (install): Change the way we invoke install accordingly.
10426
10427 Install ${srcdir} changes from DJM.
10428 * Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this
10429 list.
10430 (COPYDIR, COPYDESTS): Install files from both the etc directory in
10431 the source tree and the etc directory in the object tree.
10432 (${SUBDIR}): Pass the prefix variable down to submakes.
10433 (everywhere): Use `sed', not `/bin/sed'. Not all systems have sed
10434 in /bin.
10435 (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in
10436 values for srcdir and VPATH.
10437 (install): Add `v' flag to tar command. Make sure that `dir'
10438 exists in ${srcdir}/info before copying it. Remember that the man
10439 pages come from the source tree, not the object tree.
10440 * configure.in: Remove remarks saying that the --srcdir option
10441 doesn't work.
10442 Create the etc directory in the object tree.
10443 Recognize configuration names of the form *-sun-solaris*.
10444 Recognize sunos5 and solaris as operating system names.
10445
10446 * configure.in: Use the AC_TIME_WITH_SYS_TIME macro, for
10447 lib-src/getdate.y and src/systime.h.
10448
10449 1993-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10450
10451 * make-dist: Make links in info subdir.
10452
10453 1993-05-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10454
10455 * configure.in: Call AC_STDC_HEADERS.
10456
10457 1993-05-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10458
10459 * configure.in: Sidestep autoconf's quoting of the second argument
10460 of AC_DEFINE, so we can specify the value to put there. It would
10461 be nice if autoconf provided some way to specify computed values
10462 for macros.
10463
10464 1993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10465
10466 * Makefile.in (DEFS): Deleted; since we're using AC_CONFIG_HEADER,
10467 this is always just -DHAVE_CONFIG_H.
10468
10469 The GNU coding standards specify that CFLAGS should be left for
10470 users to set.
10471 * Makefile.in (CFLAGS): Let configure determine the default value
10472 for this. Don't
10473 have it default to DEFS.
10474 (${SUBDIR}): Pass CFLAGS down to submakes, not DEFS.
10475 (lib-src/Makefile, src/Makefile): Edit the default value for
10476 CFLAGS into these files, not DEFS.
10477 * configure.in (CFLAGS): Choose a default value for this - "-g"
10478 normally, or "-g -O" if we're using GCC. Edit it into the
10479 top-level Makefile.
10480
10481 * configure.in: When scanning the machine and system description
10482 #include files, write their names to conftest.c properly.
10483
10484 1993-05-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10485
10486 * configure.in: In configuration name case for Apallos running
10487 Domainios, set opsys, not opsysfile.
10488
10489 * configure.in: Use the autoconf AC_CONFIG_HEADER macro to produce
10490 src/config.h, instead of AC_OUTPUT; the latter overwrites
10491 src/config.h even when it hasn't changed, puts a makefile-style
10492 comment at the top even though it's C code, and produces a
10493 config.status script which doesn't do the job right.
10494
10495 * configure.in: Add AC_LN_S test, so we can tell whether or not we
10496 can use a symbolic link to get the X Menu library into src.
10497 * Makefile.in (LN_S): New variable.
10498 (src/Makefile): Edit the value of LN_S into this makefile.
10499
10500 1993-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10501
10502 * configure.in: Support *-sco3.2v4* as opsystem.
10503
10504 * make-dist: Don't include calc directory.
10505 Exclude many files in the man directory; copy a few.
10506
10507 1993-05-04 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10508
10509 * configure.in: Use AC_HAVE_HEADERS to test for sys/time.h, and
10510 call AC_STRUCT_TM to see what's in time.h.
10511
10512 * configure.in: Employ quoting stupidity to get the value of CPP
10513 to expand properly.
10514
10515 1993-04-27 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10516
10517 * configure.in: Use the AC_PROG_CPP macro, and then use the CPP
10518 variable to scan the machine and system description files.
10519
10520 * configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
10521 so that getdate.y builds correctly.
10522
10523 1993-04-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10524
10525 * configure.in (tempcname): Change this to "conftest.c", so it will
10526 work properly on systems with short filenames; this is the name
10527 autoconf uses.
10528
10529 * configure.in: Also detect the availability of dup2 and
10530 gethostname.
10531
10532 * configure.in: Use the AC_ALLOCA test.
10533 * Makefile.in (ALLOCA): New variable, to be set by ./configure.
10534 (lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
10535
10536 1993-04-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10537
10538 * make-dist: Distribute configure, as well as configure.in.
10539 Oversight.
10540
10541 1993-04-23 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10542
10543 * Makefile.in (install): Print out the name of the directory we're
10544 copying, so people can have some idea of whether we're making
10545 progress.
10546
10547 * Makefile.in (install.aix, install.xenix, install.sysv, install):
10548 Don't forget to re-create the COPYDESTS directories after we clear
10549 them out.
10550
10551 1993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10552
10553 * Makefile.in: Add autoconf cookies so that the configure
10554 script can comment out sections of path variable definitions to
10555 choose between the installable configuration and the run-in-place
10556 configuration.
10557 * configure.in: Add new option `--run-in-place', to select the
10558 run-in-place path definitions.
10559
10560 * configure.in: Add a clause to the big configuration name case
10561 for the NeXT machine.
10562
10563 1993-04-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10564
10565 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10566 Make sure that each source directory exists, and is different from
10567 the destination directory; then, delete the destination before
10568 copying over the source.
10569
10570 * make-dist: Distribute configure.in, instead of configure.
10571
10572 1993-04-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10573
10574 * configure.in: Don't set CC to "gcc -O" if the user specifies
10575 `--with-gcc'. Add -O to DEFS if GCC is set.
10576
10577 1993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10578
10579 * Makefile.in (clean mostlyclean): Missing right paren.
10580
10581 * configure.in: When checking for X windows, search for an X11
10582 subdirectory of ${x_includes}.
10583
10584 * configure.in: Check for gettimeofday function, for getdate.y.
10585
10586 Change `configure' to a mixture of custom code and autoconf stuff.
10587 autoconf can't derive all the information we need, but we'd really
10588 like to be able to take advantage of some of its tests, and its
10589 file-editing facilities.
10590 * configure.in: Renamed from configure.
10591 Quote the sections of shell script we want copied literally to
10592 the configure script.
10593 (compile): Initialize this to make the autoconf macros' code happy.
10594 Use AC_PROG_CC, AC_CONST, and AC_RETSIGTYPE instead of writing out
10595 code to do their jobs.
10596 Use autoconf to produce Makefile and src/config.h.
10597 Remove the Makefile-style comment that autoconf places at the top
10598 of src/config.h.
10599 (config_h_opts): Removed - no longer necessary.
10600 * Makefile.in (configname): Renamed to configuration.
10601 (CONFIG_CFLAGS): Renamed to DEFS.
10602 (CC, DEFS, C_SWITCH_SYSTEM, version, configuration): Adjusted to
10603 get values via autoload @cookies@.
10604 (libsrc_libs): Get this from autoconf. We used to do nothing
10605 about this.
10606 (${SUBDIR}): Pass DEFS to submakes instead of CONFIG_CFLAGS.
10607
10608 * Makefile.in (src/paths.h, lib-src/Makefile, src/Makefile): Don't
10609 echo the move-if-change command.
10610
10611 1993-04-08 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
10612
10613 * make-dist: Distribute lib-src/rcs-checkin.
10614
10615 * make-dist: It's oldXMenu/compile.com, not oldXMenu/compile.mms.
10616 Don't try to make links to the RCS or Old subdirectories.
10617 Use the appropriate extension for the compression type in use.
10618 Create the tar file in the shell's initial default directory, not
10619 in ${tempparent}.
10620 Erase the whole ${tempparent} tree, not just ${tempdir}.
10621
10622 1993-03-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10623
10624 * Makefile.in (src/paths.h): Don't echo the huge sed command we
10625 use to build paths.h.
10626 (lib-src/Makefile, src/Makefile): Similarly.
10627
10628 * configure: Extend test for working `const' keyword to handle AIX
10629 3.2 cc.
10630
10631 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10632
10633 * make-dist: Distribute lisp/term/ChangeLog.
10634
10635 Arrange for C compilation throughout the tree to get
10636 C_SWITCH_SYSTEM from the configuration files.
10637 * configure: Extract C_SWITCH_SYSTEM from the machine and
10638 system-dependent files, and save it in the top-level Makefile.
10639 * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit.
10640 (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
10641
10642 * make-dist: Include the VMS support files in oldXMenu in the
10643 distribution.
10644
10645 * configure: Doc fix.
10646
10647 * configure: Fix corrupted config_h_opts.
10648
10649 * configure: Properly report option names in error messages.
10650
10651 * configure: Properly recognize --x-includes and --x-libraries
10652 options.
10653
10654 * configure: Fix syntax errors in code handling XFree386.
10655
10656 1993-03-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10657
10658 * configure: Add special code to detect XFree386, and tell
10659 config.h about it.
10660
10661 * configure: Properly handle extracting values of LIBS_MACHINE and
10662 LIBS_SYSTEM that contain spaces.
10663
10664 * configure: Add `--x-includes' and `--x-libraries' options. I
10665 think these are dopey, but no less than three alpha testers, at
10666 large sites, have said they have their X files installed in odd
10667 places. Implement them by setting C_SWITCH_X_SITE and
10668 LD_SWITCH_X_SITE in src/config.h.
10669
10670 1993-03-22 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10671
10672 * make-dist: Don't distribute etc/Old files.
10673
10674 * GETTING.GNU.SOFTWARE, PROBLEMS: Registered into RCS with their
10675 backups.
10676
10677 1993-03-20 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10678
10679 * make-dist: Fix typo.
10680
10681 1993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10682
10683 * make-dist: Corrected typo, fixed it to discard = and TAGS files
10684 in some cases where it should but didn't seen to.
10685
10686 * Makefile.in: Added unlock and relock productions.
10687
10688 1993-03-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10689
10690 * make-dist: Add a --compress option to force make-dist to use
10691 compress.
10692
10693 * make-dist: Use gzip, if we can find it.
10694
10695 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10696 make rs6000-ibm-aix default to -aix32.
10697
10698 1993-03-17 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10699
10700 * Makefile.in: Added `Developer's configuration' section.
10701
10702 1993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
10703
10704 * Makefile.in: Add commented-out variable settings for developer's
10705 configuration.
10706
10707 1993-03-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10708
10709 * make-dist: Distribute `src/bitmaps' too.
10710
10711 1993-03-14 Charles Hannum (mycroft@hal.gnu.ai.mit.edu)
10712
10713 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10714 make rs6000-ibm-aix default to -aix32.
10715
10716 1993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10717
10718 * configure: Recognize strings like "sysvr0" or "sysvr1" as System V.
10719
10720 * Makefile.in (install.sysv): Add a second `$' in front of
10721 `${dest}', so that the shell will expand it, instead of Make.
10722
10723 * configure: When processing the name of the configure script,
10724 collapse `././' to `./', but leave a single `./' prefix alone.
10725
10726 * configure: Doc fix.
10727
10728 1993-03-04 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10729
10730 * configure: Handle isc3.0 correctly.
10731
10732 1993-02-25 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10733
10734 * make-dist: Don't try to copy the COPYING notice into
10735 external-lisp; we're not distributing that directory any more.
10736
10737 1993-02-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10738
10739 * Makefile.in (install, install.aix, install.xenix, install.sysv):
10740 Remove CVS subdirectories from the installed directory trees, as
10741 well as RCS directories.
10742
10743 1993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10744
10745 * make-dist: Only copy gmalloc.c if we couldn't link it.
10746 Don't try to copy man/{README,Makefile} unless they actually exist.
10747
10748 * Makefile.in (lisppath): Don't include externallispdir in this.
10749 We're not sure whether we're even going to distribute the
10750 directory yet.
10751
10752 1993-02-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10753
10754 * make-dist: Don't distribute the external-lisp directory anymore.
10755 * INSTALL: Remove all references to external-lisp.
10756
10757 * configure: Detect whether the compiler supports `const'
10758 properly, and edit src/config.h accordingly.
10759
10760 * configure: Tweak layout of final report.
10761
10762 * Makefile.in (${SUBDIR}): Pass CONFIG_CFLAGS to the submakes, not
10763 CFLAGS.
10764
10765 * Makefile.in (locallisppath): Make this default to
10766 ${datadir}/emacs/site-lisp, instead of
10767 ${datadir}/emacs/local-lisp. ${datadir} and ${statedir} are often
10768 the same thing, and local-lisp causes completion conflicts with
10769 lock.
10770 (lisppath): Add ${externallispdir} to this.
10771 * INSTALL: Adjust installation directions.
10772
10773 * Makefile.in (externallispdir): New variable, to say where to
10774 install the externally-maintained lisp files.
10775 (COPYDIR, COPYDESTS): Copy the external lisp directory just like
10776 the others.
10777 * INSTALL: Describe external-lisp and the new externallispdir
10778 variable.
10779
10780 1993-02-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10781
10782 * configure (progname): New option `--with-gcc'. Make it clearer
10783 how we are trying to guess whether or not we have GCC.
10784 * INSTALL: Document the `--with-gcc' option, and improve
10785 description of `--with-x' options.
10786
10787 1993-02-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10788
10789 * Makefile.in (COPYDIR, COPYDESTS): Remove ${srcdir}/info and
10790 ${infodir} from these variables; we have written out explicit code
10791 to install the info files.
10792
10793 1993-01-25 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10794
10795 * make-dist: Don't distributed the RCS files in the etc directory.
10796
10797 1993-01-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10798
10799 * Makefile.in: Some makes can't handle comments in the middle of
10800 commands; move them to before the whole rule.
10801
10802 1993-01-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10803
10804 * README: Mention what Emacs is.
10805
10806 1993-01-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10807
10808 * make-dist: Include `./lisp/calc-2.02' in the distribution.
10809 Add `./cpp' and `./man' back into the distribution.
10810
10811 1993-01-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10812
10813 * Makefile.in: Define MAKE, and use where appropriate.
10814
10815 1993-01-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10816
10817 * make-dist: Remember that the authoritative COPYING notice is
10818 `etc/COPYING', not `../etc/COPYING'.
10819
10820 1992-12-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10821
10822 * make-dist: Make sure that the COPYING notices in each directory
10823 are copies, not symlinks.
10824
10825 1992-12-19 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10826
10827 * INSTALL: The build process produces an executable called `emacs'
10828 now. Change references.
10829 * Makefile.in: Adjust `install.mumble' targets to install
10830 `src/emacs', not `src/xemacs'.
10831
10832 * configure: Start with a blank line; this keeps some old CSH's
10833 from thinking it's a CSH script. Most systems will just use
10834 /bin/sh to run it, which is what we're expecting; the only other
10835 shells which might try to interpret it themselves are probably
10836 Bourne-compatible.
10837
10838 1992-12-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10839
10840 * INSTALL: Improvements suggested by David Mackenzie.
10841
10842 1992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10843
10844 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10845 Don't try to copy the info files if there aren't any; the
10846 unexpanded globbing pattern disappoints `install'. Ignore the
10847 return status of that command.
10848
10849 * INSTALL: Updated for new configuration arrangement.
10850
10851 * configure: Don't make the top-level Makefile read-only - people
10852 may want to edit the values of the path variables.
10853
10854 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10855 Install the info files in ${infodir}. Install the executable
10856 under both `emacs' and `emacs-VERSION'.
10857
10858 * Makefile.in: Doc fix.
10859
10860 * Makefile.in (exec_prefix): New variable, as per latest version
10861 of coding standards.
10862 (bindir, libdir): Use it, instead of `prefix'.
10863 (lib-src/Makefile): Edit value of exec_prefix into lib-src/Makefile.
10864
10865 * Makefile.in (mandir): Make the default value for this depend on
10866 $(prefix).
10867
10868 * Makefile.in (datadir, statedir, libdir): Make these all default
10869 to ${prefix}/lib.
10870 (lispdir, locallisppath, etcdir, lockdir, archlibdir): Adjusted
10871 to compensate.
10872
10873 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10874 Install the etags and ctags man pages too.
10875
10876 * Makefile.in (distclean): Don't delete backup files; that's the
10877 job of extraclean.
10878 (extraclean): Like distclean, but deletes backup and autosave files.
10879
10880 1992-12-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10881
10882 Make path specification conform to GNU coding standards.
10883 * configure (long_usage): Remove all traces of old arguments from
10884 usage messages, and document the options we do accept in more
10885 detail: -with-x... and --srcdir.
10886 (options, boolean_opts): Deleted; we don't have enough options to
10887 make this worthwhile.
10888 (prefix, bindir, lisppath, datadir, libdir, lockdir): Deleted,
10889 along with the code which supported them; these should be set as
10890 arguments to the top-level make.
10891 (config_h_opts): Since this no longer doubles as a list of option
10892 names, make them upper case; this simplifies the code which uses
10893 them to build the sed command to edit src/config.h. Change the
10894 code which sets them.
10895 (cc, g, O): Don't allow the user to set these using options; they
10896 should be specified using `CC=' and `CFLAGS=' arguments to the
10897 top-level make. Just choose reasonable default values for them,
10898 and edit them into Makefile.in's default CC and CONFIG_CFLAGS
10899 values.
10900 (gnu_malloc, rel_alloc): Don't allow the user to set these using
10901 options; use them whenever the configuration files say they're
10902 possible.
10903 Simplify the argument processing loop. Don't accept abbreviations
10904 for option names; these might conflict with other configuration
10905 options in the future.
10906 Add some support for the `--srcdir' option. Check for the sources
10907 in . and .. if `--srcdir' is omitted. If the directories we will
10908 compile in don't exist yet, create them under the current directory.
10909 Note that the rest of the build process doesn't really support
10910 this.
10911 Edit only the top Makefile. That should edit the others. Edit
10912 into the makefile: `version', from lisp/version.el, `configname'
10913 and `srcdir' from the configuration arguments, `CC' and
10914 `CONFIG_CFLAGS' as guessed from the presence or absence of GCC in
10915 the user's path, and LOADLIBES as gleaned from the system
10916 description files.
10917 Simplify the report generated; it doesn't need to include any
10918 description of paths now.
10919 Make `config.status' exec configure instead of just calling it, so
10920 there's no harm in overwriting `config.status'.
10921 * Makefile.in (version, configname): New variables, used to choose
10922 the default values for datadir and libdir.
10923 Path variables rearranged into two clearer groups:
10924 - In the first group are the variables specified by the GNU coding
10925 standards (prefix, bindir, datadir, statedir, libdir, mandir,
10926 manext, infodir, and srcdir).
10927 - In the second are the variables actually used for Emacs's paths
10928 (lispdir, locallisppath, lisppath, buildlisppath, etcdir, lockdir,
10929 archlibdir), which depend on the first category.
10930 datadir and libdir default to directories under
10931 ${prefix}/lib/emacs instead of ${prefix}/emacs, by popular
10932 demand.
10933 etcdir and lispdir default to subdirectories of datadir.
10934 archlibdir defaults to libdir.
10935 The new installation tree is a bit deeper than it used to be, so
10936 use the new make-path program in lib-src to build them all.
10937 Always build a new src/paths.h.tmp and then move-if-change it to
10938 src/paths.h, to avoid unnecessary rebuilds while responding to the
10939 right changes.
10940 Remove all mention of arch-lib. Run utility commands from
10941 lib-src, and let the executables be copied into archlibdir when
10942 Emacs is installed.
10943 Add targets for src/Makefile, lib-src/Makefile, and
10944 oldXMenu/Makefile, editing the values of the path variables into
10945 them.
10946 Let lib-src do its own installation.
10947 (datadir): Default to putting data files under
10948 ${prefix}/lib/emacs/${version}, not /usr/local/emacs.
10949 (emacsdir): Variable deleted; it would only be confusing to use.
10950 (lispdir, etcdir): Default to ${datadir}/lisp.
10951 (mkdir): Use make-path for this.
10952 (lockdir): Do this in mkdir.
10953 (Makefile): New target.
10954
10955 * configure (usage_message): Rename to long_usage.
10956
10957 * make-dist: Don't bother creating an arch-lib directory; that's
10958 only for installation now.
10959
10960 1992-11-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10961
10962 * configure: Use GCC-style configuration names, using config.sub.
10963 Change the usage and help messages.
10964
10965 * configure: Initialize window_system, not indow_system.
10966
10967 * configure: Report which window system, compiler, and signal
10968 handler return type we decide to use.
10969
10970 * make-dist: Explain what's going on if config.sub and gmalloc.c
10971 can't be linked. Place the code which copies them near the code
10972 which links the rest of the files around them.
10973
10974 1992-11-15 Jim Blandy (jimb@apple-gunkies.gnu.ai.mit.edu)
10975
10976 * make-dist: Don't bother to distribute src/*.com, or
10977 src/vmsbuild; those have all been moved to `../vms'.
10978
10979 1992-11-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10980
10981 * make-dist: Don't forget that the way to avoid filenames starting
10982 with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
10983 `[a-zA-Z0-9].h'. Add a new section for dealing with files that we
10984 couldn't make hard links to, since we have two already, and
10985 perhaps more to come.
10986
10987 1992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10988
10989 * configure: When editing parameters into lib-src/Makefile, change
10990 the definition of CONFIG_CFLAGS instead of CFLAGS itself; CFLAGS
10991 needs some other flags too.
10992
10993 1992-11-03 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10994
10995 * configure: Remove spurious echo of the configuration name.
10996
10997 * make-dist: Don't distribute files in src/m and src/s whose names
10998 begin with `='.
10999
11000 1992-10-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11001
11002 * configure: Update GNU_MALLOC and REL_ALLOC in config.h.
11003 Also LISP_FLOAT_TYPE.
11004
11005 1992-10-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11006
11007 * make-dist: Copy config.sub, since it's a symbolic link to a file
11008 on another file system.
11009
11010 1992-10-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11011
11012 * make-dist: Include lib-src/makedoc.com and emacs.csh in the
11013 distribution.
11014
11015 * config.sub: New file, to help us recognize configuration names.
11016 * make-dist: Include it in the distribution.
11017
11018 1992-09-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11019
11020 * configure: Convert `-' to `_' in specified option names.
11021 Accept options with --. Delete --highpri and --have-x-menu options.
11022 New options --with-x and --with-x10 replace -window-system.
11023 Don't mention options --gnu-malloc, --rel-alloc
11024 or --lisp-float-type in help message.
11025
11026 1992-09-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11027
11028 * make-dist: Include the `vms' subdirectory in the distribution.
11029
11030 1992-09-10 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11031
11032 * configure: Remove lines starting with "# DIST: " when building
11033 lib-src/Makefile and src/Makefile. This allows us to mark the
11034 "Makefile.in" files with explanatory comments which won't also get
11035 stuck in the Makefiles.
11036
11037 1992-09-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11038
11039 * make-dist: Don't use the '+' operator in the sed regular
11040 expression that extracts the version number from lisp/version.el;
11041 Ultrix sed doesn't seem support the operator. Just double the
11042 operand and use *.
11043
11044 1992-09-01 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11045
11046 * Makefile.in: Doc fix.
11047
11048 1992-08-31 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11049
11050 * configure: Rewrite sed command to remove at most one ./ prefix;
11051 Ultrix's sed doesn't allow us to apply the * operator to a \( \)
11052 group.
11053
11054 1992-08-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11055
11056 * Makefile.in (src/paths.h): Use sed, not /bin/sed.
11057
11058 1992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11059
11060 * make-dist: Go ahead and build a new TAGS file, unless the
11061 --newer option was specified. Don't try to delete a TAGS file
11062 from etc; it's not kept there, and shouldn't be deleted anyway.
11063
11064 1992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11065
11066 * make-dist: If the lisp directory contains a default.el, don't
11067 distribute it.
11068
11069 * configure: When searching signal.h for the type of a signal
11070 return handler, make a copy of it, not a symbolic link to it; that
11071 way, it will work on systems that don't have symbolic links.
11072
11073 1992-08-14 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
11074
11075 * make-dist: Taught it about vcdiff and rcs2log, added --newer
11076 option for generating incremental distributions. Stopped it from
11077 generating a TAGS file into the distribution; that sucker is
11078 *big*, and easily enough generated with the toplevel makefile.
11079
11080 1992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11081
11082 * configure: When writing config.status, don't prefix progname
11083 with a '.'; it might be absolute.
11084
11085 1992-08-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11086
11087 * configure: Choose to use X11 if either /usr/lib/libX11.a or
11088 /usr/include/X11 exist, not only if both exist.
11089
11090 1992-07-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11091
11092 * make-dist: Make the new external-lisp directory a duplicate of
11093 the external-lisp directory, not the lisp directory.
11094
11095 1992-07-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11096
11097 * Makefile.in (clean, mostlyclean): Don't bother trying to `make
11098 clean' in arch-lib; it doesn't even have a Makefile.
11099
11100 * Makefile.in (clean, mostlyclean): In the test which tries to
11101 distinguish between the build directory, which should be cleaned,
11102 and the installed directory, which shouldn't, cd to `${emacsdir}',
11103 not `${DESTDIR}${LIBDIR}'.
11104
11105 1992-06-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11106
11107 * make-dist: Be sure to delete the .c and .h files that YACC and
11108 BISON create from getdate.y.
11109
11110 * external-lisp: New directory; see `external-lisp/README'.
11111 * make-dist: Added support for the external-lisp subdirectory.
11112
11113 * make-dist: Changed message which complains that make-dist wasn't
11114 invoked in the right directory to indicate which files it was
11115 looking for.
11116
11117 1992-06-29 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11118
11119 * configure: Add comments explaining why we can't translate
11120 character ranges or control characters in `tr'.
11121
11122 1992-06-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11123
11124 * configure: When generating the configuration message, we used to
11125 build the message from the start so that each line began with "# "
11126 so that it would be a comment in `config.status'. However, this
11127 causes trouble if any of the variables we use in the message
11128 expand to more than one line of text - as gnu_malloc_reason
11129 sometimes does. So instead, we build the message as it should be
11130 printed to the user (i.e. without the "# " prefixes), and stick on
11131 the "# "s when we write it to `config.status'.
11132
11133 * Makefile.in (clean, mostlyclean): Don't neglect to clean out
11134 `lib-src' and `arch-lib'.
11135
11136 * configure: When generating report and `config.status' file, note
11137 that bindir only determines where `make install' and
11138 `build-install' will place the executables; this should make it
11139 clear that the ordinary build process will not try to install
11140 things.
11141
11142 1992-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11143
11144 * make-dist: Change messages to say that we are 'making links to
11145 X', rather than 'copying X'. And put `' quotes around file names.
11146
11147 * make-dist: Include '.tmp' in the name of the staging directory.
11148
11149 * make-dist: Pass the `-f' option to rm when you're not sure that
11150 the files you're removing actually exist.
11151
11152 * make-dist: When setting up etc/COPYING, always nuke whatever is
11153 there, and then copy it in, to make sure we get a real file.
11154
11155 * make-dist: Don't try to distribute *.defns files any more. The
11156 only such file was for simula.el, which has been superseded by a
11157 version which doesn't have a separate .defns file.
11158
11159 1992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
11160
11161 * make-dist: Don't distribute configured versions of config.h.in,
11162 paths.h.in, Makefile.in in src.
11163
11164 * configure: Delete .tmp files before creating them; don't bother
11165 trying to make final targets writable first, since it won't
11166 matter to move-if-change.
11167
11168 1992-05-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11169
11170 * Makefile.in (mkdir, lockdir): Don't put dashes in front of the
11171 mkdir and chmod in the center of all the conditionals. GNU Make
11172 will strip these out, but other makes won't.
11173
11174 1992-05-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11175
11176 * make-dist: Include move-if-change in list of files to distribute.
11177
11178 1992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11179
11180 * configure: Remove any "." elements from the program name.
11181
11182 * configure: Don't record the values of all the possible arguments
11183 in config.status; only record the options that the user specified.
11184
11185 * configure: Use move-if-change to move in the new src/config.h.
11186
11187 1992-04-29 Ken Raeburn (Raeburn@Cygnus.COM)
11188
11189 * move-if-change: New file, copied from gcc release.
11190 * Makefile.in (src/paths.h): Use it, and put the "sed" output into
11191 a temp file, so we don't update paths.h if an error occurs or if
11192 it doesn't need changing.
11193
11194 1992-04-28 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11195
11196 * Makefile.in (src/paths.h): Do not install a value for the
11197 PATH_SUPERLOCK value; that macro doesn't exist anymore.
11198 * build-install.in: Same thing.
11199
11200 1992-04-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11201
11202 * make-dist: Check the flag called "make_tar", not "make_dir"; the
11203 latter, being a typo, is always false, resulting in a program
11204 whose default behavior is to painstakingly build a copy of the
11205 source tree, and then delete it. Rah.
11206
11207 * Makefile.in: Add dist target, and comment for it.
11208
11209 * configure: When scanning <signal.h> for a declaration for
11210 signal, create a symbolic link with a name ending in .c, so the
11211 compiler won't complain that it's only been given .h files.
11212
11213 * configure: Check whether there are any arguments available
11214 before shifting to get the value of a non-boolean parameter.
11215
11216 * make-dist: Doc fix.
11217
11218 1992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11219
11220 * configure: Instead of grepping /usr/include/signal.h for a
11221 signal declaration, run /usr/include/signal.h or
11222 /usr/include/sys/signal.h through cpp and grep for the
11223 declaration.
11224
11225 * configure: Redirect the output of grep to /dev/null instead of
11226 using grep -s - that flag means different things on other systems.
11227
11228 * Makefile.in: Use 'buildlisppath' instead of 'dumplisppath',
11229 since the former is recognizable even if you don't know what
11230 'dumping' is.
11231 * configure: Accommodate that change.
11232
11233 * configure: Accept options for all of the directories you can
11234 change in the Makefile.
11235
11236 * configure: Accept "-OPTION VALUE" as well as "-OPTION=VALUE".
11237
11238 * INSTALL: Mention that you have to copy all the 'FOO.in' files to
11239 FOO before you can use them.
11240
11241 * build-install.in: Made the "Where To Install Things" section
11242 conform with the similar section from Makefile.in. Copied section
11243 which builds src/paths.h from src/paths.h.in from the Makefile.
11244
11245 1992-04-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11246
11247 * configure: Write config.status to pass its command-line
11248 arguments on to configure, so that people can use it to recreate
11249 an old configuration, with minor changes.
11250
11251 1992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11252
11253 * configure: Don't rely on option variables being unset if their
11254 values are the empty string. In particular, when producing the
11255 English report, don't assume that highpri will be unset when no
11256 increased priority has been requested; -highpri='' should be the
11257 same as omitting -highpri altogether.
11258
11259 * configure: Fix dumb bug: when running the system and machine
11260 description files through cpp, mark those lines that we want to
11261 evaluate with the string '@configure@', and then only evaluate
11262 them. This way if the files include anything that actually
11263 generates text (type definitions or external declarations, say),
11264 we won't try to eval it.
11265
11266 1992-04-11 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11267
11268 * make-dist: New shell script.
11269
11270 * configure: When creating foo from foo.in, make foo read-only to
11271 remind people to edit the .in file instead.
11272
11273 * INSTALL: Changed references to config.h-dist to config.h.in.
11274 The "BUILDING GNU EMACS BY HAND" section neglected to mention how
11275 to build src/paths.h from src/paths.h.in; added a paragraph to do
11276 this.
11277 * configure, Makefile, build-install: Changed filenames like
11278 FOO-dist to FOO.in.
11279
11280 1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11281
11282 * Makefile, build-install: Renamed to Makefile.in and
11283 build-install.in; the configure script will edit these to produce
11284 the usable Makefile and build-install.
11285 * configure: Changed to produce ./Makefile, ./build-install,
11286 lib-src/Makefile, and src/Makefile from their *.in counterparts,
11287 instead of editing them in place.
11288
11289 1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11290
11291 * Makefile: Re-arranged so that the undumped Emacs will search
11292 ../lisp *after* the site's local elisp files.
11293 (locallisppath, dumplisppath): New variables.
11294 (lisppath): This variable's default value is now chosen based on
11295 $(locallisppath) and $(lispdir); while it used to be the
11296 customization point for adding site-local elisp directories to
11297 load-path, that job is now handled mostly by locallisppath.
11298 (src/paths.h): Edit the value of a new macro, PATH_DUMPLOADSEARCH.
11299 Check the values being assigned to the *LOADSEARCH macros for null
11300 path elements (like '::' in 'foo::bar').
11301
11302 * configure: When checking if the machine- and system-dependent
11303 files define a particular macro or not, actually run them through
11304 CPP and test the macros with #ifs, instead of just grepping for
11305 the macros' names. In particular, check for SYSTEM_MALLOC in this
11306 way.
11307
11308 1992-04-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11309
11310 * Makefile (install): Don't use -s in install. (Keep the symbols.)
11311
11312 1992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11313
11314 * configure: Make the config.status file an executable shell
11315 script which will recreate the same configuration. Include the
11316 verbal description of the current configuration as a comment in
11317 the script.
11318 * INSTALL: Doc fix.
11319
11320 * Makefile: Brought the Makefile up to the GNU coding
11321 standards, as described in standards.text:
11322 (TAGS): New name for the target which rebuilds the tags table.
11323 (check): New target; doesn't do anything yet.
11324 (mostlyclean): New target, synonymous with clean.
11325 (realclean): New target. Currently, this just calls the
11326 subdirectories's makefiles and then deletes config.status.
11327 (INSTALL, INSTALLFLAGS, INSTALL_PROGRAM, INSTALL_DATA): New
11328 variables.
11329 Installation directory variables changed to conform.
11330 (install, install.sysv, install.xenix, install.aix): Changed the
11331 code which copies the directories into their installed location to
11332 allow the installed locations to be in several different
11333 directories; the old version assumed that they would all be in
11334 $(emacsdir).
11335 (mkdir, lockdir): Allow the installed locations to be in several
11336 different directories.
11337 * INSTALL: Doc fix.
11338
11339 * build-install: Use the same variable names as the Makefile.
11340 Allow the installed locations to be in several different
11341 directories.
11342
11343 1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11344
11345 * Makefile (src/paths.h): Instead of using a single sed command to
11346 edit both the PATH_LOCK and PATH_SUPERLOCK macros, edit the two
11347 separately, and don't forget to append "/!!!SuperLock!!!" to the
11348 value of the PATH_SUPERLOCK macro.
11349
11350 * config.emacs: Renamed to configure, for consistency with other
11351 GNU products. Internal references changed.
11352 INSTALL, Makefile: References changed.
11353
11354 * lock: New directory, which should always be empty. If this
11355 directory doesn't exist, Emacs won't complain; it just won't lock.
11356 Having this here means that people can just unpack Emacs, build
11357 it, and have locking work.
11358
11359 * share-lib: Re-renamed to etc, for the sake of tradition.
11360 * config.emacs: Changed default value for datadir to ../etc.
11361 * INSTALL, README: Adjusted.
11362
11363 1992-03-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11364
11365 * config.emacs: Guess the value for LOADLIBES in lib-src/Makefile
11366 by running CPP on the appropriate s/*.h and m/*.h files.
11367
11368 1992-03-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11369
11370 * config.emacs: Make sure to set the "exit on error" flag once
11371 we've removed config.status; errors should abort the configuration.
11372
11373 1992-02-15 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11374
11375 * config.emacs: Added -distribute option, so that the Makefile
11376 paths are in their proper form. I don't know why this matters.
11377
11378 1992-02-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11379
11380 * local-lisp: New directory, empty in the distribution, for people
11381 to put local elisp code in.
11382 * config.emacs: Include it in the default load path.
11383 * README: Document it.
11384
11385 1992-01-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11386
11387 * config.emacs: Guess the type of signal handling functions based
11388 on the contents of /usr/include/signal.h.
11389
11390 * config.emacs: Print out progress report messages.
11391
11392 * Makefile (src/paths.h): Don't generically replace
11393 /usr/local/lib/emacs with LIBROOT. This can hide bugs in the
11394 editing of the other entries, and each entry should be dealt with
11395 explicitly anyway.
11396
11397 * build-install: Converted from C-shell to Bourne shell.
11398 * config.emacs: Edit build-install properly.
11399
11400 * config.emacs: Doc fix.
11401
11402 1992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11403
11404 * Makefile (install): Remove `B' from tar xf command.
11405
11406 1992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11407
11408 * config.emacs: Removed support for the `maintain-environment'
11409 option; the only important difference between this and its absence
11410 has been removed.
11411 * INSTALL: Removed mention of `maintain-environment'.
11412
11413 * config.emacs: Fix arguments to sed when processing boolean
11414 arguments.
11415
11416 1991-12-05 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
11417
11418 * config.emacs: New file, to help automate the installation
11419 process.
11420
11421 * Makefile: Lots of changes to support the separation of etc into
11422 architecture-dependent and -independent files:
11423 (EMACSROOT): New variable, giving the directory under which all of
11424 Emacs's libraries should be installed. Changed rest of file to
11425 use it.
11426 (LIBDIR): Now denotes only architecture-dependent dir.
11427 (DATADIR): New variable, denoting architecture-independent dir.
11428 (LOCKDIR): New variable, for completeness.
11429 (SUBDIR): No more etc, new lib-src.
11430 (COPYDIR): No more etc, new arch-lib and share-lib.
11431 (src/paths.h): Set PATH_DATA and the LOCK macros too.
11432 (src): Now depends on lib-src, not etc.
11433 * build-install: Changes parallel to the above.
11434 * README: Describe the new arrangement.
11435
11436 * vms: New subdirectory for all the VMS stuff.
11437
11438 1991-12-03 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
11439
11440 * Makefile (LISPPATH): New variable.
11441 (src/paths.h): Define PATH_LOADSEARCH according to LISPPATH.
11442
11443 1990-09-28 Richard Stallman (rms@mole.ai.mit.edu)
11444
11445 * Makefile (install, install.sysv, install.xenix):
11446 Install wakeup instead of loadst. No need for setuid or setgid.
11447
11448 1990-08-07 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11449
11450 * Makefile (clean): Clean etc if that's not the installation dir.
11451
11452 1990-04-26 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11453
11454 * Makefile (paths.h): Make sed alter each name in the path.
11455
11456 1988-08-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11457
11458 * Makefile (install.sysv): Use cpio, not tar.
11459
11460 1988-08-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11461
11462 * Makefile (lockdir): Rename `lock' target.
11463 Depend on it from install*, not from `all'.
11464
11465 1988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
11466
11467 * Makefile: Changed LIBDIR and BINDIR back to /usr/local/{emacs,bin}
11468 to match build-install and paths.h.
11469
11470 ;; Local Variables:
11471 ;; coding: utf-8
11472 ;; End:
11473
11474 Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc.
11475
11476 This file is part of GNU Emacs.
11477
11478 GNU Emacs is free software: you can redistribute it and/or modify
11479 it under the terms of the GNU General Public License as published by
11480 the Free Software Foundation, either version 3 of the License, or
11481 (at your option) any later version.
11482
11483 GNU Emacs is distributed in the hope that it will be useful,
11484 but WITHOUT ANY WARRANTY; without even the implied warranty of
11485 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11486 GNU General Public License for more details.
11487
11488 You should have received a copy of the GNU General Public License
11489 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.