]> code.delx.au - gnu-emacs/blob - ChangeLog
* Makefile.in: Run autogen/copy_autogen if autogen.sh fails,
[gnu-emacs] / ChangeLog
1 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
2
3 * Makefile.in: Fix build error on FreeBSD.
4 ($(MAKEFILE_NAME)): Pass MAKE='$(MAKE)' to config.status's env.
5 Suggested by Wolfgang Jenker in
6 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00430.html>.
7 (MAKE_CONFIG_STATUS): Remove. Remaining use expanded.
8 This undoes part of the 2012-09-10 patch.
9 (bootstrap): Run ./configure, rather than trying to run config.status
10 if it exists. That builds src/epaths.h more reliably.
11 Run autogen/copy_autogen if autogen.sh fails,
12 to create 'configure'; problem reported by Andreas Schwab in
13 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00438.html>.
14 * autogen.sh: Exit with status 1 when failing due to missing tools,
15 reverting the 2012-09-10 change to this file.
16 * autogen/copy_autogen: Fail if one of the subsidiary actions fail.
17 Use 'cp -f' for the build-aux files, since the destinations are
18 typically read-only.
19
20 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
21 * configure.ac (ac_cv_func_vfork_works): Default to 'no' on
22 Solaris 2.4, so that AC_FUNC_VFORK doesn't think vfork works.
23
24 2012-09-17 Glenn Morris <rgm@gnu.org>
25
26 * configure.ac (copyright): New output variable.
27 (COPYRIGHT): New AC_DEFINE.
28
29 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
30
31 Remove configure's --without-sync-input option (Bug#12450).
32 * configure.ac (SYNC_INPUT, BROKEN_SA_RESTART): Remove.
33
34 2012-09-16 Glenn Morris <rgm@gnu.org>
35
36 Increase compartmentalization of Nextstep builds rules,
37 and store Emacs version number in fewer versioned files.
38 * configure.ac (ns_appsrc): Use relative names.
39 (ns_frag): Remove.
40 (Info-gnustep.plist, Emacs.desktop, Info.plist, InfoPlist.strings)
41 (nextstep/Makefile): Generate these nextstep files.
42 (SUBDIR_MAKEFILES): Add nextstep.
43 * Makefile.in (clean, distclean, bootstrap-clean): Add nextstep.
44 * make-dist (nextstep/templates): Add directory.
45 (nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj): Remove.
46 (nextstep/Cocoa/Emacs.base/Contents)
47 (nextstep, nextstep/GNUstep/Emacs.base/Resources): Update contents.
48
49 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
50
51 Port better to POSIX hosts lacking _setjmp (Bug#12446).
52 * configure.ac (HAVE__SETJMP, HAVE_SIGSETJMP): New symbols.
53 (_setjmp, _longjmp): Remove.
54
55 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
56
57 * configure.ac (--without-sync-input): Fix typo in usage message.
58
59 * configure.ac: Port to hosts lacking gtk.
60 (PKG_CHECK_MODULES): Capture pkg-config diagnostics
61 better, in particular, problems in invoking pkg-config itself.
62 This is useful on hosts that don't have pkg-config.
63 (GTK_MODULES): Do not exit 'configure' simply because gtk3
64 and gtk2 are both missing. Problem found on Solaris 8.
65
66 2012-09-13 Jan Djärv <jan.h.d@swipnet.se>
67
68 * configure.ac: Reorder Xaw3d messages.
69 Report Gtk+ 3 as GTK.
70
71 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
72
73 Simplify SIGIO usage (Bug#12408).
74 * configure.ac (NO_TERMIO, BROKEN_FIONREAD, BROKEN_SIGAIO)
75 (BROKEN_SIGPOLL, BROKEN_SIGPTY): Remove.
76 (USABLE_FIONREAD, USABLE_SIGIO): New symbols. All uses of
77 'defined SIGIO' replaced with 'defined USABLE_SIGIO', with no need
78 to #undef SIGIO now (which was error-prone). Likewise, all uses
79 of 'defined FIONREAD' replaced with 'defined USABLE_FIONREAD'.
80
81 2012-09-12 Jan Djärv <jan.h.d@swipnet.se>
82
83 * configure.ac: No --with-x-toolkit given: Try gtk3 toolkit first
84 and then gtk2 if not found.
85 --with-x-toolkit=gtk|yes: As above, but fail if gtk2 or gt3 not found.
86 --with-x-toolkit=gtk2: Only try gtk2, fail if not found.
87 --with-x-toolkit=gtk3: Only try gtk3, fail if not found.
88
89 2012-09-11 Glenn Morris <rgm@gnu.org>
90
91 * Makefile.in (install-arch-dep, install-arch-indep, install-doc):
92 Be more explicit about dependencies, for parallel `make install'.
93
94 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
95
96 Simplify, document, and port floating-point (Bug#12381).
97 * configure.ac (logb, cbrt): Do not check for these functions,
98 as they are not being used.
99
100 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
101
102 Improve robustness of 'make bootstrap' (Bug#12376).
103 Run autogen.sh after bootstrap-clean, to avoid bzr pull issues.
104 * INSTALL, README: Document autogen.sh.
105 * Makefile.in (Makefile): Mark it as precious, since it's updated
106 atomically.
107 (MAKE_CONFIG_STATUS): New macro.
108 (config.status, bootstrap): Use it. This causes 'make bootstrap'
109 to run config.status with the --recheck option, which is more
110 appropriate for a bootstrap.
111 (bootstrap): Run autogen.sh right after cleaning. Don't worry
112 about failures due to missing tools.
113 * autogen.sh: Exit with status 101 when failing due to missing tools.
114 * make-dist: Distribute autogen.sh.
115
116 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
117
118 Assume C89 or later for math functions (Bug#12381).
119 * configure.ac (frexp, fmod): Remove checks for these functions,
120 as we now assume them.
121 (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC, NO_MATHERR)
122 (HAVE_EXCEPTION):
123 Remove; no longer needed.
124
125 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
126
127 More signal-handler cleanup (Bug#12327).
128 * configure.ac (FLOAT_CHECK_DOMAIN): Comment fix (Bug#12327).
129
130 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
131
132 Signal-handler cleanup (Bug#12327).
133 * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
134 Adjust to syssignal.h changes.
135 (SIGNAL_H_AB): Remove; no longer needed.
136
137 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
138
139 Simplify redefinition of 'abort' (Bug#12316).
140 * configure.ac (NO_ABRT): Remove.
141
142 * configure.ac (_setjmp, _longjmp): Check by compiling
143 instead of by guessing. The guesses were wrong for
144 recent versions of Solaris, such as Solaris 11.
145
146 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
147
148 * configure.ac (WARN_CFLAGS): Omit -Wjump-misses-init.
149 It generates false alarms in doc.c, regex.c, xdisp.c. See
150 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00040.html>.
151
152 Merge from gnulib, incorporating:
153 2012-08-29 stdbool: be more compatible with mixed C/C++ compiles
154 2011-11-30 manywarnings: update the list of "all" warnings
155
156 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
157
158 * configure.ac (HAVE_GOBJECT): Check for gobject-2.0 (Bug#12332).
159
160 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
161
162 * configure.ac (_FORTIFY_SOURCE): Define only when optimizing.
163 This ports to glibc 2.15 or later, when configured with
164 --enable-gcc-warnings. See Eric Blake in
165 <http://lists.gnu.org/archive/html/bug-grep/2012-09/msg00000.html>.
166
167 2012-09-01 Daniel Colascione <dan.colascione@gmail.com>
168
169 * configure.ac: Introduce term_header variable, which holds the
170 value which will become TERM_HEADER in code. We effect our choice
171 of window system by setting term_header and WINDOW_SYSTEM_OBJ
172 instead of using ad-hoc variables and flags for each window
173 system.
174
175 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
176
177 * configure.ac (CFLAGS): Prefer -g3 to -g if -g3 works
178 and if the user has not specified CFLAGS. -g3 simplifies
179 debugging, since it makes macros visible to the debugger.
180
181 2012-08-25 Juanma Barranquero <lekktu@gmail.com>
182
183 * lib/makefile.w32-in ($(BLD)/execinfo.$(O)): Update dependencies.
184
185 2012-08-25 Eli Zaretskii <eliz@gnu.org>
186
187 * lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
188 (GNULIBOBJS): Add $(BLD)/execinfo.$(O).
189
190 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
191
192 On assertion failure, print backtrace if available.
193 Merge from gnulib, incorporating:
194 2012-08-24 execinfo: port to FreeBSD
195 2012-08-22 execinfo: new module
196 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
197 * lib/execinfo.c, lib/execinfo.in.h, m4/execinfo.m4: New files.
198
199 2012-08-22 Glenn Morris <rgm@gnu.org>
200
201 * Makefile.in (install-arch-dep): If NO_BIN_LINK is non-null,
202 do not create the bin/emacs link. (Bug#12011)
203
204 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
205
206 Merge from gnulib, incorporating:
207 2012-08-20 extern-inline: support old GCC 'inline'
208
209 2012-08-20 Glenn Morris <rgm@gnu.org>
210
211 * configure.ac (AC_PROG_LN_S): Test for ln.
212 * Makefile.in (LN_S): New, set by configure.
213 (install-arch-dep): Use $LN_S.
214
215 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
216
217 Merge from gnulib, incorporating:
218 2012-08-19 ignore-value, stat-time, timespec: omit AC_C_INLINE
219 2012-08-19 mktime, sys_select: avoid 'static inline'
220 2012-08-19 gnulib-tool: Fix indentation.
221
222 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
223
224 * lib/sigprocmask.c, m4/signalblocking.m4: Remove.
225 These files have been unused since the 2012-06-22 patch that
226 introduced high-resolution time stamps.
227
228 2012-08-17 Jan Beich <jbeich@tormail.org> (tiny change)
229
230 * configure.ac (PTY_OPEN): Try posix_openpt on gnu-linux,
231 gnu-kfreebsd, freebsd, and netbsd. (Bug#12040)
232
233 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
234
235 Merge from gnulib, incorporating:
236 2012-08-05 extern-inline: also ignore -Wmissing-declarations
237
238 2012-08-10 Juanma Barranquero <lekktu@gmail.com>
239
240 * lib/makefile.w32-in (STAT_TIME_H): New macro.
241 (FTOASTR_C, $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O))
242 ($(BLD)/u64.$(O)): Update dependencies.
243
244 2012-08-10 Glenn Morris <rgm@gnu.org>
245
246 * configure.ac (DIRECTORY_SEP): Move here from src/lisp.h.
247
248 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
249
250 * configure.ac (--disable-features): Rename to --without-all.
251 (OPTION_DEFAULT_ON): Change to use with_features.
252 * INSTALL: Fix description.
253
254 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
255
256 * configure.ac: New option --disable-features.
257 (OPTION_DEFAULT_ON): Change to use enable_features.
258 * INSTALL: Explain --disable-features.
259
260 2012-08-07 Glenn Morris <rgm@gnu.org>
261
262 * configure.ac: Require automake 1.11 (fairly arbitrarily).
263 * autogen.sh (automake_min): Get it from configure.ac.
264
265 2012-08-06 Glenn Morris <rgm@gnu.org>
266
267 * configure.ac (BROKEN_GETWD) [unixware]: New define.
268
269 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove.
270 (PENDING_OUTPUT_COUNT): Absorb GNU_LIBRARY_PENDING_OUTPUT_COUNT.
271 (DISPNEW_NEEDS_STDIO_EXT): New define.
272
273 2012-08-05 Michael Albinus <michael.albinus@gmx.de>
274
275 * INSTALL: Explain how to completely disable D-Bus. (Bug#12112)
276
277 2012-08-05 Ulrich Müller <ulm@gentoo.org>
278
279 * configure.ac: Disable paxctl if binaries don't have a
280 PT_PAX_FLAGS program header. (Bug#11979)
281
282 2012-08-03 Eli Zaretskii <eliz@gnu.org>
283
284 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O),
285 $(BLD)/timespec.$(O), and $(BLD)/u64.$(O).
286 (SHA512_H): Don't mention u64.h twice.
287 ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)):
288 New targets.
289
290 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
291
292 Merge from gnulib, incorporating:
293 2012-08-02 stat-time, timespec, u64: support naive out-of-dir builds
294
295 2012-08-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
296
297 * lib/Makefile.am (DEFAULT_INCLUDES): Add -I$(top_srcdir)/lib for
298 out-of-tree build.
299
300 2012-08-02 Glenn Morris <rgm@gnu.org>
301
302 * make-dist: Remove src/s.
303
304 * lib/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
305
306 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
307
308 Merge from gnulib (Bug#12116), incorporating:
309 2012-08-01 extern-inline: new module
310 2012-08-01 stat-time, timespec, u64, utimens: use extern-inline
311 * lib/stat-time.c, lib/timespec.c, lib/u64.c, m4/extern-inline.m4:
312 New files. The new .c files are for instantiating extern inline
313 functions.
314
315 Port to Solaris 8.
316 Without this change, 'configure' fails because the recently-added
317 wait3 prototype in config.h messes up later 'configure' tests.
318 Fix this problem by droping wait3 and WRETCODE, as they're
319 no longer needed on hosts that are current porting targets.
320 * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
321 All uses changed to waitpid and WEXITSTATUS.
322
323 Avoid needless autoheader after autogen.sh.
324 * src/stamp-h.in: Remove from bzr repository; no longer needed there.
325 * .bzrignore: Add it.
326 * autogen.sh: Create it.
327
328 2012-08-01 Glenn Morris <rgm@gnu.org>
329
330 * configure.ac (DOS_NT, MSDOS): New system type templates.
331
332 2012-08-01 Ulrich Müller <ulm@gentoo.org>
333
334 * configure.ac (LIB_STANDARD, START_FILES) [FreeBSD]:
335 Don't include crtbegin.o and crtend.o. (Bug#12047)
336
337 2012-08-01 Glenn Morris <rgm@gnu.org>
338
339 * configure.ac (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC)
340 (INTERNAL_TERMINAL): New.
341
342 * configure.ac (DEVICE_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP)
343 (IS_ANY_SEP): Move here from src/lisp.h.
344
345 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
346
347 * lib/makefile.w32-in (CONFIG_H): Update dependencies.
348 (CONF_POST_H): New macro.
349
350 2012-07-31 Glenn Morris <rgm@gnu.org>
351
352 * configure.ac (S_FILE): Remove output variable.
353
354 * configure.ac (opsysfile): Use AH_TEMPLATE. Doc fix.
355
356 * configure.ac (NULL_DEVICE, SEPCHAR, USER_FULL_NAME):
357 Move here from src.
358
359 * configure.ac (AMPERSAND_FULL_NAME, subprocesses):
360 Move here from conf_post.h.
361
362 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
363
364 Improve OpenMotif detection on GNU/Linux systems.
365 * configure.ac (MOTIF): Check for /usr/include/openmotif
366 and /usr/(lib|lib64)/openmotif if --with-x-toolkit=motif.
367
368 2012-07-31 Andreas Schwab <schwab@linux-m68k.org>
369
370 * Makefile.in (install-arch-indep): Avoid eval.
371
372 2012-07-31 Glenn Morris <rgm@gnu.org>
373
374 * configure.ac (opsysfile, S_FILE): Now they are always empty.
375
376 * configure.ac (opsysfile): Forgot to set it to empty on sol2-10
377 when removing src/s/sol2-6.h yesterday.
378
379 * configure.ac (USG5_4): Reintroduce this.
380 (opsysfile): Set to empty on irix6-5, sol2*, and unixware.
381
382 * configure.ac (wait3, WRETCODE): Move here from src/s/usg5-4-common.h.
383
384 * configure.ac (opsysfile): Set to empty on hpux*, darwin;
385 and to s/usg5-4-common.h on irix6-5.
386
387 2012-07-30 Glenn Morris <rgm@gnu.org>
388
389 * configure.ac (AH_BOTTOM): Use an include file, so that the
390 contents do not get processed by autoheader.
391
392 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
393
394 Do not overwrite config.status while executing it (Bug#11214).
395 * Makefile.in (MAKEFILE_NAME): New macro.
396 ($(MAKEFILE_NAME)): Rename rule from Makefile.
397 * configure.ac (epaths): Set MAKEFILE_NAME to a bogus value,
398 so that GNU 'make' isn't tempted to make the Makefile and then
399 regenerate config.status while config.status is running.
400
401 Update .PHONY listings in makefiles.
402 * Makefile.in (.PHONY): Add all, ${SUBDIR}, blessmail, epath-force,
403 FRC, install-arch-dep, install-arch-indep, install-doc,
404 install-info, install-man, install-etc, install-strip, uninstall,
405 bootstrap-clean, TAGS, tags, info-real, force-info, check-info-dir.
406 (.RECURSIVE): Remove; hasn't been needed for years.
407
408 2012-07-30 Glenn Morris <rgm@gnu.org>
409
410 * configure.ac (SIGNAL_H_AHB): New hack macro.
411 (opsysfile): Set to empty on netbsd, openbsd.
412 (AH_BOTTOM): Include signal.h if SIGNAL_H_AHB is defined.
413
414 * configure.ac (_longjmp, _setjmp, TIOCSIGSEND): Move here from src/s.
415
416 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
417
418 * Makefile.in (install-arch-indep): Remove sh -x.
419
420 2012-07-30 Glenn Morris <rgm@gnu.org>
421
422 * configure.ac (opsysfile): Tweak message for null case.
423
424 * configure.ac (opsysfile): Set to empty on aix4-2, freebsd,
425 gnu-linux, gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware.
426
427 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
428
429 Merge from gnulib, incorporating:
430 * doc/misc/texinfo.tex: Update to 2012-07-29.17 version.
431
432 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
433
434 * Makefile.in (install-arch-indep): Handle space in locallisppath.
435
436 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
437
438 Use Gnulib environ module (Bug#9772).
439 * m4/environ.m4: New file, from gnulib.
440 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
441
442 Use Gnulib stdalign module (Bug#9772, Bug#9960).
443 This should improve portability of macros like alignof and DECL_ALIGN.
444 * lib/stdalign.in.h, m4/stdalign.m4: New files, from gnulib.
445 * .bzrignore: Add lib/stdalign.h.
446 * config.bat: Do not set NO_DECL_ALIGN; no longer needed.
447 Copy lib/stdalign.in.h to lib/stdalign.in-h as needed.
448 * configure.ac (HAVE_ATTRIBUTE_ALIGNED): Remove the code that
449 fiddles with this, as gnulib now does this for us.
450
451 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
452
453 Fix toolkit configuration report.
454 * configure.ac (USE_X_TOOLKIT): Report toolkit as GTK3 if
455 --with-x-toolkit=gtk3 is used.
456
457 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
458
459 Fix regression with pthread_sigmask on FreeBSD (Bug#11884).
460 * configure.ac: Configure gnulib at the end, not before running
461 pkg-config. This restores the behavior before 2012-06-22, when
462 higher-resolution time stamps were added, and fixes a bug whereby
463 LIB_PTHREAD was not used and gnulib's part of 'configure'
464 therefore incorrectly assumed that pthread_sigmask wasn't working.
465 Fix the problem with -lrt and clock_gettime a different way.
466 This should complete the fix for Bug#11884.
467 (pre_PKG_CONFIG_CFLAGS, pre_PKG_CONFIG_LIBS): New shell vars.
468
469 2012-07-15 Paul Eggert <eggert@cs.ucla.edu>
470
471 Merge from gnulib, incorporating:
472 2012-07-15 pthread_sigmask: fix bug on FreeBSD 9 (Bug#11884)
473 2012-07-11 gettext: do not assume '#define ... defined ...' behavior
474
475 2012-07-14 Glenn Morris <rgm@gnu.org>
476
477 * configure.ac (GC_SETJMP_WORKS, GC_MARK_STACK): Move here from src/s.
478 (AH_BOTTOM): Move GC_SETJMP_WORKS GCC fallback to main body.
479
480 2012-07-13 Glenn Morris <rgm@gnu.org>
481
482 * configure.ac (opsysfile): Set to empty on gnu, cygwin.
483
484 * configure.ac (BSD4_2, BSD_SYSTEM, USG, USG5, _AIX, CYGWIN)
485 (DARWIN_OS, GNU_LINUX, HPUX, IRIX6_5, SOLARIS2):
486 Move "system type" macros here from src/s.
487 (BSD_SYSTEM_AHB): New hack macro.
488 (AH_BOTTOM): Set BSD_SYSTEM, using BSD_SYSTEM_AHB.
489
490 * configure.ac (NSIG_MINIMUM, ULIMIT_BREAK_VALUE, SETUP_SLAVE_PTY)
491 (GC_MARK_SECONDARY_STACK): Move here from src/s.
492
493 2012-07-12 Glenn Morris <rgm@gnu.org>
494
495 * configure.ac (AH_BOTTOM) [DARWIN_OS]: Move SYSTEM_PURESIZE_EXTRA
496 setting here from src/s/darwin.h.
497
498 * configure.ac (NO_MATHERR): Unconditionally define for Darwin;
499 as src/s/darwin.h used to.
500
501 * configure.ac (NARROWPROTO, NO_ABORT, BROKEN_GET_CURRENT_DIR_NAME)
502 (BROKEN_FIONREAD, BROKEN_PTY_READ_AFTER_EAGAIN, BROKEN_SIGAIO)
503 (BROKEN_SIGPOLL, BROKEN_SIGPTY, FIRST_PTY_LETTER, NO_EDITRES)
504 (G_SLICE_ALWAYS_MALLOC, PREFER_VSUSP, PTY_ITERATION, PTY_OPEN)
505 (PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF, RUN_TIME_REMAP)
506 (SETPGRP_RELEASES_CTTY, TAB3, TABDLY, RUN_TIME_REMAP, UNIX98_PTYS)
507 (XOS_NEEDS_TIME_H): Move here from src/s.
508
509 2012-07-11 Glenn Morris <rgm@gnu.org>
510
511 * configure.ac (INTERRUPT_INPUT): Move here from src/s.
512 (HAVE_PTYS, HAVE_SOCKETS): Define unconditionally.
513
514 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
515
516 * configure.ac (tzset): Remove check that's redundant with gnulib.
517
518 2012-07-11 Glenn Morris <rgm@gnu.org>
519
520 * configure.ac (CLASH_DETECTION): Define unconditionally.
521
522 * configure.ac (opsysfile): Use bsd-common on gnu systems.
523
524 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT):
525 (SIGNALS_VIA_CHARACTERS): Move here from src/s.
526
527 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
528
529 Assume mkdir, rename, rmdir, strerror.
530 * configure.ac (mkdir, rename, rmdir, strerror): Remove check.
531
532 2012-07-11 Glenn Morris <rgm@gnu.org>
533
534 * configure.ac (DONT_REOPEN_PTY): Move here from src/s.
535
536 * configure.ac (DEFAULT_SOUND_DEVICE): New definition.
537
538 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
539
540 Remove "#define unix" that is no longer needed (Bug#11905).
541 Merge from gnulib to make "#define unix" unnecessary, incorporating:
542 2012-07-10 getloadavg: clean out old Emacs and Autoconf cruft
543 2012-07-09 getopt: Simplify after Emacs changed.
544
545 2012-07-10 Glenn Morris <rgm@gnu.org>
546
547 * configure.ac (DATA_START, DATA_SEG_BITS, PENDING_OUTPUT_COUNT):
548 Move here from src/s.
549
550 2012-07-09 Andreas Schwab <schwab@linux-m68k.org>
551
552 * configure.ac (PNG_DEPSTRUCT): Define this instead of
553 PNG_DEPRECATED.
554
555 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
556
557 Add GCC-style 'const' attribute to functions that can use it.
558 * configure.ac (WARN_CFLAGS): Add -Wsuggest-attribute=const.
559 (ATTRIBUTE_CONST): New macro, in config.h.
560
561 2012-07-09 Juanma Barranquero <lekktu@gmail.com>
562
563 * lib/makefile.w32-in: Rework dependencies.
564 (GNU_LIB, NT_INC, C_CTYPE_H, MS_W32_H, CONFIG_H, FILEMODE_H)
565 (FTOASTR_H, FTOASTR_C, GETOPT_INT_H, MD5_H, SHA1_H, SHA256_H)
566 (U64_H, SHA512_H): New macros.
567 (SRC): Redefine to point to src/, not current directory.
568 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
569 ($(BLD)/c-strncasecmp.$(O), $(BLD)/dtoastr.$(O))
570 ($(BLD)/dtotimespec.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
571 ($(BLD)/gettime.$(O), $(BLD)/strftime.$(O), $(BLD)/time_r.$(O))
572 ($(BLD)/timespec-add.$(O), $(BLD)/timespec-sub.$(O), $(BLD)/md5.$(O))
573 ($(BLD)/sha1.$(O), $(BLD)/sha256.$(O), $(BLD)/sha512.$(O))
574 ($(BLD)/filemode.$(O)): Update dependencies.
575
576 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
577
578 Merge from gnulib, incorporating:
579 2012-07-09 timespec: mark functions with const attributes
580
581 Rename configure.in to configure.ac (Bug#11603).
582 The name 'configure.in' has been obsolescent for quite some time,
583 and the next release of Autoconf will generate warnings for it.
584 See commit 'v2.69-4-g560f16b' of 2012-05-06, "general: deprecate
585 'configure.in' as autoconf input" in the Autoconf git repository.
586 * configure.ac: Rename from configure.in.
587 * INSTALL, INSTALL.BZR, README, make-dist:
588 * Makefile.in (AUTOCONF_INPUTS):
589 * autogen.sh (autoconf_min):
590 * autogen/update_autogen (sources):
591 Adjust to reflect new name.
592
593 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
594
595 Restore deprecation warnings, except for older libpng.
596 * configure.in (WARN_CFLAGS): Remove -Wno-deprecated-declarations.
597 (HAVE_LIBPNG_PNG_H): Don't bother checking for this if we have png.h.
598 (PNG_DEPRECATED): Define when compiling with older PNG versions.
599
600 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
601
602 * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
603
604 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
605
606 Improve static checking when configured --with-ns.
607 See Samuel Bronson's remarks in
608 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00146.html>.
609 * configure.in (WARN_CFLAGS): Omit -Wunreachable-code, as it's
610 a no-op with recent GCC and harmful in earlier ones.
611 Omit -Wsync-nand, as it's irrelevant to Emacs and provokes a
612 warning when compiling with ObjC. Always omit
613 -Wunsafe-loop-optimizations, as we don't mind when optimization is
614 being done correctly.
615
616 2012-07-07 Glenn Morris <rgm@gnu.org>
617
618 * configure.in (BROKEN_SA_RESTART): Doc fix.
619
620 * configure.in: Rather than checking for things then undef'ing
621 them on some platforms, simply don't check for them.
622 (getwd): Don't check for it on unixware.
623 (random, rint): Don't check for these on hpux.
624 (res_init, libresolv): Don't check for these on darwin.
625
626 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
627
628 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O),
629 $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O).
630 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
631 ($(BLD)/c-strncasecmp.$(O)): New dependencies.
632
633 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
634
635 * configure.in: Document --enable-gcc-warnings better.
636
637 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
638 This is safer than strcasecmp, which has unspecified behavior
639 outside the POSIX locale and in practice sometimes does not work
640 in multibyte locales. Similarly for c_strncasecmp and strncasecmp.
641 * configure.in (strcasecmp, strncasecmp): Remove checks.
642
643 * lib/c-ctype.c, lib/c-ctype.h, lib/c-strcase.h, lib/c-strcasecmp.c:
644 * lib/c-strncasecmp.c: New files, taken from gnulib.
645 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
646
647 Merge from gnulib, incorporating:
648 2012-07-06 timespec-sub: avoid duplicate include
649 Reported by Juanma Barranquero.
650
651 2012-07-06 Glenn Morris <rgm@gnu.org>
652
653 * make-dist [update]: Let autoreconf figure out what needs updating.
654 Use `make info-real'. leim/leim-list.el should always exist.
655 Check cd return value.
656
657 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
658
659 Merge from gnulib. This is for OpenBSD 5.1 amd64.
660 * m4/sys_time_h.m4: New version from gnulib, incorporating:
661 2012-07-05 sys_time: allow too-wide tv_sec
662
663 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
664
665 Merge from gnulib.
666 * lib/alloca.in.h: New version from gnulib, incorporating:
667 2012-07-03 alloca: add support for HP NonStop TNS/E native
668
669 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
670
671 * configure.in: If --enable-gcc-warnings, disable
672 -Wunsafe-loop-optimizations for -O1 optimization level.
673
674 2012-06-30 Glenn Morris <rgm@gnu.org>
675
676 * configure.in (standardlisppath): New output variable.
677 (lisppath): Use standardlisppath.
678 * Makefile.in (standardlisppath): New, set by configure.
679 (epaths-force): Use standardlisppath and locallisppath rather than
680 lisppath.
681
682 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
683
684 * configure.in: Fix previous change. Remove --enable-asserts.
685 (CPPFLAGS): Remove conditional -DXASSERTS=1.
686 Add --enable-link-time-optimization.
687 * INSTALL: Mention this.
688
689 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
690
691 * configure.in: Add glyphs category to --enable-checking option.
692 (GLYPH_DEBUG): Define if glyphs debugging is enabled.
693
694 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
695
696 * configure.in (ENABLE_CHECKING): Update comment.
697
698 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
699
700 * configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
701 Emacs proper no longer uses these headers, and can rely on Gnulib
702 for these checks.
703
704 Merge from gnulib.
705 * m4/getopt.m4: Copy new version from gnulib, incorporating:
706 getopt-posix: No longer guarantee that option processing is resettable.
707
708 2012-06-27 Glenn Morris <rgm@gnu.org>
709
710 * configure.in: Only check for paxctl on gnu-linux. (Bug#11398#26)
711
712 * INSTALL: Remove references to paths.el.
713
714 2012-06-26 Eli Zaretskii <eliz@gnu.org>
715
716 * lib/makefile.w32-in ($(GNULIBOBJS)): Depend on stamp_BLD. This
717 replaces separate dependency for each object file, which required
718 the same object file to be mentioned twice, causing failures in
719 parallel builds.
720
721 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
722
723 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
724 * lib/makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
725
726 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
727
728 * configure.in (AC_CHECK_FUNCS): Detect library functions
729 strcasecmp and strncasecmp.
730
731 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
732
733 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
734 We might as well use the spelling standardized by C11,
735 as in the long run that should simplify maintenance.
736 * configure.in (NO_RETURN): Remove. All uses replaced by _Noreturn.
737
738 2012-06-24 Eli Zaretskii <eliz@gnu.org>
739
740 * lib/makefile.w32-in ($(BLD)/dtotimespec.$(O)):
741 ($(BLD)/timespec-add.$(O)):
742 ($(BLD)/timespec-sub.$(O)): Don't depend on
743 $(EMACS_ROOT)/nt/inc/sys/time.h.
744
745 * lib/stat-time.h:
746 * lib/timespec.h:
747 * lib/utimens.h: Revert last change.
748
749 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
750
751 Merge from gnulib.
752 * m4/getopt.m4: Copy new version from gnulib, incorporating:
753 getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
754
755 2012-06-23 Eli Zaretskii <eliz@gnu.org>
756
757 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
758 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/dtotimespec.$(O),
759 $(BLD)/gettime.$(O), $(BLD)/timespec-add.$(O), and
760 $(BLD)/timespec-sub.$(O).
761 ($(BLD)/dtotimespec.$(O)):
762 ($(BLD)/gettime.$(O)):
763 ($(BLD)/timespec-add.$(O)):
764 ($(BLD)/timespec-sub.$(O)): New dependencies.
765
766 * lib/stat-time.h:
767 * lib/timespec.h:
768 * lib/utimens.h: Include sys/time.h.
769
770 2012-06-23 Andreas Schwab <schwab@linux-m68k.org>
771
772 * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
773 the correct CFLAGS and LIBS.
774
775 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
776
777 Support higher-resolution time stamps (Bug#9000).
778 * configure.in (gl_ASSERT_NO_GNULIB_POSIXCHECK)
779 (gl_ASSERT_NO_GNULIB_TESTS, gl_INIT): Move these up earlier, so
780 that the new clock stuff doesn't clash with RSVG_LIBS.
781 (AC_CHECK_HEADERS): Don't check for sys/select.h, sys/time.h, utime.h,
782 as gnulib does that for us now.
783 (emacs_cv_struct_utimbuf, HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL)
784 (GETTIMEOFDAY_ONE_ARGUMENT): Remove; gnulib does these now.
785 (AC_CHECK_FUNCS): Remove utimes; no longer needed.
786 * lib/dtotimespec.c, lib/gettime.c, lib/gettimeofday.c, lib/pselect.c:
787 * lib/stat-time.h, lib/sys_select.in.h, lib/sys_time.in.h:
788 * lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
789 * lib/utimens.c, lib/utimens.h, m4/clock_time.m4, m4/gettime.m4:
790 * m4/gettimeofday.m4, m4/pselect.m4, m4/stat-time.m4:
791 * m4/sys_select_h.m4, m4/sys_socket_h.m4, m4/sys_time_h.m4:
792 * m4/timespec.m4, m4/utimbuf.m4, m4/utimens.m4, m4/utimes.m4:
793 New files, copied automatically from gnulib.
794 * lib/gnulib.mk, m4/gnulib-comp.m4: Merge from gnulib.
795
796 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
797
798 Merge from gnulib.
799 * lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
800 * lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
801 * m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
802 * m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
803 Copy new versions from gnulib, incorporating the following changes:
804 2012-06-22 time_r: fix typo that always overrode localtime_r decl
805 2012-06-22 Write "Mac OS X" instead of "MacOS X".
806 2012-06-21 mktime: fix integer overflow in 'configure'-time test
807 2012-06-21 nonblocking: Avoid compilation error on mingw64.
808 2012-06-19 stat, fstat: Avoid warnings on mingw64.
809 2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
810
811 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
812
813 * configure.in: Rename --enable-use-lisp-union-type to
814 --enable-check-lisp-object-type and define CHECK_LISP_OBJECT_TYPE
815 instead of USE_LISP_UNION_TYPE.
816
817 2012-06-12 Glenn Morris <rgm@gnu.org>
818
819 * configure.in (HAVE_PROCFS, _STRUCTURED_PROC): New AC_DEFINEs.
820 (opsysfile): Set specially for sol2-10.
821
822 * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
823 New AC_DEFINEs, for hpux11.
824 (opsysfile): Set specially for hpux11.
825
826 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
827
828 * configure.in: Coalesce some function checking.
829 This makes 'configure' a bit smaller.
830 Prefer AC_CHECK_FUNCS_ONCE for functions that we always check for.
831
832 2012-06-12 Glenn Morris <rgm@gnu.org>
833
834 * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
835
836 * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
837
838 * configure.in: Anticipate platforms with no src/s file.
839
840 2012-06-12 Chong Yidong <cyd@gnu.org>
841
842 * configure.in: Check for MagickMergeImageLayers (Bug#11678).
843
844 2012-06-11 Glenn Morris <rgm@gnu.org>
845
846 * configure.in (SYSTEM_TYPE): New AC_DEFINE.
847
848 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
849
850 * configure.in (dbus_type_is_valid): Check for library function.
851
852 2012-06-06 Glenn Morris <rgm@gnu.org>
853
854 * INSTALL, make-dist: Remove vcdiff.
855
856 2012-06-03 Glenn Morris <rgm@gnu.org>
857
858 * INSTALL, make-dist: Remove rcs-checkin.
859
860 2012-06-03 Ulrich Müller <ulm@gentoo.org>
861
862 * configure.in (PAXCTL): Check for paxctl. (Bug#11398)
863
864 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
865
866 Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
867 It is confusingly named and rarely useful. See, for example,
868 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
869 * INSTALL.BZR: Don't mention --disable-maintainer-mode.
870 * Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
871 * configure.in: Remove --disable-maintainer-mode.
872 (USE_MAINTAINER_MODE, MAINT): Remove.
873
874 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
875
876 Make 'configure' a bit smaller and faster.
877 * configure.in (INSTALL_INFO): Set it with one call to
878 AC_PATH_PROG, not three.
879 (PKG_CONFIG): Hoist this out of PKG_CHECK_MODULES, since it's
880 so likely that it'll be needed.
881 (AC_CHECK_HEADERS_ONCE): Prefer to AC_CHECK_HEADERS where either works.
882 (AC_PROG_MAKE_SET): Remove; Automake does this.
883 (sysinfo): Do not check for this function, as it's never used.
884 (tzset): Check for this function just once.
885 * m4/manywarnings.m4: Sync from gnulib, incorporating the following:
886 2012-05-27 manywarnings: remove duplicate -Wmultichar entry
887
888 2012-05-27 Eli Zaretskii <eliz@gnu.org>
889
890 * config.bat (lib): Create/update lib/stdalign.in-h and
891 lib/sys_types.in-h.
892
893 * lib/makefile.w32-in ($(BLD)/md5.$(O)):
894 ($(BLD)/sha1.$(O)):
895 ($(BLD)/sha256.$(O)):
896 ($(BLD)/sha512.$(O)): Depend on $(EMACS_ROOT)/nt/inc/stdalign.h.
897 Suggested by Christoph Scholtes <cschol2112@googlemail.com>.
898
899 * lib/getopt_.h: Regenerate.
900
901 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
902
903 Assume gnulib does largefile.
904 Gnulib does the largefile configuration anyway, so when configure.in
905 invokes AC_SYS_LARGEFILE, that bloats 'configure' unnecessarily.
906 * configure.in (AC_SYS_LARGEFILE): Remove.
907 * lib/gnulib.mk: Autoupdate.
908
909 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
910
911 Merge from gnulib. (Bug#11527)
912
913 The build procedure now creates <stdalign.h> and <sys/types.h> for
914 older hosts that lack a working <stdalign.h> or whose
915 <sys/types.h> does not define pid_t, size_t, ssize_t, mode_t. New
916 symbols such as WINDOWS_64_BIT_OFF_T may require attention in the
917 msdos and nt builds.
918
919 Here is a precis of gnulib changes that seem relevant; please see
920 the gnulib ChangeLog for details.
921
922 2012-05-18 crypto: fix bug in large buffer handling
923 2012-05-14 ignore-value.h: remove unused _GL_ATTRIBUTE_DEPRECATED
924 2012-05-10 _Noreturn: port config.h to gcc -Wundef
925 2012-05-08 warnings.m4: give a means to specify the program to compile
926 2012-05-07 stdint: be more consistent with glibc, SunOS libc
927 2012-04-21 Large File Support for native Windows platforms.
928 2012-04-14 stat: Bypass buggy override in mingw64.
929 2012-03-29 stdio: don't assume gets any more
930 2012-03-24 Enable common subexpression optimization in GCC.
931 2012-02-09 maint: replace FSF snail-mail addresses with URLs
932 2012-01-30 sys_stat: Fix support for mingw64 and MSVC.
933 2012-01-28 strtoimax: eliminate need for stdint.h, inttypes.h checks
934 2012-01-21 stdint: Add support for Android.
935 2012-01-15 Improve support for MSVC 9.
936 2012-01-08 mktime: Avoid compilation error on Solaris 11.
937 2012-01-05 Use ', not `, for quoting output.
938 2012-01-05 strtoimax: Don't replace systems where intmax_t is int.
939 2012-01-05 strtoimax: Work around AIX 5.1 bug.
940 2012-01-05 inttypes: Modernize.
941 2011-12-13 inttypes, stdint: add C++11 support
942 2011-11-26 Fix conflict between two instantiations of module 'unistd'.
943 2011-11-21 _Noreturn: Check that _MSC_VER is defined
944 2011-11-10 ptsname_r: Avoid compilation error on OSF/1 5.1.
945 2011-11-09 raise: fix mingw handling of SIGPIPE
946 2011-10-27 Add stdalign module and use it in other modules.
947
948 * lib/stdalign.in.h, lib/sys_types.in.h, m4/off_t.m4, m4/stdalign.m4:
949 * m4/sys_types_h.m4:
950 New files.
951 * build-aux/move-if-change, build-aux/snippet/_Noreturn.h:
952 * build-aux/snippet/arg-nonnull.h, build-aux/snippet/c++defs.h:
953 * build-aux/snippet/warn-on-use.h, doc/misc/texinfo.tex:
954 * lib/alloca.in.h, lib/allocator.h, lib/careadlinkat.c:
955 * lib/careadlinkat.h, lib/dosname.h, lib/dup2.c, lib/filemode.c:
956 * lib/filemode.h, lib/ftoastr.c, lib/ftoastr.h, lib/getloadavg.c:
957 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
958 * lib/gettext.h, lib/gnulib.mk, lib/ignore-value.h, lib/intprops.h:
959 * lib/inttypes.in.h, lib/lstat.c, lib/md5.c, lib/md5.h, lib/mktime.c:
960 * lib/pathmax.h, lib/pthread_sigmask.c, lib/readlink.c, lib/sha1.c:
961 * lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
962 * lib/signal.in.h, lib/sigprocmask.c, lib/stat.c, lib/stdarg.in.h:
963 * lib/stdbool.in.h, lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h:
964 * lib/stdlib.in.h, lib/strftime.c, lib/strftime.h, lib/strtoimax.c:
965 * lib/strtol.c, lib/strtoll.c, lib/strtoul.c, lib/strtoull.c:
966 * lib/symlink.c, lib/sys_stat.in.h, lib/time.in.h, lib/time_r.c:
967 * lib/u64.h, lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
968 * m4/alloca.m4, m4/c-strtod.m4, m4/dup2.m4, m4/extensions.m4:
969 * m4/filemode.m4, m4/getloadavg.m4, m4/getopt.m4, m4/gl-comp.m4:
970 * m4/gnulib-common.m4, m4/gnulib-tool.m4, m4/include_next.m4:
971 * m4/inttypes.m4, m4/largefile.m4, m4/longlong.m4, m4/lstat.m4:
972 * m4/md5.m4, m4/mktime.m4, m4/multiarch.m4, m4/nocrash.m4:
973 * m4/pathmax.m4, m4/pthread_sigmask.m4, m4/readlink.m4, m4/sha1.m4:
974 * m4/sha256.m4, m4/sha512.m4, m4/signal_h.m4, m4/signalblocking.m4:
975 * m4/socklen.m4, m4/ssize_t.m4, m4/st_dm_mode.m4, m4/stat.m4:
976 * m4/stdarg.m4, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4:
977 * m4/stdio_h.m4, m4/stdlib_h.m4, m4/strftime.m4, m4/strtoimax.m4:
978 * m4/strtoll.m4, m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4:
979 * m4/sys_stat_h.m4, m4/time_h.m4, m4/time_r.m4, m4/tm_gmtoff.m4:
980 * m4/unistd_h.m4, m4/warnings.m4, m4/wchar_t.m4:
981 Update from gnulib.
982
983 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
984
985 Remove src/m/*.
986 * configure.in: Remove all mention of src/m/*.
987 (machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
988 All uses removed.
989 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
990 (BITS_PER_LONG_LONG): Move to src/lisp.h.
991 * lib/makefile.w32-in: Remove dependencies on
992 $(EMACS_ROOT)/src/m/intel386.h.
993 * make-dist: Don't make links to src/m.
994
995 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
996
997 * Makefile.in (ACLOCAL_INPUTS): Fix up gnulib-comp.m4 name. (Bug#11529)
998 Without this further fix, aclocal was being invoked unnecessarily.
999
1000 2012-05-22 Glenn Morris <rgm@gnu.org>
1001
1002 * Makefile.in (blessmail, install-arch-dep, uninstall):
1003 Check cd lib-src works.
1004 (install-arch-dep, uninstall): Remove unneeded subshells.
1005
1006 2012-05-21 Glenn Morris <rgm@gnu.org>
1007
1008 * update-subdirs: Move to build-aux/.
1009 * make-dist, Makefile.in (install-arch-indep): Update for this change.
1010
1011 * Makefile.in (leimdir): New, set by configure.
1012 (COPYDIR, COPYDESTS): Add leim directories.
1013 (install-leim): Remove.
1014 (install-arch-indep): Handle leim installation directly.
1015
1016 * vpath.sed: Remove unused file.
1017 * make-dist: No more vpath.sed.
1018
1019 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
1020
1021 Use full name for m4/gnulib-comp.m4. (Bug#11529)
1022 Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions,
1023 even though the file's name in gnulib is m4/gnulib-comp.m4.
1024 This had a problem when merging from gnulib, as the code temporarily
1025 renamed it to the full name, causing problems when interrupted.
1026 Now the file has its full name, with the idea that we will find
1027 a solution for MS-DOS that does not affect the rest of Emacs.
1028 * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4.
1029
1030 Assume C89 or later.
1031 * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
1032 (POINTER_TYPE, PROTOTYPES): Remove.
1033
1034 Make merging from gnulib a script, not a makefile action.
1035 Putting it in a makefile has some problems with reflection, as
1036 merging from gnulib updates 'configure', which can update the makefile.
1037 Putting it in a standalone script breaks this loop.
1038 * Makefile.in (gnulib_srcdir, $(gnulib_srcdir), DOS_gnulib_comp.m4)
1039 (GNULIB_MODULES, GNULIB_TOOL_FLAGS, sync-from-gnulib):
1040 Remove, moving the actions to the script admin/merge-gnulib.
1041
1042 2012-05-21 Glenn Morris <rgm@gnu.org>
1043
1044 * configure.in (LEIM_INSTALLDIR):
1045 Rename to leimdir, treat like lispdir.
1046
1047 2012-05-21 Glenn Morris <rgm@gnu.org>
1048
1049 * Makefile.in (install-arch-indep, install-doc, install-info)
1050 (uninstall): Scrap superfluous subshells.
1051
1052 2012-05-19 Ulrich Mueller <ulm@gentoo.org>
1053
1054 * Makefile.in (install-etc): Respect DESTDIR. (Bug#11518)
1055
1056 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
1057
1058 * configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
1059 getdomainname, mblen (twice), mbrlen (twice), mbsinit, ualarm,
1060 getsockopt, setsockopt, mremap, mempcpy.
1061
1062 * configure.in (machine): Do not set to 'vax', since src/m/vax.h
1063 is being removed.
1064 (AC_CHECK_FUNCS): Remove ftime.
1065
1066 2012-05-19 Glenn Morris <rgm@gnu.org>
1067
1068 * Makefile.in (install-arch-indep): Remove unneeded subshell.
1069
1070 * Makefile.in (install-arch-indep): Remove unneeded chmod.
1071 Set permissions of lisp/subdirs.el.
1072
1073 * Makefile.in (SUBDIR): Add leim. Update users.
1074
1075 * Makefile.in (lib, lib-src, lisp): Check cd return value.
1076
1077 * Makefile.in (leim): No need to set PARALLEL.
1078
1079 2012-05-18 Glenn Morris <rgm@gnu.org>
1080
1081 * Makefile.in (install-arch-indep, install-info, install-man):
1082 Simplify some one-sided ifs.
1083
1084 * Makefile.in: Install only the relevant DOC file.
1085 (install-arch-indep): Delete etc/DOC*.
1086 (install-doc): No more need to delete etc/DOC.
1087
1088 * Makefile.in (install-arch-indep): Split into several rules.
1089 (install-doc, innstall-info, install-man): New rules.
1090
1091 * configure.in (mandir): May as well include it in the NS app bundle.
1092
1093 * configure.in (INSTALL_ARCH_INDEP_EXTRA): New output variable.
1094 * Makefile.in (INSTALL_ARCH_INDEP_EXTRA): New, set by configure.
1095 (install-arch-indep): Don't install-etc for self-contained ns builds.
1096
1097 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
1098 No longer unconditonally add /sw directories. (Bug#2280)
1099
1100 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
1101 (install-arch-indep): Depend on install-leim.
1102 (install): Remove explicit install-leim dependence.
1103
1104 * Makefile.in (install-arch-indep):
1105 Move last element of mkdir rule here.
1106 (mkdir): Remove rule.
1107
1108 * Makefile.in (install-arch-indep): Remove unneeded chmods.
1109 INSTALL_DATA does this for us.
1110
1111 * Makefile.in (install-arch-dep): Ensure bindir exists.
1112 Drop mkdir dependency.
1113 (install-arch-indep): Ensure docdir, infodir, mandir exist.
1114 (install-leim): Drop mkdir dependency.
1115 (mkdir): Remove most directories, now made in relevant rules.
1116
1117 * Makefile.in (install-arch-indep): Combine adjacent loops.
1118
1119 2012-05-17 Glenn Morris <rgm@gnu.org>
1120
1121 * Makefile.in (install-etc, mkdir):
1122 Make relevant directories in install-etc rather than mkdir.
1123
1124 * Makefile.in (write_subdir): Create the directory if needed.
1125 (install-arch-dep, mkdir): No need to make site-lisp directories.
1126
1127 * Makefile.in (write_subdir): New.
1128 (install-arch-indep, install-arch-dep): Use $write_subdir.
1129
1130 * configure.in (docdir, etcdir, infodir, lispdir):
1131 For a self-contained ns build, set these to the appropriate values.
1132 * Makefile.in (install-arch-dep): No need to move info/ any more.
1133
1134 * configure.in (ns_self_contained): New output variable.
1135 * Makefile.in (ns_self_contained): New, set by configure.
1136 (install-arch-dep): For a self-contained ns build,
1137 don't bother installing binaries then immediately deleting them.
1138
1139 * Makefile.in (ns_appbindir, ns_appresdir):
1140 Move them before things that may refer to them.
1141 (install-arch-dep): No need to relocate self-contained ns libexec.
1142
1143 * configure.in (archlibdir): Set it for self-contained ns builds.
1144 (libexecdir): Don't expand it now (this is mainly cosmetic).
1145
1146 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
1147
1148 * configure.in: Simplify by removing CPP etc.
1149 (CPP_TEST_OPTIONS, NON_GNU_CPP, cc_specified, SPECIFIED_CFLAGS)
1150 (SPECIFED_CPP, CPP, NON_GNU_CC, AC_PROG_CPP): Remove; not needed.
1151 In particular we no longer need to fiddle with CPP, since we don't
1152 use CPP specially any more.
1153 (gl_EARLY): Invoke this after adjusting CC, so that it uses the
1154 adjusted compiler.
1155 (AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_RANLIB): Comment out,
1156 since gl_EARLY and/or Autoconf already does these.
1157
1158 2012-05-16 Glenn Morris <rgm@gnu.org>
1159
1160 * configure.in: Try to fix building with gcc >= 4.6 on Darwin.
1161 (CPP): Do not unconditionally set it on Darwin.
1162 Instead, try to test if -no-cpp-precomp is accepted.
1163 (CPP_TEST_OPTIONS, SPECIFIED_CPP): New. (Bug#9755)
1164
1165 2012-05-15 Glenn Morris <rgm@gnu.org>
1166
1167 * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
1168
1169 * Makefile.in (install-arch-dep): Do not hard-code version number.
1170
1171 * Makefile.in (install-arch-dep): NS install no longer needs to
1172 symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change.
1173
1174 2012-05-12 Glenn Morris <rgm@gnu.org>
1175
1176 * configure.in (ns_appbindir): Remove trailing "/".
1177
1178 * configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
1179 (MKDEPDIR): Use $MKDIR_P.
1180 * Makefile.in (MKDIR_P): New, set by configure.
1181 (mkdir): Use $MKDIR_P.
1182
1183 2012-05-11 Glenn Morris <rgm@gnu.org>
1184
1185 * Makefile.in (install-arch-indep): There are no more Makefile.c files.
1186 Use INSTALL_DATA for the DOC file.
1187 Remove dead code for ./lisp that never executes.
1188
1189 2012-05-10 Glenn Morris <rgm@gnu.org>
1190
1191 * configure.in (LEIM_INSTALLDIR): New output variable.
1192
1193 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
1194
1195 * .dir-locals.el (log-edit-mode): Enable gnu-style checks.
1196
1197 2012-05-08 Glenn Morris <rgm@gnu.org>
1198
1199 * make-dist: No more doc/lispref/*.el.
1200
1201 2012-05-05 Andreas Schwab <schwab@linux-m68k.org>
1202
1203 * configure.in: Fix quoting bugs.
1204
1205 2012-05-04 Glenn Morris <rgm@gnu.org>
1206
1207 * configure.in (INFO_EXT, INFO_OPTS): New output variables.
1208
1209 2012-05-02 Glenn Morris <rgm@gnu.org>
1210
1211 * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat
1212 the choices made by FreeBSD and NetBSD. (Bug#10313)
1213
1214 * Makefile.in (INFO_FILES): Remove variable.
1215 (INFO_NONMISC): New variable.
1216 (install-arch-indep, uninstall): Don't use $INFO_FILES.
1217
1218 * Makefile.in (uninstall): Remove useless-use-of-for; that for
1219 some reason caused problems on an old Solaris.
1220
1221 * Makefile.in (install-arch-indep, uninstall):
1222 Ensure that INSTALL-type commands are run from top-level.
1223
1224 * info/dir: Make some entries consistent with the source texi files.
1225
1226 * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
1227
1228 2012-05-02 Glenn Morris <rgm@gnu.org>
1229
1230 * Makefile.in (install-arch-indep):
1231 Combine adjacent install-data and install-info loops.
1232
1233 2012-05-01 Glenn Morris <rgm@gnu.org>
1234
1235 * Makefile.in (MAN_PAGES): Remove.
1236 (install-arch-indep, uninstall): Don't use $MAN_PAGES.
1237
1238 * configure.in: Try libtinfo for tputs.
1239 (LIBS_TERMCAP) [gnu*]: Use libtinfo if it was found. (Bug#9741)
1240
1241 * configure.in: Combine adjacent $opsys case blocks.
1242
1243 * configure.in (LIBS_TERMCAP): Remove unreachable branch for sol2.
1244
1245 * configure.in: Invert the TERMINFO logic,
1246 since "yes" is far more common than "no".
1247
1248 * configure.in (HAVE_LIBNCURSES): Remove; it is required to be true.
1249
1250 * configure.in (LD_SWITCH_X_SITE_RPATH):
1251 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
1252
1253 * configure.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
1254
1255 2012-04-26 Glenn Morris <rgm@gnu.org>
1256
1257 * make-dist: No more doc/lispref/tindex.pl.
1258
1259 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
1260
1261 * configure.in (dbus_validate_bus_name, dbus_validate_path)
1262 (dbus_validate_interface, dbus_validate_member): Check also for
1263 these library functions.
1264
1265 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
1266
1267 * configure.in (doug_lea_malloc): Check for __malloc_initialize_hook.
1268 With glibc 2.14 or later, when compiled with GCC 4.7.0's
1269 -Werror=deprecated-declarations flag, use of hooks like
1270 __malloc_initialize_hook causes compilation to fail because these
1271 hooks are deprecated. Modify 'configure' to check for these hooks too.
1272 Simplify the 'configure' code to test for all the hooks at once.
1273 (emacs_cv_var___after_morecore_hook): Remove, replacing with ...
1274 (emacs_cv_var_doug_lea_malloc): ... this new var.
1275
1276 2012-04-21 Paul Eggert <eggert@cs.ucla.edu>
1277
1278 Sync from gnulib version 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc
1279 dated 2011-10-07. Regenerating from current gnulib would be a
1280 pervasive change, and currently the trunk isn't open to such changes.
1281 * configure.in (WARN_CFLAGS): Remove; no longer needed now
1282 that gnulib does it.
1283 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1284
1285 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
1286
1287 * m4/gl-comp.m4: Update. (Bug#11285)
1288
1289 2012-04-20 Ludovic Courtès <ludo@gnu.org>
1290
1291 * configure.in: Don't use the -R option (Bug#11251).
1292
1293 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
1294
1295 configure: new option --enable-gcc-warnings (Bug#11207)
1296 I have been using this change for many months in my private copy
1297 of Emacs, and have used it to find several bugs. It's mature
1298 enough to publish now.
1299 * Makefile.in (GNULIB_MODULES): Add warnings, manywarnings.
1300 * configure.in: Support --enable-gcc-warnings, in the style of
1301 other GNU packages such as coreutils.
1302 (C_WARNINGS_SWITCH): Remove, replacing with...
1303 (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable.
1304 (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I,
1305 when including system files with GCC.
1306 * etc/NEWS: Mention --enable-gcc-warnings.
1307 * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise.
1308 * lib/Makefile.am (AM_CFLAGS): New macro.
1309 * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib.
1310
1311 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
1312
1313 * configure.in (AC_CHECK_FUNCS):
1314 Add getpwent, endpwent, getgrent, endgrent. (Bug#7900)
1315
1316 2012-04-16 Glenn Morris <rgm@gnu.org>
1317
1318 * configure.in (NS_HAVE_NSINTEGER): Remove unnecessary variable.
1319
1320 * configure.in: Remove X libs workaround for old autoconf.
1321
1322 2012-04-12 Ken Brown <kbrown@cornell.edu>
1323
1324 * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398)
1325
1326 2012-04-11 Glenn Morris <rgm@gnu.org>
1327
1328 * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
1329
1330 2012-04-10 Glenn Morris <rgm@gnu.org>
1331
1332 * configure.in: Conditionally generate admin/unidata/Makefile.
1333
1334 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
1335
1336 * info/dir, Makefile.in (INFO_FILES): Add emacs-gnutls manual.
1337
1338 2012-04-09 Glenn Morris <rgm@gnu.org>
1339
1340 * Makefile.in (leim): Check cd return value. Pass fewer variables.
1341 (install-leim): Check cd return value. Pass $MFLAGS.
1342 (install-strip): Pass $MFLAGS.
1343
1344 * configure.in: Require makeinfo >= 4.7. (Bug#10910)
1345 Eg org.texi has been using 4.7 functions for some time.
1346
1347 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
1348
1349 Check pkg-config exit status when configuring (Bug#10626).
1350 * configure.in (PKG_CHECK_MODULES): Do not assume that pkg-config
1351 works; check its exit status. Problem reported by Jordi Gutiérrez
1352 Hermoso in
1353 <http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00787.html>.
1354
1355 2012-04-07 Glenn Morris <rgm@gnu.org>
1356
1357 * README, configure.in (AC_INIT): Bump version to 24.1.50.
1358
1359 2012-04-07 Eli Zaretskii <eliz@gnu.org>
1360
1361 * lib/makefile.w32-in (gnulib, all): Don't depend on stamp_BLD.
1362
1363 2012-03-04 Paul Eggert <eggert@cs.ucla.edu>
1364
1365 configure: fix ncurses 'configure' issue on Solaris 10 (Bug#10677)
1366 * configure.in (LIBS_TERMCAP): Default this to the result of
1367 the tputs library search. Do a run-time test for the linkability
1368 of tputs unless cross-compiling, as that's more reliable if the
1369 link flags and libraries are messed up. Don't change LIBS as
1370 a result of the test, as that may mess up later tests.
1371
1372 2012-02-05 Christoph Scholtes <cschol2112@googlemail.com>
1373
1374 * make-dist (README.W32): Include file in source tarball. (Bug#9750)
1375
1376 * lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
1377 specific makefiles to support getopt_.h generation with MSVC.
1378
1379 2012-02-04 Glenn Morris <rgm@gnu.org>
1380
1381 * Makefile.in (uninstall):
1382 Handle compressed info files and man pages. (Bug#10718)
1383
1384 2012-02-02 Glenn Morris <rgm@gnu.org>
1385
1386 * configure.in [HAVE_NS]:
1387 Error if use --without-toolkit-scroll-bars. (Bug#10673)
1388
1389 2012-02-01 Paul Eggert <eggert@cs.ucla.edu>
1390
1391 Port to older Solaris 10 versions (Bug#10677).
1392 Bug reported by Chong Yidong for SunOS 5.10 Generic_127111-11 sparc.
1393 I cannot reproduce it on SunOS 5.10 Generic_141444-09 sparc but
1394 possibly this is because Sun fixed the 'stat' bug in my version.
1395 * Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid the pathmax module.
1396 * lib/pathmax.h, m4/pathmax.m4: New files, from gnulib.
1397 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1398 These changes are based on gnulib version
1399 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc dated 2011-10-07 20:59:10,
1400 because Emacs is in feature freeze and we do not want to merge any
1401 more-recent changes from gnulib.
1402
1403 2012-01-31 Glenn Morris <rgm@gnu.org>
1404
1405 * configure.in: Throw an explicit error if Motif toolkit was
1406 requested but requirements could not be found.
1407
1408 * configure.in: Allow Emacs to actually be built with xaw scroll-bars.
1409
1410 2012-01-30 Eli Zaretskii <eliz@gnu.org>
1411
1412 * lib/makefile.w32-in ($(BLD)/sha1.$(O) $(BLD)/sha256.$(O)
1413 $(BLD)/sha512.$(O)): Depend on stamp_BLD. Fixes a build failure
1414 with "make -j3".
1415
1416 2012-01-16 Juanma Barranquero <lekktu@gmail.com>
1417
1418 * .bzrignore: Ignore etc/__pycache__.
1419
1420 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
1421
1422 Port HAVE_PTHREAD configuration to MirBSD 10 (Bug#10201).
1423 * configure.in (HAVE_PTHREAD): Check for pthread_atfork if linking
1424 to gmalloc.c. This should prevent a MirBSD 10 build failure reported
1425 by Nelson H. F. Beebe in
1426 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00065.html>.
1427
1428 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
1429
1430 * update-subdirs: Don't set no-byte-compile twice (bug#10260).
1431
1432 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
1433
1434 * configure.in (HAVE_ALSA, HAVE_GSETTINGS): Save and restore LIBS
1435 instead of LDFLAGS (Bug#10230).
1436
1437 2011-12-03 Paul Eggert <eggert@cs.ucla.edu>
1438
1439 * INSTALL.BZR: Mention configure -C, --disable-maintainer-mode.
1440
1441 Propagate configure flags to sub-configures.
1442 * Makefile.in (cache_file, MAINTAINER_MODE_FLAG, CONFIGUREFLAGS):
1443 New macros.
1444 (config.status, bootstrap): Use them to propagate configure flags
1445 to sub-configures.
1446 * configure.in (cache_file): AC_SUBST this, for Makefile.in.
1447
1448 2011-12-03 Paul Eggert <eggert@cs.ucla.edu>
1449
1450 * .bzrignore: Add config.cache.
1451
1452 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
1453
1454 * configure.in: Check for gtk_window_set_has_resize_grip.
1455
1456 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
1457
1458 * configure.in (HAVE_XPM): Fix typo.
1459
1460 2011-11-22 Glenn Morris <rgm@gnu.org>
1461
1462 * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can
1463 have confusing effects on the build. (Bug#6401)
1464
1465 * Makefile.in (install-arch-dep): Tweak previous change.
1466
1467 2011-11-22 Yavor Doganov <yavor@gnu.org>
1468
1469 Do not install arch-dependent files in the app bundle if
1470 --disable-ns-self-contained is requested. (Bug#1335)
1471 * configure.in (exec_prefix, libexecdir): Define relative to
1472 `ns_appbindir' only if configured for a self-contained app.
1473 * Makefile.in (install-arch-dep): Test for the existence of
1474 libexec in the Emacs.app bundle before executing commands.
1475
1476 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
1477
1478 * configure.in: Remove reference to src/m/ibms390.h.
1479
1480 2011-11-13 Glenn Morris <rgm@gnu.org>
1481
1482 * INSTALL: Tiny updates for disk space used during installation.
1483
1484 2011-11-05 Eli Zaretskii <eliz@gnu.org>
1485
1486 * lib/makefile.w32-in (FRC): New dummy target.
1487 (TAGS): Depend on FRC.
1488
1489 2011-11-04 Glenn Morris <rgm@gnu.org>
1490
1491 * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929)
1492 Do not include GnuTLS version info in final summary message.
1493
1494 2011-10-31 Eli Zaretskii <eliz@gnu.org>
1495
1496 * config.bat: Use config.in and Makefile.in from src/ and lib/, if
1497 they exist there, else from autogen/.
1498
1499 * make-dist (msdos): Add depfiles.bat and inttypes.h.
1500
1501 2011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change)
1502
1503 * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
1504
1505 2011-10-24 Paul Eggert <eggert@cs.ucla.edu>
1506
1507 * configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
1508 if the library is found. Otherwise, later configure-time tests,
1509 such as the test for pthread_sigmask, generate the wrong results
1510 on some platforms. Problem reported for FreeBSD by Nali Toja.
1511
1512 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
1513
1514 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
1515 * configure.in (AC_STRUCT_TM, AC_STRUCT_TIMEZONE, HAVE_TM_GMTOFF):
1516 Remove; no longer needed, now that we defer to strftime for time
1517 zone names.
1518
1519 2011-10-18 Jan Djärv <jan.h.d@swipnet.se>
1520
1521 * configure.in (GLIB_REQUIRED, GTK_REQUIRED): Set to 2.10 (Bug#9786).
1522
1523 2011-10-18 Chong Yidong <cyd@gnu.org>
1524
1525 * make-dist: Remove Cocoa/Emacs.xcodeproj from distribution.
1526
1527 2011-10-13 Glenn Morris <rgm@gnu.org>
1528
1529 * configure.in: Also look for tputs in libcurses. (Bug#9736)
1530
1531 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
1532
1533 * configure.in: Remove check for -lintl (Bug#9713).
1534 The check could break 'configure' on GNU/Linux with a (broken) libintl.
1535 The check was helpful but not essential in Solaris 2.6 (1997),
1536 and is no longer needed in Solaris 8 (2000). Solaris 2.6 is
1537 obsolete -- Sun dropped support for it in 2006 -- and without
1538 access to that Silurian platform we can't maintain the code anyway.
1539
1540 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
1541
1542 Merge from gnulib, fixing some 'configure' typos (Bug#9696).
1543 * lib/signal.in.h, lib/sigprocmask.c, m4/gl-comp.m4:
1544 * m4/gnulib-common.m4: Merge from gnulib.
1545 Without this, 'configure' would say "func_gl_gnulib_m4code_pathmax:
1546 command not found" on powerpc-apple-darwin9.8.0.
1547
1548 * configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
1549 This is now done by src/alloc.c.
1550
1551 2011-10-02 Richard Stallman <rms@gnu.org>
1552
1553 * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
1554 and xlinux_second_failure to xgnu_linux_second_failure.
1555
1556 2011-09-29 Eli Zaretskii <eliz@gnu.org>
1557
1558 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
1559 lib/signal.in-h.
1560
1561 * config.bat: Rename GNUmakefile, so it is not run on MS-DOS.
1562 Rename signal.in.h and alloca.in.h.
1563
1564 2011-09-28 Eli Zaretskii <eliz@gnu.org>
1565
1566 * INSTALL: Mention that m17n libraries and libotf are needed for
1567 Arabic shaping.
1568
1569 2011-09-26 Paul Eggert <eggert@cs.ucla.edu>
1570
1571 Merge from gnulib, improving some licensing wording.
1572 This clarifies and fixes some licensing issues raised by Glenn Morris
1573 <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
1574 It also merges the latest version of texinfo.tex and has some
1575 MSVC-related changes that don't affect Emacs.
1576 * Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
1577 pathmax, and raise, since these are needed only to address
1578 MSVC-related issues that Emacs doesn't have.
1579 * doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
1580 * lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
1581 * lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
1582 * m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
1583 * m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
1584 * m4/unistd_h.m4: Merge from gnulib.
1585
1586 2011-09-26 Andreas Schwab <schwab@linux-m68k.org>
1587
1588 * configure.in: Initialize HAVE_LIBXML2.
1589
1590 2011-09-26 Glenn Morris <rgm@gnu.org>
1591
1592 * make-dist: Add lib/makefile.w32-in.
1593
1594 2011-09-24 Glenn Morris <rgm@gnu.org>
1595
1596 * configure.in (CRT_DIR): Fix netbsd/openbsd handling.
1597
1598 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
1599
1600 * .dir-locals.el: Change the debbugs regexp to allow having the
1601 bug number as the first thing on a line.
1602
1603 2011-09-15 Glenn Morris <rgm@gnu.org>
1604
1605 * configure.in: Make configure work with recent GNUsteps.
1606 (_NATIVE_OBJC_EXCEPTIONS): New AC_DEFINE.
1607 (GNU_OBJC_CFLAGS): Add -fobjc-exceptions when needed.
1608 (C_SWITCH_X_SYSTEM): Enable GNUstep to find its headers.
1609
1610 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
1611
1612 Merge from gnulib, porting to Tru64.
1613 * lib/lstat.c, lib/stat.c, m4/include_next.m4, m4/nocrash.m4:
1614 * m4/signal_h.m4, m4/time_h.m4, m4/unistd_h.m4:
1615 Merge from gnulib. This fixes a compilation error on Tru64 UNIX
1616 aka OSF/1 5.1 DTK cc. There is also some mingw stuff here that
1617 doesn't affect Emacs.
1618
1619 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1620
1621 * configure.in (isnan): Remove now-unnecessary check.
1622
1623 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1624
1625 Merge from gnulib, using build-aux to remove clutter (Bug#9169).
1626 This is to fix the following problems:
1627 . On FreeBSD 6.4, HP-UX 11.31, and Solaris 9, and when Emacs is
1628 configured not to use gtk or any other thread-using library,
1629 signals aren't blocked correctly.
1630 . On IRIX 6.5 it fixes an unwanted clash between Emacs's
1631 and IRIX's signal handling.
1632 . On Cygwin 1.7.5 it works around an incompatibility with
1633 the system pthread_sigmask.
1634 . On MacOS X 10.5 (32-bit), files whose inode numbers
1635 exceed 2**31 cannot be read or manipulated.
1636 . pthread_sigmask: Actually use results of gl_THREADLIB.
1637 . strtoimax, strtoumax: Avoid link error on OSF/1 with DTK cc.
1638 . find 'ar' program that fits with --host argument.
1639 . Allow the user to override the choice of AR, ARFLAGS, RANLIB.
1640 * autogen/README: Update destination list.
1641 * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
1642 The autogenerated files compile, config.guess,
1643 config.sub, depcomp, install-sh, and missing are now in build-aux.
1644 * m4/largefile.m4: New file, so that Emacs does not mess up when
1645 accessing files with large inode numbers in MacOS X 10.5 and later.
1646 * m4/nocrash.m4: New file, to avoid triggering background debugger
1647 and/or create core dumps during 'configure'.
1648 * build-aux/move-if-change: Renamed from move-if-change.
1649 * build-aux/snippet/arg-nonnull.h: Renamed from arg-nonnull.h.
1650 * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
1651 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
1652 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
1653 * Makefile.in (epaths-force, sync-from-gnulib):
1654 move-if-change is now in build-aux.
1655 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
1656 of gnulib's pthread_sigmask module, but Emacs doesn't need it.
1657 (mkdir): install-sh is now in build-aux.
1658 * config.bat: c++defs.h is now in build-aux/snippets.
1659 * configure.in: Specify AC_CONFIG_AUX_DIR with build-aux (the
1660 usual parameter).
1661 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1662 * lib/makefile.w32-in (ARG_NONNULL_H): arg-nonnull.h moved
1663 to build-aux/snippet.
1664 * lib/pthread_sigmask.c, lib/stdlib.in.h, m4/extensions.m4:
1665 * m4/getopt.m4, m4/gnulib-common.m4, m4/pthread_sigmask.m4:
1666 Merge from gnuilib. This fixes porting bugs on Cygwin, Irix, and
1667 Solaris, enables MacOS extensions, and enables nocrash during
1668 'configure'.
1669 * make-dist: Adjust to new build-aux and build-aux/snippit dirs.
1670
1671 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
1672
1673 * configure.in (snprintf): New check.
1674
1675 2011-08-30 Paul Eggert <eggert@cs.ucla.edu>
1676
1677 * configure.in (opsys): Change pattern to *-*-linux*
1678 to recognize powerpc-gnu-linux-uclibc (Bug#9403).
1679 Remove unreachable pattern hppa*-*-linux-gnu*.
1680 Also, remove ia64*-hp-hpux1[1-9]*, as it also sets machine=hp800,
1681 and that can't possibly work now that src/m/hp800.h no longer exists.
1682
1683 2011-08-26 Jan Djärv <jan.h.d@swipnet.se>
1684
1685 * configure.in: Add -MP to DEPFLAGS (Bug#9372).
1686
1687 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
1688
1689 * configure.in: Add header check: sys/socket.h (Bug#8477),
1690 ifaddrs.h, net/if_dl.h. Check for getifaddrs and freeifaddrs.
1691 Check for sa_len in struct ifreq.ifr_addr (Bug#8477).
1692
1693 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
1694
1695 * configure.in (HAVE_PTHREAD): Add check for -lpthread (Bug#9216).
1696 (HAVE_GTK_AND_PTHREAD): Remove.
1697
1698 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
1699
1700 * configure.in (HAVE_RSVG): Allow use of -lrsvg-2 for any NextStep
1701 build, not just GNUstep (Bug#9177).
1702
1703 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
1704
1705 Assume freestanding C89 headers, string.h, stdlib.h.
1706 Again, this simplifies the code, and all current platforms have these.
1707 * configure.in (AC_CHECK_HEADERS): Don't check for limits.h.
1708 (AC_HEADER_STDC): Remove.
1709 (AC_CHECK_FUNCS): No need to check for strchr, strrchr.
1710 (strchr, strrchr): Remove fallback macros.
1711
1712 Assume support for memcmp, memcpy, memmove, memset.
1713 This simplifies the code a bit. All current platforms have these,
1714 as they are required for C89. If this turns into a problem we
1715 can add the gnulib modules for these (a 1-line change to Makefile.in).
1716 * configure.in: Don't check for memcmp, memcpy, memmove, memset.
1717
1718 2011-07-27 Paul Eggert <eggert@cs.ucla.edu>
1719
1720 * GNUmakefile: New file.
1721 This is for convenience, so that one can run GNU make in an
1722 unconfigured source tree, and get a default build.
1723
1724 2011-07-13 Jan Djärv <jan.h.d@swipnet.se>
1725
1726 * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.
1727
1728 2011-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1729
1730 * configure.in (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie on Darwin
1731 so as to suppress address randomization (Bug#8395).
1732
1733 2011-07-09 Paul Eggert <eggert@cs.ucla.edu>
1734
1735 * lib/stdint.in.h: Merge from gnulib (Bug#9025).
1736 This fixes a build problem on older Mac OS X hosts.
1737
1738 * m4/pthread_sigmask.m4 (gl_FUNC_PTHREAD_SIGMASK): Omit gl_THREADLIB
1739 test, which runs afoul of Automake installations where, for example,
1740 /usr/share/aclocal contains a copy of gl_THREADLIB.
1741 Problem reported by Sven Joachim in
1742 <http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00529.html>.
1743 This is just a quick temporary fix, specific to Emacs; I'll work
1744 with the other gnulib maintainers to get a more-permanent fix.
1745
1746 Add gnulib's strtoimax module, needed on Solaris 8.
1747 * Makefile.in (GNULIB_MODULES): Add strtoimax.
1748 * lib/strtoll.c, m4/strtoimax.m4, m4/strtoll.m4: New files,
1749 automatically imported from gnulib.
1750 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1751
1752 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
1753
1754 Add gnulib support for pthread_sigmask (Bug#9010).
1755 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
1756 * configure.in (AC_TYPE_UID_T): New dummy macro.
1757 Configure gnulib after adjusting LIBS,
1758 so that gnulib can assume the libraries in LIBS.
1759 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
1760 * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
1761 * lib/pthread_sigmask.c:
1762 New files, automatically imported from gnulib.
1763 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
1764 due to the above changes.
1765 * .bzrignore: Add lib/signal.h.
1766
1767 * lib/getopt.c, lib/unistd.in.h, m4/getopt.m4: Merge from gnulib.
1768
1769 2011-07-07 Andreas Schwab <schwab@linux-m68k.org>
1770
1771 * configure.in (maintainer-mode): Reflect default in help string.
1772
1773 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
1774
1775 * configure.in: Remove reference to iris4d.h.
1776
1777 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
1778
1779 * configure.in (HAVE_GCONF): Allow both HAVE_GCONF and HAVE_GSETTINGS.
1780
1781 2011-07-01 Glenn Morris <rgm@gnu.org>
1782
1783 * configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
1784
1785 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1786
1787 * configure.in (HAVE_GSETTINGS): Fix syntax for GSETTINGS tests,
1788 which made ./configure infloop.
1789
1790 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
1791
1792 * configure.in (gsettings): New option and check for GSettings.
1793
1794 2011-06-29 Glenn Morris <rgm@gnu.org>
1795
1796 * configure.in: Try to test for the required crt*.o files.
1797
1798 2011-06-27 Bill Wohler <wohler@newt.com>
1799
1800 * .bzrignore: Add lisp/mh-e/mh-autoloads.el and lisp/mh-e/mh-cus-load.el.
1801
1802 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
1803
1804 Use gnulib's dup2 module instead of rolling our own.
1805 * Makefile.in (GNULIB_MODULES): Add dup2.
1806 * configure.in: Do not check for dup2; gnulib does that now.
1807 * lib/dup2.c, m4/dup2.m4: New files, from gnulib.
1808
1809 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
1810
1811 * lib/getopt.c, lib/stat.c, m4/gl-comp.m4: Merge from gnulib.
1812
1813 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
1814
1815 Use gnulib's alloca-opt module.
1816 * .bzrignore: Add lib/alloca.h.
1817 * Makefile.in (GNULIB_MODULES): Add alloca-opt.
1818 * configure.in (AC_FUNC_ALLOCA): Remove almost all the alloca stuff,
1819 as gnulib now does that for us. Put alloca check in config.h.
1820 Include <alloca.h> before any other include file, for AIX 3.
1821 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1822 * lib/alloca.in.h, m4/alloca.m4: New files, from gnulib.
1823
1824 2011-06-21 Leo Liu <sdl.web@gmail.com>
1825
1826 * m4/sha256.m4:
1827 * m4/sha512.m4:
1828 * m4/gl-comp.m4:
1829 * lib/u64.h:
1830 * lib/sha256.c:
1831 * lib/sha256.h:
1832 * lib/sha512.c:
1833 * lib/sha512.h:
1834 * lib/makefile.w32-in (GNULIBOBJS):
1835 * lib/gnulib.mk:
1836 * Makefile.in (GNULIB_MODULES): Add crypto/sha256 and
1837 crypto/sha512 modules from gnulib.
1838
1839 2011-06-19 Paul Eggert <eggert@cs.ucla.edu>
1840
1841 * lib/unistd.in.h, m4/getloadavg.m4: Merge from gnulib.
1842
1843 2011-06-17 Glenn Morris <rgm@gnu.org>
1844
1845 * configure.in: Restore the behavior of checking crt-dir only
1846 when the user specified it (not all platforms use it).
1847
1848 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
1849
1850 * m4/lstat.m4: Merge from gnulib (Bug#8878).
1851
1852 2011-06-16 Miles Bader <miles@gnu.org>
1853
1854 * configure.in: Try to determine CRT_DIR automatically when
1855 using gcc.
1856
1857 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
1858
1859 * lib/ftoastr.c, lib/stdio.in.h, lib/verify.h:
1860 * lib/gnulib.mk, m4/c-strtod.m4, m4/filemode.m4, m4/getloadavg.m4:
1861 * m4/getopt.m4, m4/gl-comp.m4, m4/lstat.m4, m4/md5.m4, m4/mktime.m4:
1862 * m4/readlink.m4, m4/sha1.m4, m4/stat.m4, m4/strftime.m4:
1863 * m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4, m4/time_r.m4:
1864 Merge from gnulib.
1865
1866 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
1867
1868 * configure.in: Add emacsgtkfixed.o to GTK_OBJ if HAVE_GTK3.
1869
1870 2011-06-08 Paul Eggert <eggert@cs.ucla.edu>
1871
1872 * lib/gnulib.mk, m4/gnulib-common.m4: Merge from gnulib.
1873
1874 2011-06-07 Paul Eggert <eggert@cs.ucla.edu>
1875
1876 * configure.in: Add --with-wide-int.
1877 * INSTALL: Mention this.
1878
1879 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
1880
1881 Merge from gnulib.
1882 * lib/careadlinkat.c, lib/careadlinkat.h, m4/gnulib-common.m4: Merge.
1883
1884 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
1885
1886 * lib/allocator.h, lib/careadlinkat.c: Merge from gnulib.
1887
1888 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
1889
1890 Use 'inline', not 'INLINE'.
1891 * configure.in (INLINE): Remove.
1892
1893 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
1894
1895 Adjust to recent gnulib change for @GUARD_PREFIX@.
1896 * lib/makefile.w32-in (getopt_h): Substitute @GUARD_PREFIX@, too.
1897 All uses of _GL_ for guard prefixes in lib/*.h replaced with
1898 _@GUARD_PREFIX@_.
1899
1900 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
1901
1902 * lib/getopt.c, lib/intprops.h: Merge from gnulib.
1903
1904 2011-05-24 Glenn Morris <rgm@gnu.org>
1905
1906 * Makefile.in (check): Just give a message if no test/ directory.
1907
1908 * configure.in: Avoid using variables inside AC_CONFIG_FILES.
1909
1910 * configure.in (OPT_MAKEFILES_IN): Remove.
1911 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
1912 (SUBDIR_MAKEFILES_IN): New output variable.
1913 * Makefile.in (OPT_MAKEFILES_IN): Remove.
1914 (SUBDIR_MAKEFILES_IN): Let configure set it.
1915
1916 2011-05-24 Leo Liu <sdl.web@gmail.com>
1917
1918 * m4/sha1.m4:
1919 * m4/gl-comp.m4:
1920 * lib/sha1.h:
1921 * lib/sha1.c:
1922 * lib/makefile.w32-in (GNULIBOBJS):
1923 * lib/gnulib.mk:
1924 * Makefile.in (GNULIB_MODULES): Add crypto/sha1 module.
1925
1926 2011-05-24 Glenn Morris <rgm@gnu.org>
1927
1928 * configure.in: Remove test for already configured source directory.
1929 AM_INIT_AUTOMAKE has already done a more stringent test. (Bug#953)
1930
1931 * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
1932
1933 2011-05-24 Glenn Morris <rgm@gnu.org>
1934
1935 * make-dist: Don't distribute test/. (Bug#8107)
1936 * configure.in (OPT_MAKEFILES_IN): New output variable.
1937 (AC_CONFIG_FILES): Conditionally include test/automated/Makefile.
1938 * Makefile.in (OPT_MAKEFILES_IN): New, set by configure.
1939 (SUBDIR_MAKEFILES_IN): Use $OPT_MAKEFILES_IN.
1940 (check): Give an explicit error if test/ is not present.
1941
1942 * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
1943 (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
1944 (Makefile): Use $SUBDIR_MAKEFILES_IN.
1945
1946 2011-05-23 Paul Eggert <eggert@cs.ucla.edu>
1947
1948 * lib/verify.h: Merge from gnulib.
1949
1950 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
1951
1952 * lib/intprops.h, lib/stdint.in.h, m4/mktime.m4, m4/readlink.m4:
1953 Merge from gnulib.
1954
1955 2011-05-21 Andreas Schwab <schwab@linux-m68k.org>
1956
1957 * Makefile.in (AUTOMAKE_INPUTS): Add $(srcdir)/lib/gnulib.mk.
1958
1959 2011-05-20 Eli Zaretskii <eliz@gnu.org>
1960
1961 * .bzrignore: Add lib/stdio.in-h, lib/stdbool.h, and lib/stdint.h.
1962
1963 * config.bat: Concatenate lisp.mk onto the end of src/Makefile.
1964
1965 2011-05-20 Glenn Morris <rgm@gnu.org>
1966
1967 * configure.in (lisp_frag): New output file.
1968
1969 2011-05-19 Glenn Morris <rgm@gnu.org>
1970
1971 * configure.in (NS_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
1972 (WINDOW_SUPPORT): Remove output variables that are no longer used.
1973
1974 2011-05-17 Paul Eggert <eggert@cs.ucla.edu>
1975
1976 * lib/gnulib.mk:
1977 * lib/intprops.h:
1978 * lib/unistd.in.h:
1979 * m4/inttypes.m4:
1980 * m4/stdint.m4:
1981 * m4/unistd_h.m4: Sync from gnulib.
1982
1983 2011-05-14 Glenn Morris <rgm@gnu.org>
1984
1985 * configure.in: Treat failure to find an X toolkit the same way we treat
1986 failure to find X and image support.
1987
1988 2011-05-12 Glenn Morris <rgm@gnu.org>
1989
1990 * Makefile.in (src, install-arch-indep, bootstrap-clean)
1991 (check-declare): Shell portability fixes. (Bug#8642)
1992
1993 2011-05-09 Teodor Zlatanov <tzz@lifelogs.com>
1994
1995 * configure.in: Require GnuTLS 2.6.x or higher.
1996
1997 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
1998
1999 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
2000 * Makefile.in (GNULIB_MODULES): Add stdarg, for va_copy.
2001 * lib/stdarg.in.h, m4/stdarg.m4: New files, from gnulib.
2002
2003 * Makefile.in (GNULIB_TOOL_FLAG): Add --conditional-dependencies.
2004 This new gnulib-tool option saves 'configure' the trouble of
2005 checking for strtoull when strtoumax exists.
2006
2007 * configure.in (BITS_PER_LONG_LONG): New macro.
2008
2009 2011-05-05 Glenn Morris <rgm@gnu.org>
2010
2011 * Makefile.in (bootstrap-clean): Save config.log. (Bug#765)
2012 (top_distclean): Delete config.log~.
2013
2014 2011-04-27 Ben Key <bkey76@gmail.com>
2015
2016 * configure.in: Fixed a bug that caused configure with
2017 --enable-checking=stringoverrun to have no effect.
2018
2019 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
2020
2021 * configure.in: Suppress unnecessary checks for size_t.
2022 (AC_TYPE_SIZE_T): Define an empty macro, to suppress obsolescent test.
2023 (size_t): Do not check for this, and do not typedef. This code
2024 is never exercised now.
2025
2026 * Makefile.in (GNULIB_MODULES): Add strtoumax.
2027 This is needed for the new integer-reading code in lread.c.
2028 It automatically pulls in the following gnulib files, which
2029 are used on old-fashioned platforms that don't have strtoumax:
2030 lib/inttypes.in.h, lib/strtoimax.c, lib/strtol.c, lib/strtoul.c,
2031 lib/strtoull.c, lib/strtoumax.c, lib/verify.h, m4/inttypes.m4,
2032 m4/strtoull.m4, m4/strtoumax.m4.
2033 * .bzrignore: Add lib/inttypes.h.
2034
2035 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
2036
2037 * configure.in: Check for GnuTLS certificate verify callbacks.
2038
2039 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2040
2041 * Makefile.in (config.status): Don't erase in case of error.
2042 In case it disappeared, rebuild it with `configure'.
2043
2044 2011-04-20 Ken Brown <kbrown@cornell.edu>
2045
2046 * configure.in (use_mmap_for_buffers): Set to yes on Cygwin.
2047
2048 2011-04-12 Glenn Morris <rgm@gnu.org>
2049
2050 * configure.in: Require ImageMagick >= 6.2.8. (Bug#7955)
2051
2052 2011-04-09 Paul Eggert <eggert@cs.ucla.edu>
2053
2054 * lib/allocator.c: New file, automatically generated by gnulib.
2055
2056 2011-04-07 Glenn Morris <rgm@gnu.org>
2057
2058 * autogen/update_autogen: Ignore comment diffs in ldefs-boot.el.
2059
2060 2011-04-06 Eli Zaretskii <eliz@gnu.org>
2061
2062 * lib/makefile.w32-in ($(BLD)/careadlinkat.$(O), GNULIBOBJS):
2063 Revert last change.
2064
2065 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
2066
2067 * lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O).
2068 ($(BLD)/careadlinkat.$(O)): New target.
2069 ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
2070 ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)):
2071 Update dependencies.
2072
2073 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
2074
2075 Fix more problems found by GCC 4.6.0's static checks.
2076
2077 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
2078
2079 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
2080 * Makefile.in (GNULIB_MODULES): Add careadlinkat.
2081 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
2082 * m4/ssize_t.m4: New files, automatically generated from gnulib.
2083
2084 2011-04-06 Glenn Morris <rgm@gnu.org>
2085
2086 * autogen/update_autogen: Handle loaddefs-like files as well.
2087 (usage): Add -l, -C.
2088 (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
2089 With -l, check status of lisp/ as well.
2090 With -C, clean before building.
2091 (autoreconf): Only pass -f in the `clean' case.
2092 (commit): New function.
2093
2094 2011-03-28 Glenn Morris <rgm@gnu.org>
2095
2096 * autogen/update_autogen: Pass -f to autoreconf.
2097
2098 * autogen.sh (get_version): Discard "not found" lines.
2099 (check_version): Respect $AUTOCONF etc environment variables.
2100
2101 2011-03-27 Glenn Morris <rgm@gnu.org>
2102
2103 * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
2104 (AH_BOTTOM): Do not define SIGTYPE.
2105
2106 2011-03-26 Glenn Morris <rgm@gnu.org>
2107
2108 * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,
2109 AC_TRY_RUN with AC_COMPILE_IFELSE, AC_LINK_IFELSE, AC_RUN_IFELSE.
2110
2111 2011-03-25 Andreas Schwab <schwab@linux-m68k.org>
2112
2113 * autogen/update_autogen: Remove useless function keyword.
2114
2115 2011-03-25 Eli Zaretskii <eliz@gnu.org>
2116
2117 * config.bat: Generate src/config.h and lib/Makefile from
2118 autogen/config.in and autogen/Makefile.in.
2119
2120 2011-03-25 Glenn Morris <rgm@gnu.org>
2121
2122 * compile, config.guess, config.sub, depcomp, install-sh, missing:
2123 Remove; autoreconf can supply them.
2124 * Makefile.in (sync-from-gnulib): Don't sync config.sub,
2125 config.guess, install-sh. Pass -i to autoreconf.
2126 * autogen/update_autogen (genfiles): Add compile, config.guess,
2127 config.sub, depcomp, install-sh, missing. Pass -i to autoreconf.
2128 Discard non-error output from autoreconf in -q case.
2129 * autogen/compile, autogen/config.guess, autogen/config.sub:
2130 * autogen/depcomp, autogen/install-sh, autogen/missing: New.
2131 * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp,
2132 install-sh, missing.
2133
2134 2011-03-23 Glenn Morris <rgm@gnu.org>
2135
2136 * autogen/update_autogen: Fix typo.
2137 (msg): Remove function; use `exec' instead.
2138
2139 * Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
2140 (sync-from-gnulib): Don't sync mkinstalldirs.
2141 * make-dist: Don't distribute mkinstalldirs.
2142
2143 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
2144
2145 Fix more problems found by GCC 4.5.2's static checks.
2146 * Makefile.in (GNULIB_MODULES): Add socklen.
2147 * configure.in: Do not check for sys/socket.h, since socklen does that.
2148 * m4/socklen.m4: New automatically-generated file, from gnulib.
2149
2150 fakemail: Remove dependency on ignore-value.
2151 * Makefile.in (GNULIB_MODULES): Add stdio.
2152 * lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
2153 imported from gnulib.
2154 * .bzrignore: Add lib/stdio.h.
2155
2156 2011-03-22 Glenn Morris <rgm@gnu.org>
2157
2158 * autogen/copy_autogen: Work from ./ or ../.
2159 Fix time-stamps.
2160 * autogen.sh: Doc fix.
2161
2162 2011-03-20 Glenn Morris <rgm@gnu.org>
2163
2164 * autogen/: New directory, to be excluded from releases.
2165 * autogen/copy_autogen, autogen/update_autogen: New scripts.
2166 * autogen/README: New file.
2167 * autogen/aclocal.m4, autogen/config.in, autogen/configure:
2168 * autogen/Makefile.in: Add auto-updated generated files.
2169 * autogen.sh: No longer a no-op, now it tests for autotools
2170 and runs them as necessary.
2171 * configure.in: Default maintainer-mode to on.
2172 * aclocal.m4, configure, lib/Makefile.in: Remove files.
2173
2174 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
2175
2176 Update for gnulib.
2177 * Makefile.in (GNULIB_MODULES): Add intprops, as Emacs now
2178 includes <intprops.h> directly.
2179 * lib/sys_stat.in.h: New version from Gnulib, which fixes a bug
2180 when building Emacs on Solaris 9 and running it on Solaris 10.
2181
2182 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
2183
2184 * configure.in: Require 3.0 for --with-gtk3. Add HAVE_GTK3.
2185
2186 2011-03-07 Chong Yidong <cyd@stupidchicken.com>
2187
2188 * Version 23.3 released.
2189
2190 2011-03-06 Glenn Morris <rgm@gnu.org>
2191
2192 * configure.in (FREETYPE_LIBS): Actually set it to something.
2193
2194 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
2195
2196 Work around some portability problems with symlinks.
2197
2198 * Makefile.in (GNULIB_MODULES): Add lstat, readlink, symlink.
2199 * configure.in (lstat, HAVE_LSTAT): Remove special hack.
2200 * lib/dosname.h, lib/lstat.c, lib/readlink.c, lib/stat.c:
2201 * lib/symlink.c, m4/lstat.m4, m4/readlink.m4, m4/stat.m4:
2202 * m4/symlink.m4:
2203 New files, automatically generated from gnulib.
2204 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2205 * m4/gl-comp.m4, src/config.in, config.sub: Regenerate.
2206
2207 2011-02-26 Eli Zaretskii <eliz@gnu.org>
2208
2209 * .bzrignore: Ignore new lib/*.in-h files.
2210
2211 * config.bat: Rename stdint.in.h and sys_stat.in.h. Call
2212 depfiles.bat even if lib/deps already exist.
2213
2214 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
2215
2216 * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk:
2217 * lib/stdlib.in.h, m4/stdlib_h.m4: Regenerate to incorporate
2218 recent changes to configure.in and to gnulib.
2219
2220 2011-02-24 Glenn Morris <rgm@gnu.org>
2221
2222 * configure.in: Replace obsolete AC_OUTPUT() with AC_CONFIG_FILES(),
2223 AC_CONFIG_COMMANDS(), and AC_OUTPUT sans arguments.
2224
2225 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
2226
2227 Assume S_ISLNK etc. work, since gnulib supports this.
2228 * Makefile.in (GNULIB_MODULES): Add sys_stat.
2229 * configure.in: Check for lstat and set HAVE_LSTAT=0 if not.
2230 Pretend to be using the gnulib lstat module for benefit of sys/stat.h.
2231 * configure, lib/Makefile.in, lib/gnulib.mk: Regenerate.
2232
2233 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
2234
2235 * lib/min-max.h: New file, for "min" and "max".
2236
2237 2011-02-21 Christoph Scholtes <cschol2112@gmail.com>
2238
2239 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Added dependency on
2240 $(EMACS_ROOT)/nt/inc/stdint.h.
2241
2242 2011-02-21 Eli Zaretskii <eliz@gnu.org>
2243
2244 * lib/makefile.w32-in ($(BLD)/filemode.$(O)): Move from
2245 src/makefile.w32-in and adapt. Depend on stamp_BLD.
2246 (GNULIBOBJS): Add $(BLD)/filemode.$(O).
2247
2248 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
2249
2250 Import filemode module from gnulib.
2251 * .bzrignore: Add lib/sys/.
2252 * Makefile.in (GNULIB_MODULES): Add filemode.
2253 * lib/Makefile.am (MOSTLYCLEANDIRS): New macro.
2254 * lib/filemode.c: Renamed from src/filemode.c and regenerated
2255 from gnulib. This adds support for some more file types, e.g.,
2256 Cray DMF migrated files.
2257 * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c.
2258 * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4:
2259 * m4/sys_stat_h.m4: New files, generated from gnulib.
2260 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2261 Regenerate.
2262
2263 2011-02-20 Eli Zaretskii <eliz@gnu.org>
2264
2265 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Don't depend on
2266 $(EMACS_ROOT)/nt/inc/sys/stat.h.
2267
2268 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
2269
2270 * configure.in (C_WARNINGS_SWITCH): Do not prepend -Wno-pointer-sign.
2271 This undoes the 2006-01-02 change. The -Wno-pointer-sign option
2272 is no longer needed, due to the recent SSDATA and related changes.
2273 Perhaps -Wno-pointer-sign should also be removed from
2274 nextstep/Cocoa/Emacs.xcodeproj/project.pbxproj but I have no easy
2275 way to test this so I left it alone.
2276 * configure: Regenerate.
2277
2278 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
2279
2280 * lib/makefile.w32-in ($(BLD)/md5.$(O)): New recipe, moved from
2281 src/makefile.w32-in.
2282
2283 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
2284
2285 Import crypto/md5 and stdint modules from gnulib.
2286 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2287 Regenerate.
2288 * lib/md5.c, lib/md5.h: Rename from src/md5.h and lib/md5.h.
2289 Import the new versions from gnulib; they assume a C99-style
2290 <stdint.h>, supplied by the stdint module.
2291 * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files,
2292 imported from gnulib.
2293 * Makefile.in (MAKEFILE_MODULES): Add crypto/md5.
2294 * admin/notes/copyright: Remove src/md5.c and src/md5.h as
2295 special cases.
2296
2297 2011-02-19 Eli Zaretskii <eliz@gnu.org>
2298
2299 * .bzrignore: Ignore cxxdefs.h and lib/*.in-h files.
2300 Add lib/deps/.
2301
2302 * config.bat: Configure in `lib'.
2303 Generate *.Po files in lib/deps.
2304
2305 2011-02-18 Paul Eggert <eggert@cs.ucla.edu>
2306
2307 Import IRIX 6.5 getloadavg fixes from gnulib.
2308 * configure, lib/getloadavg.c, m4/getloadavg.m4: Regenerate.
2309
2310 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
2311
2312 Import getloadavg module from gnulib.
2313 * .bzrignore: Add lib/stdlib.h.
2314 * Makefile.in (GNULIB_MODULES): Add getloadavg.
2315 * admin/notes/copyright: Remove src/getloadavg.c as a special case.
2316 * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this.
2317 (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES):
2318 Remove; gnulib does this now.
2319 * lib/getloadavg.c: Rename from src/getloadavg.c, and sync
2320 from gnulib. This adds support for several other systems, such
2321 as Tru64 4.0D, QNX, AIX perfstat, etc. It also fixes a potential
2322 buffer overrun on Linux hosts under very high load, and on hosts
2323 that maintain a channel to the load average file it makes sure
2324 the file descriptor is close-on-exec (on hosts that support this)
2325 and is not stdin, stdout, or stderr.
2326 * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files,
2327 from gnulib.
2328 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2329 * src/config.in: Regenerate.
2330
2331 2011-02-15 Paul Eggert <eggert@cs.ucla.edu>
2332
2333 Merge from gnulib.
2334
2335 * install-sh: Update to scriptversion 2011-01-19.21.
2336
2337 2011-02-13 Bruno Haible <bruno@clisp.org>
2338
2339 Consistent macro naming for macros that use GCC __attribute__.
2340 * lib/ignore-value.h (_GL_ATTRIBUTE_DEPRECATED): Renamed from
2341 ATTRIBUTE_DEPRECATED.
2342
2343 2011-02-12 Bruno Haible <bruno@clisp.org>
2344
2345 setlocale: Prefer gnulib's override over libintl's override.
2346 * lib/gettext.h (setlocale): Redefine to rpl_setlocale if
2347 GNULIB_defined_setlocale is set.
2348
2349 2011-02-13 Glenn Morris <rgm@gnu.org>
2350
2351 * make-dist: Exclude generated file src/globals.h.
2352
2353 2011-02-10 Paul Eggert <eggert@cs.ucla.edu>
2354
2355 * arg-nonnull.h, c++defs.h, warn-on-use.h: Fix licenses.
2356 Sync from gnulib, which has been patched to fix the problem
2357 with the license notices. Problem reported by Glenn Morris in
2358 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00403.html>.
2359
2360 2011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
2361
2362 * .bzrignore: Ignore globals.h and related stamp.
2363
2364 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
2365
2366 * lib/Makefile.in, lib/gnulib.mk: Regenerate.
2367 This merges the following fix from gnulib:
2368
2369 2011-02-08 Bruno Haible <bruno@clisp.org>
2370
2371 Split large sed scripts, for HP-UX sed.
2372
2373 2011-02-08 Tom Tromey <tromey@redhat.com>
2374
2375 * configure: Rebuild.
2376 * configure.in (NS_OBJC_OBJ): New subst.
2377
2378 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
2379
2380 gnulib: allow multiple gnulib generated replacements to coexist
2381 This defines a few preprocessor symbols that should not affect Emacs.
2382 * lib/getopt.in.h, lib/time.in.h, lib/unistd.in.h: Regenerate
2383 via "make sync-from-gnulib".
2384
2385 gnulib: undo previous change
2386 The upstream _HEADERS change was backed out of gnulib (see the
2387 same thread). Stay in sync with gnulib.
2388
2389 gnulib: adjust to upstream _HEADERS change
2390 * lib/Makefile.am (EXTRA_HEADERS, nodist_pkginclude_HEADERS):
2391 New empty macros, to accommodate recent changes to gnulib. See
2392 <http://lists.gnu.org/archive/html/bug-gnulib/2011-02/msg00068.html>.
2393 * c++defs.h, lib/Makefile.in, lib/ftoastr.h, lib/getopt.in.h:
2394 * lib/gnulib.mk, lib/ignore-value.h, lib/stdbool.in.h, lib/stddef.in.h:
2395 * lib/time.in.h, lib/unistd.in.h:
2396 Regenerate.
2397
2398 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
2399
2400 sync from gnulib to remove HAVE_STDBOOL_H
2401 * m4/stdbool.m4 (AC_CHECK_HEADER_STDBOOL): Renamed from
2402 AC_HEADER_STDBOOL. All uses changed. Do not define
2403 HAVE_STDBOOL_H, as gnulib does not need this. This change is
2404 imported from the latest Autoconf git. It was motivated by Emacs,
2405 which uses gnulib but does not need HAVE_STDBOOL_H.
2406 * configure, src/config.in: Regenerate.
2407 * config.guess, config.sub: Sync to 2011-02-02 versions (whitespace)
2408
2409 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
2410
2411 allow C code to suppress warnings about ignored return values
2412 * Makefile.in (GNULIB_MODULES): Add ignore-value.
2413 * configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2414 * lib/ignore-value.h: New file.
2415
2416 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
2417
2418 * configure.in: Test existence of xaw3d library, not just the
2419 header (Bug#7642).
2420
2421 2011-01-31 Eli Zaretskii <eliz@gnu.org>
2422
2423 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and
2424 $(BLD)/time_r.$(O).
2425 ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and
2426 $(EMACS_ROOT)/src/m/intel386.h.
2427 ($(BLD)/strftime.$(O)):
2428 ($(BLD)/time_r.$(O)): Define prerequisites.
2429
2430 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
2431
2432 src/emacs.c now gets version number from configure.in
2433 * configure.in (version): Set this from $PACKAGE_VERSION,
2434 which is set from AC_INIT, rather than scouting through src/emacs.c.
2435 * configure: Regenerate.
2436 * make-dist (version): Get it from configure.in, not src/emacs.c.
2437
2438 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2439
2440 strftime: import from gnulib
2441 * Makefile.in (GNULIB_MODULES): Add strftime.
2442 * configure.in (AC_FUNC_STRFTIME, my_strftime): Remove; no longer
2443 needed.
2444 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
2445 Regenerate.
2446 * lib/strftime.c, lib/strftime.h, lib/stdbool.in.h: New files,
2447 imported from gnulib.
2448 * m4/strftime.m4, m4/stdbool.m4, m4/tm_gmtoff.m4: Likewise.
2449 This incorporates many changes from gnulib, including simpler
2450 handling of multibyte formats, porting to mingw32 and other
2451 platforms, and support for higher-resolution time stamps.
2452 Emacs does not yet use the higher-resolution interface.
2453
2454 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2455
2456 gnulib: import mktime and move-if-change fixes from gnulib
2457
2458 * configure: Regenerate from the following.
2459
2460 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
2461
2462 mktime: clarify long_int width checking
2463 * lib/mktime.c (long_int_is_wide_enough): Move this assertion to
2464 the top level, to make it clearer that the assumption about
2465 long_int width is being checked. See
2466 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00554.html>.
2467
2468 2011-01-29 Paul Eggert <eggert@cs.ucla.edu>
2469
2470 TYPE_MAXIMUM: avoid theoretically undefined behavior
2471 * lib/intprops.h (TYPE_MINIMUM, TYPE_MAXIMUM): Do not shift a
2472 negative number, which the C Standard says has undefined behavior.
2473 In practice this is not a problem, but might as well do it by the book.
2474 Reported by Rich Felker and Eric Blake; see
2475 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00493.html>.
2476 * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
2477 * lib/mktime.c (TYPE_MAXIMUM): Redo slightly to match the others.
2478
2479 mktime: #undef mktime before #defining it
2480 * lib/mktime.c (mktime) [DEBUG]: #undef mktime before #defining it.
2481
2482 mktime: systematically normalize tm_isdst comparisons
2483 * lib/mktime.c (isdst_differ): New function.
2484 (__mktime_internal): Use it systematically for all isdst comparisons.
2485 This completes the fix for libc BZ #6723, and removes the need for
2486 normalizing tm_isdst. See
2487 <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>
2488 (not_equal_tm) [DEBUG]: Use isdst_differ here, too.
2489
2490 mktime: fix some integer overflow issues and sidestep the rest
2491
2492 This was prompted by a bug report by Benjamin Lindner for MinGW
2493 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00472.html>.
2494 His bug is due to signed integer overflow (0 - INT_MIN), and I
2495 I scanned through mktime.c looking for other integer overflow
2496 problems, fixing all the bugs I found.
2497
2498 Although the C Standard says the resulting code is still not safe
2499 in the presence of integer overflow, in practice it should be good
2500 enough for all real-world two's-complement implementations, except
2501 for debugging environments that deliberately trap on integer
2502 overflow (e.g., gcc -ftrapv).
2503
2504 * lib/mktime.c (WRAPV): New macro.
2505 (SHR): Also check that long_int and time_t shift right in the
2506 usual way, before using the fast-but-unportable method.
2507 (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove, no longer
2508 used. The code already assumed two's complement, so there's
2509 no need to test for alternatives. All uses removed.
2510 (TYPE_MAXIMUM): Don't rely here on overflow behavior not defined by
2511 the C standard. Problem reported by Rich Felker in
2512 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00488.html>.
2513 (twos_complement_arithmetic): Also check long_int and time_t.
2514 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New functions.
2515 (guess_time_tm, ranged_convert, __mktime_internal): Use them.
2516 (__mktime_internal): Avoid integer overflow with unary subtraction
2517 in two instances where -1 - X is an adequate replacement for -X,
2518 since the calculations are approximate.
2519
2520 2011-01-29 Eric Blake <eblake@redhat.com>
2521
2522 mktime: avoid infinite loop
2523 * m4/mktime.m4 (AC_FUNC_MKTIME): Avoid overflow on possibly-signed
2524 type; behavior is still undefined but portable to all known targets.
2525 Reported by Rich Felker.
2526
2527 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
2528
2529 mktime: avoid problems on NetBSD 5 / i386
2530 * lib/mktime.c (long_int): New type. This works around a problem
2531 on NetBSD 5 / i386, where 'long int' and 'int' are both 32 bits
2532 but time_t is 64 bits, and where I expect the existing code is
2533 wrong in some cases.
2534 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it.
2535 (ydhms_diff): Bring back the compile-time check for wide-enough
2536 year and yday.
2537
2538 mktime: fix misspelling in comment
2539 * lib/mktime.c (__mktime_internal): Fix misspelling in comment.
2540 This merges all recent glibc changes of importance.
2541
2542 2011-01-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2543
2544 move-if-change: cope with concurrent mv of identical file.
2545 * move-if-change (CMPPROG): Accept environment
2546 variable as an override for `cmp'.
2547 (usage): Document CMPPROG.
2548 Adjust comparison to drop stdout. Cope with failure of mv if
2549 the target file exists and is identical to the source, for
2550 parallel builds.
2551 Report from H.J. Lu against binutils in PR binutils/12283.
2552
2553 2011-01-29 Eli Zaretskii <eliz@gnu.org>
2554
2555 * lib/makefile.w32-in:
2556 * lib/getopt_.h: New files.
2557
2558 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
2559
2560 improve fix for MS-DOS file name clash
2561 * Makefile.in (DOS_gnulib_comp.m4): Renamed from DOS-gnulib-comp.m4,
2562 for portability to POSIX make. Reported by Bruno Haible.
2563 (sync-from-gnulib): Copy gl-comp.m4 (if present) back to
2564 gnulib-comp.m4 before running gnulib-tool, to prevent old gnulib
2565 files from accumulating as garbage. Also reported by Bruno Haible.
2566
2567 2011-01-27 Paul Eggert <eggert@cs.ucla.edu>
2568
2569 fix two m4/gnulib-*.m4 file names that clashed under MS-DOS
2570 * Makefile.in (DOS-gnulib-comp.m4): New macro.
2571 (sync-from-gnulib): Rename m4/gnulib-comp.m4 to m4/gl-comp.m4 to avoid
2572 problems with MS-DOS 8+3 file name restrictions.
2573 Remove m4/gnulib-cache.m4, as we can live without it. If we kept
2574 it, it would also cause problems when extracting Emacs distribution
2575 tarballs on MS-DOS hosts.
2576 (ACLOCAL_INPUTS): Adjust to file renaming.
2577 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
2578 * config.guess, config.sub: Sync from gnulib.
2579 * m4/gnulib-cache.m4: Remove from repository.
2580 * m4/gl-comp.m4: Rename from m4/gnulib-comp.m4.
2581
2582 2011-01-25 Glenn Morris <rgm@gnu.org>
2583
2584 * README: Add a note about ranges in copyright years.
2585
2586 * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
2587
2588 2011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
2589
2590 * configure.in: Add HP-UX on IA64 (Bug#6811).
2591
2592 2011-01-24 Paul Eggert <eggert@cs.ucla.edu>
2593
2594 Remove HAVE_RAW_DECL_CHOWN etc. from config.h
2595 * Makefile.in (sync-from-gnulib): Remove m4/warn-on-use.m4,
2596 as it is no longer needed.
2597 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
2598 * configure.in: Invoke the new gnulib macro
2599 gl_ASSERT_NO_GNULIB_POSIXCHECK, which removes the need for
2600 warn-on-use.m4 and for the HAVE_RAW_DECL_* symbols in config.h.
2601 * m4/getopt.m4: Sync from gnulib; this removes the need for
2602 HAVE_DECL_OPTRESET and HAVE_DECL_GETOPT_CLIP from config.h.
2603 * m4/gnulib-common.m4 (gl_ASSERT_NO_GNULIB_POSIXCHECK):
2604 New macro, synced from gnulib.
2605 * m4/warn-on-use.m4: Remove.
2606
2607 2011-01-22 Paul Eggert <eggert@cs.ucla.edu>
2608
2609 aclocal.m4: put this file back into repository
2610 This way, we don't have to assume that the maintainer has
2611 the automake package installed. See
2612 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00746.html>.
2613 * .bzrignore: Remove aclocal.m4, undoing the previous change.
2614 * Makefile.in (top_maintainer_clean): Do not remove aclocal.m4,
2615 undoing the previous change.
2616 * aclocal.m4: New file (actually, resurrected).
2617
2618 2011-01-22 Miles Bader <miles@gnu.org>
2619
2620 * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
2621 FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
2622 Emacs directly uses fontconfig, and breaks building when using a
2623 strict linker).
2624
2625 2011-01-21 Paul Eggert <eggert@cs.ucla.edu>
2626
2627 src/config.in: shrink slightly
2628 * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS.
2629 This makes src/config.in a bit smaller, by removing identifiers
2630 like GNULIB_TEST_MKTIME that Emacs does not need.
2631 * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4:
2632 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4:
2633 Sync from gnulib. This removes a few more unnecessary symbols from
2634 src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H.
2635 * configure, src/config.in: Regenerate.
2636
2637 aclocal.m4: tweaks to regenerate more conveniently
2638 This attempts to act better when the source is in a weird state. See
2639 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00734.html>.
2640 * Makefile.in (am--refresh): Add aclocal.m4, configure, config.in.
2641 * .bzrignore: Add aclocal.m4.
2642
2643 2011-01-20 Paul Eggert <eggert@cs.ucla.edu>
2644
2645 aclocal.m4: omit auto-generated file from repository
2646 * Makefile.in (top_maintainer_clean): Remove aclocal.m4; this undoes
2647 the most recent change here.
2648 * aclocal.m4: Remove from bzr repository. This file is
2649 auto-generated and isn't needed to run 'configure'. See
2650 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00698.html>.
2651
2652 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
2653
2654 Minor Makefile.in tweaks to build from gnulib better.
2655 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>
2656 * Makefile.in (sync-from-gnulib): Also run autoreconf -I m4.
2657 (top_maintainer_clean): Don't remove aclocal.m4.
2658
2659 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2660
2661 Minor cleanups for 'bzr status'
2662 * .bzrignore: Add emacs-*/, the output of make-dist, and stamp-h1,
2663 the output of config.guess.
2664 * Makefile.in (top_distclean): Remove stamp-h1 too.
2665
2666 * configure.in (HAVE_ATTRIBUTE_ALIGNED): Arrange for this to be
2667 defined if the compiler supports GCC-style __attribute__
2668 ((__aligned__ ...)). IBM AIX and Oracle Solaris Studio support
2669 this syntax.
2670
2671 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2672
2673 Makefile.in: tidy up the building of lib
2674 * Makefile.in (am--refresh): Mark as .PHONY.
2675 (top_maintainer_clean): Don't remove lib/gnulib.mk m4/gnulib-cache.m4,
2676 as they're not rebuilt unless you do a "make sync-from-gnulib"
2677 and the former is needed for "configure".
2678 (maintainer-clean): Don't recurse into lib, as "make bootstrap-clean"
2679 has already removed lib/Makefile.
2680
2681 * Makefile.in (GNULIB_MODULES): Change ftoastr to dtoastr.
2682 This avoids building ftoastr and ldtoastr, which aren't needed. See
2683 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00199.html>.
2684
2685 * .bzrignore: Add .h files that are host-dependent.
2686 Add lib/.deps/, lib/arg-nonnull.h, lib/c++defs.h, lib/getopt.h,
2687 lib/time.h, lib/unistd.h, lib/warn-on-use.h. These are
2688 host-dependent and are built as part of an ordinary 'make', and
2689 should not be checked in.
2690
2691 * lib/Makefile.in: Regenerate.
2692 * lib/COPYING: New file, a copy of COPYING.
2693
2694 * configure: Regenerate.
2695 * configure.in (AC_USE_SYSTEM_EXTENSIONS): Remove: gnulib does this.
2696
2697 Regenerate.
2698 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
2699 * lib/gettext.h, lib/unistd.in.h, m4/unistd_h.m4:
2700 New files, copied from gnulib by gnulib-tool.
2701 * aclocal.m4, configure, lib/Makefile.in, m4/getopt.m4:
2702 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2703 Regenerate.
2704
2705 Use gnulib's getopt-gnu module.
2706 * Makefile.in (GNULIB_MODULES): Add getopt-gnu.
2707 (AUTOCONF_INPUTS): Remove getopt.m4; aclocal.m4 is a good-enough
2708 representative of the dependencies.
2709 * configure.in: Do not configure getopt, as gnulib does that now.
2710 * make-dist: Do not worry about lib-src/getopt.h, as gnulib handles
2711 getopt now, in lib.
2712
2713 Regenerate.
2714 * arg-nonnull.h, c++defs.h, lib/mktime-internal.h, lib/mktime.c:
2715 * lib/stddef.in.h, lib/time.h, lib/time.in.h, lib/time_r.c:
2716 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4:
2717 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4:
2718 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4, m4/multiarch.m4:
2719 * m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4, m4/warn-on-use.m4:
2720 * m4/wchar_t.m4, warn-on-use.h:
2721 New files, copied from gnulib by gnulib-tool.
2722 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2723 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2724 Regenerate.
2725
2726 Use gnulib's mktime module.
2727 * Makefile.in (GNULIB_MODULES): Add mktime.
2728 * configure.in: Remove code no longer needed, as gnulib now does it.
2729 (AC_CHECK_FUNCS): Remove mktime.
2730 (AC_FUNC_MKTIME, BROKEN_MKTIME): Remove.
2731 (__restrict): Remove, as this now gets in the way of the C99
2732 support for 'restrict' pulled in by the gnulib mktime module.
2733 Code should now use 'restrict' and not '__restrict".
2734 (mktime): Remove.
2735 * make-dist: Put gnulib-generated files arg-nonnull.h, c++defs.h,
2736 and warn-on-use.h into the distribution.
2737
2738 Regenerate.
2739 * lib/dtoastr.c, lib/ftoastr.c, lib/ftoastr.h, lib/intprops.h:
2740 * lib/ldtoastr.c, m4/c-strtod.m4:
2741 New files, copied from gnulib by gnulib-tool.
2742 * lib/dummy.c: Remove.
2743 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
2744 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2745 Regenerate.
2746
2747 Use gnulib's ftoastr module.
2748 * Makefile.in (GNULIB_MODULES): Add ftoastr. Remove dummy.
2749
2750 Regenerate.
2751 * aclocal.m4, compile, depcomp, lib/Makefile.in, lib/dummy.c:
2752 * lib/gnulib.mk, m4/00gnulib.m4, m4/gnulib-cache.m4:
2753 * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing:
2754 New files, generated automatically, with 'make sync-from-gnulib'
2755 followed by 'make'.
2756 * configure, lisp/dired.el, src/config.in: Regenerate.
2757
2758 Automate syncing from gnulib.
2759 * INSTALL, README: Document new subdirectory 'lib'.
2760 * Makefile.in (SUBDIR): Add lib.
2761 (SUBDIR_MAKEFILES): Add lib/Makefile.
2762 (lib-src, src, TAGS, tags): Depend on lib.
2763 (gnulib_srcdir, GNULIB_MODULES, GNULIB_TOOL_FLAGS): New macros.
2764 ($(gnulib_srcdir)): New rule.
2765 (sync-from-gnulib): New rule, which is .PHONY.
2766 (lib): New rule, which is like lib-src.
2767 (Makefile): Depend on lib/Makefile.in.
2768 (AUTOCONF_INPUTS): Depend on aclocal.m4.
2769 (ACLOCAL_INPUTS, AUTOMAKE_INPUTS): New macros.
2770 ($(srcdir)/aclocal.m4, $(srcdir)/lib/Makefile.in): New rules.
2771 (am--refresh): New rule, to pacify Automake.
2772 (mostlyclean, clean, distclean, bootstrap-clean, maintainer-clean):
2773 Clean lib, too.
2774 (top_maintainer_clean): New macro, to remove gnulib-tool and Automake
2775 droppings.
2776 (maintainer-clean, extraclean): Use it.
2777 * configure.in: Initialize for automake and gnulib, by invoking
2778 AM_INIT_AUTOMAKE, AM_PROG_CC_C_O, gl_EARLY, and gl_INIT. Output
2779 lib/Makefile, too. Use automake to build gnulib, as gnulib works
2780 more conveniently with automake.
2781 * lib/Makefile.am: New file.
2782 * make-dist: Also put into the distribution aclocal.m4,
2783 compile, depcomp, missing, and the files under lib/.
2784
2785 2011-01-15 Glenn Morris <rgm@gnu.org>
2786
2787 * Makefile.in (epaths-force): No more arch-tag to edit.
2788
2789 2011-01-15 Chong Yidong <cyd@stupidchicken.com>
2790
2791 * configure.in: Bump min libxml2 version to 2.6.17 (Bug#7603).
2792
2793 2011-01-14 Paul Eggert <eggert@cs.ucla.edu>
2794
2795 * make-dist: Distribute test/ files too.
2796 Distribute every file under test/ that is under version control,
2797 using patterns like *.el to capture files that are added later.
2798 Without this change, "configure" would fail, because it would
2799 attempt to build from a Makefile.in that was not distributed.
2800
2801 2011-01-13 Christian Ohler <ohler@gnu.org>
2802
2803 * Makefile.in (INFO_FILES): Add ERT.
2804
2805 * Makefile.in (check): Run tests in test/automated.
2806
2807 * Makefile.in:
2808 * configure.in: Add test/automated/Makefile.
2809
2810 2011-01-07 Paul Eggert <eggert@cs.ucla.edu>
2811
2812 * install-sh, mkinstalldirs, move-if-change: Update from master
2813 source in gnulib.
2814
2815 * config.guess, config.sub: Updated from master source.
2816
2817 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2818
2819 * configure.in: Check for __builtin_unwind_init.
2820
2821 2011-01-05 Glenn Morris <rgm@gnu.org>
2822
2823 * configure.in (HAVE_MAKEINFO): New output variable.
2824 (MAKEINFO): Reset to "makeinfo" if not found.
2825 * Makefile.in (install-arch-indep, info):
2826 Replace MAKEINFO = off with HAVE_MAKEINFO = no.
2827
2828 2010-12-29 Ulrich Mueller <ulm@gentoo.org>
2829
2830 * configure.in: Make gameuser configurable (Bug#7717).
2831
2832 2010-12-15 Glenn Morris <rgm@gnu.org>
2833
2834 * Makefile.in (install-arch-dep, uninstall): Remove code relating to the
2835 long absent lib-src/fns-*.el.
2836
2837 2010-12-11 Glenn Morris <rgm@gnu.org>
2838
2839 * make-dist: Exclude etc/*.pyc.
2840
2841 2010-12-10 Andreas Schwab <schwab@linux-m68k.org>
2842
2843 * configure.in: Don't double machfile in final message.
2844
2845 2010-12-04 Chong Yidong <cyd@stupidchicken.com>
2846
2847 * configure.in: Fix last change.
2848
2849 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
2850
2851 * configure.in: Remove reference to removed machine description
2852 files and allow $machine and $machfile to be empty. Substitute
2853 M_FILE/S_FILE instead of machfile/opsysfile.
2854
2855 2010-12-03 Glenn Morris <rgm@gnu.org>
2856
2857 * make-dist: Remove EMACS_UNIBYTE unsetting; it does nothing.
2858
2859 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
2860
2861 * configure.in <AC_CHECK_HEADERS>: Remove sys/ioctl.h.
2862 (EXTERNALLY_VISIBLE): New definition.
2863
2864 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2865
2866 * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
2867
2868 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
2869
2870 * configure.in: Do not check for unconditionally included headers.
2871
2872 2010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2873
2874 * .dir-locals.el (log-edit-mode): Set log-edit-rewrite-fixes.
2875
2876 2010-11-09 Michael Albinus <michael.albinus@gmx.de>
2877
2878 * configure.in: Don't write a warning for D-Bus anymore.
2879
2880 2010-11-06 Andreas Schwab <schwab@linux-m68k.org>
2881
2882 * configure.in: Fix indentation.
2883
2884 2010-10-31 Ken Brown <kbrown@cornell.edu>
2885
2886 * configure.in (checking whether localtime caches TZ): Use
2887 unsetenv instead of modifying environment directly.
2888
2889 2010-10-25 Andreas Schwab <schwab@linux-m68k.org>
2890
2891 * configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
2892 to avoid warning.
2893
2894 2010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2895
2896 * configure.in: Remove the BROKEN annotation from GnuTLS.
2897
2898 2010-10-22 Glenn Morris <rgm@gnu.org>
2899
2900 * make-dist: Avoid listing .el files twice. Don't try to run
2901 autoconf if --no-update.
2902
2903 2010-10-20 Glenn Morris <rgm@gnu.org>
2904
2905 * make-dist: No longer create lisp/MANIFEST.
2906
2907 2010-10-14 Glenn Morris <rgm@gnu.org>
2908
2909 * BUGS, INSTALL.BZR, README: Updates.
2910
2911 2010-10-13 Glenn Morris <rgm@gnu.org>
2912
2913 * make-dist: Remove --compress. Check for the appropriate
2914 gzip-like executable, and if not found, don't compress.
2915 Check version number in README, don't change it.
2916 Use find for nt/inc/*.h.
2917
2918 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
2919
2920 * configure (ns_appdir, OLDXMENU, TOOLTIP_SUPPORT): Remove
2921 trailing / from directory names.
2922
2923 2010-10-12 Glenn Morris <rgm@gnu.org>
2924
2925 * make-dist: Update and simplify.
2926
2927 2010-10-12 Eli Zaretskii <eliz@gnu.org>
2928
2929 * make-dist: Don't distribute src/buildobj.h. (Bug#7167)
2930
2931 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
2932
2933 * configure.in (PROFILING_LDFLAGS): Do not define, remove all uses.
2934
2935 2010-10-09 Glenn Morris <rgm@gnu.org>
2936
2937 * make-dist: No more doc/emacs/*.texi.in.
2938
2939 * configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
2940
2941 2010-10-09 Glenn Morris <rgm@gnu.org>
2942
2943 * configure.in: Combine some conditionals.
2944
2945 * configure.in (AC_OUTPUT): Add doc/emacs/emacsver.texi.
2946 * make-dist: Include doc/emacs/*.texi.in.
2947
2948 * INSTALL, make-dist: Remove references to b2m.
2949 * Makefile.in (MAN_PAGES): Remove b2m.1.
2950
2951 2010-10-05 Glenn Morris <rgm@gnu.org>
2952
2953 * .dir-locals.el: The Emacs convention is sentence-end-double-space.
2954
2955 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2956
2957 * configure.in (NO_INLINE, noinline): Move here from src/xterm.c.
2958
2959 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
2960
2961 * configure.in: Include stdlib.h and string.h unconditionally.
2962
2963 2010-09-29 Romain Francoise <romain@orebokech.com>
2964
2965 * configure.in: Don't enable ImageMagick unless HAVE_X11.
2966
2967 2010-09-28 Glenn Morris <rgm@gnu.org>
2968
2969 * configure.in (HAVE_GNUTLS): Add a description to make autoheader
2970 happy.
2971
2972 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2973
2974 * configure.in: Enable imagemagick by default.
2975
2976 2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2977
2978 * configure.in (HAVE_GNUTLS): Don't break if we don't have the
2979 GnuTLS libraries.
2980
2981 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
2982
2983 * configure.in: Set up GnuTLS.
2984
2985 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
2986
2987 * configure.in: Announce whether libxml2 is linked to.
2988
2989 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
2990
2991 * configure.in (LINKER): Rename to LD_FIRSTFLAG, do not include $(CC).
2992
2993 2010-09-18 Eli Zaretskii <eliz@gnu.org>
2994
2995 * config.bat: Detect that libxml2 is installed and if so, build
2996 with it.
2997
2998 2010-09-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2999
3000 * configure.in (HAVE_LIBXML2): Check that the libxml2 we found can
3001 be used. This fixes a conf problem on Mac OS X.
3002
3003 2010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3004
3005 * configure.in: Check for libxml2.
3006
3007 2010-09-09 Glenn Morris <rgm@gnu.org>
3008
3009 * make-dist: No more TODO files under lisp/.
3010
3011 2010-09-04 Eli Zaretskii <eliz@gnu.org>
3012
3013 * config.bat: Produce lisp/gnus/_dir-locals.el from
3014 lisp/gnus/.dir-locals.el.
3015
3016 2010-08-23 Andreas Schwab <schwab@linux-m68k.org>
3017
3018 * configure.in: Fix check for librsvg, imagemagick and
3019 MagickExportImagePixels.
3020
3021 2010-08-18 Joakim Verona <joakim@verona.se>
3022
3023 * Makefile.in, configure.in: Checks for ImageMagick.
3024
3025 2010-08-10 Dan Nicolaescu <dann@ics.uci.edu>
3026
3027 * configure.in (AC_PREREQ): Require autoconf 2.65.
3028
3029 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
3030
3031 * configure.in (AC_PREREQ): Require autoconf 2.66 to stop version churn.
3032
3033 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
3034
3035 * configure.in: Add AC_C_BIGENDIAN.
3036
3037 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
3038
3039 * configure.in (ORDINARY_LINK): Use on hpux* too.
3040
3041 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
3042
3043 * configure.in: Check for util.h.
3044 Use -Wimplicit-function-declaration if compiler supports it.
3045
3046 2010-08-05 Eli Zaretskii <eliz@gnu.org>
3047
3048 * configure.in (UNEXEC_OBJ): Rename unexec.o => unexcoff.o.
3049
3050 2010-08-04 Andreas Schwab <schwab@linux-m68k.org>
3051
3052 * configure.in: Restore accidentally removed use of
3053 GCC_TEST_OPTIONS/NON_GCC_TEST_OPTIONS.
3054
3055 2010-07-29 Chad Brown <yandros@mit.edu>
3056
3057 * configure.in: Check for dirent.h.
3058
3059 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
3060
3061 * configure.in: Remove reference to usg5-4, unused.
3062
3063 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
3064
3065 * configure.in: Check for __executable_start.
3066
3067 2010-07-24 Ken Brown <kbrown@cornell.edu>
3068
3069 * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715)
3070
3071 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
3072
3073 * .bzrignore, .gitignore: Ignore README.W32 on the root directory.
3074
3075 2010-07-24 Ken Brown <kbrown@cornell.edu> (tiny change)
3076
3077 * configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
3078
3079 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
3080
3081 * configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
3082 (PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
3083 (C_OPTIMIZE_SWITCH): Remove.
3084 (TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
3085
3086 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
3087
3088 * configure.in: Don't check for index and rindex, check for strchr
3089 and strrchr. Define strchr and strrchr as index and rindex,
3090 resp., in src/config.h if not available.
3091
3092 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
3093
3094 * configure.in: Use -Wold-style-definition if available.
3095 This helps with the transition to standard C code, it can be
3096 removed when done.
3097
3098 * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
3099
3100 * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
3101 and MSWindows.
3102
3103 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
3104
3105 * configure.in: Don't check for bcopy, bcmp, bzero. Don't include
3106 <strings.h> and don't define bcopy, bzero, BCMP in config.h.
3107
3108 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
3109
3110 * configure.in (getenv): Remove K&R declaration.
3111
3112 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
3113
3114 * configure.in: Remove define __P.
3115
3116 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
3117
3118 * configure.in (--enable-use-lisp-union-type): New flag.
3119
3120 2010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
3121
3122 Fix CFLAGS for non-GCC compilers.
3123 * configure.in (CFLAGS): Always use -g like it was done before the
3124 2010-03-30 change.
3125 (REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
3126 (Bug#6538)
3127
3128 2010-06-30 Glenn Morris <rgm@gnu.org>
3129
3130 * configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
3131 Set with AC_DEFINE rather than AH_BOTTOM.
3132
3133 * configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
3134 (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
3135 Set with shell, not cpp.
3136 (LIBX): Remove, just use -lX11 in the one place this was used.
3137 (cannot_dump): Replace with CANNOT_DUMP.
3138
3139 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
3140
3141 * configure.in: Add --with-x-toolkit=gtk3. Remove HAVE_GTK_MULTIDISPLAY,
3142 check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
3143 by minimum required Gtk+ 2.6). Add checks for functions introduced
3144 in Gtk+ 2.14 or newer (bug#6505).
3145
3146 2010-06-26 Eli Zaretskii <eliz@gnu.org>
3147
3148 * config.bat: Remove white space around "+" in COPY commands.
3149
3150 2010-06-23 Glenn Morris <rgm@gnu.org>
3151
3152 * info/dir: Start descriptions in column 32, per Texinfo convention.
3153
3154 2010-06-16 Chong Yidong <cyd@stupidchicken.com>
3155
3156 * INSTALL: Update font information (Bug#6389).
3157
3158 2010-06-16 Glenn Morris <rgm@gnu.org>
3159
3160 * INSTALL: General update.
3161
3162 2010-06-12 Glenn Morris <rgm@gnu.org>
3163
3164 * Makefile.in (install-arch-indep): Delete any old info .gz files first.
3165
3166 2010-06-11 Glenn Morris <rgm@gnu.org>
3167
3168 * configure.in (--without-compress-info): New option.
3169 (GZIP_INFO): New output variable.
3170
3171 * Makefile.in (GZIP_INFO): New, set by configure.
3172 (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
3173 Handle man pages in the same way.
3174
3175 2010-06-10 Glenn Morris <rgm@gnu.org>
3176
3177 * Makefile.in (install-arch-indep): Gzip the info files too.
3178
3179 * make-dist: Remove references to non-existent directories and files.
3180
3181 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
3182
3183 * configure.in: Include <strings.h> and <string.h> instead of
3184 "strings.h" and "string.h".
3185
3186 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
3187
3188 * configure.in: Remove code dealing with BSTRING.
3189
3190 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
3191
3192 * configure.in (AC_PREREQ): Require autoconf 2.65.
3193
3194 * configure.in (unxec): Do not define and substitute.
3195 (UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
3196
3197 2010-06-03 Glenn Morris <rgm@gnu.org>
3198
3199 * configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
3200
3201 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
3202
3203 Fix alloca definition when using gcc on non-gnu systems.
3204 * configure.in: Use the code sequence indicated by "info autoconf"
3205 for alloca (bug#6170).
3206
3207 2010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
3208
3209 * .bzrignore: Ignore new files from trunk, which appear if you use
3210 colocated branches (i.e. "bzr switch").
3211
3212 2010-05-28 Glenn Morris <rgm@gnu.org>
3213
3214 * configure.in: Simplify some of the $canonical tests.
3215
3216 2010-05-27 Glenn Morris <rgm@gnu.org>
3217
3218 * config.bat: Do not preprocess src/Makefile.in.
3219
3220 * configure.in: Do not preprocess src/Makefile.in.
3221 (cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
3222 (AC_EGREP_CPP): Test no longer needed.
3223
3224 * make-dist: No more Makefile.c files.
3225
3226 2010-05-26 Glenn Morris <rgm@gnu.org>
3227
3228 * configure.in (YMF_PASS_LDFLAGS): Remove.
3229 (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
3230
3231 * configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
3232 Add $GNUSTEP_LOCAL_HEADERS.
3233 (LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
3234
3235 * configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
3236 (GNUSTEP_MAKEFILES): Remove.
3237 (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
3238 stuff to here.
3239
3240 2010-05-25 Glenn Morris <rgm@gnu.org>
3241
3242 * configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
3243 (LD_SWITCH_SYSTEM_TEMACS): ... to here.
3244
3245 * configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
3246 (LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
3247 here instead.
3248
3249 2010-05-24 Romain Francoise <romain@orebokech.com>
3250
3251 * make-dist: Look for version in src/emacs.c.
3252 Use lisp/subr.el rather than lisp/version.el for location check.
3253
3254 2010-05-21 Glenn Morris <rgm@gnu.org>
3255
3256 * configure.in (MKDEPDIR): Parallel build tweak.
3257
3258 * configure.in (ns_frag): New output file.
3259
3260 * configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
3261 (OLDXMENU_TARGET): Set to empty if USE_GTK.
3262
3263 * configure.in (cannot_dump): New output variable.
3264
3265 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
3266
3267 * configure.in: On NetBSD, if terminfo is found, use it in
3268 preference to termcap. (Bug#6190)
3269
3270 2010-05-20 Glenn Morris <rgm@gnu.org>
3271
3272 * make-dist (src): Include *.mk.
3273 * config.bat: Concatenate deps.mk onto the end of src/Makefile.
3274 * configure.in (DEPFLAGS, MKDEPDIR): New output variables.
3275 (deps_frag): New output file.
3276 (AUTO_DEPEND): Remove this definition.
3277
3278 * configure.in (--with-gtk, --with-gcc): Remove option stubs.
3279
3280 2010-05-19 Glenn Morris <rgm@gnu.org>
3281
3282 * configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
3283 (ORDINARY_LINK): New AC_DEFINE.
3284 (LIB_GCC): No need to set if ORDINARY_LINK.
3285
3286 2010-05-18 Glenn Morris <rgm@gnu.org>
3287
3288 * configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
3289 (POST_ALLOC_OBJ) [!cygwin]: Set to empty.
3290
3291 * config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
3292 * configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
3293 (RALLOC_OBJ): New output variable.
3294
3295 * config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
3296 * configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
3297
3298 2010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3299
3300 * Makefile.in (src): Provide the name of the VCS file that witnesses
3301 a pull.
3302 ($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
3303
3304 2010-05-17 Glenn Morris <rgm@gnu.org>
3305
3306 * configure.in (OLDXMENU_DEPS): New output variable.
3307
3308 2010-05-16 Glenn Morris <rgm@gnu.org>
3309
3310 * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
3311
3312 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
3313 * Makefile.in (install-arch-dep): Update for above change.
3314
3315 * Makefile.in (ns_appdir): Remove.
3316 (install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
3317
3318 * configure.in (TEMACS_LDFLAGS2): New output variable.
3319
3320 * configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
3321 (START_FILES): Set to empty if NS_IMPL_GNUSTEP.
3322 (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
3323 nothing uses.
3324
3325 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
3326
3327 * configure.in: Remove references to usg5-4 and bsd-common, $opsys
3328 does not use them.
3329 (X11R5_INHIBIT_I18N): Remove, unused.
3330
3331 2010-05-15 Glenn Morris <rgm@gnu.org>
3332
3333 * configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
3334
3335 * configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
3336
3337 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
3338
3339 * configure.in: Look for version string in its new location.
3340
3341 2010-05-15 Eli Zaretskii <eliz@gnu.org>
3342
3343 * config.bat: Remove support for DJGPP v1.x.
3344
3345 2010-05-15 Glenn Morris <rgm@gnu.org>
3346
3347 * configure.in (OLDXMENU_TARGET): New output variable.
3348
3349 * Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
3350
3351 * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
3352 and other files that no longer exist.
3353
3354 2010-05-14 Glenn Morris <rgm@gnu.org>
3355
3356 * configure.in (cpp_undefs): Add mktime, register, X11.
3357
3358 * configure.in (GPM_MOUSE_SUPPORT): Remove.
3359 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
3360 (HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
3361
3362 * configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
3363 (GNUSTEP_MAKEFILES): Do not output.
3364
3365 2010-05-13 Glenn Morris <rgm@gnu.org>
3366
3367 * configure.in: Fix some paren typos.
3368
3369 * configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
3370
3371 * configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
3372
3373 2010-05-12 Glenn Morris <rgm@gnu.org>
3374
3375 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
3376
3377 * configure.in (LIB_GCC): New output variable.
3378
3379 2010-05-11 Glenn Morris <rgm@gnu.org>
3380
3381 * make-dist (msdos): No more mainmake.
3382
3383 * configure.in: Generate lib-src/Makefile directly, do not run cpp.
3384 * config.bat: Do not run cpp on lib-src/Makefile.in.
3385
3386 * config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
3387
3388 2010-05-10 Glenn Morris <rgm@gnu.org>
3389
3390 * configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
3391
3392 * configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
3393 (BLESSMAIL_TARGET): New output variable.
3394
3395 2010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
3396
3397 * INSTALL: Fix typos.
3398
3399 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
3400
3401 * configure.in: Add check for buggy version of GCC (Bug#6031).
3402
3403 2010-05-08 Glenn Morris <rgm@gnu.org>
3404
3405 * configure.in (HAVE_LIBNCURSES): New local variable.
3406 (TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
3407 replacing cpp in src/s/*.h and src/Makefile.in.
3408
3409 2010-05-07 Chong Yidong <cyd@stupidchicken.com>
3410
3411 * Version 23.2 released.
3412
3413 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3414
3415 * configure.in: Add tests for `isnan' and `copysign'.
3416
3417 2010-05-07 Eli Zaretskii <eliz@gnu.org>
3418
3419 * config.bat: Allow for 2 leading `#'s in comments in
3420 src/Makefile.in.
3421
3422 2010-05-07 Glenn Morris <rgm@gnu.org>
3423
3424 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
3425 Merges logic from src/s/* and src/Makefile.in.
3426 (LD_SWITCH_SYSTEM_TEMACS): New output variable.
3427
3428 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
3429
3430 Define START_FILES and LIB_STANDARD using autoconf.
3431 * configure.in (START_FILES, LIB_STANDARD): New definitions, moved
3432 here from src/s/*.h.
3433 (HAVE_CRTIN): Remove, inline logic in the netbsd
3434 START_FILES/LIB_STANDARD computation.
3435
3436 2010-05-06 Glenn Morris <rgm@gnu.org>
3437
3438 * configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
3439
3440 * Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
3441 (LD_SWITCH_X_SITE): Remove unused variables.
3442
3443 2010-05-04 Glenn Morris <rgm@gnu.org>
3444
3445 * configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
3446 as well.
3447 (LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
3448
3449 * configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
3450
3451 * configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
3452 variables, replacing c_switch_machine, c_switch_system.
3453 * Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
3454 @c_switch_system@.
3455
3456 2010-05-03 Glenn Morris <rgm@gnu.org>
3457
3458 * configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
3459
3460 * make-dist: There are no more src/m/*.inp files.
3461
3462 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
3463
3464 * configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
3465 (ac_link): Do not use ld_switch_machine.
3466
3467 2010-05-01 Glenn Morris <rgm@gnu.org>
3468
3469 * configure.in (OTHER_OBJ): Remove.
3470 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
3471
3472 2010-04-30 Glenn Morris <rgm@gnu.org>
3473
3474 * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
3475 Elsewhere, maybe include it.
3476
3477 * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
3478 (OLDXMENU, LIBXMENU): New output variables.
3479
3480 * configure.in (OTHER_OBJ): New output variable.
3481
3482 2010-04-28 Glenn Morris <rgm@gnu.org>
3483
3484 * configure.in (CYGWIN_OBJ): New output variable.
3485
3486 * configure.in (GPM_MOUSE_SUPPORT): New output variable.
3487
3488 * configure.in (FONT_OBJ): New output variable.
3489
3490 * configure.in (LIBXMU): New output variable.
3491
3492 * configure.in (NS_OBJ, NS_SUPPORT): New output variables.
3493
3494 * configure.in (machine, canonical): On amdx86-64, check for a 32-bit
3495 userland and maybe change values to i386 (move test from s/amdx86-64.h).
3496
3497 2010-04-27 Glenn Morris <rgm@gnu.org>
3498
3499 * configure.in (LIBXTR6): New output variable. Move unixware special
3500 case here from src/s/unixware.h.
3501
3502 * configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
3503 in Makefiles.
3504 (TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
3505
3506 * configure.in (HAVE_MOTIF_2_1): Remove unused variable.
3507 (LIBXP): No longer substitute in Makefiles.
3508 (MOTIF_LIBW): New output variable. Move system-specific settings here
3509 from src/s files.
3510
3511 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
3512
3513 Reduce CPP usage.
3514 * configure.in (LIB_X11_LIB): Remove, inline in the only user.
3515 (unexec): Define unconditionally, all platforms define
3516 UNEXEC. AC_SUBST it.
3517 (UNEXEC_SRC): Remove, unused.
3518 (C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
3519
3520 2010-04-27 Glenn Morris <rgm@gnu.org>
3521
3522 * configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
3523 replaced by LIBXP.
3524
3525 * configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
3526 (CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
3527 On hpux10-20, default to /lib.
3528
3529 * configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
3530
3531 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
3532
3533 * configure.in (LIBS_MACHINE): Remove, unused.
3534
3535 * configure.in (LIB_MATH): New output variable. Set it for some systems.
3536
3537 2010-04-24 Glenn Morris <rgm@gnu.org>
3538
3539 * configure.in (CRT_DIR): New output variable.
3540 (--with-crt-dir): New option. (Bug#5655)
3541 (HAVE_LIB64_DIR): Remove.
3542
3543 2010-04-22 Dan Nicolaescu <dann@ics.uci.edu>
3544
3545 * configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
3546
3547 2010-04-22 Miles Bader <miles@gnu.org>
3548
3549 * configure.in: Get rid of "unix" pre-defined macro when
3550 preprocessing Makefile. (Bug#5857)
3551
3552 2010-04-21 Andreas Schwab <schwab@linux-m68k.org>
3553
3554 Avoid non-portable shell command negation
3555 * configure.in: Revert last change.
3556
3557 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
3558
3559 * configure.in: Change "if test ! -f" to "if ! test -f".
3560
3561 2010-04-21 Glenn Morris <rgm@gnu.org>
3562
3563 * configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
3564 (GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
3565
3566 2010-04-21 Karel Klíč <kklic@redhat.com>
3567
3568 * configure.in: New option: --with(out)-selinux, on by default.
3569 Set HAVE_LIBSELINUX if we find libselinux, and substitute
3570 LIBSELINUX_LIBS in Makefiles.
3571
3572 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
3573
3574 * configure.in: Remove all references to LIBX11_SYSTEM.
3575
3576 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
3577
3578 * configure.in: Remove all references to C_DEBUG_SWITCH.
3579
3580 2010-03-27 Eli Zaretskii <eliz@gnu.org>
3581
3582 * config.bat <lib-src>: Edit out lines that begin with several #
3583 characters.
3584
3585 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3586
3587 * configure.in: Remove support for old UNIX System V systems and
3588 for Unixware on non-x86 machines.
3589
3590 * configure.in: Remove support for Solaris on PPC and for old versions.
3591
3592 * configure.in: Remove non-working lynxos port.
3593
3594 2010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
3595
3596 * .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
3597
3598 2010-03-19 Glenn Morris <rgm@gnu.org>
3599
3600 * configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
3601 happy.
3602
3603 2010-03-18 Jan Djärv <jan.h.d@swipnet.se>
3604
3605 * configure.in: Check for tputs and friends, abort if not
3606 found (bug#5735).
3607
3608 2010-03-18 Glenn Morris <rgm@gnu.org>
3609
3610 * configure.in (--with-x-toolkit): In the help text, say which options
3611 are synonyms.
3612
3613 * configure.in (--with-mmdf, --with-mail-unlink):
3614 New options, off by default.
3615 (--with-mailhost): New option to set default POP host.
3616 (LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
3617 (LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
3618 New variables, substituted in Makefiles.
3619 (try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
3620 (LIBGIF): Use AC_SUBST rather than AC_DEFINE.
3621 (HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
3622 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
3623 (HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
3624
3625 2010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
3626
3627 * Makefile.in (uninstall): Handle the case where archlibdir does not
3628 exist. (Bug#5720)
3629
3630 2010-03-12 Eli Zaretskii <eliz@gnu.org>
3631
3632 These changes remove termcap.c from the build on POSIX platforms.
3633 * configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
3634
3635 * configure: Regenerated.
3636
3637 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
3638
3639 * Branch for 23.2.
3640
3641 2010-01-31 Juri Linkov <juri@jurta.org>
3642
3643 * .bzrignore: Add TAGS-LISP.
3644
3645 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
3646
3647 * configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
3648 this header file).
3649
3650 2010-01-12 Juanma Barranquero <lekktu@gmail.com>
3651
3652 * .bzrignore: Ignore all .exe, instead of individual files.
3653
3654 2010-01-12 Chong Yidong <cyd@stupidchicken.com>
3655
3656 * configure.in: Explicitly check for and link to -lXrender.
3657
3658 2010-01-12 Glenn Morris <rgm@gnu.org>
3659
3660 * INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
3661 for bug reports for development versions.
3662
3663 2010-01-02 Eli Zaretskii <eliz@gnu.org>
3664
3665 * .bzrignore: Add more ignored patterns, including for the MS-DOS
3666 build.
3667
3668 2009-12-27 Karl Fogel <kfogel@red-bean>
3669
3670 * INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
3671 * INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
3672
3673 2009-12-17 Glenn Morris <rgm@gnu.org>
3674
3675 * .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
3676
3677 2009-12-15 Glenn Morris <rgm@gnu.org>
3678
3679 * info/dir: Add EDT entry.
3680 * Makefile.in (INFO_FILES): Add edt.
3681
3682 2009-12-10 Jan Djärv <jan.h.d@swipnet.se>
3683
3684 * configure.in: Check for RSVG if GNUstep is used.
3685
3686 2009-12-09 Jan Djärv <jan.h.d@swipnet.se>
3687
3688 * configure.in: Don't check for RSVG or GConf unless X11 is used.
3689
3690 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
3691
3692 * configure.in: Allow compiling Emacs with GTK on Cygwin.
3693
3694 2009-12-01 Glenn Morris <rgm@gnu.org>
3695
3696 * make-dist: Add etc/images/mpc directory.
3697
3698 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
3699
3700 * configure.in: Don't check for GConf unless X is used.
3701
3702 2009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
3703
3704 * configure.in: Use -Wdeclaration-after-statement if available.
3705
3706 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3707
3708 * configure.in: New option: --with(out)-gconf.
3709 Set HAVE_GCONF if we find gconf.
3710
3711 2009-11-17 Glenn Morris <rgm@gnu.org>
3712
3713 * Makefile.in (INFO_FILES): Add semantic.
3714
3715 2009-11-16 Chong Yidong <cyd@stupidchicken.com>
3716
3717 * info/dir: Add Semantic.
3718
3719 2009-11-16 Glenn Morris <rgm@gnu.org>
3720
3721 * Makefile.in (install-arch-indep): Use a more restrictive Makefile
3722 pattern, so as not to exclude makefile*.el. (Bug#4912)
3723
3724 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
3725
3726 * configure.in: --enable-autodepend is new. Check for GNU Make
3727 and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
3728 gcc and GNU make to generate dependencies.
3729
3730 2009-10-27 Glenn Morris <rgm@gnu.org>
3731
3732 * make-dist: Make links to doc/lispintro/*.pdf.
3733
3734 2009-10-23 Jim Meyering <meyering@redhat.com>
3735
3736 * configure.in: Invoke $CPP with -P when creating Makefile and
3737 src/Makefile. Without this, gcc 4.4.2 converts each
3738 backslash-newline pair in the input to a bare newline, yielding
3739 invalid Makefiles.
3740
3741 * configure: Regenerate.
3742
3743 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3744
3745 * configure.in (vax-dec-vms): Remove, not supported anymore.
3746
3747 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3748
3749 * configure.in (NS_HAVE_NSINTEGER): Back out previous change.
3750 (*-apple-darwin*): Add x86_64 architecture.
3751
3752 2009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
3753
3754 * config.guess, config.sub: Updated from master source.
3755
3756 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
3757
3758 * configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
3759
3760 2009-10-07 Edward Trumbo <etrumbo@comcast.net> (tiny change)
3761
3762 * Makefile.in (INFO_FILES): Add EDE and EIEIO.
3763
3764 2009-09-29 Glenn Morris <rgm@gnu.org>
3765
3766 * make-dist (check): Update for two new levels of subdirectory in lisp/.
3767
3768 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
3769
3770 * config.guess, config.sub: Updated from master source.
3771
3772 * configure.in (OTHER_FILES): Define using autoconf not cpp.
3773
3774 2009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
3775
3776 * .dir-locals.el (change-log-mode): Restore bug-reference-mode.
3777
3778 2009-09-13 Chong Yidong <cyd@stupidchicken.com>
3779
3780 * INSTALL: Update URL for GNU FreeFont.
3781
3782 2009-09-09 Glenn Morris <rgm@gnu.org>
3783
3784 * Makefile.in (install-arch-indep): Don't recursively change perms of
3785 site-lisp and infodir. There may be non-Emacs files in here, and the
3786 files supplied by Emacs are all handled explicitly already. (Bug#3800)
3787 (mkdir): Set umask to world-readable before creating directories.
3788 mkinstalldirs already checks if dirs exist, don't duplicate this test.
3789
3790 2009-08-29 Glenn Morris <rgm@gnu.org>
3791
3792 * Makefile.in (info-real): Don't ignore errors from doc Makefiles.
3793 (info): Don't give an error in the absence of makeinfo - let the doc
3794 Makefiles do that, if the info files need rebuilding. (Bug#3982)
3795
3796 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
3797
3798 * Makefile.in (install-arch-indep): If the versioned DOC-####
3799 generated during loadup+dump isn't found, install the plain DOC
3800 file that always gets generated, in case CANNOT_DUMP is set.
3801
3802 * configure.in: Warn if package version specified here doesn't
3803 match the version in version.el.
3804 * configure: Regenerate.
3805
3806 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
3807
3808 * configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
3809
3810 * configure: Regenerate.
3811
3812 2009-08-19 Glenn Morris <rgm@gnu.org>
3813
3814 * INSTALL: Remove reference to cvtmail.
3815
3816 2009-08-15 CHENG Gao <chenggao@gmail.com>
3817
3818 * Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
3819
3820 2009-08-02 Kevin Ryde <user42@zip.com.au>
3821
3822 * INSTALL: Fix free fonts URL.
3823
3824 2009-07-22 Glenn Morris <rgm@gnu.org>
3825
3826 * configure.in (AC_PREREQ): Require autoconf 2.62.
3827
3828 2009-07-04 Andreas Schwab <schwab@linux-m68k.org>
3829
3830 * configure.in (--enable-checking, --enable-profiling):
3831 Use AS_HELP_STRING.
3832
3833 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
3834
3835 * configure.in (--enable-profiling): New option.
3836 (mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
3837
3838 2009-06-27 Glenn Morris <rgm@gnu.org>
3839
3840 * configure.in: Restore netbsd on mips, mipsel, mipseb.
3841
3842 2009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
3843
3844 * configure.in (--enable-checking): New option.
3845
3846 2009-06-24 Glenn Morris <rgm@gnu.org>
3847
3848 * make-dist: Warn if subdir does not exist in source.
3849 (nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
3850 (nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
3851 No longer make links.
3852
3853 2009-06-24 Yavor Doganov <yavor@gnu.org>
3854
3855 * make-dist (tempdir): Don't create directories preferences.gorm
3856 and preferences.nib, they are no longer required.
3857
3858 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
3859
3860 * Branch for 23.1.
3861
3862 2009-06-12 Chong Yidong <cyd@stupidchicken.com>
3863
3864 * configure.in: Delete mac-fix-env target, which has been
3865 removed (Bug#3531).
3866
3867 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3868
3869 * configure.in: Don't define CANNOT_DUMP for GNUstep any more.
3870
3871 2009-05-05 Per Starbäck <per@starback.se> (tiny change)
3872
3873 * BUGS: Use new binding of view-emacs-problems.
3874
3875 2009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
3876
3877 * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
3878 for Solaris compatibility.
3879
3880 2009-04-25 Chong Yidong <cyd@stupidchicken.com>
3881
3882 * configure: Regenerate.
3883
3884 * configure.in: Disable use of FreeType without libXft.
3885
3886 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
3887
3888 * configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
3889 Check if it is declared in gtk.h.
3890
3891 2009-04-12 Andreas Schwab <schwab@linux-m68k.org>
3892
3893 * Makefile.in (install-arch-indep): Remove .gitignore files.
3894
3895 2009-04-03 Kenichi Handa <handa@m17n.org>
3896
3897 * INSTALL: Make the section "Complex Text Layout support
3898 libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
3899
3900 2009-03-06 Dan Nicolaescu <dann@ics.uci.edu>
3901
3902 * configure.in (rs6000-ibm-aix6*): Fix typo.
3903
3904 2009-03-04 Glenn Morris <rgm@gnu.org>
3905
3906 * Makefile.in (INFO_FILES): Add auth.
3907
3908 2009-03-03 Glenn Morris <rgm@gnu.org>
3909
3910 * info/dir: Add Auth-source.
3911
3912 2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3913
3914 * Makefile.in (src): Fix last change so the first `cd' doesn't affect
3915 the second.
3916
3917 2009-02-28 Eli Zaretskii <eliz@gnu.org>
3918
3919 * config.bat: Copy .dbxinit to _dbxinit.
3920
3921 * make-dist (Making links to `info'): Remove .gitignore.
3922
3923 2009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3924
3925 * Makefile.in (lib-src, lisp): Use simpler rule.
3926 (src): Be more specific to avoid recompiling all the .elc files just
3927 because the bootstrap-emacs is missing.
3928
3929 2009-02-26 Chong Yidong <cyd@stupidchicken.com>
3930
3931 * configure.in: Require librsvg >= 2.11.
3932
3933 2009-02-23 Adrian Robert <Adrian.B.Robert@gmail.com>
3934
3935 * configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
3936 (HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
3937
3938 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3939
3940 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
3941
3942 2009-02-03 Glenn Morris <rgm@gnu.org>
3943
3944 * make-dist: Add some missing files, remove some that are no longer
3945 present.
3946
3947 2009-02-02 Glenn Morris <rgm@gnu.org>
3948
3949 * make-dist: Add some missing nextstep/ files.
3950
3951 2009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
3952
3953 * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
3954
3955 2009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
3956
3957 * configure.in: Add support for m68k-*-netbsd.
3958
3959 2009-01-14 Juri Linkov <juri@jurta.org>
3960
3961 * .dir-locals.el (change-log-mode): Remove bug-reference-mode.
3962
3963 * .dir-locals.el (change-log-mode): Add bug-reference-url-format
3964 and bug-reference-mode.
3965
3966 2009-01-11 Juri Linkov <juri@jurta.org>
3967
3968 * INSTALL.CVS: Move configuration explicitly to the first step.
3969
3970 2009-01-09 Glenn Morris <rgm@gnu.org>
3971
3972 * .dir-locals.el: Don't set indent-tabs-mode.
3973
3974 2008-12-30 Kenichi Handa <handa@m17n.org>
3975
3976 * configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
3977 the function OTF_get_variation_glyphs.
3978
3979 2008-12-30 Jan Djärv <jan.h.d@swipnet.se>
3980
3981 * Makefile.in (install-arch-dep): Remove old directories in
3982 ns_app* before moving new directories there.
3983
3984 2008-12-27 Dan Nicolaescu <dann@ics.uci.edu>
3985
3986 * .dir-locals.el: Remove non-working entry for pmail.
3987 (fill-column): Fix typo.
3988 (change-log-mode): Add fill column.
3989
3990 2008-12-26 Eli Zaretskii <eliz@gnu.org>
3991
3992 * config.bat: Produce _dir-locals.el from .dir-locals.el.
3993
3994 2008-12-23 Dan Nicolaescu <dann@ics.uci.edu>
3995
3996 * make-dist (tempdir): Distribute .dir-locals.el.
3997
3998 * .dir-locals.el: New file.
3999
4000 2008-12-19 Eli Zaretskii <eliz@gnu.org>
4001
4002 * config.bat (--with-system-malloc): New option; see msdos/INSTALL
4003 for rationale.
4004
4005 2008-12-13 Glenn Morris <rgm@gnu.org>
4006
4007 * Makefile.in (install-arch-indep): Add new man-pages.
4008 (manext): Remove variable.
4009 (MAN_PAGES): New variable.
4010 (install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
4011 and remove.
4012 (uninstall): Remove desktop file and icons, game scores if empty.
4013
4014 2008-12-11 Dan Nicolaescu <dann@ics.uci.edu>
4015
4016 * config.guess, config.sub: Updated from master source.
4017
4018 2008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
4019
4020 * Makefile.in (install-arch-indep): Install ebrowse.1.
4021
4022 2008-12-09 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
4023
4024 * configure.in: Add Solaris on x86_64.
4025
4026 2008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
4027
4028 * config.guess, config.sub: Updated from master source.
4029
4030 2008-12-08 Eli Zaretskii <eliz@gnu.org>
4031
4032 * info/dir: Fix last change.
4033
4034 2008-12-07 Eli Zaretskii <eliz@gnu.org>
4035
4036 * info/dir: Untabify.
4037
4038 2008-11-28 Ulrich Mueller <ulm@gentoo.org>
4039
4040 * configure.in: Fix last change.
4041
4042 2008-11-28 Richard M Stallman <rms@gnu.org>
4043
4044 * configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
4045 New configurations.
4046
4047 2008-11-20 Josh Elsasser <josh@elsasser.org> (tiny change)
4048
4049 * configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
4050 removed while misclassified as now unsupported hp9000s300. (Bug#1365)
4051
4052 2008-11-15 Eli Zaretskii <eliz@gnu.org>
4053
4054 * Makefile.in (INFO_FILES): Remove ns-emacs.
4055
4056 * info/dir (NS-Emacs): Remove entry.
4057
4058 2008-11-08 Eli Zaretskii <eliz@gnu.org>
4059
4060 * INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
4061
4062 2008-11-07 Glenn Morris <rgm@gnu.org>
4063
4064 * configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
4065
4066 2008-10-31 Eli Zaretskii <eliz@gnu.org>
4067
4068 * config.bat: Tell user to expect one "File not found" message
4069 while the `doc' directory is being configured.
4070
4071 2008-10-30 Chong Yidong <cyd@stupidchicken.com>
4072
4073 * update-subdirs: Put obsolete directory last.
4074
4075 2008-10-30 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
4076
4077 * configure.in: Check fontconfig always.
4078
4079 2008-10-30 Dan Nicolaescu <dann@ics.uci.edu>
4080
4081 * configure (*-solaris2.[7-9]*): Fix typo.
4082
4083 2008-10-24 Glenn Morris <rgm@gnu.org>
4084
4085 * configure.in (--without-sync-input, --with-pkg-config-prog):
4086 Help strings start with lower case.
4087 (--with-gnustep-conf): New option.
4088 (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
4089
4090 2008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
4091
4092 * configure.in: Use `.' instead of `source' to source GNUstep.conf.
4093 Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
4094 is not found. (Bug#1230)
4095
4096 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
4097
4098 * configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
4099 Use sol2-6.h for Solaris 7-9.
4100
4101 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
4102
4103 * configure.in: Add support for GNU/Linux on SuperH.
4104
4105 2008-10-12 Andreas Schwab <schwab@suse.de>
4106
4107 * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
4108
4109 2008-10-03 Adrian Robert <Adrian.B.Robert@gmail.com>
4110
4111 * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
4112 "X") to avoid confusion.
4113
4114 * configure: Regenerate.
4115
4116 2008-09-07 Romain Francoise <romain@orebokech.com>
4117
4118 * make-dist: Distribute doc/man/ChangeLog.
4119
4120 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
4121
4122 * configure.in: Disable XFT and Freetype when without X.
4123
4124 * configure: Regenerate.
4125
4126 2008-08-24 Dan Nicolaescu <dann@ics.uci.edu>
4127
4128 * configure.in (NS_IMPL_GNUSTEP): Increase pure size.
4129
4130 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
4131
4132 * configure.in (GNUSTEP_SYSTEM_HEADERS): Define
4133 GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
4134
4135 * configure: Regenerate.
4136
4137 2008-08-20 Eli Zaretskii <eliz@gnu.org>
4138
4139 * configure.in: Move "#define subprocesses" before
4140 config_opsysfile is included.
4141
4142 2008-08-19 Kenichi Handa <handa@m17n.org>
4143
4144 * INSTALL (Extra fonts): Mention local fonts, don't mention
4145 mule-unicode.
4146
4147 2008-08-16 Chong Yidong <cyd@stupidchicken.com>
4148
4149 * make-dist: Omit info/.arch-inventory.
4150
4151 2008-08-16 Jason Rumney <jasonr@gnu.org>
4152
4153 * make-dist (tempdir/nt): Link emacsclient.rc.
4154
4155 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4156
4157 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
4158 AC_SUBST it.
4159 (GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
4160 AC_SUBST it.
4161 (OTHER_FILES): Always define for HAVE_NS.
4162 (C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
4163 * configure: Regenerate.
4164
4165 2008-08-07 Andreas Schwab <schwab@suse.de>
4166
4167 * configure.in: Correctly handle
4168 --enable-cocoa-experimental-ctrl-g=no and
4169 --enable-ns-self-contained=yes.
4170
4171 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4172
4173 * configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
4174 (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep. Don't
4175 bother undef'ing since won't have desired effect.
4176
4177 2008-08-06 Andreas Schwab <schwab@suse.de>
4178
4179 * configure.in: Fix quoting.
4180
4181 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
4182
4183 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
4184
4185 2008-08-05 Ulrich Mueller <ulm@gentoo.org>
4186
4187 * configure.in: Add checks for krb5_error.text and
4188 krb5_error.e_text struct members.
4189
4190 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
4191
4192 * configure.in: Test for existence of NSInteger.
4193 Suggested by Yavor Doganov.
4194
4195 2008-08-02 Romain Francoise <romain@orebokech.com>
4196
4197 * Makefile.in (INFO_FILES): Add mairix-el.
4198
4199 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
4200
4201 * make-dist:
4202 * README: Remove VMS support.
4203 * vms: Remove directory.
4204
4205 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
4206
4207 * configure.in (MULTI_KBOARD): Remove.
4208
4209 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
4210
4211 * configure.in (DO_BLOCK_INPUT): Remove, unused.
4212
4213 2008-07-29 Chong Yidong <cyd@stupidchicken.com>
4214
4215 * info/dir (File): Add mairix-el.
4216
4217 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4218
4219 Remove support for Mac Carbon.
4220 * mac: Remove directory.
4221 * make-dist:
4222 * configure.in:
4223 * README:
4224 * Makefile.in:
4225 * INSTALL: Remove code for Carbon.
4226 * configure: Regenerate.
4227
4228 2008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
4229
4230 * Makefile.in (install-arch-dep): Fix typo in NS installation commands.
4231
4232 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
4233
4234 * configure.in: Check for getrlimit.
4235
4236 * configure: Regenerate.
4237
4238 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
4239
4240 * configure.in (LD_SWITCH_SITE): Remove, set the values directly
4241 in src/Makefile.in.
4242 (static): Remove, autoconf would always comment it out anyway.
4243 (subprocesses): Define unconditionally.
4244
4245 2008-07-19 Yavor Doganov <yavor@gnu.org> (tiny change)
4246
4247 * configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
4248 compilation under GNUstep.
4249
4250 2008-07-18 Kenichi Handa <handa@m17n.org>
4251
4252 * INSTALL (Complex Text Layout support libraries): Delete the
4253 paragraph about --enable-font-backend.
4254
4255 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
4256
4257 * configure.in: Print out some info to user for NeXTstep builds.
4258 (ns-app): Remove enable option.
4259 (ns-self-contained): Add enable option.
4260 (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
4261 GNUstep, use to set install prefixes, and substitute in Makefiles.
4262 * configure: Regenerate.
4263 * Makefile.in (install-arch-dep): Perform post-install cleanup inside
4264 NS app bundle.
4265
4266 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
4267
4268 * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
4269
4270 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
4271
4272 * configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
4273 NS_IMPL_COCOA.
4274
4275 2008-07-16 Glenn Morris <rgm@gnu.org>
4276
4277 * configure.in (with_kerberos, with_kerberos5, with_hesiod):
4278 Fix tests for OPTION_DEFAULT_OFF (variables never unset).
4279 (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
4280 never unset.
4281
4282 * make-dist: Add nextstep/ directories.
4283 (src, lib-src): Add .m files.
4284
4285 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
4286
4287 * configure.in (freebsd, kfreebsd): Undo part of previous change.
4288 (USER_FULL_NAME): Remove, not used anymore.
4289 * configure: Regenerate.
4290
4291 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
4292
4293 Changes and additions for NeXTstep windowing system (Cocoa and
4294 GNUstep) support.
4295
4296 * configure.in: Add support for NS window system: --with-ns (default
4297 off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
4298 sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
4299 disable font backend if window system is "none", not if !HAVE_X11.
4300 * Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
4301 (install-arch-dep): Add commands to assemble NS .app package.
4302
4303 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
4304
4305 * configure.in: Use macppc for Darwin. Remove references to
4306 desupported systems.
4307 * configure: Regenerate.
4308
4309 2008-07-05 Glenn Morris <rgm@gnu.org>
4310
4311 * make-dist (EMACS): Doc fix.
4312 (lisp): There are no *.dat or image files here any more.
4313 (src): There are no *.s files here any more.
4314 (etc/images, etc/images/*): Link to most regular files.
4315
4316 2008-07-04 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4317
4318 * configure.in: Remove reference to deleted $USE_FONT_BACKEND.
4319
4320 2008-07-01 Glenn Morris <rgm@gnu.org>
4321
4322 * configure.in (cpp_undefs): Rename from `undefs', update uses.
4323 Use $srcdir rather than $top_srcdir. Set before calling AC_OUTPUT,
4324 and explicitly export there. (Bug#507.)
4325
4326 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
4327
4328 * configure.in:
4329 * configure: Remove references to obsolete systems.
4330
4331 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
4332
4333 * Makefile.in (Makefile): Use it for its timestamp value as well, and
4334 make it depend on all other */.in files.
4335 (src/Makefile, src/config.stamp, lib-src/Makefile)
4336 (doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
4337 (doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
4338 (leim/Makefile, lisp/Makefile): Remove those overlapping targets.
4339 (leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
4340
4341 * configure.in: Don't create src/config.stamp any more.
4342
4343 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
4344
4345 * Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
4346
4347 2008-06-22 Glenn Morris <rgm@gnu.org>
4348
4349 * Makefile.in (top_bootclean): Remove obsolete references to lock/.
4350
4351 2008-06-21 Romain Francoise <romain@orebokech.com>
4352
4353 * Makefile.in (INFO_FILES): Add sasl.
4354
4355 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
4356
4357 * Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
4358 (bootstrap-build): Remove.
4359 (top_bootclean): New var.
4360 (top_distclean, bootstrap-clean): Use it.
4361 (bootstrap): Don't recheck config. Make normally.
4362
4363 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
4364
4365 * Makefile.in (SUBDIR): Include `lisp'.
4366 (lisp): Depend on `src'.
4367 (top_distclean): Don't remove config.status.
4368 (bootstrap-clean): New target.
4369 (maintainer-clean): Use it.
4370 (bootstrap): Use bootstrap-clean. Re-run config.status.
4371 (src/bootstrap-emacs${EXEEXT}): New target.
4372 (bootstrap-build): Use it. Don't use bootstrap-prepare because
4373 src/Makefile now takes care of it.
4374 (bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
4375
4376 2008-06-15 Glenn Morris <rgm@gnu.org>
4377
4378 * info/dir: Add sasl.
4379
4380 2008-06-09 Alan Mackenzie <acm@muc.de>
4381
4382 * INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
4383
4384 2008-06-08 Eric S. Raymond <esr@snark.thyrsus.com>
4385
4386 * INSTALL.CVS: Indicate when "cvs update -d" may be needed.
4387
4388 2008-06-07 Glenn Morris <rgm@gnu.org>
4389
4390 * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
4391 serve no purpose.
4392
4393 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
4394
4395 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
4396 * configure: Regenerate.
4397
4398 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4399
4400 * update-subdirs: Don't touch subdirs.el if it is unchanged.
4401
4402 2008-05-14 Kenichi Handa <handa@m17n.org>
4403
4404 * configure: Regenerate.
4405
4406 * configure.in: Don't handle --disable-font-backend. Don't print
4407 a message about a font backend.
4408
4409 2008-05-09 Glenn Morris <rgm@gnu.org>
4410
4411 * configure.in: Make absence of makeinfo a fatal error only if the info
4412 files don't exist.
4413 * Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
4414
4415 2008-05-07 Eli Zaretskii <eliz@gnu.org>
4416
4417 * config.bat: Fix last change: don't use < and > in "rem" lines,
4418 they are interpreted as redirection by DOS shells.
4419
4420 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4421
4422 * configure.in: Check availability of AvailabilityMacros.h
4423 if HAVE_CARBON.
4424
4425 * configure: Regenerate.
4426
4427 2008-05-03 Glenn Morris <rgm@gnu.org>
4428
4429 * configure.in (x_libraries): Remove standard 64-bit directories -
4430 experimental workaround for minor autoconf bug.
4431
4432 * configure.in (--without-makeinfo): New option. If set,
4433 absence of suitable makeinfo is not a fatal error.
4434 * Makefile.in (MAKEINFO): New, set by configure.
4435 (install-arch-indep): Without makeinfo, ignore any missing manuals.
4436 (info-real): New target.
4437 (info): Without makeinfo, do nothing, else call `info-real'.
4438
4439 2008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
4440
4441 * configure.in: Remove hpux10.20 from the desupported list.
4442
4443 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
4444
4445 * configure.in: Define USE_LUCID/USE_MOTIF in config.h.
4446
4447 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
4448
4449 * configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
4450 rather than change CPPFLAGS.
4451 (HAVE_GTK): Rename to USE_GTK.
4452
4453 2008-04-16 Yavor Doganov <yavor@gnu.org> (tiny change)
4454
4455 * configure.in: Replace the obsolete macros AC_AIX and
4456 AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
4457
4458 2008-04-05 Andreas Schwab <schwab@suse.de>
4459
4460 * configure.in: No longer create admin/unidata/Makefile.
4461
4462 2008-03-28 Andreas Schwab <schwab@suse.de>
4463
4464 * Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
4465 (lisp/Makefile): New rule.
4466
4467 2008-03-13 Glenn Morris <rgm@gnu.org>
4468
4469 * configure.in (AC_INIT): Fix version number.
4470 (sync-input): Reword the option, since it's on by default.
4471
4472 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
4473
4474 * configure.in: Add --enable-sync-input, default yes.
4475
4476 2008-03-11 Glenn Morris <rgm@gnu.org>
4477
4478 * Makefile.in (install-etc, mkdir): Handle directory
4479 etc/images/icons/hicolor/*/mimetypes/.
4480
4481 * make-dist: Handle icons/hicolor/scalable directory.
4482
4483 2008-03-05 Glenn Morris <rgm@gnu.org>
4484
4485 * configure.in: Enable font-backend by default.
4486 (USE_FONT_BACKEND): Set to "no" in absence of X.
4487 (PKG_CONFIG): Don't set multiple times, once is enough.
4488 (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
4489
4490 2008-03-03 Glenn Morris <rgm@gnu.org>
4491
4492 * Makefile.in (iconsrcdir): New variable.
4493 (install-etc, mkdir): Use $iconsrcdir. Handle the `scalable' icon
4494 directory.
4495
4496 2008-02-29 Glenn Morris <rgm@gnu.org>
4497
4498 * test/: New directory.
4499
4500 2008-02-27 Jan Djärv <jan.h.d@swipnet.se>
4501
4502 * configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
4503
4504 2008-02-25 Dan Nicolaescu <dann@ics.uci.edu>
4505
4506 * configure.in: Print an error for systems that we think are obsolete
4507 and are proposed to be removed. Remove some more unused systems.
4508 Add support for powerpc-ibm-aix6*.
4509
4510 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
4511
4512 * configure.in: Remove references to obsolete variables and systems.
4513
4514 2008-02-21 Glenn Morris <rgm@gnu.org>
4515
4516 * Makefile.in (set_installuser): New.
4517 (install-arch-indep): Use set_installuser to avoid duplicate code.
4518
4519 * README.unicode: Split into admin/notes/unicode,font-backend and
4520 remove.
4521
4522 2008-02-10 Matthew Luckie <mjl@luckie.org.nz> (tiny change)
4523
4524 * configure.in (arm*-*-freebsd*): Add.
4525
4526 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
4527
4528 * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
4529 dealing with obsolete variables.
4530
4531 2008-02-08 Glenn Morris <rgm@gnu.org>
4532
4533 * Makefile.in (check-info-dir): New target.
4534
4535 2008-02-08 Michael Olson <mwolson@gnu.org>
4536
4537 * Makefile.in (INFO_FILES): Add epa.
4538
4539 * info/dir: Add EasyPG Assistant manual to the "Emacs misc
4540 features" section.
4541
4542 2008-02-06 Glenn Morris <rgm@gnu.org>
4543
4544 * configure.in (--with-gcc): Give an error saying this option has
4545 been removed.
4546 (--with-gtk): Remove this option.
4547
4548 2008-02-06 Tom Tromey <tromey@redhat.com>
4549
4550 * configure.in (--with-gcc): Remove.
4551 * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
4552
4553 2008-02-05 Ulrich Mueller <ulm@gentoo.org>
4554
4555 * INSTALL: Recommend giflib, not libungif.
4556
4557 2008-02-05 Tom Tromey <tromey@redhat.com>
4558
4559 * configure.in (--with-dbus): Default to enabled.
4560
4561 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
4562
4563 * INSTALL (Complex Text Layout support libraries): New section.
4564
4565 2008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
4566
4567 * make-dist: Remove references to files in mac/ that have been
4568 deleted.
4569
4570 2008-02-02 Thien-Thi Nguyen <ttn@gnuvola.org>
4571
4572 * configure.in: For libotf and m17n-flt checks, set shell vars
4573 HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
4574 pkg_check_m17n_flt, respectively, for the sake of the summary output.
4575 Reported by Ulrich Mueller.
4576
4577 2008-02-02 Eli Zaretskii <eliz@gnu.org>
4578
4579 * configure.in: If admin/unidata/UnicodeData.txt is present, copy
4580 admin/unidata/Makefile.in to Makefile.
4581
4582 2008-02-02 Glenn Morris <rgm@gnu.org>
4583
4584 * configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
4585 (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
4586 (HAVE_XFT): Add "Does Emacs use..." messages at end.
4587
4588 2008-02-01 Miles Bader <miles@gnu.org>
4589
4590 * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
4591 [libotf], and [m17n-flt] options.
4592
4593 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
4594
4595 * configure.in: Add EMACS_ARG_N([libotf]...), and
4596 EMACS_ARG_N([m17n-flt]. Set back OLD_CPPFLAGS to CPPFLAGS (not
4597 CFLAGS) in XFT checking part. Don't alter C_SWITCH_X_SITE,
4598 CFLAGS, and LIBS in checking of m17n-flt.
4599
4600 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
4601
4602 * configure.in: Check the availability of m17n-flt library.
4603
4604 2008-02-01 Kenichi Handa <handa@m17n.org>
4605
4606 * configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
4607 not available.
4608
4609 2008-02-01 Kenichi Handa <handa@m17n.org>
4610
4611 * configure.in: New args --enable-font-backend, --with-xft,
4612 --with-freetyp. New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
4613 HAVE_FREETYPE, HAVE_LIBOTF. New AC_SUBSTs XFT_LIBS,
4614 FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
4615 FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
4616
4617 2008-02-01 Kenichi Handa <handa@m17n.org>
4618
4619 * make-dist: Include etc/charsets in tarball.
4620
4621 2008-02-01 Kenichi Handa <handa@m17n.org>
4622
4623 * configure.in: While running cpp on junk.c, include
4624 -DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
4625 exists.
4626
4627 2008-01-29 Dan Nicolaescu <dann@ics.uci.edu>
4628
4629 * configure.in (xtensa): Match more configurations.
4630
4631 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
4632
4633 * configure.in: Update comment.
4634
4635 2008-01-26 Glenn Morris <rgm@gnu.org>
4636
4637 * configure.in (--without-gcc): By default, neither off nor on.
4638 (--with-carbon): Tone down rhetoric in help text.
4639
4640 2008-01-25 Glenn Morris <rgm@gnu.org>
4641
4642 * configure.in: Correct usage of OPTION_DEFAULT_ON,
4643 OPTION_DEFAULT_OFF so that the defaults are as they used to be.
4644 Default `Carbon' to off (it's unsupported).
4645
4646 2008-01-24 Glenn Morris <rgm@gnu.org>
4647
4648 * configure.in: Standardize dbus-related messages.
4649
4650 2008-01-23 Michael Olson <mwolson@gnu.org>
4651
4652 * configure.in (pkg-config-prog): Remove initial whitespace.
4653
4654 2008-01-23 Tom Tromey <tromey@redhat.com>
4655
4656 * configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
4657 (EMACS_ARG_Y, EMACS_ARG_N): Remove.
4658 Update all users.
4659
4660 2008-01-21 Dan Nicolaescu <dann@ics.uci.edu>
4661
4662 * config.guess, config.sub: Updated from master source.
4663
4664 2008-01-17 Andreas Schwab <schwab@suse.de>
4665
4666 * configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
4667
4668 2008-01-17 Glenn Morris <rgm@gnu.org>
4669
4670 * configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
4671
4672 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
4673
4674 * configure.in: Remove more references to unsupported systems.
4675
4676 2008-01-16 Sven Joachim <svenjoac@gmx.de>
4677
4678 * make-dist: Add --lzma.
4679
4680 2008-01-16 Glenn Morris <rgm@gnu.org>
4681
4682 * Makefile.in (maybe_bootstrap): Remove texinfo message, since
4683 configure checks for this.
4684
4685 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
4686
4687 * configure.in: Remove more references to unsupported systems.
4688
4689 2008-01-06 Romain Francoise <romain@orebokech.com>
4690
4691 * configure.in: Delete extra semicolons.
4692
4693 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
4694
4695 * configure.in: Remove references to unsupported systems.
4696
4697 2008-01-05 Romain Francoise <romain@orebokech.com>
4698
4699 * make-dist: Add --bzip2. Update copyright.
4700
4701 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
4702
4703 * configure.in: Remove support for Masscomp.
4704
4705 2008-01-05 Glenn Morris <rgm@gnu.org>
4706
4707 * Makefile.in (desktopdir, icondir): New variables.
4708 (install-arch-indep): Also depend on `install-etc'.
4709 (install-etc): New target.
4710 (mkdir): Also create the `applications' and `icons' directories.
4711
4712 2008-01-04 Glenn Morris <rgm@gnu.org>
4713
4714 * make-dist: Update for new etc/images/icons/hicolor directory.
4715
4716 2007-12-09 Andreas Schwab <schwab@suse.de>
4717
4718 * configure.in: D-Bus is not enabled by default.
4719
4720 2007-12-06 Jan Djärv <jan.h.d@swipnet.se>
4721
4722 * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
4723 change.
4724
4725 2007-12-04 Jan Djärv <jan.h.d@swipnet.se>
4726
4727 * configure.in: Give package name and version to AC_INIT.
4728
4729 2007-12-03 Magnus Henoch <mange@freemail.hu>
4730
4731 * configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
4732
4733 2007-12-03 Michael Albinus <michael.albinus@gmx.de>
4734
4735 * configure.in: No need for DBUS_INFO anymore.
4736
4737 * Makefile.in (INFO_FILES): Use dbus unconditionally.
4738
4739 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
4740
4741 * configure.in: Add D-Bus checks. D-Bus is disabled by default.
4742
4743 * Makefile.in (INFO_FILES): Add dbus.
4744
4745 2007-12-02 Romain Francoise <romain@orebokech.com>
4746
4747 * make-dist: Fix last change.
4748
4749 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
4750
4751 * configure.in: Add support for gnu-kfreebsd.
4752
4753 2007-11-28 Glenn Morris <rgm@gnu.org>
4754
4755 * make-dist: Add etc/nxml.
4756
4757 2007-11-24 Romain Francoise <romain@orebokech.com>
4758
4759 * Makefile.in (INFO_FILES): Add nxml-mode.
4760
4761 2007-11-23 Romain Francoise <romain@orebokech.com>
4762
4763 * make-dist: Include nXML. Don't try to copy FTP, it was removed on
4764 2007/10/17. Don't special-case alloca.c which is no longer in CVS.
4765
4766 2007-11-20 Andreas Schwab <schwab@suse.de>
4767
4768 * configure.in: Always include <resolv.h> when checking for res_init.
4769
4770 2007-11-17 Andreas Schwab <schwab@suse.de>
4771
4772 * update-subdirs: Atomically update subdirs.el.
4773
4774 2007-11-17 Glenn Morris <rgm@gnu.org>
4775
4776 * Makefile.in (check-declare): New target.
4777
4778 2007-11-07 Glenn Morris <rgm@gnu.org>
4779
4780 * configure.in: Deprecate Mac Carbon port.
4781
4782 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
4783
4784 * configure.in: Remove HAVE_X11R5 check.
4785
4786 2007-10-31 Glenn Morris <rgm@gnu.org>
4787
4788 * Makefile.in (install-arch-indep): Fallback to $USER and `id -un'
4789 when changing ownership of installed files.
4790
4791 2007-10-30 Glenn Morris <rgm@gnu.org>
4792
4793 * make-dist: Add new directory etc/gnus.
4794
4795 2007-10-30 Michael Olson <mwolson@gnu.org>
4796
4797 * Makefile.in (INFO_FILES): Alphabetize. Add remember.
4798
4799 2007-10-29 Glenn Morris <rgm@gnu.org>
4800
4801 * make-dist: Add new directories etc/images/smilies/grayscale,medium.
4802
4803 2007-10-23 Glenn Morris <rgm@gnu.org>
4804
4805 * MAINTAINERS: Move to admin/.
4806
4807 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
4808
4809 * configure.in (HAVE_RES_INIT): Define if res_init() exists.
4810 (HAVE_LIBRESOLV): Also define if we are using res_init().
4811
4812 2007-10-17 Glenn Morris <rgm@gnu.org>
4813
4814 * FTP: Remove file, since it's just a duplicate of one in etc/.
4815
4816 2007-10-05 Eli Zaretskii <eliz@gnu.org>
4817
4818 * config.bat: Fix configuring `doc' due to changes in the
4819 directory structure.
4820
4821 2007-09-16 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
4822
4823 * configure.in: Don't use -lpthread on HP-UX.
4824
4825 2007-09-16 Glenn Morris <rgm@gnu.org>
4826
4827 * make-dist: File gfdl.1 has been removed.
4828
4829 2007-09-15 Glenn Morris <rgm@gnu.org>
4830
4831 * configure.in: Fix makeinfo version regexp.
4832
4833 2007-09-12 Glenn Morris <rgm@gnu.org>
4834
4835 * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
4836 implementation of alloca is not found.
4837
4838 * Makefile.in (SOURCES, unlock, relock): Delete.
4839 (install-arch-indep): Do not exclude the etc/ Makefiles.
4840
4841 2007-09-09 Juri Linkov <juri@jurta.org>
4842
4843 * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc).
4844
4845 * README: Add doc/ to documentation directories.
4846
4847 2007-09-08 Michael Olson <mwolson@gnu.org>
4848
4849 * MAINTAINERS: Add myself for ERC and tq.el.
4850 Update for new doc/ directory layout.
4851
4852 2007-09-06 Romain Francoise <romain@orebokech.com>
4853
4854 * make-dist: Update for new doc/ directory layout.
4855
4856 2007-09-06 Glenn Morris <rgm@gnu.org>
4857
4858 * Makefile.in (mansrcdir): New variable.
4859 (SUBDIR_MAKEFILES): Update for new doc/ directory layout.
4860 (man/Makefile, lispref/Makefile, lispintro/Makefile): Rename and
4861 update these targets for new doc/ directory layout.
4862 (doc/misc/Makefile): New target.
4863 (install-arch-indep): Use mansrcdir for new location of manpages.
4864 (mostlyclean, clean, distclean, maintainer-clean, unlock)
4865 (relock, info, dvi): Update targets for new doc/ directory layout.
4866
4867 * configure.in (AC_OUTPUT): Update names of generated Makefiles
4868 for new doc/ directory layout.
4869
4870 2007-09-02 Andreas Schwab <schwab@suse.de>
4871
4872 * configure.in: Use AS_HELP_STRING throughout.
4873 * configure: Regenerate.
4874
4875 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
4876
4877 * configure.in: Require Gtk/Glib 2.6.
4878
4879 2007-09-02 Thien-Thi Nguyen <ttn@gnuvola.org>
4880
4881 * configure.in (EMACS_ARG_Y, EMACS_ARG_N): New AC_DEFUNs.
4882 Use them throughout in place of AC_ARG_WITH calls.
4883 * configure: Regenerate.
4884
4885 2007-09-01 Andreas Schwab <schwab@suse.de>
4886
4887 * configure.in: Put quotes around nested macro calls.
4888
4889 2007-08-31 Ulrich Mueller <ulm@gentoo.org> (tiny change)
4890
4891 * configure.in: Fix typo.
4892 * configure: Regenerate.
4893
4894 2007-08-30 Glenn Morris <rgm@gnu.org>
4895
4896 * configure.in (AH_BOTTOM): Copy some manual changes made to
4897 src/config.in here so they are not lost when it regenerates.
4898
4899 * README.multi-tty: Move to admin/notes/multi-tty, with some edits.
4900
4901 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
4902
4903 * README.multi-tty: New file.
4904
4905 2007-08-29 Glenn Morris <rgm@gnu.org>
4906
4907 * README: Increase version to 23.0.50.
4908
4909 2007-08-29 Jan Djärv <jan.h.d@swipnet.se>
4910
4911 * configure.in: New option: --without-xaw3d.
4912
4913 2007-08-24 Glenn Morris <rgm@gnu.org>
4914
4915 * configure.in: Check for a suitably recent makeinfo.
4916
4917 2007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
4918
4919 * configure.in (Check for required libraries): Typo.
4920
4921 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4922
4923 * configure.in: Check librsvg2 also for Mac Carbon.
4924
4925 2007-08-22 Romain Francoise <romain@orebokech.com>
4926
4927 * make-dist: Follow reorganization of files in etc/.
4928
4929 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
4930
4931 * configure.in: Add support for SVG images through librsvg2.
4932
4933 2007-07-28 Eli Zaretskii <eliz@gnu.org>
4934
4935 * Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
4936 to avoid an error message if there is no DOC there.
4937
4938 2007-07-25 Glenn Morris <rgm@gnu.org>
4939
4940 * Relicense all FSF files to GPLv3 or later.
4941
4942 * COPYING, info/COPYING: Switch to GPLv3.
4943
4944 2007-06-20 Jan Djärv <jan.h.d@swipnet.se>
4945
4946 * configure.in: Complain if X seems to be installed but no
4947 development files were found.
4948
4949 2007-06-20 Glenn Morris <rgm@gnu.org>
4950
4951 * configure.in: Prefer libgif over libungif.
4952
4953 2007-06-14 Jan Djärv <jan.h.d@swipnet.se>
4954
4955 * configure.in: Check for all image libraries before exiting.
4956
4957 2007-06-13 Jan Djärv <jan.h.d@swipnet.se>
4958
4959 * configure.in: Exit with error if image libraries aren't found.
4960
4961 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
4962
4963 * configure.in: Merge xaw3d and libXaw checks. Check xaw3d even
4964 when compiling without scrollbars.
4965
4966 2007-06-12 Glenn Morris <rgm@gnu.org>
4967
4968 * configure.in (HAVE_GIF): If -lungif fails, try -lgif.
4969
4970 2007-06-11 Jan Djärv <jan.h.d@swipnet.se>
4971
4972 * configure.in: Change wording about yes/gtk and lucid/athena
4973 being synonyms.
4974
4975 2007-06-08 Glenn Morris <rgm@gnu.org>
4976
4977 * configure.in: Make gtk the default toolkit.
4978
4979 2007-06-07 Glenn Morris <rgm@gnu.org>
4980
4981 * configure.in (NON_GNU_CPP): On Solaris, set using a proper check
4982 for a Sun C compiler.
4983
4984 * Makefile.in (install-arch-indep): Install only the DOC- file
4985 specific to the build, if possible, rather than DOC-*.
4986
4987 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
4988
4989 * Version 22.1 released.
4990
4991 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
4992
4993 * mkinstalldirs: Sync to version in automake CVS.
4994
4995 2007-05-22 Andreas Schwab <schwab@suse.de>
4996
4997 * configure.in: Prefer build_alias over host when host_alias is not set.
4998 * configure: Regenerate.
4999
5000 2007-05-20 Andreas Schwab <schwab@suse.de>
5001
5002 * configure.in: Remove empty AC_SUBST.
5003 * configure: Regenerate.
5004
5005 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
5006
5007 * configure.in: Use HAVE_GPM instead of HAVE_GPM_H and implement
5008 it like others.
5009 * configure: Regenerate.
5010
5011 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
5012
5013 * configure.in (AC_CHECK_HEADERS): Add gpm.h.
5014 (AC_CHECK_LIB): Add -lgpm.
5015 * configure: Regenerate.
5016
5017 2007-05-03 Glenn Morris <rgm@gnu.org>
5018
5019 * configure: Tweak message about the absence of shell functions.
5020
5021 2007-04-27 Andreas Schwab <schwab@suse.de>
5022
5023 * Makefile.in (config.status): Depend on ${srcdir}/lisp/version.el.
5024
5025 2007-04-26 Glenn Morris <rgm@gnu.org>
5026
5027 * README: Increase version to 22.1.50.
5028
5029 2007-04-24 Juanma Barranquero <lekktu@gmail.com>
5030
5031 * INSTALL (DETAILED BUILDING AND INSTALLATION): Fix typo.
5032
5033 2007-04-19 Glenn Morris <rgm@gnu.org>
5034
5035 * configure.in: Signal error if Xaw libs are missing in a Lucid build.
5036
5037 2007-04-18 Glenn Morris <rgm@gnu.org>
5038
5039 * INSTALL: Mention CPP.
5040
5041 2007-04-15 Glenn Morris <rgm@gnu.org>
5042
5043 * FTP: Replace with a pointer to the web version.
5044
5045 2007-04-13 Glenn Morris <rgm@gnu.org>
5046
5047 * INSTALL: In lib-src, timer, wakeup, yow are removed.
5048
5049 2007-04-04 Glenn Morris <rgm@gnu.org>
5050
5051 * configure.in (NON_GNU_CPP): Use associated preprocessor when
5052 compiling with Sun Studio on Solaris.
5053
5054 2007-03-23 Glenn Morris <rgm@gnu.org>
5055
5056 * configure.in: Restore support for hp800 (removed 2007-01-27)
5057 following clarification of legal status.
5058
5059 2007-03-22 Joe Buehler <jbuehler@spirentcom.com> (tiny change)
5060
5061 * configure.in: Add support for AIX4.3 on IBM RS6000.
5062
5063 * configure: Regenerate.
5064
5065 2007-03-20 Richard Stallman <rms@gnu.org>
5066
5067 * configure.in: Fix previous change.
5068
5069 2007-03-19 Deanna Phillips <deanna@sixbit.org> (tiny change)
5070
5071 * configure.in (arm-*-openbsd*, hppa-*-openbsd*)
5072 (m88k-*-openbsd*, mips64-*-openbsd*, sh-*-openbsd*): Added.
5073 (ns32k-*-openbsd*, ns32k-*-openbsd*): Deleted.
5074
5075 2007-03-19 Chong Yidong <cyd@stupidchicken.com>
5076
5077 * configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
5078 user specifies "without".
5079
5080 * configure: Regenerate.
5081
5082 2007-03-18 Jan Djärv <jan.h.d@swipnet.se>
5083
5084 * configure.in: Warning for Gtk+ and Cygwin added.
5085 (HAVE_XFT): OLD_CFLAGS changed to OLD_CPPFLAGS.
5086
5087 2007-02-27 Glenn Morris <rgm@gnu.org>
5088
5089 * make-dist (oldXMenu): Remove Imakefile.
5090 (etc/images): Add README.
5091
5092 2007-02-25 Dan Nicolaescu <dann@ics.uci.edu>
5093
5094 * configure.in (xtensa-*-linux-gnu*): New configuration.
5095
5096 * configure: Regenerate.
5097
5098 2007-02-22 Dan Nicolaescu <dann@ics.uci.edu>
5099
5100 * config.guess, config.sub: Updated from master source.
5101
5102 2007-01-31 Sascha Wilde <wilde@sha-bang.de> (tiny change)
5103
5104 * configure.in (PKG_CHECK_MODULES): Change ///* to / in cflags and libs.
5105
5106 2007-01-29 Chong Yidong <cyd@stupidchicken.com>
5107
5108 * configure.in: Restore support for hp800's not running HP-UX.
5109
5110 * configure: Regenerate.
5111
5112 2007-01-27 Chong Yidong <cyd@stupidchicken.com>
5113
5114 * configure.in: Remove support for hp800 and sr2k machine types.
5115
5116 * configure: Regenerate.
5117
5118 2007-01-26 Jan Djärv <jan.h.d@swipnet.se>
5119
5120 * configure.in: Add check for libXft.
5121
5122 2007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
5123
5124 * INSTALL: Info files moved to share/info.
5125
5126 2007-01-02 Stephen C. Gilardi <scgilardi@gmail.com> (tiny change)
5127
5128 * configure.in: Detect and use fink-installed in intel-based Mac
5129 builds; change Apple Darwin section to support both PowerPC and
5130 Intel-based Macs.
5131
5132 2006-12-26 Andreas Schwab <schwab@suse.de>
5133
5134 * Makefile.in (datarootdir): Define.
5135
5136 2006-12-24 Richard Stallman <rms@gnu.org>
5137
5138 * configure.in: Require Autoconf 2.61.
5139
5140 2006-12-22 Mark Davies <mark@mcs.vuw.ac.nz>
5141
5142 * configure.in: Add support for NetBSD on x86-64, hp800 and sh3el.
5143 Remove redundant entry for powerpc-apple-netbsd.
5144
5145 * configure: Regenerate.
5146
5147 2006-12-22 Chong Yidong <cyd@stupidchicken.com>
5148
5149 * configure: Regenerate with autoconf 2.61.
5150
5151 2006-12-20 Jan Djärv <jan.h.d@swipnet.se>
5152
5153 * configure.in: Detect alsa/asoundlib.h also.
5154 * configure: Regenerate.
5155
5156 2006-12-19 Jan Djärv <jan.h.d@swipnet.se>
5157
5158 * configure.in: Check if GTK+ compiles at all.
5159
5160 2006-12-10 Andreas Schwab <schwab@suse.de>
5161
5162 * configure.in: Remove check for struct timezone, its result is
5163 never used.
5164
5165 2006-12-08 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
5166
5167 * configure.in: Add support for Solaris 10 on x86-64.
5168
5169 2006-12-08 Jan Djärv <jan.h.d@swipnet.se>
5170
5171 * INSTALL (DETAILED BUILDING AND INSTALLATION): Document usage
5172 of PKG_CONFIG_PATH.
5173
5174 2006-12-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5175
5176 * configure.in (HAVE_SYNC): New test.
5177
5178 2006-12-03 Glenn Morris <rgm@gnu.org>
5179
5180 * Makefile.in: Fix Copyright format.
5181
5182 * configure.in (AH_TOP): Add missing Copyright year.
5183
5184 * update-subdirs: Add missing Copyright years.
5185
5186 2006-11-27 Chris Moore <christopher.ian.moore@gmail.com>
5187
5188 * Makefile.in: Touch only the parts of the share/emacs directory
5189 specific to this version.
5190
5191 2006-11-26 Chong Yidong <cyd@stupidchicken.com>
5192
5193 * configure.in (HAVE_X86_64_LIB64_DIR): New test.
5194
5195 2006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5196
5197 * configure.in (HAVE_CANCELMENUTRACKING): Remove test.
5198
5199 2006-11-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5200
5201 * configure.in: Prefer X11 to Carbon only when some X-specific
5202 option is specified (Thanks to Jan Djärv and Andreas Schwab).
5203
5204 2006-11-04 Romain Francoise <romain@orebokech.com>
5205
5206 * Makefile.in (bootstrap-clean-before): Fix typo.
5207 Use new target `bootstrap-clean' in the leim subdirectory.
5208
5209 2006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
5210
5211 * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
5212
5213 2006-10-30 Chong Yidong <cyd@stupidchicken.com>
5214
5215 * make-dist: Add makefile.w32-in to the man, lispref and lispintro
5216 directories.
5217
5218 2006-10-29 Jeramey Crawford <jeramey@jeramey.com>
5219
5220 * configure.in: Enable x86-64 OpenBSD compilation.
5221
5222 2006-10-28 Glenn Morris <rgm@gnu.org>
5223
5224 * AUTHORS: Add cal-html.el author.
5225
5226 2006-10-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5227
5228 * make-dist: Make links to mac/make-package and
5229 mac/Emacs.app/Contents/Resources/Emacs.icns.
5230
5231 2006-10-27 Chong Yidong <cyd@stupidchicken.com>
5232
5233 * README: Bump version number to 22.0.90.
5234
5235 2006-10-23 Andreas Schwab <schwab@suse.de>
5236
5237 * configure.in: Make sure x_default_search_path is always set even
5238 when x_libraries is empty, and look in .../share as well for each
5239 library directory.
5240
5241 2006-09-28 Kenichi Handa <handa@m17n.org>
5242
5243 * configure.in (locallisppath): Don't include leim dir.
5244 (lisppath): Include leim dir.
5245
5246 2006-09-15 Jay Belanger <belanger@truman.edu>
5247
5248 * COPYING: Replace "Library Public License" by "Lesser Public
5249 License" throughout.
5250
5251 2006-09-11 Paul Eggert <eggert@cs.ucla.edu>
5252
5253 * make-dist (EMACS): Exit and fail if the EMACS environment
5254 variable is set to something other than an absolute file name.
5255
5256 2006-08-16 Andreas Schwab <schwab@suse.de>
5257
5258 * configure.in (PKG_CHECK_MODULES): Use AS_MESSAGE_LOG_FD instead
5259 of hardcoding it.
5260
5261 2006-08-16 Richard Stallman <rms@gnu.org>
5262
5263 * INSTALL.CVS: Clean up wording.
5264
5265 2006-07-14 Eli Zaretskii <eliz@gnu.org>
5266
5267 * configure.in (PKG_CHECK_MODULES): Redirect the output of
5268 $PKG_CONFIG --exists "$2" to config.log.
5269 * configure: Regenerate.
5270
5271 2006-07-09 Richard Stallman <rms@gnu.org>
5272
5273 * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections.
5274
5275 2006-07-09 Kim F. Storm <storm@cua.dk>
5276
5277 * CONTRIBUTE: Use outline format.
5278 Add section on copyright years (from admin/notes/years).
5279
5280 2006-07-08 Eli Zaretskii <eliz@gnu.org>
5281
5282 * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config
5283 to /dev/null, since we don't need the error message, just the
5284 exit status.
5285
5286 2006-07-07 Eli Zaretskii <eliz@gnu.org>
5287
5288 * CONTRIBUTE: Slight formatting changes and typo fixes.
5289 Add description of NEWS markings.
5290
5291 2006-07-07 Kim F. Storm <storm@cua.dk>
5292
5293 * CONTRIBUTE: Mention INSTALL.CVS.
5294
5295 2006-07-05 Romain Francoise <romain@orebokech.com>
5296
5297 * make-dist (top-level): Add CONTRIBUTE.
5298
5299 2006-07-04 Richard Stallman <rms@gnu.org>
5300
5301 * CONTRIBUTE: Much rewrite.
5302
5303 2006-07-04 Nick Roberts <nickrob@snap.net.nz>
5304
5305 * CONTRIBUTE: New file.
5306
5307 2006-06-24 Eli Zaretskii <eliz@gnu.org>
5308
5309 * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.
5310
5311 2006-05-18 Jan Djärv <jan.h.d@swipnet.se>
5312
5313 * configure.in: Add check for ALSA.
5314
5315 2006-05-06 Eli Zaretskii <eliz@gnu.org>
5316
5317 * Makefile.in (INFO_FILES): Remove emacs-xtra.
5318
5319 * info/dir: Remove the Emacs-Xtra entry.
5320
5321 2006-04-20 Ramprasad B <ramprasad_i82@yahoo.com>
5322
5323 Update copyright year(s) in many files.
5324
5325 2006-04-01 Eli Zaretskii <eliz@gnu.org>
5326
5327 * configure: Regenerated.
5328
5329 2006-04-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5330
5331 * configure.in (HAVE_XAW3D): Disable Xaw3d check if
5332 --without-toolkit-scroll-bars was specified.
5333
5334 2006-04-01 Christoph Bauer <Christoph.Bauer@lms-gmbh.de> (tiny change)
5335
5336 * configure.in (hppa*-hp-hpux1[1-9]*): Add -D_INCLUDE__STDC_A1_SOURCE
5337 to CFLAGS. Update Copyright years written to src/config.in.
5338
5339 2006-03-18 Claudio Fontana <claudio@gnu.org>
5340
5341 * Makefile.in (INFO_FILES): New variable, contains all Info file names.
5342 (install-arch-indep, uninstall): Use $(INFO_FILES) to specify files
5343 to be installed/uninstalled.
5344 (uninstall): Invoke "$(INSTALL_INFO) --remove" to remove references
5345 to Info files installed by Emacs.
5346
5347 2006-03-03 Claudio Fontana <claudio@gnu.org>
5348
5349 * Makefile.in (install, uninstall): Add DESTDIR variable to
5350 support staged installations.
5351
5352 2006-02-14 Richard M. Stallman <rms@gnu.org>
5353
5354 * configure.in (s390x-*-linux-gnu*): New configuration.
5355
5356 2006-01-31 Jan Djärv <jan.h.d@swipnet.se>
5357
5358 * configure.in: Require GTK 2.4 or newer.
5359
5360 2006-01-29 Michael Olson <mwolson@gnu.org>
5361
5362 * Makefile.in (install-arch-indep, uninstall): Add ERC.
5363 * info/dir (ERC): New entry.
5364
5365 2006-01-29 Eli Zaretskii <eliz@gnu.org>
5366
5367 * info/dir: Fix last change.
5368
5369 2006-01-28 Luc Teirlinck <teirllm@auburn.edu>
5370
5371 * Makefile.in (install-arch-indep, uninstall): Add rcirc.
5372
5373 2006-01-27 Eli Zaretskii <eliz@gnu.org>
5374
5375 * info/dir: Untabify the whole file.
5376 (Rcirc): New entry.
5377
5378 2006-01-12 Andreas Schwab <schwab@suse.de>
5379
5380 * configure.in: Move AC_AIX and AC_GNU_SOURCE before first compile
5381 check.
5382
5383 2006-01-02 Chong Yidong <cyd@stupidchicken.com>
5384
5385 * configure.in: Use -Wno-pointer-sign if available.
5386
5387 2005-12-29 Andreas Schwab <schwab@suse.de>
5388
5389 * config.guess, config.sub: Updated from master source.
5390
5391 2005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
5392
5393 * configure.in: Use amdx86-64 for freebsd on x86_64.
5394
5395 2005-11-22 Romain Francoise <romain@orebokech.com>
5396
5397 * make-dist: Add etc/images/icons.
5398
5399 2005-11-03 Andreas Schwab <schwab@suse.de>
5400
5401 * configure.in: Use GZIP_PROG instead of GZIP.
5402
5403 * Makefile.in (GZIP_PROG): Renamed from GZIP.
5404 (install-arch-indep): Adjust.
5405
5406 2005-11-01 Andreas Schwab <schwab@suse.de>
5407
5408 * Makefile.in (bootstrap): Fix dependencies for parallel build.
5409 (bootfast): Likewise.
5410
5411 2005-11-01 Romain Francoise <romain@orebokech.com>
5412
5413 * configure.in: Check for gzip.
5414
5415 * Makefile.in (install): Compress source files.
5416
5417 2005-10-24 Steven Tamm <steventamm@mac.com>
5418
5419 * configure.in: Fix darwin386 configuration issue.
5420
5421 2005-10-22 Eli Zaretskii <eliz@gnu.org>
5422
5423 * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure.
5424
5425 2005-10-17 Bill Wohler <wohler@newt.com>
5426
5427 * make-dist: Create and populate etc/images/low-color.
5428
5429 2005-10-15 Bill Wohler <wohler@newt.com>
5430
5431 * make-dist: Create and populate etc/images/gud.
5432
5433 2005-10-08 Richard M. Stallman <rms@gnu.org>
5434
5435 * make-dist (tempparent): Don't check for 14-char file name limit.
5436
5437 2005-10-07 Romain Francoise <romain@orebokech.com>
5438
5439 * make-dist: Add etc/images/ezimage and etc/images/mail
5440 directories. Install images in etc/images.
5441
5442 2005-10-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5443
5444 * configure.in: Prefer Carbon if --enable-carbon-app or
5445 --with-carbon is explicitly specified even when X11 is detected.
5446
5447 2005-09-15 Ulf Jasper <ulf.jasper@web.de>
5448
5449 * Makefile.in (install-arch-indep, uninstall):
5450 Handle newsticker manual.
5451 (info): Add - to commands.
5452
5453 2005-09-10 Giuseppe Scrivano <gscrivano@gmail.com>
5454
5455 Remove the MAXPATHLEN limitations:
5456
5457 * configure.in (AC_CHECK_FUNCS): Check for get_current_dir_name.
5458
5459 2005-09-09 Eli Zaretskii <eliz@gnu.org>
5460
5461 * configure.in <lynxsos*>: Support for LynxOS on PPC.
5462 * configure: Regenerate.
5463
5464 2005-09-05 Paul Eggert <eggert@cs.ucla.edu>
5465
5466 * config.guess, config.sub: Updated from master source.
5467
5468 2005-08-03 Juanma Barranquero <lekktu@gmail.com>
5469
5470 * .cvsignore: Add `lock'.
5471
5472 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
5473
5474 * .cvsignore: Add `data' and `site-lisp' (for in-place installs).
5475
5476 2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
5477
5478 Merge gnulib getopt implementation into Emacs.
5479
5480 * Makefile.in (AUTOCONF_INPUTS): New macro.
5481 ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
5482 so that these files also depend on m4/getopt.m4.
5483 * configure.in: Configure getopt by including m4/getopt.m4,
5484 and configuring a getopt replacement if necessary.
5485 * make-dist: Add m4 subdirectory. Unlink lib-src/getopt.h.
5486 * m4/getopt.m4: New file.
5487
5488 2005-07-06 Lute Kamstra <lute@gnu.org>
5489
5490 * configure.in: Fix capitalization.
5491
5492 2005-07-04 Lute Kamstra <lute@gnu.org>
5493
5494 Update FSF's address in GPL notices.
5495
5496 2005-06-19 Jérôme Marant <jerome@marant.org>
5497
5498 * Makefile.in (epaths-force): Protect both lisppath and
5499 buildlisppath from whitespace.
5500
5501 2005-06-08 Steven Tamm <steventamm@mac.com>
5502
5503 * configure.in: Support Darwin/MacOSX on Intel.
5504
5505 2005-06-06 Jan Djärv <jan.h.d@swipnet.se>
5506
5507 * configure.in (HAVE_CANCELMENUTRACKING): New test.
5508
5509 2005-05-19 Jérôme Marant <jmarant@marant.org>
5510
5511 * configure.in: Add --enable-locallisppath.
5512
5513 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5514
5515 * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
5516 Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS. Define
5517 USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
5518
5519 2005-05-07 Jérôme Marant <jerome@marant.org>
5520
5521 * make-dist: Remove references to makefile.nt and makefile.def.
5522 Include widgets and images subdirectories of etc. Do not exclude
5523 ldefs-boot.el.
5524
5525 2005-04-23 Andreas Schwab <schwab@suse.de>
5526
5527 * configure.in: Remove duplicate match for powerpc configuration.
5528
5529 2005-04-20 Thien-Thi Nguyen <ttn@gnu.org>
5530
5531 * configure.in: Check for <pwd.h>.
5532
5533 2005-04-14 Lute Kamstra <lute@gnu.org>
5534
5535 * make-dist: Distribute all ChangeLog files in lisp/.
5536 Don't distribute ldefs-boot.el.
5537 lisp/makefile.nt no longer exists.
5538
5539 2005-04-13 Lute Kamstra <lute@gnu.org>
5540
5541 * make-dist: Don't use DONTCOMPILE from lisp/Makefile.in; check
5542 for "no-byte-compile: t" in the file instead.
5543
5544 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
5545
5546 * configure.in <Motif>: Don't let a special LessTif/Motif1.2 install
5547 shadow the main Lesstif/Motif-2.1 libs and includes.
5548
5549 2005-03-10 Jan Djärv <jan.h.d@swipnet.se>
5550
5551 * configure.in: Only add XASSERTS to cppflags.
5552
5553 2005-03-04 Jan Djärv <jan.h.d@swipnet.se>
5554
5555 * configure.in: Added --enable-asserts.
5556
5557 2005-02-09 Kim F. Storm <storm@cua.dk>
5558
5559 Change release version from 21.4 to 22.1 throughout.
5560 Change development version from 21.3.50 to 22.0.50.
5561
5562 2005-01-19 Steven Tamm <steventamm@mac.com>
5563
5564 * configure.in: Check for <sys/utsname.h>.
5565
5566 2004-12-11 Kim F. Storm <storm@cua.dk>
5567
5568 * Makefile.in (info): Undo 2004-12-05 change.
5569
5570 2004-12-08 Luc Teirlinck <teirllm@auburn.edu>
5571
5572 * info/dir (File): Add URL and Org Mode manuals.
5573 * Makefile.in (install-arch-indep, uninstall): Add url and org
5574 manuals.
5575
5576 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
5577
5578 * configure.in (INLINE, RE_TRANSLATE_P): Move patches mistakenly
5579 committed to src/config.in.
5580
5581 2004-12-07 Jan Djärv <jan.h.d@swipnet.se>
5582
5583 * configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
5584 pthreads and define HAVE_GTK_AND_PTHREAD.
5585
5586 2004-12-05 Richard M. Stallman <rms@gnu.org>
5587
5588 * Makefile.in (info): Ignore errors building info files.
5589
5590 2004-11-27 Eli Zaretskii <eliz@gnu.org>
5591
5592 * config.bat: If 8-byte alignment is not supported, define
5593 NO_DECL_ALIGN in src/config.h, instead of trivially defining
5594 DECL_ALIGN. Protect & with "" because & is special for cmd.exe;
5595 filter through Sed to remove the quotes.
5596
5597 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
5598
5599 * info/.cvsignore: Ignore everything. It's OK since .cvsignore does
5600 not apply to files explicitly `cvs add'ed.
5601
5602 2004-11-12 Eli Zaretskii <eliz@gnu.org>
5603
5604 * config.bat: Don't require djecho.exe for the v1.x build.
5605 Add a test for DECL_ALIGN support, and add a trivial definition to
5606 src/config.h if 8-byte alignment is not supported.
5607
5608 2004-11-08 Kim F. Storm <storm@cua.dk>
5609
5610 * Makefile.in (bootstrap, bootstrap-clean-before): Remove .elc
5611 files before building.
5612 (bootfast, bootstrap-clean-before-fast): New targets, like
5613 bootstrap but don't remove .elc files.
5614
5615 2004-11-06 Lars Brinkhoff <lars@nocrew.org>
5616
5617 * configure.in: Add check for getrusage.
5618
5619 2004-11-02 Jan Djärv <jan.h.d@swipnet.se>
5620
5621 * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION):
5622 New tests for new and old GTK file dialogs.
5623 (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set
5624 to no.
5625
5626 2004-10-20 Jan Djärv <jan.h.d@swipnet.se>
5627
5628 * configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
5629 can be set. Remove SETARCH test.
5630
5631 2004-10-08 Steven Tamm <steventamm@mac.com>
5632
5633 * configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h.
5634
5635 2004-10-06 Jan Djärv <jan.h.d@swipnet.se>
5636
5637 * configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
5638 AC_MSG_WARN. Move output of warning message to end of configure run.
5639
5640 2004-10-05 Jan Djärv <jan.h.d@swipnet.se>
5641
5642 * configure.in (HAVE_RANDOM_HEAPSTART): Rename HAVE_EXECSHIELD.
5643 Run test to see if heap start address is random.
5644
5645 2004-09-29 Miles Bader <miles@gnu.org>
5646
5647 * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
5648 if setarch is present.
5649
5650 2004-09-25 Jan Djärv <jan.h.d@swipnet.se>
5651
5652 * configure.in (HAVE_EXECSHIELD): Only define on x86.
5653
5654 2004-09-24 Jan Djärv <jan.h.d@swipnet.se>
5655
5656 * configure.in: Check for exec-shield.
5657
5658 2004-09-04 Reiner Steib <Reiner.Steib@gmx.de>
5659
5660 * Makefile.in (install-arch-indep): Add pgg and sieve.
5661
5662 * info/.cvsignore: Added pgg and sieve.
5663
5664 2004-08-06 Andreas Schwab <schwab@suse.de>
5665
5666 * Makefile.in (install-arch-indep, uninstall): Add flymake.
5667
5668 2004-07-31 Eli Zaretskii <eliz@gnu.org>
5669
5670 * config.bat: Update URLs in the comments.
5671
5672 2004-07-05 Andreas Schwab <schwab@suse.de>
5673
5674 * Makefile.in (install-arch-indep): Remove .arch-inventory files.
5675
5676 2004-06-21 Kenichi Handa <handa@m17n.org>
5677
5678 * make-dist: Link leim-ext.el into tempdir.
5679
5680 2004-06-15 Luc Teirlinck <teirllm@auburn.edu>
5681
5682 * info/dir (File): Add emacs-xtra.
5683 * Makefile.in (install-arch-indep, uninstall): Add emacs-xtra.
5684
5685 2004-06-12 Juri Linkov <juri@jurta.org>
5686
5687 * info/dir: Move menu help lines from `* Menu:' to file header.
5688 Describe the purpose of a red *.
5689
5690 2004-05-04 Dave Love <fx@gnu.org>
5691
5692 * configure.in: Don't use `extrasub'.
5693
5694 2004-04-29 Dave Love <fx@gnu.org>
5695
5696 * configure.in: Don't forget to quote args to `test'.
5697
5698 2004-04-24 Thien-Thi Nguyen <ttn@gnu.org>
5699
5700 * autogen.sh: Update filename in "please read" message.
5701
5702 2004-04-17 Richard M. Stallman <rms@gnu.org>
5703
5704 * INSTALL: Move the info about site-lisp dirs,
5705 and say uninstalled Emacs looks there too.
5706
5707 2004-04-04 Eli Zaretskii <eliz@gnu.org>
5708
5709 * config.bat (lib-src): Recognize comment lines in Makefile.in
5710 that have a TAB after the #, to avoid errors in preprocessing with
5711 GCC 3.3.3.
5712
5713 2004-03-31 Luc Teirlinck <teirllm@auburn.edu>
5714
5715 * Makefile.in: Mention in comment that `make maintainer-clean'
5716 deletes .elc files.
5717
5718 2004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
5719
5720 * update-subdirs: Add local variables to prevent byte-compiling.
5721
5722 2004-03-21 Dave Love <fx@gnu.org>
5723
5724 * configure.in: Fix previous change.
5725
5726 2004-03-18 Dave Love <fx@gnu.org>
5727
5728 * configure.in: Add -znocombreloc to LDFLAGS if compiler supports it.
5729
5730 2004-03-15 Luc Teirlinck <teirllm@auburn.edu>
5731
5732 * info/dir (File): Add SMTP and SES.
5733
5734 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5735
5736 * Makefile.in (maintainer-clean): Clean in the lisp dir as well.
5737 (bootstrap): Use the new bootstrap-prepare target in lisp.
5738
5739 2004-02-18 Kim F. Storm <storm@cua.dk>
5740
5741 * INSTALL.CVS: Add info about ssh/cvs related problems and work-around.
5742
5743 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5744
5745 * make-dist: Don't link index.*perm and permute-index into tempdir.
5746
5747 2004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5748
5749 * AUTHORS (JonathanYavner): Rename testcover-*.el to tcover-*.el
5750 to match previous changes by Eli Zaretskii.
5751
5752 2004-02-09 Luc Teirlinck <teirllm@auburn.edu>
5753
5754 * Makefile.in: Set CDPATH to an empty string.
5755
5756 2004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
5757
5758 * configure.in <darwin>: Use fink packages if available.
5759
5760 2004-01-25 Jérôme Marant <jmarant@free.fr> (tiny change)
5761
5762 * make-dist (lispref): Do include lispref/index.texi.
5763
5764 2004-01-06 Eric Hanchrow <offby1@blarg.net>
5765
5766 * make-dist (tempdir): Include cursors in nt/icons.
5767
5768 2003-12-30 Eli Zaretskii <eliz@gnu.org>
5769
5770 * INSTALL.CVS: Renamed from INSTALL-CVS to avoid file-name
5771 clashes with install-sh on 8+3 filesystems.
5772
5773 2003-12-24 Miles Bader <miles@gnu.org>
5774
5775 * .cvsignore: Add .arch-inventory.
5776
5777 2003-12-24 Andreas Schwab <schwab@suse.de>
5778
5779 * configure.in: Check for <sys/socket.h>. Include it before
5780 including <net/if.h>. Move check for <net/if.h> before its use.
5781
5782 2003-12-24 Jan Djärv <jan.h.d@swipnet.se>
5783
5784 * Makefile.in (install-arch-dep): Don't let cd output go into
5785 pipe for carbon_appdir.
5786
5787 2003-12-24 Andreas Schwab <schwab@suse.de>
5788
5789 * configure.in (PKG_CHECK_MODULES): Fix quoting.
5790
5791 2003-12-01 Andreas Schwab <schwab@suse.de>
5792
5793 * configure.in (powerpc-apple-darwin*): Use ${CC-cc} instead of
5794 hardcoding gcc.
5795
5796 2003-11-16 Jan Djärv <jan.h.d@swipnet.se>
5797
5798 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
5799 multiple displays.
5800 Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
5801
5802 2003-09-23 Dave Love <fx@gnu.org>
5803
5804 * configure.in: Check members of struct ifreq.
5805
5806 2003-09-14 Kim F. Storm <storm@cua.dk>
5807
5808 * configure.in: Add checks for sys/ioctl.h and net/if.h.
5809
5810 2003-09-12 Luc Teirlinck <teirllm@mail.auburn.edu>
5811
5812 * Makefile.in (install-arch-indep, uninstall): Add SES manual.
5813
5814 2003-08-18 Lute Kamstra <lute@gnu.org>
5815
5816 * configure.in: Revert the change of 2003-07-29 as GTK+ 2.2 is not
5817 required anymore.
5818
5819 2003-08-07 Andrew Choi <akochoi@shaw.ca>
5820
5821 * configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
5822 option instead of -traditional-cpp for CPP.
5823
5824 2003-07-29 Richard M. Stallman <rms@gnu.org>
5825
5826 * configure.in (HAVE_XIM): Define if XIM is available.
5827
5828 2003-07-29 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
5829
5830 * configure.in: The function gtk_window_set_icon_from_file was
5831 introduced in GTK+ 2.2, so check for that release.
5832
5833 2003-07-23 Andreas Schwab <schwab@suse.de>
5834
5835 * configure.in: Add --enable-maintainer-mode, substitute MAINT.
5836
5837 * Makefile.in (YACC): Remove, not used.
5838 (MAINT): Don't set.
5839 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
5840 disable dependency on ${srcdir}/configure.in when maintainer mode
5841 is disabled.
5842
5843 2003-07-22 Dave Love <fx@gnu.org>
5844
5845 * configure.in: Make XRegisterIMInstantiateCallback test depend on
5846 HAVE_X11, not with_xim.
5847 (HAVE_CRTIN): Provide template.
5848 <with_png>: Test for png.h and libpng/png.h.
5849
5850 2003-07-15 Andreas Schwab <schwab@suse.de>
5851
5852 * configure.in: Temporarily leave quoting for AC_DEFINE.
5853
5854 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
5855
5856 * configure.in: Check for posix_memalign.
5857
5858 2003-07-12 Richard M. Stallman <rms@gnu.org>
5859
5860 * configure.in [netbsd systems]: Define HAVE_CRTIN properly.
5861
5862 2003-07-09 Kim F. Storm <storm@cua.dk>
5863
5864 * INSTALL (DETAILED BUILDING AND INSTALLATION): Describe new
5865 functionality of --without-xim.
5866
5867 2003-06-29 Dave Love <fx@gnu.org>
5868
5869 * configure.in: Fix XRegisterIMInstantiateCallback check for gcc.
5870
5871 2003-06-23 Dave Love <fx@gnu.org>
5872
5873 * configure.in: Check for sys/_mbstate_t.h.
5874 Test XRegisterIMInstantiateCallback prototype.
5875 (AH_BOTTOM): Define DO_BLOCK_INPUT, my_strftime.
5876
5877 2003-06-06 Dave Love <fx@gnu.org>
5878
5879 * configure.in: Check for locale.h.
5880
5881 2003-06-05 Dave Love <fx@gnu.org>
5882
5883 * configure.in: Check for memcpy, mempcpy, mblen, mbrlen.
5884 Use AC_FUNC_STRFTIME, AC_STRUCT_TIMEZONE, AC_TYPE_MBSTATE_T.
5885 (NLIST_STRUCT): Don't define.
5886 (AH_BOTTOM): Define my_strftime.
5887
5888 2003-06-02 Richard M. Stallman <rms@gnu.org>
5889
5890 * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
5891
5892 2003-05-24 Andreas Schwab <schwab@suse.de>
5893
5894 * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
5895 bzero, and bcmp.
5896
5897 2003-05-22 Dave Love <fx@gnu.org>
5898
5899 * configure.in: Remove redundant test for term.h. Test for difftime.
5900
5901 2003-05-20 Dave Love <fx@gnu.org>
5902
5903 * configure.in: Append * to s390-*-linux-gnu case.
5904 (LIBMAIL) <lockfile>: Don't define.
5905
5906 2003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
5907
5908 * INSTALL (* GNU/Linux development packages): Mention Debian and
5909 RedHat package names.
5910
5911 2003-04-30 Boyd Lynn Gerber <gerberb@zenez.com>
5912
5913 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5914
5915 2003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
5916
5917 * INSTALL (* GNU/Linux development packages): Tell people to
5918 install additional packages for compiling Emacs.
5919
5920 2003-04-30 Richard M. Stallman <rms@gnu.org>
5921
5922 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5923
5924 2003-04-28 Francesco Potortì <pot@gnu.org>
5925
5926 * configure.in: Undo last (RMS') change, as it is useless, per
5927 Dave Love.
5928
5929 2003-04-08 Richard M. Stallman <rms@gnu.org>
5930
5931 * configure.in: Put #include of jpeglib.h at start of line.
5932
5933 2003-04-06 Francesco Potortì <pot@gnu.org>
5934
5935 * configure.in: Use the same configuration for all aix5, not just
5936 aix5.1.
5937
5938 2003-03-16 Nelson H. F. Beebe <beebe@math.utah.edu> (tiny change)
5939
5940 * configure.in: Check for need for bigtoc support on IBM AIX for
5941 solving a linker table overflow problem.
5942
5943 2003-03-03 Rob Browning <rlb@defaultvalue.org>
5944
5945 * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
5946 (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
5947 over bzero, bcmp, and bcopy.
5948
5949 2003-02-23 Simon Josefsson <jas@extundo.com>
5950
5951 * Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
5952
5953 2003-02-21 Klaus Zeitler <kzeitler@lucent.com>
5954
5955 * configure.in: Set new hpux10-20.h as "major" include for 10.20.
5956
5957 2003-02-13 Robert J. Chassell <bob@rattlesnake.com> (tiny change)
5958
5959 * INSTALL (* Extra fonts): Say that Emacs doesn't include fonts.
5960
5961 2003-02-08 Andreas Schwab <schwab@suse.de>
5962
5963 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
5964 instead of the substitution.
5965
5966 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
5967
5968 * Makefile.in: Use @EXEEXT@ for Cygwin.
5969 Use USERNAME if LOGNAME is not set (for Cygwin).
5970
5971 * configure.in: Add opsys=cygwin.
5972
5973 2003-01-22 Andreas Schwab <schwab@suse.de>
5974
5975 * configure.in: Set HAVE_MENUS=yes when HAVE_CARBON=yes instead of
5976 redefining it explicitly in src/config.in.
5977
5978 2003-01-22 Markus Rost <rost@math.ohio-state.edu>
5979
5980 * Makefile.in (bootstrap): Make bootstrap-after.
5981
5982 2003-01-20 Jan Djärv <jan.h.d@swipnet.se>
5983
5984 * configure.in: Fix --with-gtk.
5985
5986 2003-01-19 Jan Djärv <jan.h.d@swipnet.se>
5987
5988 * configure.in: Add --with-gtk, --with-x-toolkit=gtk.
5989
5990 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add text about GTK.
5991
5992 2003-01-14 Francesco Potortì <pot@gnu.org>
5993
5994 * configure.in (m68k-motorola-sysv): Remove (obsolete).
5995
5996 2003-01-07 Steven Tamm <steventamm@mac.com>
5997
5998 * configure.in: New option, --enable-carbon-app, to specify
5999 that the application should be installed
6000 * Makefile.in (install-arch-dep): On Mac OS X, install the
6001 Emacs.app application if carbon-app is enabled.
6002
6003 2003-01-06 Dave Love <fx@gnu.org>
6004
6005 * configure.in: Check for nl_langinfo.
6006 [!HAVE_SIZE_T]: Fix typedef.
6007
6008 2003-01-06 David Kastrup <dak@gnu.org>
6009
6010 * Makefile.in (INSTALL_INFO): Get install-info command from configure.
6011
6012 * configure.in: Add tests for install-info.
6013
6014 2002-12-09 Markus Rost <rost@math.ohio-state.edu>
6015
6016 * configure.in (*-sunos5*, *-solaris*): Revert previous change -
6017 use again sol2-6 instead of sol2-8.
6018
6019 2002-12-09 Dave Love <fx@gnu.org>
6020
6021 * configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
6022
6023 2002-12-08 Andreas Schwab <schwab@suse.de>
6024
6025 * Makefile.in (install-arch-indep): Revert last change.
6026
6027 2002-11-27 Dave Love <fx@gnu.org>
6028
6029 * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST.
6030 Check for __sys_siglist too. Check for memset.
6031 Use AC_FUNC_GETPGRP. Add mipsel-*-linux-gnu* target.
6032
6033 2002-11-22 Juanma Barranquero <lektu@terra.es>
6034
6035 * config.guess, config.sub: Updated from master source.
6036
6037 2002-11-19 Karl Fogel <kfogel@red-bean.com>
6038
6039 * autogen.sh: New file.
6040
6041 2002-11-18 Dave Love <fx@gnu.org>
6042
6043 * configure.in: Tidy up various quoting issues throughout.
6044 Use AC_GNU_SOURCE.
6045 (AH_BOTTOM): Fix #endif protecting config.h. Maybe include
6046 alloca.h. Define GC_SETJMP_WORKS, GC_LISP_OBJECT_ALIGNMENT.
6047 Maybe define bcopy, bzero, bcmp.
6048 (powerpcle-*-solaris2.5*, powerpcle-*-solaris2*): Remove (use
6049 non-existent machine file).
6050 (sys/vlimit.h, sys/resource.h, fsync, __restrict): Test for.
6051 (term.h, X11/Xaw3d/Scrollbar.h): Avoid warning from test.
6052 (nlist.h): Move test up.
6053
6054 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
6055
6056 * configure.in (*-sunos5*, *-solaris*): Use sol2-8.
6057
6058 2002-11-14 Francesco Potortì <pot@gnu.org>
6059
6060 * configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
6061
6062 2002-11-11 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
6063
6064 * Makefile.in (install-arch-indep): Prepend $(srcdir)/ to lisp.
6065
6066 2002-11-08 Dave Love <fx@gnu.org>
6067
6068 * configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf 2.54.
6069 (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
6070
6071 2002-11-07 Miles Bader <miles@gnu.org>
6072
6073 * Makefile.in (maybe_bootstrap): Fix shell variable usage.
6074 Handle separate-build-dir case.
6075
6076 2002-11-06 Richard M. Stallman <rms@gnu.org>
6077
6078 * Makefile.in (maybe_bootstrap): Add doublequotes to make it
6079 bulletproof. $bar may be empty when there are no .elc files.
6080
6081 2002-10-30 Dave Love <fx@gnu.org>
6082
6083 * configure.in: Require autoconf 2.53. Test for pty.h,
6084 sys/mman.h, sys/param.h, mremap, memmove.
6085 (AH_BOTTOM): Maybe include strings.h. Add local variables for mode.
6086 (AC_PROG_YACC): Delete.
6087 (size_t): Use AC_CHECK_TYPES.
6088 (AH_TOP): Up-date copyright.
6089
6090 2002-10-01 Juanma Barranquero <lektu@terra.es>
6091
6092 * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
6093
6094 2002-09-19 Richard M. Stallman <rms@gnu.org>
6095
6096 * configure.in: Fix the LessTif-directory-finder for real.
6097
6098 2002-09-14 Richard M. Stallman <rms@gnu.org>
6099
6100 * Makefile.in (maybe_bootstrap): Test for complete absence
6101 of compiled Lisp files.
6102
6103 2002-09-11 Stefan Monnier <monnier@cs.yale.edu>
6104
6105 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
6106 (bootstrap-clean-after): Delete.
6107 (bootstrap): Make the sequencing explicit.
6108
6109 2002-09-10 Richard M. Stallman <rms@gnu.org>
6110
6111 * configure.in: Fix previous LessTif change.
6112
6113 2002-09-09 Richard M. Stallman <rms@gnu.org>
6114
6115 * configure.in (powerpcle-*-solaris2.5*): New configuration.
6116 (powerpcle-*-solaris*): Use version 2.6 as default.
6117 (*-sunos5.6*, *-solaris2.6*): New alternative.
6118 (*-sunos5*): Use version 2.6 as default.
6119
6120 2002-09-06 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6121
6122 * configure.in: Fix typo.
6123
6124 2002-09-05 Richard M. Stallman <rms@gnu.org>
6125
6126 * configure.in: Look for LessTif in /usr/X11R6/LessTif/ before Motif.
6127
6128 * configure.in: Handle $GCC_LINK_TEST_OPTIONS and
6129 $NON_GCC_LINK_TEST_OPTIONS after the AC_PROG_... macros.
6130
6131 2002-08-26 Kim F. Storm <storm@cua.dk>
6132
6133 * Makefile.in (install-arch-indep): Do not remove DOC file
6134 when it is the only DOC file installed; this is the case when
6135 CANNOT_DUMP is defined. From Joe Buehler (tiny change).
6136
6137 2002-07-24 Markus Rost <rost@math.ohio-state.edu>
6138
6139 * configure.in: Fix typo.
6140
6141 2002-07-24 Richard M. Stallman <rms@gnu.org>
6142
6143 * configure.in: Don't print anything special about gamedir.
6144
6145 * configure.in: Delete nonstandard --with-game-user option.
6146
6147 2002-07-21 Richard M. Stallman <rms@gnu.org>
6148
6149 * Makefile.in (gamedir, localstatedir): New variables.
6150 (epaths-force): Insert value of gamedir into PATH_GAME.
6151
6152 * configure.in (gamedir): Handle it like lispdir.
6153 (--with-game-dir option): Delete.
6154
6155 2002-06-21 Pavel Janík <Pavel@Janik.cz>
6156
6157 * configure.in: Add support for mipseb-*-netbsd* machines.
6158
6159 2002-06-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6160
6161 * Makefile.in (install-arch-indep, uninstall): Add Tramp.
6162
6163 2002-06-17 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6164
6165 * info/dir (File): Add an entry for Tramp.
6166
6167 2002-06-17 Eli Zaretskii <eliz@is.elta.co.il>
6168
6169 * INSTALL-CVS: New file.
6170
6171 2002-06-07 Andreas Schwab <schwab@suse.de>
6172
6173 * configure.in (x86_64-*-linux-gnu*): New system.
6174
6175 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
6176
6177 * config.bat: Handle the case when lispintro is truncated to lispintr.
6178
6179 2002-05-26 Paul Eggert <eggert@twinsun.com>
6180
6181 * config.guess, config.sub: Updated from master source.
6182
6183 2002-05-09 Richard M. Stallman <rms@gnu.org>
6184
6185 * configure.in (emacs_cv_speed_t): Add square brackets for clarity.
6186
6187 2002-05-04 Pavel Janík <Pavel@Janik.cz>
6188
6189 * make-dist: Do not distribute lock/ directory.
6190
6191 2002-04-30 Andrew Choi <akochoi@shaw.ca>
6192
6193 * configure.in: Provide documentation string when defining
6194 variable HAVE_CARBON. Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
6195 and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
6196
6197 2002-04-29 Colin Walters <walters@verbum.org>
6198
6199 * configure.in: Delete configure check for access to the game user.
6200
6201 2002-04-29 Pavel Janík <Pavel@Janik.cz>
6202
6203 * make-dist: lwlib/Imakefile is removed.
6204
6205 2002-04-26 Andrew Choi <akochoi@shaw.ca>
6206
6207 * configure.in: Add support for powerpc-apple-darwin*.
6208 (HAVE_CARBON): Add.
6209
6210 * make-dist: Create directories in mac/Emacs.app.
6211
6212 2002-04-25 Pavel Janík <Pavel@Janik.cz>
6213
6214 * make-dist: lwlib-Xol* are removed.
6215
6216 2002-04-23 Andreas Schwab <schwab@suse.de>
6217
6218 * Makefile.in (MAINT): New variable.
6219 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
6220 instead of configure.in, to avoid running autoconf and autoheader
6221 unless explicitly requested.
6222
6223 2002-04-16 Eli Zaretskii <eliz@gnu.org>
6224
6225 * config.bat: Update for msdos/sed2v2.inp.
6226
6227 2002-04-15 Andreas Schwab <schwab@suse.de>
6228
6229 * Makefile.in ($(srcdir)/src/config.in): Generate using autoheader.
6230 * configure.in: Add config header templates to all AC_DEFINE and
6231 AC_DEFINE_UNQUOTED symbols.
6232 * make-dist: Run autoheader if necessary.
6233
6234 2002-04-10 Colin Walters <walters@verbum.org>
6235
6236 * configure.in: Add --game-dir, --game-user. Test to see if we
6237 can use them.
6238
6239 2002-04-08 Pavel Janík <Pavel@Janik.cz>
6240
6241 * configure.in: Add --with-sound.
6242
6243 2002-03-18 Kim F. Storm <storm@cua.dk>
6244
6245 * configure.in: Test for sendto, recvfrom, getsockopt, setsockopt,
6246 and getsockname functions. Test for sys/un.h include file.
6247
6248 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
6249
6250 * configure.in: Support AIX 5.1.
6251
6252 2002-03-10 Jan Djärv <jan.h.d@swipnet.se>
6253
6254 * configure.in: Added test for X Session Management (HAVE_X_SM).
6255
6256 2002-03-03 Richard M. Stallman <rms@gnu.org>
6257
6258 * Makefile.in (install-arch-indep): Use umask 022 for DOC* and lisp/.
6259 Run chown $${LOGNAME} on files installed by tar xvf.
6260
6261 2002-03-03 Kim F. Storm <storm@cua.dk>
6262
6263 * configure.in: Test for getpeername.
6264
6265 2002-03-01 Richard M. Stallman <rms@gnu.org>
6266
6267 * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b.
6268 (HAVE_GIF): Don't use old libungif versions that crash.
6269
6270 2002-02-26 Richard M. Stallman <rms@gnu.org>
6271
6272 * configure.in <making srcdir absolute>: Verify that PWD is correct,
6273 not just well-formed and valid.
6274 (mips-compaq-nonstopux*): New configuration.
6275
6276 2002-02-18 Paul Eggert <eggert@twinsun.com>
6277
6278 * make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
6279 "sed q" is a portable equivalent to plain "head -1".
6280
6281 2002-02-13 Richard M. Stallman <rms@gnu.org>
6282
6283 * Makefile.in (maybe_bootstrap): Do `exit 1'.
6284 (all): Don't depend on maybe_bootstrap here.
6285 (${SUBDIR}): Depend on it here instead.
6286
6287 2002-02-08 Richard M. Stallman <rms@gnu.org>
6288
6289 * Makefile.in (maybe_bootstrap): Add an infinite sleep-loop.
6290
6291 2002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
6292
6293 * configure.in: Recognize BSD/OS 5.0.
6294
6295 2002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
6296
6297 * make-dist: Make version checking in emacs.texi consistent with
6298 how we set it there.
6299
6300 2001-12-29 Kim F. Storm <storm@cua.dk>
6301
6302 * INSTALL: <CONFIGURATION BY HAND> Now requires autoconf 2.51.
6303
6304 2001-12-28 Richard M. Stallman <rms@gnu.org>
6305
6306 * configure.in: Test for mbsinit.
6307
6308 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
6309
6310 These changes make Leim part of the standard distribution:
6311
6312 * README: Add info about the `leim' directory.
6313
6314 * INSTALL: Remove text that describes Leim as a separate package.
6315
6316 * noleim-Makefile.in: File removed.
6317
6318 * make-dist: Don't copy noleim-Makefile.in to the leim subdirectory.
6319 Link Leim files to ${tempdir}/leim, not to real-leim. Don't move
6320 Leim files out of the Emacs tree. Don't prepare a separate tarball
6321 for Leim.
6322
6323 2001-12-11 Richard M. Stallman <rms@gnu.org>
6324
6325 * configure.in (hppa*-*-linux-gnu*): New alternative.
6326
6327 2001-12-08 Pavel Janík <Pavel@Janik.cz>
6328
6329 * make-dist: Copy COPYING to leim/, lwlib/, mac/ and nt/ when
6330 creating distribution.
6331
6332 2001-12-06 Paul Eggert <eggert@twinsun.com>
6333
6334 * configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
6335 (AC_FUNC_VFORK): Remove.
6336 (AC_FUNC_FORK): Add.
6337 (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
6338 this is required by recent Autoconf versions.
6339
6340 2001-12-02 Pavel Janík <Pavel@Janik.cz>
6341
6342 * make-dist: Do not try to link removed files (aclocal.m4, _emacs,
6343 TODO, vms-pp.trans and others).
6344
6345 2001-11-29 Pavel Janík <Pavel@Janik.cz>
6346
6347 * make-dist: Use COPYING from the top-level directory.
6348
6349 2001-11-29 Gerd Moellmann <gerd@gnu.org>
6350
6351 * configure.in: Add support for FreeBSD/Alpha.
6352
6353 2001-11-29 Pavel Janík <Pavel@Janik.cz>
6354
6355 * make-dist: Add COPYING to the top-level directory of the
6356 distribution. Simplify the logic behind copying.
6357
6358 * Makefile.in (maybe_bootstrap): Fix previous change.
6359
6360 2001-11-28 Richard M. Stallman <rms@gnu.org>
6361
6362 * Makefile.in (maybe_bootstrap): Don't bootstrap, just suggest it.
6363
6364 2001-11-26 Richard M. Stallman <rms@gnu.org>
6365
6366 * Makefile.in: bootstrap should not delete dumped executables.
6367 (bootstrap-clean-before): New target.
6368 (bootstrap): Use bootstrap-clean-before instead of clean.
6369 (bootstrap-clean-after): Rename from bootstrap-clean. Calls changed.
6370
6371 2001-11-24 Eli Zaretskii <eliz@is.elta.co.il>
6372
6373 These changes add the Emacs Lisp Introduction manual to the
6374 distribution:
6375
6376 * Makefile.in (install-arch-indep, uninstall): Add ELisp Intro files.
6377
6378 * make-dist: Copy the files in lispintro directory.
6379
6380 * config.bat: Configure in the lispintro directory.
6381
6382 * configure.in (AC_OUTPUT): Add lispintro/Makefile.
6383
6384 * Makefile.in (SUBDIR_MAKEFILES): Add lispintro.
6385 (lispintro/Makefile): New target.
6386 (mostlyclean, clean, distclean, maintainer-clean): Add lispintro.
6387 (unlock, relock, info, dvi): Ditto.
6388
6389 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
6390
6391 * Makefile.in (uninstall, install-arch-indep): Don't install gfdl.1.
6392
6393 * make-dist (etc): Don't distribute gfdl.1.
6394
6395 2001-11-22 Colin Walters <walters@debian.org>
6396
6397 * Makefile.in (install-arch-indep): Install the calc .info files.
6398 (uninstall): Handle deletion of calc .info files (thanks Pavel Janík).
6399
6400 2001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
6401
6402 * make-dist (lispref): Add *.txt, *.el, permute-index, and
6403 tindex.pl to the list of those being put into the distribution.
6404
6405 2001-11-16 Eli Zaretskii <eliz@gnu.org>
6406
6407 * configure.in: Add coff.h to the list in AC_CHECK_HEADERS.
6408
6409 2001-11-15 Pavel Janík <Pavel@Janik.cz>
6410
6411 * Makefile.in (uninstall): Fix previous change.
6412
6413 * configure.in, Makefile.in: Add support for --program-prefix,
6414 --program-suffix and --program-transform-name options.
6415
6416 2001-11-13 Pavel Janík <Pavel@Janik.cz>
6417
6418 * Makefile.in (install-arch-indep): Use `${manext}' instead of `.1'.
6419 (install-arch-indep): Install emacsclient manual page.
6420 (uninstall): Uninstall emacsclient manual page.
6421
6422 2001-11-12 Eli Zaretskii <eliz@is.elta.co.il>
6423
6424 * make-dist: Add lispref/index.*perm files to the distribution.
6425 From Pavel Janík <Pavel@Janik.cz>.
6426
6427 2001-11-12 Pavel Janík <Pavel@Janik.cz>
6428
6429 * Makefile.in (uninstall): Remove gfdl.1 when uninstalling.
6430
6431 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
6432
6433 * configure.in: AC_OUTPUT lispref/Makefile.
6434
6435 2001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
6436
6437 The following changes add the ELisp reference manual to the
6438 distribution.
6439
6440 * make-dist: Add the lispref directory to the distribution.
6441
6442 * Makefile.in (install-arch-indep): Add elisp* to the list of
6443 installed Info files.
6444 (SUBDIR_MAKEFILES): Add lispref/Makefile.
6445 (lispref/Makefile): New target.
6446 (mostlyclean, clean, distclean, maintainer-clean, unlock, relock):
6447 Add commands for the lispref directory.
6448 (info, dvi): Ditto.
6449
6450 * config.bat: Configure in `lispref'.
6451
6452 2001-11-09 Richard M. Stallman <rms@gnu.org>
6453
6454 * Makefile.in (bootstrap-lisp): Don't suppress error messages.
6455
6456 2001-11-07 Eli Zaretskii <eliz@is.elta.co.il>
6457
6458 * make-dist (tempdir): Copy AUTHORS as well.
6459
6460 2001-11-06 Sam Steingold <sds@gnu.org>
6461
6462 * configure.in: Added a check for <nlist.h>.
6463
6464 2001-11-01 Pavel Janík <Pavel@Janik.cz>
6465
6466 * configure.in: Reindent --help output.
6467 From Per Starbäck (starback@ling.uu.se).
6468
6469 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
6470
6471 * configure.in: New entry for HP/UX-11.
6472
6473 * Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
6474 From Eric S. Raymond <esr@golux.thyrsus.com>.
6475
6476 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
6477
6478 * configure.in (s390-*-linux-gnu): New system. From Adam Thornton
6479 <athornton@sinenomine.net>.
6480
6481 2001-10-25 Gerd Moellmann <gerd@gnu.org>
6482
6483 * Makefile.in (maybe_bootstrap): New target.
6484 (all): Add to prerequisites to bootstrap if abbrev.elc doesn't exist.
6485
6486 2001-10-24 Ken Raeburn <raeburn@gnu.org>
6487
6488 * configure.in: If --with-hesiod is given, look for
6489 hes_getmailhost and res_send or __res_send; check hesiod and
6490 resolv libraries respectively if system libraries don't supply them.
6491
6492 2001-10-24 Gerd Moellmann <gerd@gnu.org>
6493
6494 * configure.in: Use $MAKE for `make' if set.
6495
6496 2001-10-22 Gerd Moellmann <gerd@gnu.org>
6497
6498 * Makefile.in (install-arch-indep): Add -h (follow symlinks)
6499 to tar options.
6500
6501 2001-10-20 Gerd Moellmann <gerd@gnu.org>
6502
6503 * (Version 21.1 released).
6504
6505 2001-10-20 Miles Bader <miles@gnu.org>
6506
6507 * configure.in (configuration): Set from `host' if `host_alias'
6508 isn't defined.
6509
6510 2001-10-19 Andreas Schwab <schwab@suse.de>
6511
6512 * configure.in: Make ready for autoconf 2.5x.
6513 (AC_PREREQ): Require autoconf 2.50.
6514 * aclocal.m4: Removed.
6515 * Makefile.in (${srcdir}/configure): Don't depend on aclocal.m4.
6516
6517 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
6518
6519 * README: Bump Emacs version to 21.1.50.
6520
6521 2001-10-05 Gerd Moellmann <gerd@gnu.org>
6522
6523 * Branch for 21.1.
6524
6525 2001-09-05 Gerd Moellmann <gerd@gnu.org>
6526
6527 * configure.in: Avoid `$@' which is handled specially in
6528 Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
6529
6530 2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
6531
6532 * make-dist (nt): Add subdirs.el to the list of distributed files.
6533
6534 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
6535
6536 * configure.in (machine): Add an entry for
6537 hppa1.1-hitachi-hiuxwe2*.
6538
6539 2001-05-28 Gerd Moellmann <gerd@gnu.org>
6540
6541 * make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
6542 LC_MESSAGES and LANG. From Karl Eichwalder <keichwa@gmx.net>.
6543
6544 2001-05-14 Gerd Moellmann <gerd@gnu.org>
6545
6546 * make-dist: Copy texinfo.tex unconditionally.
6547
6548 2001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
6549
6550 * Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
6551 that are installed.
6552
6553 2001-04-06 Gerd Moellmann <gerd@gnu.org>
6554
6555 * make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
6556 Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
6557
6558 * make-dist: Handle leim/MISC-DIC. Only include
6559 `[a-zA-Z]*.{el,elc}' from leim/quail.
6560
6561 2001-04-05 Gerd Moellmann <gerd@gnu.org>
6562
6563 * Makefile.in (install-arch-indep): Remove .cvsignore files.
6564
6565 2001-03-30 Gerd Moellmann <gerd@gnu.org>
6566
6567 * Makefile.in (.PHONY): Add for bootstrap targets.
6568 (bootstrap-clean): New target.
6569 (bootstrap): Use it instead of `clean'.
6570
6571 2001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
6572
6573 * Makefile.in (SUBDIR): Remove leim.
6574 (all, .RECURSIVE, extraclean): Add leim explicitly.
6575 (leim): Provide separate rule which exports PARALLEL=0 into the
6576 environment.
6577
6578 2001-03-20 Gerd Moellmann <gerd@gnu.org>
6579
6580 * configure.in (HAVE_XPM): Don't print the result of the check for
6581 XpmReturnAllocPixels if we don't have an xpm.h.
6582
6583 2001-03-05 Gerd Moellmann <gerd@gnu.org>
6584
6585 * COPYING: New file.
6586
6587 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
6588
6589 * config.bat: Update the copyright.
6590
6591 2001-02-23 Kenichi Handa <handa@etl.go.jp>
6592
6593 * configure.in: Use AC_EGREP_CPP to check if the C preprocessor
6594 converts `..' to `. .'. If it converts, set CPP_NEED_TRADITIONAL
6595 to `yes'. Later in AC_OUTPUT, check this variable.
6596
6597 2001-02-09 Dave Love <fx@gnu.org>
6598
6599 * AUTHORS: Updated.
6600
6601 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
6602
6603 * info/dir (Ebrowse): Fix the entry (was missing a dot).
6604
6605 2001-02-02 Gerd Moellmann <gerd@gnu.org>
6606
6607 * mkinstalldirs (errstatus): Chmod a+rx directories we create.
6608
6609 * Makefile.in (uninstall): Ignore exit code of `rm'.
6610
6611 * Makefile.in (uninstall): Remove more info files. Remove
6612 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
6613
6614 2001-01-31 Gerd Moellmann <gerd@gnu.org>
6615
6616 * noleim-Makefile.in (extraclean): Add.
6617
6618 2001-01-28 Gerd Moellmann <gerd@gnu.org>
6619
6620 * Makefile.in (extraclean): Added -f to -rm config-tmp-* to keep
6621 it quiet.
6622
6623 2001-01-24 Colin Walters <walters@cis.ohio-state.edu>
6624
6625 * Makefile.in (tags): Fix typo.
6626
6627 2001-01-13 Kenichi Handa <handa@etl.go.jp>
6628
6629 * configure.in: Fix typo in the code setting x_search_path.
6630
6631 2001-01-10 Dave Love <fx@gnu.org>
6632
6633 * configure.in: Don't reset LIBS at end of -lXmu test. Test for
6634 -lXext.
6635 (HAVE_XKBGETKEYBOARD): Fix reporting of result.
6636 (HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
6637 (HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
6638 Don't frob CFLAGS. Remove extra X libs from AC_CHECK_LIB
6639 (now in $LIBS).
6640
6641 2001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
6642
6643 * config.bat: Run the preprocessor with -traditional.
6644
6645 2001-01-01 Eli Zaretskii <eliz@is.elta.co.il>
6646
6647 * INSTALL: Move copying conditions to end of file.
6648
6649 2000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
6650
6651 * INSTALL: Add basic installation procedure which assumes
6652 `configure' does its job. Elaborate on image support libraries.
6653 Add a pointer to Xaw3d library. Add advice about solving
6654 configure-time problems by looking in config.log and setting
6655 variables in the environment.
6656
6657 2000-12-27 Gerd Moellmann <gerd@gnu.org>
6658
6659 * Makefile.in (install-arch-indep): If tar fails, exit with
6660 exit code 1.
6661
6662 2000-12-19 Gerd Moellmann <gerd@gnu.org>
6663
6664 * configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
6665 source file includes XKBlib.h. On some broken Solaris systems,
6666 there is an XKBlib.h, reportedly, but header files included by
6667 XKBlib.h are missing.
6668
6669 2000-12-14 Gerd Moellmann <gerd@gnu.org>
6670
6671 * configure.in: AC_CHECK_FUNC XkbGetKeyboard.
6672
6673 2000-12-11 Dave Love <fx@gnu.org>
6674
6675 * configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
6676
6677 2000-12-11 Paul Eggert <eggert@twinsun.com>
6678
6679 * aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
6680 Merge fixes from latest GNU tar version. These macros no longer
6681 futz with _XOPEN_SOURCE, as that was not portable in practice.
6682 (AC_FUNC_FSEEKO): New macro.
6683
6684 * configure.in: Use it instead of invoking AC_CHECK_FUNCS on
6685 ftello.
6686
6687 2000-12-05 Dave Love <fx@gnu.org>
6688
6689 * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
6690
6691 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
6692
6693 * info/dir: Change the category to "Emacs".
6694
6695 2000-12-01 Gerd Moellmann <gerd@gnu.org>
6696
6697 * make-dist (tempdir): Remove epaths.h from the distribution
6698 instead of paths.h.
6699
6700 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
6701
6702 * config.bat: Check for existence of djecho.exe, and print an
6703 error message if it is not available.
6704
6705 * INSTALL: Describe possible problem with djecho.exe in old
6706 versions of DJGPP v2.x.
6707
6708 2000-11-23 Gerd Moellmann <gerd@gnu.org>
6709
6710 * configure.in: Initialize HAVE_LIBXP to no.
6711
6712 2000-11-22 Gerd Moellmann <gerd@gnu.org>
6713
6714 * configure.in: Use m/macppc.h instead of the non-existent
6715 m/powerpc.h.
6716
6717 2000-11-21 Gerd Moellmann <gerd@gnu.org>
6718
6719 * Makefile.in (install-arch-indep): Also install info/eshell*
6720 and info/speedbar*.
6721
6722 * configure.in (HAVE_PNG): Check for the presence of
6723 png_get_channels to rule out older PNG libs.
6724
6725 * configure.in (AC_OUTPUT): Arrange to emit definitions of
6726 GCC and NON_GNU_CPP into config.status.
6727
6728 2000-11-20 Dave Love <fx@gnu.org>
6729
6730 * configure.in: Fix last change.
6731
6732 * GETTING.GNU.SOFTWARE: Deleted.
6733 * FTP: New file to replace it.
6734 * make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
6735
6736 2000-11-20 Gerd Moellmann <gerd@gnu.org>
6737
6738 * configure.in: Use -traditional with GNU cpp.
6739
6740 2000-11-17 Gerd Moellmann <gerd@gnu.org>
6741
6742 * make-dist: Handle the Mac port. Distribute all makefile.w32-in.
6743 Distribute more files from the nt/ subdir. Distribute PBM
6744 image files from subdirs of lisp/. Distribute old change logs
6745 from subdirs of lisp/. Distribute play/5x5.el.
6746
6747 2000-11-11 Dave Love <fx@gnu.org>
6748
6749 * config.sub, config.guess: Updated from master source.
6750
6751 2000-11-07 Dave Love <fx@gnu.org>
6752
6753 * configure.in: Test for mkstemp.
6754
6755 2000-11-01 Eli Zaretskii <eliz@is.elta.co.il>
6756
6757 * info/dir (Top): Rearrange menu items more logically, and put
6758 them into a single category. Add menu items for RefTeX and
6759 Widget.
6760
6761 2000-10-29 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6762
6763 * Makefile.in (install-arch-indep): Use --info-dir instead of
6764 --dir-file, and a simple argument instead of --info-file, so that
6765 the Debian version of install-info also works.
6766
6767 2000-10-19 Eric M. Ludlam <zappo@ultranet.com>
6768
6769 * info/dir (Speedbar): Add entry.
6770
6771 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
6772
6773 * INSTALL: Describe the new image-support options to the configure
6774 script. List URLs where image support libraries can be found.
6775
6776 2000-10-14 Eli Zaretskii <eliz@is.elta.co.il>
6777
6778 * info/dir (Top): Add an entry for Eshell.
6779
6780 2000-10-02 Dave Love <fx@gnu.org>
6781
6782 * configure.in: Check for gai_strerror.
6783
6784 2000-10-01 Andreas Schwab <schwab@suse.de>
6785
6786 * Makefile.in (install-arch-indep): Update list of installed info files.
6787
6788 2000-09-30 Gerd Moellmann <gerd@gnu.org>
6789
6790 * configure.in: Support `sparc*-*-netbsd*'.
6791
6792 2000-09-29 Eli Zaretskii <eliz@is.elta.co.il>
6793
6794 * info/dir (MIME): Add entry for emacs-mime.
6795
6796 2000-09-29 Dave Love <fx@gnu.org>
6797
6798 * configure.in: Fix alpha*-dec-osf4 using the osf5 config.
6799
6800 2000-09-26 Gerd Moellmann <gerd@gnu.org>
6801
6802 * make-dist: Adapt to the change of leim/Makefile which was
6803 necessary to ensure a reasonably working `make dist'.
6804
6805 * leim-Makefile.in: Moved to leim/Makefile.in..
6806
6807 * noleim-Makefile.in: New file, formerly leim/Makefile.in.
6808
6809 2000-09-21 Kenichi Handa <handa@etl.go.jp>
6810
6811 * leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
6812 (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
6813 (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
6814 files to .elc.
6815 (${TIT}): Adjusted for the above change.
6816 (clean mostlyclean): Likewise.
6817 (.el.elc): New target.
6818
6819 2000-09-19 Gerd Moellmann <gerd@gnu.org>
6820
6821 * make-dist: Include XPM and XBM files in lisp/ and subdirs
6822 in the distribution.
6823
6824 2000-09-18 Gerd Moellmann <gerd@gnu.org>
6825
6826 * make-dist (skk): Rename to `ja-dic' because the leim directory
6827 was renamed.
6828
6829 2000-09-14 Dave Love <fx@gnu.org>
6830
6831 * configure.in: Fix spurion in last change.
6832
6833 2000-09-14 Gerd Moellmann <gerd@gnu.org>
6834
6835 * configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
6836 configuration files instead of REL_ALLOC_MMAP. Set REL_ALLOC
6837 to `no' if defined. Change result report.
6838
6839 2000-09-08 Dave Love <fx@gnu.org>
6840
6841 * configure.in: Remove spurious `@'s.
6842
6843 * aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
6844 autoconf.
6845
6846 2000-09-06 Gerd Moellmann <gerd@gnu.org>
6847
6848 * configure.in (REL_ALLOC_MMAP): Recognize in system configuration
6849 file and print informational message.
6850
6851 * configure.in (AC_FUNC_MMAP): Add.
6852
6853 2000-09-01 Gerd Moellmann <gerd@gnu.org>
6854
6855 * configure.in: Add ``checking'' messages for
6856 XpmReturnAllocPixels.
6857
6858 2000-08-28 Gerd Moellmann <gerd@gnu.org>
6859
6860 * configure.in: Check <strings.h>; check `index' and `rindex'
6861 functions.
6862
6863 2000-08-26 Kenichi Handa <handa@etl.go.jp>
6864
6865 * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
6866 "case "${canonical}" in".
6867
6868 2000-08-25 Dave Love <fx@gnu.org>
6869
6870 * configure.in <osf>: Use NON_GNU_CPP='cpp' always.
6871
6872 2000-08-25 Kenichi Handa <handa@etl.go.jp>
6873
6874 * leim-Makefile.in: Rename skk to ja-dic throughout the file.
6875
6876 2000-08-24 Gerd Moellmann <gerd@gnu.org>
6877
6878 * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
6879 contains a relative path. Protect against unusable values of $PWD.
6880
6881 2000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
6882
6883 * info/dir (WoMan): Add entry.
6884
6885 * config.bat (maindir): Update src/_gdbinit even if it does
6886 already exist.
6887
6888 2000-08-07 Gerd Moellmann <gerd@gnu.org>
6889
6890 * Makefile.in (config.status): Prepend `$(srcdir)/' to `configure'.
6891
6892 2000-08-03 Gerd Moellmann <gerd@gnu.org>
6893
6894 * configure.in: Add support for ia64*-*-linux*.
6895
6896 2000-07-27 Gerd Moellmann <gerd@gnu.org>
6897
6898 * make-dist (aclocal.m4): Include in distribution.
6899
6900 2000-07-26 Dave Love <fx@gnu.org>
6901
6902 * configure.in (AC_SYS_LARGEFILE): Moved earlier.
6903
6904 2000-07-24 Dave Love <fx@gnu.org>
6905
6906 * configure.in: Add AC_SIZE_T.
6907
6908 2000-07-18 Dave Love <fx@gnu.org>
6909
6910 * configure.in: Reorder so that most tests are done after CPPFLAGS
6911 is set from the C_SWITCH_... definitions.
6912
6913 2000-07-10 Gerd Moellmann <gerd@gnu.org>
6914
6915 * configure.in (HAVE_XPM): Undo previous change. Check for
6916 preprocessor define XpmReturnAllocPixels.
6917
6918 2000-07-06 Gerd Moellmann <gerd@gnu.org>
6919
6920 * configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
6921 instead of XpmReadFileToPixmap.
6922
6923 2000-07-05 Ken Raeburn <raeburn@gnu.org>
6924
6925 * configure.in: Check for <soundcard.h>. Look for ossaudio
6926 library, and set LIBSOUND accordingly.
6927
6928 2000-07-05 Dave Love <fx@gnu.org>
6929
6930 * configure.in: Use AC_HEADER_SYS_WAIT.
6931
6932 2000-07-05 Gerd Moellmann <gerd@gnu.org>
6933
6934 * make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
6935 lisp/Makefile. Distribute lisp/Makefile.in instead of
6936 lisp/Makefile.
6937
6938 2000-06-30 Ken Raeburn <raeburn@gnu.org>
6939
6940 * configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
6941 while searching for image-handling libraries.
6942
6943 2000-06-26 Gerd Moellmann <gerd@gnu.org>
6944
6945 * configure.in (--with-xim): New option.
6946
6947 2000-06-23 Dave Love <fx@gnu.org>
6948
6949 * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
6950 for struct timezone and test how we can call gettimeofday.
6951 Check for OSF 5+. Check for term.h.
6952
6953 * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
6954 version.
6955
6956 2000-06-23 Gerd Moellmann <gerd@gnu.org>
6957
6958 * configure.in (HAVE_LIBXP): Change test for libXp.
6959
6960 2000-06-21 Dave Love <fx@gnu.org>
6961
6962 * configure.in: Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not
6963 simple test for getloadavg and substitute GETLOADAVG_LIBS.
6964 Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
6965
6966 2000-06-19 Dave Love <fx@gnu.org>
6967
6968 * configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
6969 _XOPEN_SOURCE is defined.
6970
6971 2000-06-16 Gerd Moellmann <gerd@gnu.org>
6972
6973 * Makefile.in (distclean): Also make distclean in lisp/.
6974
6975 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
6976
6977 * config.bat: Generate lisp/Makefile from lisp/Makefile.in.
6978
6979 2000-06-15 Gerd Moellmann <gerd@gnu.org>
6980
6981 * make-dist: Add --help and --snapshot options.
6982
6983 2000-06-14 Gerd Moellmann <gerd@gnu.org>
6984
6985 * configure.in: Generate lisp/Makefile.
6986
6987 * configure.in: Add support for `*-lynxos*'.
6988 Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
6989 recommended by <Karen.Dorhamer@compaq.com> to fix problems
6990 on Tru64 UNIX v5.0.
6991
6992 2000-06-13 Ken Raeburn <raeburn@gnu.org>
6993
6994 * Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
6995 it's on a continuation line.
6996
6997 2000-06-02 Dave Love <fx@gnu.org>
6998
6999 * Makefile.in (install-arch-indep): Add pcl-cvs to list of info
7000 files.
7001
7002 * configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
7003 Check for struct exception. Use AC_SYS_LARGEFILE and move ftello
7004 test.
7005
7006 * aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
7007 (AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
7008
7009 2000-05-26 Gerd Moellmann <gerd@gnu.org>
7010
7011 * configure.in: Add check for speed_t typedef.
7012
7013 2000-05-25 Ken Raeburn <raeburn@gnu.org>
7014
7015 * Makefile.in (install-arch-dep): Install fns-*.el only if it
7016 exists; it won't in the CANNOT_DUMP case.
7017
7018 2000-05-25 Gerd Moellmann <gerd@gnu.org>
7019
7020 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
7021 On FreeBSD, the exit status is 1 if CDPATH is not set.
7022 (install-arch-indep): Install ebrowse.info.
7023
7024 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
7025
7026 * configure.in: Check for grandpt and getpt.
7027
7028 2000-05-09 Dave Love <fx@gnu.org>
7029
7030 * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
7031
7032 2000-05-05 Gerd Moellmann <gerd@gnu.org>
7033
7034 * make-dist: Make a link for lib-src/grep-changelog.
7035 Copy install-sh.
7036
7037 2000-05-01 Eli Zaretskii <eliz@is.elta.co.il>
7038
7039 * config.bat: Identify the beginning of the cpp stuff in
7040 src/Makefile.in and lib-src/Makefile.in more accurately.
7041
7042 2000-04-27 Gerd Moellmann <gerd@gnu.org>
7043
7044 * configure.in: Add support for `powerpc*-*-linux-gnu*'.
7045
7046 2000-04-19 Gerd Moellmann <gerd@gnu.org>
7047
7048 * configure.in: Add support for `powerpc-*-netbsd*'.
7049
7050 2000-04-19 Dave Love <fx@gnu.org>
7051
7052 * configure.in: Don't use AC_FUNC_GETLOADAVG.
7053
7054 * aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
7055
7056 2000-04-16 Dave Love <fx@gnu.org>
7057
7058 * Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
7059
7060 2000-04-14 Dave Love <fx@gnu.org>
7061
7062 * configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
7063
7064 * aclocal.m4 (AC_FUNC_MKTIME): New.
7065
7066 2000-03-28 Ken Raeburn <raeburn@gnu.org>
7067
7068 * configure.in: Line up "--help" output a little better.
7069
7070 2000-03-26 Gerd Moellmann <gerd@gnu.org>
7071
7072 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
7073 New targets.
7074 (bootstrap): Rewritten in terms of the new targets above. Make
7075 info files, too.
7076
7077 2000-03-12 Gerd Moellmann <gerd@gnu.org>
7078
7079 * config.guess, config.sub: Use the versions of the files from
7080 subversions.
7081
7082 2000-03-08 Dave Love <fx@gnu.org>
7083
7084 * configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
7085 AC_C_VOLATILE. Define POINTER_TYPE.
7086
7087 * aclocal.m4: New file.
7088
7089 2000-03-02 Gerd Moellmann <gerd@gnu.org>
7090
7091 * configure.in (machine): Add `mipsel-*-netbsd*' and
7092 `arm-*-netbsd*'.
7093
7094 2000-03-01 Gerd Moellmann <gerd@gnu.org>
7095
7096 * configure.in (machine): Add support for `*-auspex-sunos*'.
7097
7098 2000-02-29 Gerd Moellmann <gerd@gnu.org>
7099
7100 * configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
7101
7102 2000-02-18 Dave Love <fx@gnu.org>
7103
7104 * configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
7105
7106 2000-02-18 Andreas Schwab <schwab@suse.de>
7107
7108 * Makefile.in (install-arch-indep): Add eudc to list of installed
7109 info files.
7110
7111 2000-02-17 Ken Raeburn <raeburn@gnu.org>
7112
7113 * configure.in: Include -lz and -ljpeg (if it's available) when
7114 testing for the tiff library.
7115
7116 2000-02-17 Gerd Moellmann <gerd@gnu.org>
7117
7118 * configure.in: Remove LISP_FLOAT_TYPE.
7119
7120 2000-02-12 Dave Love <fx@gnu.org>
7121
7122 * configure.in: Use AC_FUNC_VFORK.
7123
7124 2000-02-01 Gerd Moellmann <gerd@gnu.org>
7125
7126 * make-dist: Various fixes for new development tree.
7127
7128 * leim-Makefile.in: New file.
7129
7130 2000-01-31 Gerd Moellmann <gerd@gnu.org>
7131
7132 * Makefile.in (dist): Call ./make-dist.
7133
7134 2000-01-24 Dave Love <fx@gnu.org>
7135
7136 * configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
7137
7138 2000-01-18 Gerd Moellmann <gerd@gnu.org>
7139
7140 * configure.in (HAVE_GIF): Check for DGifOpen instead of
7141 DGifOpenFileName.
7142
7143 2000-01-11 Andreas Schwab <schwab@suse.de>
7144
7145 * Makefile.in (install-arch-indep): Update list of info files to
7146 be installed.
7147
7148 2000-01-05 Dave Love <fx@gnu.org>
7149
7150 * configure.in: Check for jerror.h as well as libjpeg.
7151
7152 2000-01-03 Andreas Schwab <schwab@suse.de>
7153
7154 * Makefile.in (install-arch-indep): Install autotype*. Run
7155 install-info on autotype and emacs-faq.info.
7156
7157 1999-12-04 Dave Love <fx@gnu.org>
7158
7159 * Makefile.in (install-arch-indep): Depend on `info'.
7160 (install-strip): Use `install' as sub-make target.
7161
7162 1999-11-23 Ken Raeburn <raeburn@gnu.org>
7163
7164 * configure.in: Restore Kerberos code deleted on 1999-05-29 that
7165 didn't need to be deleted. Check for the k5crypto library as well
7166 as the crypto library; MIT Kerberos 1.1 changed the name.
7167
7168 1999-11-18 Dave Love <fx@gnu.org>
7169
7170 * configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
7171
7172 1999-11-11 Erik Naggum <erik@naggum.no>
7173
7174 * configure.in (bitmapdir): Allow for both "bitmaps" directories.
7175
7176 1999-11-08 Dave Love <fx@gnu.org>
7177
7178 * configure.in: Fix change for --with-pop default.
7179
7180 1999-11-04 Dave Love <fx@gnu.org>
7181
7182 * configure.in: Default to --with-pop. Change sense of with-gcc
7183 and with-toolkit-scroll-bars messages to reflect the defaults.
7184
7185 1999-11-01 Gerd Moellmann <gerd@gnu.org>
7186
7187 * INSTALL: Mention the Emacs Lisp Reference.
7188
7189 1999-10-27 Noah Friedman <friedman@splode.com>
7190
7191 * configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
7192
7193 1999-10-23 Gerd Moellmann <gerd@gnu.org>
7194
7195 * Makefile.in (bootstrap): New target.
7196
7197 1999-10-19 Paul Eggert <eggert@twinsun.com>
7198
7199 Add support for large files. Merge glibc 2.1.2.
7200
7201 * configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
7202 (HAVE_TM_GMTOFF): New symbol.
7203 (AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
7204 mbrlen, strsignal.
7205 (LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
7206
7207 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
7208
7209 * make-dist (dontcompile): Look for the DONTCOMPILE variable rather
7210 than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
7211
7212 1999-10-09 Richard M. Stallman <rms@gnu.org>
7213
7214 * Makefile.in (uninstall, install-arch-indep, install-arch-dep):
7215 Unset CDPATH to prevent cd from generating output.
7216
7217 1999-10-08 Stefan Monnier <monnier@cs.yale.edu>
7218
7219 * update-subdirs: Also ignore CVS subdirs.
7220
7221 1999-10-07 Gerd Moellmann <gerd@gnu.org>
7222
7223 * Makefile.in (install-arch-indep): Add ada-mode.
7224
7225 1999-10-06 Dave Love <fx@gnu.org>
7226
7227 * Makefile.in: Add rules for config.status, configure.
7228
7229 1999-09-07 Gerd Moellmann <gerd@gnu.org>
7230
7231 * configure.in (--with-sound): Removed.
7232
7233 1999-08-30 Gerd Moellmann <gerd@gnu.org>
7234
7235 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
7236 the test for Xaw3d.
7237 (HAVE_TIFF): Add -lm to library check.
7238
7239 1999-08-28 Richard Stallman <rms@gnu.org>
7240
7241 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
7242 -lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
7243 after the other X-related libraries.
7244
7245 1999-08-21 Dave Love <fx@gnu.org>
7246
7247 * configure.in: Don't check for jpeglib.h.
7248
7249 1999-08-20 Gerd Moellmann <gerd@gnu.org>
7250
7251 * configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
7252 (HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
7253
7254 1999-08-18 Dave Love <fx@gnu.org>
7255
7256 * configure.in: Check for termcap.h.
7257
7258 1999-08-15 Gerd Moellmann <gerd@gnu.org>
7259
7260 * configure.in: Add --with-toolkit-scroll-bars. If "no",
7261 use Emacs' scroll bars, even if configured for Motif or when
7262 Xaw3d is available.
7263
7264 1999-08-12 Wolfgang Rupprecht <wolfgang@wsrcc.com>
7265
7266 * configure.in: Check for getaddrinfo.
7267
7268 1999-08-04 Eli Zaretskii <eliz@gnu.org>
7269
7270 * config.bat: Make --no-debug work again by removing -gcoff.
7271
7272 1999-07-30 Dave Love <fx@gnu.org>
7273
7274 * configure.in: Check for stdlib.h.
7275
7276 1999-07-19 Dave Love <fx@gnu.org>
7277
7278 * configure.in: Grok sparc64-*-linux-gnu*.
7279
7280 1999-07-12 Richard Stallman <rms@gnu.org>
7281
7282 * Version 20.4 released.
7283
7284 1999-06-23 Karl Heuer <kwzh@gnu.org>
7285
7286 * make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
7287 Quote $EMACS, in case it's a program with args.
7288
7289 1999-06-15 Gerd Moellmann <gerd@gnu.org>
7290
7291 * configure.in (HAVE_GIF): Use libungif instead of libgif
7292 because the former doesn't contain patented compression code.
7293
7294 1999-05-29 Richard M. Stallman <rms@gnu.org>
7295
7296 * configure.in: Delete the Kerberos stuff.
7297
7298 1999-05-27 Greg Hudson <ghudson@mit.edu>
7299
7300 * configure.in: Prefer kerberos 5 names.
7301
7302 1999-04-26 Richard M. Stallman <rms@gnu.org>
7303
7304 * configure.in: Check for libXp.
7305
7306 1999-04-08 Richard Stallman <rms@gnu.org>
7307
7308 * make-dist: Include change logs in subdirs of `lisp'.
7309
7310 1999-04-05 Richard Stallman <rms@gnu.org>
7311
7312 * Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
7313 (install-arch-indep): Make ${datadir}/emacs world-readable.
7314
7315 1999-03-30 Eli Zaretskii <eliz@gnu.org>
7316
7317 * config.bat: Use epaths.* instead of paths.*.
7318
7319 1999-03-07 Eli Zaretskii <eliz@gnu.org>
7320
7321 * INSTALL: Add detailed instructions to unpack and install
7322 intlfonts on MS-DOS.
7323
7324 1999-02-26 Richard Stallman <rms@gnu.org>
7325
7326 * configure.in: Use epaths.h and epaths-force instead of paths...
7327
7328 * Makefile.in (epaths-force): Renamed from paths-force;
7329 operate on epaths.in and produce epaths.h.
7330
7331 1999-02-24 Richard Stallman <rms@gnu.org>
7332
7333 * make-dist: Fix nt/icons directory handling.
7334
7335 1999-02-22 Simon Josefsson <jas@pdc.kth.se>
7336
7337 * configure.in (f301-fujitsu-uxpv4.1): New target.
7338
7339 1999-02-20 Richard Stallman <rms@gnu.org>
7340
7341 * make-dist (tempparent): Fix command to update info files.
7342
7343 1999-02-09 Richard Stallman <rms@gnu.org>
7344
7345 * configure.in (powerpc-apple-netbsd*): New alternative.
7346
7347 1999-01-25 Geoff Voelker <voelker@cs.washington.edu>
7348
7349 * make-dist: Include the new directory nt/icons in distributions.
7350
7351 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
7352
7353 * configure.in: Change message about HAVE_XFREE386.
7354
7355 1999-01-07 Eli Zaretskii <eliz@gnu.org>
7356
7357 * config.bat: Support configuring with leim.
7358
7359 1998-12-16 Petri Kaurinkoski <Petri.Kaurinkoski@hut.fi>
7360
7361 * configure.in (mips-sgi-irix6.5): New target.
7362
7363 1998-12-16 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7364
7365 * configure.in: Remove GSS-API support, since it has been removed
7366 from movemail.
7367
7368 1998-12-04 Markus Rost <rost@delysid.gnu.org>
7369
7370 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
7371
7372 1998-12-04 Andreas Schwab <schwab@delysid.gnu.org>
7373
7374 * Makefile.in: Don't install customize info file.
7375 Run install-info on viper info file.
7376
7377 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
7378
7379 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
7380
7381 1998-11-16 Kenichi Handa <handa@etl.go.jp>
7382
7383 * configure.in (*-*-bsdi4*): New target.
7384
7385 1998-11-13 Ehud Karni <ehud@unix.simonwiesel.co.il>
7386
7387 * configure.in: Fix previous change.
7388
7389 1998-11-11 Richard Stallman <rms@gnu.org>
7390
7391 * configure.in (aviion-intel): New machine.
7392
7393 1998-11-04 Kenichi Handa <handa@etl.go.jp>
7394
7395 * configure.in (mips-nec-sysv4*): New target.
7396
7397 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
7398
7399 * Makefile.in (install-arch-dep): Fix last change and use fns-*.el
7400 from lisp.
7401
7402 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
7403
7404 * make-dist: Don't include fns*.el in dist.
7405
7406 1998-10-30 Dave Love <fx@gnu.org>
7407
7408 * configure.in: Don't mkdir cpp.
7409
7410 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
7411
7412 * Makefile.in (install-arch-dep): Install src/fns-*.el in
7413 ${archlibdir}.
7414
7415 1998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
7416
7417 * Version 20.3 released.
7418
7419 1998-07-30 Paul Eggert <eggert@twinsun.com>
7420
7421 * Makefile.in (Makefile, src/Makefile, src/config.stamp)
7422 (lib-src/Makefile, man/Makefile, oldXMenu/Makefile)
7423 (lwlib/Makefile, leim/Makefile):
7424 Prepend $(srcdir)/ to rule dependencies outside this dir.
7425
7426 1998-06-30 Richard Stallman <rms@psilocin.ai.mit.edu>
7427
7428 * configure.in: Use unset CDPATH instead of making it empty.
7429
7430 1998-06-20 Karl Heuer <kwzh@gnu.org>
7431
7432 * configure.in: Assume unspecified Solaris is 2.5, not 2.4.
7433
7434 1998-06-07 Richard Stallman <rms@psilocin.ai.mit.edu>
7435
7436 * make-dist (MANIFEST): Include most subdirs, but exclude subdirs.el
7437 and default.el. Sort the results.
7438
7439 1998-05-31 Karl Heuer <kwzh@gnu.org>
7440
7441 * Makefile.in (install-arch-indep): Don't die if site-lisp/ isn't
7442 writable.
7443
7444 1998-05-14 Richard Stallman <rms@psilocin.ai.mit.edu>
7445
7446 * Makefile.in (install-arch-indep):
7447 Don't alter site-lisp/subdirs.el if it exists.
7448
7449 1998-05-12 Richard Stallman <rms@psilocin.ai.mit.edu>
7450
7451 * Makefile.in (install-arch-indep): Put `-' on commands to create
7452 subdirs.el in site-lisp dirs.
7453
7454 1998-05-07 Richard Stallman <rms@psilocin.gnu.org>
7455
7456 * Makefile.in (install-arch-indep): Fix typo in previous change.
7457
7458 1998-05-06 Richard Stallman <rms@psilocin.gnu.org>
7459
7460 * Makefile.in (install-arch-indep): Pass --dir-file to install-info.
7461
7462 1998-04-28 Richard Stallman <rms@psilocin.gnu.org>
7463
7464 * Makefile.in (mkdir): Create the site-lisp dirs.
7465 (install-arch-indep): Make site-lisp/subdirs files world-readable.
7466
7467 1998-04-26 Richard Stallman <rms@psilocin.gnu.org>
7468
7469 * Makefile.in (INSTALL_INFO): New variable.
7470 (install-arch-indep): Don't replace the dir file if it already exists.
7471 Use the install-info program, via INSTALL_INFO, to add entries.
7472 Make the `info' subdir and the Info files world-readable.
7473
7474 1998-04-16 Eli Zaretskii <eliz@delysid.gnu.org>
7475
7476 * config.bat: Make sure the environment is large enough to support
7477 all the "set foo=bar" commands. Update pointers to DJGPP FTP sites.
7478
7479 1998-04-10 Karl Heuer <kwzh@gnu.org>
7480
7481 * make-dist: Don't accept EMACS=t when testing for $EMACS set.
7482
7483 1998-04-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7484
7485 * configure.in: Add --with-gssapi to specify GSS-API
7486 authentication support for movemail.
7487
7488 1998-04-02 Richard Stallman <rms@psilocin.ai.mit.edu>
7489
7490 * Makefile.in (install-arch-indep): Fix previous change.
7491
7492 1998-03-30 Richard Stallman <rms@psilocin.ai.mit.edu>
7493
7494 * Makefile.in (info): Run man in build dir, not srcdir.
7495
7496 1998-03-28 Richard Stallman <rms@psilocin.ai.mit.edu>
7497
7498 * Makefile.in (install-arch-indep): Fix previous change.
7499
7500 1998-03-23 Kenichi Handa <handa@etl.go.jp>
7501
7502 * Makefile.in (top_distclean): Check the existence of `lock' subdir.
7503
7504 1998-03-22 Richard Stallman <rms@gnu.org>
7505
7506 * Makefile.in (install-arch-indep): Put special subdirs.el files
7507 in site-lisp dirs. Use normal-top-level-add-subdirs-to-load-path.
7508
7509 1998-03-21 Richard Stallman <rms@psilocin.gnu.org>
7510
7511 * make-dist: Fix shell syntax in check for missing .el or .elc files.
7512
7513 1998-03-09 Richard Stallman <rms@psilocin.gnu.org>
7514
7515 * configure.in (hppa-hp-hpux1[0-9]*): Handle versions 1X like 10.
7516 (m68*-hp-hpux*): Handle versions 1X like 10.
7517
7518 1998-03-07 Richard Stallman <rms@psilocin.gnu.org>
7519
7520 * make-dist: PROBLEMS is now in etc, not top level dir.
7521
7522 * Makefile.in (SOURCES): Delete PROBLEMS.
7523
7524 1998-02-25 Richard Stallman <rms@gnu.org>
7525
7526 * configure.in (hppa*-hp-hpux*): Use hpux10 by default.
7527
7528 * Makefile.in (install-arch-indep): Do chmod a+x on subdirs.
7529
7530 1998-01-17 Richard Stallman <rms@gnu.org>
7531
7532 * Makefile.in (install-arch-indep): Add semicolon before `else'.
7533
7534 1998-01-02 Richard Stallman <rms@psilocin.gnu.org>
7535
7536 * make-dist (tempparent): New option --no-check.
7537
7538 * make-dist: Don't do anything with cpp directory.
7539
7540 1997-12-20 Richard Stallman <rms@psilocin.gnu.org>
7541
7542 * configure.in (sparc-fujitsu-sysv4*): New target.
7543
7544 1997-12-17 Andreas Schwab <schwab@gnu.org>
7545
7546 * configure.in: Cache more tests. Add missing quotes around
7547 message with embedded comma.
7548
7549 1997-12-04 Karl Heuer <kwzh@gnu.org>
7550
7551 * Makefile.in (unlock, relock): Don't reference cpp/ directory.
7552
7553 1997-11-26 Joel N. Weber II <devnull@gnu.org>
7554
7555 * make-dist: Changed the comment about `umask 0' to say `Don't
7556 restrict access to any files.'; previously it said `Don't protect
7557 any files', which may have implied that we think fascism is good.
7558
7559 1997-11-24 Paul Eggert <eggert@twinsun.com>
7560
7561 * configure.in (AC_CHECK_FUNCS): Add strftime. The new GNU C library
7562 strftime needs the underlying host's strftime for locale dependent
7563 formats.
7564
7565 1997-11-20 Abraham Nahum <miko@uxsrvc.tti.co.il>
7566
7567 * configure.in (i586-dg-dguxR4.*): New name in case branch.
7568
7569 1997-11-20 Eli Zaretskii <eliz@is.elta.co.il>
7570
7571 * config.bat: Configure the man subdirectory.
7572
7573 1997-11-07 Paul Eggert <eggert@twinsun.com>
7574
7575 * configure.in (AC_CHECK_LIB): Add -lintl.
7576
7577 1997-11-07 Karl Heuer <kwzh@gnu.org>
7578
7579 * make-dist (check for .elc files): Avoid bash-specific syntax.
7580 (check for overflow 14-char limit): Simplify.
7581
7582 1997-11-07 Richard Stallman <rms@gnu.org>
7583
7584 * Makefile.in (install): Move blessmail last.
7585
7586 1997-10-02 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7587
7588 * configure.in (gettimeofday, one arg or two):
7589 Clarify messages by avoiding double negative.
7590
7591 1997-09-30 Karl Eichwalder <ke@suse.de>
7592
7593 * Makefile.in (install-arch-indep): Install the widget info file.
7594
7595 1997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7596
7597 * configure.in (with-pop, with-kerberos): Need to check Kerberos
7598 libraries in reverse order, so that libraries will appear in the
7599 correct dependency order on the link line (and so that the
7600 configure checks themselves will work properly when early
7601 libraries depend on later ones).
7602
7603 1997-09-21 Erik Naggum <erik@naggum.no>
7604
7605 * make-dist (making links to `src'): Keep timestamp on copied files.
7606
7607 * make-delta: New script to produce delta distributions.
7608
7609 1997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7610
7611 * Version 20.2 released.
7612
7613 1997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7614
7615 * Version 20.1 released.
7616
7617 * Makefile.in (install-leim): Depend on mkdir.
7618 (leim): Depend on src.
7619
7620 1997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7621
7622 * configure.in: Recognize alpha* instead of just alpha.
7623
7624 1997-09-12 Paul Eggert <eggert@twinsun.com>
7625
7626 * leim-Makefile.in (mostlyclean, maintainer-clean): New targets.
7627
7628 1997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7629
7630 * update-subdirs: Use rm -f.
7631
7632 1997-09-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7633
7634 * update-subdirs: Delete subdirs.el if this dir has no subdirs.
7635 Ignore subdirs named Old.
7636
7637 1997-08-04 Kenneth Stailey <kstailey@elbereth.disclosure.com>
7638
7639 * configure.in: Add OpenBSD clause to set $machine.
7640
7641 1997-09-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7642
7643 * make-dist: Recompile everything after updating various Lisp files.
7644 Recompile in leim as well as lisp.
7645 Check in leim as well as lisp for mismatched files and too-long names.
7646
7647 1997-09-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7648
7649 * Makefile.in (TAGS tags): Simply refer this to the src subdir.
7650
7651 1997-08-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7652
7653 * Makefile.in (install-arch-indep): Verify ./lisp has simple.el in it
7654 before trying to copy anything from it.
7655
7656 1997-08-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7657
7658 * Makefile.in (man/Makefile): New target.
7659 (tags): Define env var EMACS and run Makefile from build dir.
7660
7661 1997-08-27 Eli Zaretskii <eliz@psilocin.gnu.ai.mit.edu>
7662
7663 * config.bat: If src/_gdbinit doesn't exist, try using
7664 src/.gdbinit to create it (for building on Windows 95).
7665
7666 1997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7667
7668 * Makefile.in (install-arch-indep):
7669 Discard extra data in tar | tar pipes.
7670
7671 1997-08-24 NIIBE Yutaka <gniibe@mri.co.jp>
7672
7673 * configure.in (x_default_search_path): Corrected
7674 '${x_library}' to '${x_library}/X11'.
7675
7676 1997-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7677
7678 * configure.in (HAVE_MOTIF_2_1): Test for Motif 2.1.
7679
7680 1997-08-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7681
7682 * configure.in: Support auto-configuration of both Kerberos V4 and
7683 Kerberos V5 for movemail, including detection of V4 and V5 header
7684 files and libraries.
7685
7686 1997-08-16 NIIBE Yutaka <gniibe@etl.go.jp>
7687
7688 * configure.in: Compute x_default_search_path
7689 and substitute into makefiles.
7690
7691 * Makefile.in (paths-force): Store PATH_X_DEFAULTS in paths.h.
7692
7693 1997-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7694
7695 * Makefile.in (install-arch-indep): Run list-load-path-shadows.
7696
7697 1997-08-07 Erik Naggum <erik@naggum.no>
7698
7699 * configure.in: Remove lockdir, it is no longer needed.
7700 * Makefile.in (mkdir): Don't create lockdir.
7701 (lockdir): Variable deleted.
7702 (paths-force): Don't operate on PATH_LOCK.
7703
7704 1997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7705
7706 * leim-Makefile.in (clean, distclean): New targets.
7707
7708 * make-dist: Include leim/ChangeLog in leim distribution.
7709
7710 1997-08-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7711
7712 * configure.in (i*86-*-sysv4.2uw*): Set NON_GNU_CPP.
7713
7714 1997-07-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7715
7716 * Makefile.in (CPPFLAGS): Get this from configure, like CFLAGS.
7717
7718 1997-07-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7719
7720 * Makefile.in (LDFLAGS): Get this from configure, like CFLAGS.
7721
7722 1997-07-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7723
7724 * make-dist: Update leim/leim-list.el.
7725 Pass along value of $EMACS when updating lisp dir.
7726
7727 1997-07-25 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7728
7729 * configure.in (doug_lea_malloc): Make __after_morecore_hook a
7730 prerequisite to the use of Doug Lea's malloc.
7731
7732 1997-07-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7733
7734 * Makefile.in (top_distclean): Use -f to delete contents of lock dir.
7735
7736 * make-dist: Use name leim/SKK-DIC, not leim/SKK.
7737
7738 1997-07-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7739
7740 * make-dist: Arrange for the leim tar file to unpack in emacs-M.N/leim.
7741
7742 1997-07-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7743
7744 * configure.in (mips-sony-newsos6*): File news-risc.h renamed
7745 to news-r6.h.
7746
7747 1997-07-10 Eli Zaretskii <eliz@is.elta.co.il>
7748
7749 * config.bat: Use `sed' instead of `cp', which might not be
7750 installed.
7751
7752 1997-07-09 Kenichi Handa <handa@etl.go.jp>
7753
7754 * Makefile.in (mostlyclean): Add cleaning leim directory.
7755 (clean, distclean, maintainer-clean): Likewise.
7756
7757 1997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7758
7759 * make-dist (bogosities): Check subdirs of `lisp' also.
7760
7761 1997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7762
7763 * make-dist (etc): Really avoid symlinks now.
7764 (lisp): Don't delete from subdirs the things we never copy.
7765
7766 1997-07-07 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7767
7768 * Makefile.in (install-arch-indep): Correct the target name.
7769 The first letter `i' was dropped by the previous change of mine.
7770
7771 1997-07-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7772
7773 * configure.in (leim/Makefile): Generate this.
7774 (*-sysv4.2uw*): Recognize new alternative.
7775
7776 * leim-Makefile.in: Renamed from leim-Makefile.
7777
7778 * make-dist: Set up real-leim subdirectory,
7779 with the real contents of leim; then move it to
7780 a separate top-level directory.
7781
7782 * make-dist: Don't mention site-lisp, site-init, site-start
7783 or default, when listing files hat are not compiled and should be.
7784
7785 * configure.in: Create src/config.stamp at the end.
7786
7787 1997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7788
7789 * Makefile.in (install-leim): Correct previous change.
7790
7791 1997-07-02 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7792
7793 * Makefile.in (install-leim): New target.
7794 (install): Depend on install-leim.
7795
7796 1997-07-01 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7797
7798 * Makefile.in (SUBDIR): Add leim.
7799 (SUBDIR_MAKEFILES): Add leim/Makefile.
7800 (leim/Makefile): New target.
7801
7802 1997-07-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7803
7804 * leim-Makefile: New file.
7805 * make-dist: Initialize a `leim' subdirectory with that makefile.
7806
7807 1997-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7808
7809 * configure.in (GNU_MALLOC_reason): Fix message text.
7810
7811 1997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7812
7813 * make-dist (lisp): Don't process subdirs that start with =.
7814 (etc): Copy symlinks, as in src.
7815
7816 1997-06-26 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7817
7818 * configure.in (i*86-*-unixware*): New alternative.
7819
7820 1997-06-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7821
7822 * Makefile.in (src/config.stamp): Target renamed from src/config.h
7823 and touch it explicitly.
7824
7825 * configure.in (mips-sony-newsos6*): New alternative.
7826 (mips-*-linux-gnu*): New alternative.
7827 (*-*-bsdi*): New alternative.
7828 (i*86-*-bsd386, i*86-*-bsdi...): Delete old alternatives.
7829
7830 1997-06-22 Dave Love <d.love@dl.ac.uk>
7831
7832 * Makefile.in (lib-src): Depend on src/config.h (e.g. for movemail.o).
7833 (src/config.h): New target to re-configure if src/config.in is patched.
7834
7835 1997-06-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7836
7837 * configure.in (shutdown): Check for `shutdown' function.
7838
7839 1997-06-18 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7840
7841 * update-subdirs: Include the directory "language" in subdirs.
7842
7843 1997-06-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7844
7845 * configure.in (m88k-dg-dgux4*): New alternative.
7846 (alpha-*-netbsd*): New alternative.
7847 (powerpcle-*-solaris2*): New alternative.
7848
7849 1997-05-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7850
7851 * make-dist: Warn about .el files that are not compiled.
7852
7853 1997-05-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7854
7855 * Makefile.in (dist): Don't run update-subdirs here,
7856 since make-dist now gets that done.
7857
7858 * make-dist: Use the new `updates' target in lisp/Makefile.
7859
7860 * make-dist: Use new non-file targets in lisp/Makefile.
7861
7862 1997-04-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7863
7864 * make-dist: Handle all subdirs of `lisp' uniformly.
7865 Don't handle `term' and `language' specially.
7866 Clear out umask at the beginning.
7867
7868 1997-04-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7869
7870 * make-dist: Use Make to update finder-inf.el and autoloads.
7871 Also update cus-load.el.
7872
7873 1997-04-09 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7874
7875 * configure.in (doug_lea_malloc): First check for SYSTEM_MALLOC,
7876 in case it is desirable to disable the GNU malloc features with glibc.
7877
7878 1997-04-08 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7879
7880 * configure.in (DOUG_LEA_MALLOC):
7881 Define if malloc_{get,set}_state exist.
7882
7883 1997-03-05 Kenichi Handa <handa@etl.go.jp>
7884
7885 * make-dist: Make links for files under lisp/language.
7886
7887 1997-02-20 Kenichi Handa <handa@etl.go.jp>
7888
7889 * update-subdirs: Exclude the directory "language" from subdirs.
7890
7891 1997-01-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
7892
7893 * configure.in: Check for rint and cbrt.
7894
7895 1997-01-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7896
7897 * make-dist: Use $EMACS to say where to run Emacs.
7898 Add --no-update option.
7899
7900 1996-12-30 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7901
7902 * configure.in (hppa1.1-hitachi-hiuxmpp): New configuration.
7903
7904 1996-12-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7905
7906 * make-dist (copying src): Check thoroughly for symlinks
7907 and copy them in all cases. Regularize the linking of *.in
7908 and *.opt and ChangeLog files.
7909 (copying lib-src): Likewise.
7910 Don't rm getdate.c or y.tab.*--they don't exist any more.
7911
7912 1996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
7913
7914 * configure.in: Check for libmail, maillock.h and
7915 touchlock (for movemail).
7916
7917 1996-12-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7918
7919 * configure.in (limits.h): Check for this file.
7920
7921 1996-12-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7922
7923 * configure.in (rs6000-ibm-aix4.2): New alternative.
7924 (rs6000-ibm-aix4.0): New alternative.
7925 (rs6000-ibm-aix4*): Assume aix 4.1 by default.
7926
7927 1996-11-22 Ben Harris <bjh21@cam.ac.uk>
7928
7929 * configure.in: Recognize vax-*-netbsd*.
7930
7931 1996-11-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7932
7933 * configure.in (locallisppath): Add leim directory.
7934
7935 1996-10-31 Eli Zaretskii <eliz@is.elta.co.il>
7936
7937 * config.bat: Make sure `mv' supports forward slashes and -f.
7938
7939 1996-10-28 Christian Limpach <chris@nice.ch>
7940
7941 * configure.in (hppa*-next-nextstep*): * added after hppa
7942 to accept hppa1.0 and hppa1.1.
7943
7944 1996-10-05 Marcus G. Daniels <marcus@coulee.tdb.com>
7945
7946 * configure.in: Provide an empty default for LD_SWITCH_X_SITE_AUX.
7947 * configure.in (ld_switch_machine): Fix typo.
7948
7949 1996-09-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7950
7951 * configure.in: Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
7952 from config.h and use them in $ac_link.
7953
7954 1996-09-28 Erik Naggum <erik@psilocin.gnu.ai.mit.edu>
7955
7956 * configure.in: Create a subdir named `lisp'.
7957
7958 1996-09-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7959
7960 * configure.in: Check for getcwd.
7961
7962 1996-09-04 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7963
7964 * configure.in: Check for termios.h. Check for setpgid.
7965
7966 1996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7967
7968 * configure.in: Check for setrlimit.
7969
7970 1996-08-31 Paul Eggert <eggert@twinsun.com>
7971
7972 * configure.in: Check for sys/systeminfo.h, getdomainname, sysinfo.
7973
7974 1996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7975
7976 * configure.in: Check for utimes.
7977
7978 * configure.in: Check for com_err library, but only
7979 if --with-kerberos was used. Check for krb and des
7980 only if --with-kerberos.
7981
7982 1996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7983
7984 * Makefile.in (INSTALL_STRIP): New variable.
7985 (install-strip): Set INSTALL_STRIP, not INSTALL_PROGRAM.
7986 (install-arch-dep): Use INSTALL_STRIP, and pass it to lib-src.
7987
7988 1996-08-25 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7989
7990 * configure.in: Check for krb and des libraries.
7991
7992 1996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7993
7994 * configure.in (*-sunos4.1.[3-9]*noshare):
7995 Use sunos413, not sunos4-1-3.
7996 (m88k-dg-dgux5.4R3*): Use dgux5-4-3, not dgux5-4r3.
7997 (arm-acorn-riscix1.2*): Use riscix12, not riscix1-2.
7998
7999 1996-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8000
8001 * Makefile.in (src/paths.h): Target deleted.
8002 (paths-force): Delete all dependencies on this target
8003 but don't delete the target.
8004 (install): Depend on `all'.
8005 (paths-force): Don't print a message.
8006
8007 * configure.in: Generate src/paths.h here.
8008
8009 1996-08-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8010
8011 * configure.in (NON_GCC_LINK_TEST_OPTIONS, GCC_LINK_TEST_OPTIONS):
8012 New variables that affect linking only.
8013 (alpha-dec-osf*): Use those instead of previous change.
8014
8015 1996-08-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8016
8017 * Makefile.in (install-arch-indep): Install info/messages.
8018
8019 1996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8020
8021 * Version 19.33 released.
8022
8023 1996-08-10 Marcus G. Daniels <marcus@sayre.sysc.pdx.edu>
8024
8025 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
8026 Fix previous change.
8027
8028 1996-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8029
8030 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
8031 New alternative.
8032
8033 1996-08-07 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8034
8035 * configure.in (alpha-dec-osf*): Specify GCC_TEST_OPTIONS
8036 and NON_GCC_TEST_OPTIONS.
8037
8038 1996-08-06 Paul Eggert <eggert@twinsun.com>
8039
8040 * configure.in (LOCALTIME_CACHE): Don't put a string literal
8041 "TZ=..." in environ.
8042
8043 1996-08-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8044
8045 * make-dist (msdos): Add is_exec.c, sigaction.c to distribution.
8046
8047 1996-08-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8048
8049 * configure.in (*-sunos4.1.[3-9]*noshare): Move this before
8050 the more general *-sunos4.1.[3-9]* clause.
8051
8052 1996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8053
8054 * Version 19.32 released.
8055
8056 * configure.in (*-sco3.2v5*):
8057 Set OVERRIDE_CPPFLAG to a string of one space.
8058 Fix the code that uses OVERRIDE_CPPFLAG.
8059
8060 1996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
8061
8062 * configure.in: Undo previous change.
8063
8064 1996-07-16 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8065
8066 * config.sub: Use `pc', not `unknown', when canonicalizing
8067 the vendor for ...86.
8068
8069 1996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
8070
8071 * configure.in: Check for termios.h header.
8072
8073 1996-07-11 Bill Mann <dvmann@dvncr.praxisint.com>
8074
8075 * configure.in: Use s/usg5-4-3.h for ncr-i[3456]86-sysv4.3.
8076
8077 1996-07-07 Karl Heuer <kwzh@gnu.ai.mit.edu>
8078
8079 * configure.in: Split bsdos2 and bsdos2-1.
8080
8081 1996-07-06 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8082
8083 * config.sub: If last two words are not a recognized
8084 KERNEL-OS pair, use just the last word as OS, as in 19.31.
8085 Make conversion of gnu/linux to linux-gnu really work.
8086
8087 * config.sub: If vendor unspecified with i386, use `pc' not `unknown'.
8088
8089 1996-06-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8090
8091 * configure.in (check for using Lucid widgets by default):
8092 Eliminate indentation that confuses some compilers.
8093
8094 1996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8095
8096 * config.sub: Convert linux and gnu/linux to linux-gnu.
8097
8098 * make-dist: Don't update getdate.c.
8099 Ignore =... files when checking for too-long Lisp file names.
8100
8101 1996-06-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8102
8103 * configure.in (euidaccess): Check for that, not for eaccess.
8104
8105 1996-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8106
8107 * configure.in (sunos4.1.[3-9]*noshare): Eliminate dash from
8108 before `noshare'.
8109 (mips-sgi-irix6*): Specify NON_GCC_TEST_OPTIONS.
8110
8111 1996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8112
8113 * configure.in: Rename lignux to linux-gnu in configuration names.
8114 Use gnu-linux as the opsys value (s/ file name).
8115 Allow i686 just like i386, i486, i586.
8116
8117 1996-06-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8118
8119 * configure.in (i*86-*-sco3.2v5): New alternative.
8120 (OVERRIDE_CPPFLAG): New variable.
8121 (CPPFLAGS): If OVERRIDE_CPPFLAG is set, use that.
8122
8123 * configure.in: Specify vpath for .texi files.
8124
8125 1996-06-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8126
8127 * configure.in: Always check for HAVE_X11R5.
8128 Separately decide whether to use a toolkit by default.
8129
8130 1996-06-04 Bill Mann <dvmann@dvhpux1.praxisint.com>
8131
8132 * configure.in: If X11R5 is missing the Xaw headers,
8133 default to --with-x-toolkit=no.
8134
8135 1996-05-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8136
8137 * configure.in (powerpc-*-solaris2*): Use ibmrs6000, not rs6000.
8138
8139 1996-05-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
8140
8141 * Makefile.in (install-arch-indep): If cd etc makes output,
8142 don't treat that as part of the tar data.
8143 Check that ./lisp actually exists.
8144
8145 1996-05-29 Karl Heuer <kwzh@gnu.ai.mit.edu>
8146
8147 * make-dist: Check for long file names.
8148
8149 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
8150
8151 * Version 19.31 released.
8152
8153 1996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
8154
8155 * configure.in: Recognize sparc-*-lignux.
8156
8157 1996-05-03 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
8158
8159 * make-dist: Include nt/inc/arpa and nt/inc/netinet in the dist.
8160 Don't include config.w95.
8161
8162 1996-04-21 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
8163
8164 * make-dist: Replace --no-clean-up and --no-tar options
8165 with --clean-up and --tar, so that the default is useful.
8166
8167 1996-04-15 Eli Zaretskii <eliz@is.elta.co.il>
8168
8169 * config.bat: Make sure the GDB init file is called src/_gdbinit;
8170 if not, tell the user to rename it and abort.
8171
8172 1996-04-14 Eli Zaretskii <eliz@is.elta.co.il>
8173
8174 * config.bat: With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE
8175 test program.
8176
8177 1996-04-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8178
8179 * config.bat (djgpp_ver): Variable renamed from djgpp-ver.
8180
8181 * make-dist (MANIFEST): Fix previous change.
8182 (msdos): Put mainmake.v2 into the dist.
8183
8184 1996-04-10 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
8185
8186 * make-dist: Exit if autoconf fails.
8187
8188 1996-04-10 Eli Zaretskii <eliz@is.elta.co.il>
8189
8190 * config.bat: Set djgpp-ver, and unset it at the end.
8191 Add a number of conditionals for DJGPP version 2.
8192 Rename label libsrc2 to libsrc3.
8193 Substitute for LDFLAGS in src/Makefile.
8194 Substitute for ALL_CFLAGS in lib-src/Makefile.
8195
8196 1996-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8197
8198 * configure.in (ncurses): Check this after checking fns like strerror.
8199
8200 1996-04-08 Erik Naggum <erik@naggum.no>
8201
8202 * make-dist (MANIFEST): Don't include lines from =files.
8203
8204 1996-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8205
8206 * make-dist: Don't put lisp/dired.todo in the dist.
8207
8208 1996-04-05 Richard Stallman <rms@lucy.gnu.ai.mit.edu>
8209
8210 * configure.in (HAVE_NCURSES): Look for library named ncurses.
8211
8212 * configure.in (setlocale): Check for it.
8213
8214 * configure.in (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp.
8215
8216 1996-03-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8217
8218 * configure.in: Use lignux instead of linux as value of opsys.
8219
8220 1996-03-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8221
8222 * Makefile.in (install-strip): Fix whitespace.
8223 Get rid of continuation.
8224
8225 * config.sub: Convert linux or gnu/linux to lignux.
8226
8227 1996-03-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8228
8229 * configure.in: Accept lignux in configuration name.
8230
8231 1996-03-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8232
8233 * Makefile.in (install-strip): New target.
8234
8235 1996-03-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8236
8237 * Makefile.in (top_distclean): Use `|| true' to ignore error in rm.
8238 -f failed to do the job on Suns.
8239
8240 1996-03-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8241
8242 * Makefile.in (install-arch-dep): Don't depend on install-arch-indep.
8243
8244 * configure.in (linux/version.h): Check for this header.
8245
8246 1996-03-12 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
8247
8248 * configure.in: Remove -fno-builtin hackery from -lm check.
8249
8250 1996-03-08 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
8251
8252 * configure.in (-lm check): If $GCC, append -fno-builtin to $CC for
8253 just this test.
8254
8255 * configure.in (AC_PREREQ): Require version 2.8 of Autoconf.
8256
8257 1996-03-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8258
8259 * configure.in: Check for ncurses.
8260
8261 1996-02-28 Paul Eggert <eggert@twinsun.com>
8262
8263 * configure.in (LOCALTIME_CACHE):
8264 Also define if localtime mishandles unsetting TZ.
8265 This works around a localtime bug in mips-dec-ultrix.
8266
8267 1996-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8268
8269 * make-dist (finder-inf.el): Use finder-compile-keywords-make-dist.
8270
8271 * configure.in: Improve messages about X versions.
8272
8273 1996-02-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8274
8275 * configure.in (LOCALTIME_CACHE): Cope if $ac_cv_func_tzset is null.
8276
8277 1996-02-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8278
8279 * configure.in (HAVE_X11XTR6): Set it as a shell variable.
8280 (HAVE_LIBXMU): If HAVE_X11XTR6, use -lSM and -lICE.
8281
8282 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
8283 (install): Put install-arch-indep before install-arch-dep.
8284
8285 1996-02-20 Dave Love <d.love@dl.ac.uk>
8286
8287 * INSTALL: Clarify info about MS-DOS path handling.
8288
8289 1996-02-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8290
8291 * Makefile.in (install-arch-indep): Install info/ccmode*.
8292 In previous change, protect against /bin/pwd returning null string.
8293
8294 1996-02-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8295
8296 * Makefile.in (install-arch-indep): Copy build-dir's lisp subdir
8297 to lispdir.
8298
8299 1996-02-01 Paul Eggert <eggert@twinsun.com>
8300
8301 * configure.in (LD_RUN_PATH): Prepend x_libraries to this envvar.
8302
8303 1996-01-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8304
8305 * configure.in (HAVE_TIMEVAL): Set explicitly to `no' if test fails.
8306
8307 1996-01-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8308
8309 * Makefile.in (extraclean): Use ${top_distclean} to ensure
8310 we delete everything distclean deletes.
8311
8312 1996-01-23 Karl Heuer <kwzh@gnu.ai.mit.edu>
8313
8314 * make-dist (lwlib): Don't distribute lwlib-Xol* files.
8315
8316 1996-01-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8317
8318 * configure.in (HAVE_X11): Merge $LD_SWITCH_X_SITE
8319 into LDFLAGS instead of into LIBS.
8320
8321 1996-01-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8322
8323 * configure.in (HAVE_XMU): Fix typo in previous change.
8324
8325 1996-01-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8326
8327 * configure.in [Solaris]: Don't let $CC make us use /usr/ucb/cc.
8328
8329 1996-01-10 Erik Naggum <erik@naggum.no>
8330
8331 * configure.in (USE_X_TOOLKIT = maybe): Delete redundant `fi'.
8332
8333 1996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
8334
8335 * Makefile.in (install-arch-indep): Ignore error if no chmod -R.
8336
8337 1996-01-10 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8338
8339 * configure.in (HAVE_XMU): Check for libXmu.a only if using toolkit
8340 and use -lXt to link it.
8341
8342 1996-01-08 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8343
8344 * configure.in (locallisppath): Put version-specific dir first.
8345
8346 1996-01-07 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8347
8348 * configure.in (hppa-*-nextstep*): New alternative.
8349 (USE_X_TOOLKIT): By default, set this to "maybe";
8350 and change that later to LUCID or "no" according to X11 version.
8351
8352 * make-dist: Recompile outdated .elc files and update all autoloads.
8353
8354 1996-01-05 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
8355
8356 * configure.in (locallisppath): Fix typo in last change: " -> '.
8357
8358 1996-01-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8359
8360 * configure.in (locallisppath): Add ../emacs/VERSION/site-lisp.
8361
8362 1995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8363
8364 * Makefile.in (install-arch-indep): Give all files read permission.
8365
8366 1995-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8367
8368 * configure.in (hppa*-hp-hpux9shr*, hppa*-hp-hpux9*, hppa*-hp-hpux*):
8369 If it is hpux 9, check for /usr/include/X11R5 and /usr/lib/x11R5.
8370
8371 1995-12-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8372
8373 * configure.in: Determine HAVE_X11R6.
8374 (HAVE_MENUS): Renamed from HAVE_X_MENU.
8375
8376 1995-12-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8377
8378 * configure.in: Just "solaris" now defaults to version 2.4.
8379 Add sunos4.1.n-noshare as alternative.
8380
8381 1995-12-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8382
8383 * configure.in (mips-sgi-irix6*): Set NON_GNU_CPP.
8384
8385 1995-11-29 Erik Naggum <erik@naggum.no>
8386
8387 * Makefile.in (install-arch-indep): Add missing backslash.
8388
8389 1995-11-29 Karl Eichwalder <ke@ke.Central.DE>
8390
8391 * Makefile.in (install-arch-indep): Don't install
8392 lispdir/[Mm]akefile*, lispdir/ChangeLog, lispdir/dired.todo.
8393
8394 1995-11-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8395
8396 * Makefile.in (install-arch-indep): Fix previous change.
8397
8398 * configure.in (mips-sni-sysv*): New alias for mips-siemens-sysv*.
8399
8400 1995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8401
8402 * Version 19.30 released.
8403
8404 * make-dist (lisp): Exclude subdirs.el.
8405
8406 1995-11-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8407
8408 * make-dist (etc): Delete *.orig and *.rej.
8409
8410 1995-11-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8411
8412 * Makefile.in (install-arch-indep): Rename old info/dir only if exists.
8413
8414 1995-11-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8415
8416 * configure.in (hppa*-hp-hpux10*): Use s/hpux10.h.
8417
8418 1995-11-14 Geoff Voelker <voelker@cs.washington.edu>
8419
8420 * make-dist (nt): Rename install, readme, and todo to
8421 INSTALL, README, and TODO.
8422
8423 1995-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8424
8425 * make-dist (lisp): Don't distribute site-start.
8426
8427 1995-11-06 Karl Heuer <kwzh@gnu.ai.mit.edu>
8428
8429 * make-dist: Break the hard link on alloca.c.
8430
8431 1995-11-04 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
8432
8433 * configure.in (LIBS): Add libsrc_libs and keep the old LIBS.
8434
8435 1995-11-02 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8436
8437 * make-dist (src, lib-src): Don't distribute Makefile.c.
8438 (etc/e): Do cleanup in $tempdir/etc/e, not $tempdir/etc.
8439
8440 1995-10-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8441
8442 * Makefile.in (mkdir): Create man1dir, not mandir.
8443 (uninstall): Use man1dir, not mandir.
8444
8445 1995-10-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8446
8447 * Makefile.in (man1dir): New variable.
8448 (install-arch-indep): Use man1dir.
8449
8450 * configure.in (sparc-*-nextstep*): Remove incorrect .h's.
8451
8452 * make-dist: Create lisp/MANIFEST.
8453
8454 1995-10-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
8455
8456 * configure.in (m68k-*-linux*): New alternative.
8457
8458 1995-10-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8459
8460 * make-dist: Use new names config.in, paths.in, and
8461 {src,lib-src}/Makefile.in.
8462
8463 1995-10-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8464
8465 * configure.in: Don't bother checking for drem.
8466
8467 1995-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8468
8469 * Makefile.in (distclean): Delete line with just a tab in it.
8470 (install-arch-indep): Delete spaces that precede tabs.
8471 Delete spurious `fi' left from previous change.
8472 (install): Supply `true' as command, to avoid null command.
8473
8474 1995-10-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8475
8476 * configure.in (--with-x-toolkit)): Add `athen' as alias for `athena'.
8477
8478 1995-09-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8479
8480 * configure.in (powerpc-*-solaris2): New alternative.
8481
8482 1995-09-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
8483
8484 * Makefile.in (src/paths.h, paths-force): Use paths.h.$$ instead
8485 of paths.h.tmp$$, to avoid going beyond 14 characters.
8486
8487 1995-09-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8488
8489 * configure.in: Improve error msg for invalid --with-x-toolkit value.
8490
8491 1995-09-06 Paul Eggert <eggert@twinsun.com>
8492
8493 * configure.in (LOCALTIME_CACHE): Define if tzset exists and
8494 if localtime caches TZ. Check for tzset.
8495
8496 1995-09-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8497
8498 * config.bat: Simplify using new names file names src/makefile.in,
8499 config.in, paths.in. Change Echo commands not to use `.
8500
8501 1995-08-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8502
8503 * Makefile.in (install-arch-indep): Always install the new dir file;
8504 rename the previous dir file to dir.bak or dir.old.
8505
8506 1995-08-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8507
8508 * configure.in (RANLIB): Substitute this into makefiles.
8509 Set it specially on solaris; set it by default on other systems.
8510
8511 * configure.in: Fix previous Alpha change.
8512
8513 1995-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8514
8515 * configure.in (i*386-*-isc4.*): Set GCC_TEST_OPTIONS and
8516 NON_GCC_TEST_OPTIONS.
8517
8518 1995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8519
8520 * configure.in (CFLAGS): When computing CFLAGS and REAL_CFLAGS
8521 from config.h, use SPECIFIED_CFLAGS to get what the user specified.
8522
8523 * configure.in (alpha-*-linux*): New configuration.
8524
8525 1995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8526
8527 * configure.in (m68*-next-*): Use m68k.h and nextstep.h.
8528 (m68k-next-nextstep*): New alias for that.
8529 (i*86-*-nextstep*): Use nextstep.h.
8530 (sparc-*-nextstep*): New configuration.
8531
8532 1995-08-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8533
8534 * configure.in (CPP): Save original CFLAGS value in SPECIFIED_CFLAGS.
8535 And get CFLAGS from config.h if SPECIFIED_CFLAGS is null.
8536
8537 1995-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8538
8539 * configure.in: Handle sunos4shr by sharing; not like sunos4*.
8540 Determine GETTIMEOFDAY_ONE_ARGUMENT by experiment.
8541
8542 1995-07-18 Mike Long <mike.long@analog.com>
8543
8544 * make-dist: Fix update of finder-inf.el, and byte-compile it.
8545
8546 1995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8547
8548 * Makefile.in (src/paths.h, paths-force):
8549 Rename src/paths.h.in to src/paths.in.
8550 (Makefile): Depend on src/Makefile.in, not src/Makefile.in.in.
8551
8552 * configure.in: Rename {src,lib-src}/Makefile.in.in to Makefile.in.
8553 Use Makefile.c for intermediate file.
8554 Rename src/config.h.in to src/config.in.
8555
8556 1995-07-17 Richard Stallman <rms@gnu.ai.mit.edu>
8557
8558 * configure.in (mips-dec-ultrix*): Assume version 4.3.
8559 (mips-dec-ultrix4.[12]): New alternative for old versions.
8560
8561 1995-07-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8562
8563 * make-dist: Don't break intra-tree links.
8564
8565 1995-07-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8566
8567 * configure.in: Put back archlibdir initialization. Require
8568 autoconf 2.4.1 or later.
8569
8570 1995-07-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8571
8572 * configure.in: Use sunos4shr normally for Sunos 4.1.[3-9].
8573 (mips-mips-riscos5*): New alternative.
8574
8575 1995-06-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8576
8577 * Makefile.in (uninstall, install-arch-indep): Install info/ediff*.
8578
8579 1995-06-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8580
8581 * configure.in (bindir, datadir, sharedstatedir, libexecdir)
8582 (mandir, infodir, archlibdir): Initializations deleted.
8583
8584 * configure.in: On hpux9, use hpux9-x11r4.h if we have X11R4.
8585 On hpux9shr, use hpux9shxr4.h.
8586
8587 1995-06-24 Morten Welinder <terra+@cs.cmu.edu>
8588
8589 * configure.in: Added target mips-dec-mach_bsd4.3.
8590 * config.guess: Guess mips-dec-mach_bsd4.3.
8591
8592 1995-06-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8593
8594 * Makefile.in (mkdir): Use symbolic chmod.
8595
8596 1995-06-22 Paul Eggert <eggert@twinsun.com>
8597
8598 * configure.in: Treat SunOS 4.1.4 like SunOS 4.1.3. (Likewise for
8599 SunOS 4.1.5 through 4.1.9, should they ever exist.)
8600
8601 1995-06-22 Paul Eggert <eggert@twinsun.com>
8602
8603 * Makefile.in (SUBDIR_MAKEFILES):
8604 Add man/Makefile, so `make distclean' removes it.
8605 (top_distclean): Add config.log to the list of files to be removed.
8606
8607 1995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8608
8609 * Version 19.29 released.
8610
8611 1995-06-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8612
8613 * configure.in: Fix the previous change to verify that the -b
8614 option really solves the problem.
8615
8616 * make-dist (nt): Explicitly include makefile.nt and makefile.def only.
8617
8618 1995-06-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8619
8620 * configure.in: Test whether XFree86 needs -b i486-linuxaout to link.
8621
8622 1995-06-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8623
8624 * configure.in: Report more clearly when there is no special
8625 dir to search for X includes or libraries.
8626
8627 1995-06-13 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8628
8629 * configure.in: Check for -lpthreads, not -lpthread.
8630
8631 1995-06-09 Geoff Voelker <voelker@cs.washington.edu>
8632
8633 * make-dist: Copy new files nt/addpm.c and nt/emacs.bat.in.
8634
8635 1995-06-08 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8636
8637 * configure.in: Check for -lpthread.
8638
8639 1995-06-05 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8640
8641 * Makefile.in (install-arch-indep): Install info files for mh-e.
8642 (uninstall): Uninstall info files for dired-x, gnus, mh-e, and sc.
8643
8644 1995-06-01 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8645
8646 * configure.in (*-solaris2.5): New configuration.
8647
8648 * make-dist: Copy new files config.nt and config.w95.
8649
8650 1995-05-30 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8651
8652 * configure.in: Use x_includes, not x_libraries, for -I.
8653 Make bitmapdir a colon-separated list.
8654
8655 1995-05-27 Richard Stallman <rms@gnu.ai.mit.edu>
8656
8657 * configure.in (hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
8658
8659 * configure.in: Allow x_libraries and x_includes to be paths.
8660
8661 1995-05-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8662
8663 * configure.in: Fix typo.
8664
8665 1995-05-24 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8666
8667 * INSTALL: Clarify use of site-init.el.
8668
8669 1995-05-22 enami tsugutomo <enami@sys.ptg.sony.co.jp>
8670
8671 * configure.in: Pass arg to sqrt.
8672
8673 1995-05-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8674
8675 * make-dist: Fix May 6 change.
8676
8677 1995-05-17 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8678
8679 * vpath.sed: Delete reference to ymakefile.
8680
8681 1995-05-09 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8682
8683 * configure.in: Use sqrt (more portable) instead of fmod in -lm check.
8684
8685 1995-05-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8686
8687 * make-dist: Put nt/emacs.ico and nt/emacs.rc in dist.
8688
8689 * update-subdirs: Specify /bin/sh to run the script.
8690
8691 1995-05-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8692
8693 * make-dist: Put src/makefile.nt in dist.
8694
8695 * configure.in (i[345]86-*-bsdi2*): New configuration.
8696 (vax-dec-bsd386*): Deleted.
8697
8698 1995-05-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8699
8700 * configure.in: Make sure CDPATH doesn't mess up PWD check.
8701 Check whether X bitmaps are in X11/bitmaps instead of bitmaps.
8702 Use fmod instead of logb in -lm check.
8703
8704 1995-05-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8705
8706 * configure.in (m68*-apollo-*): Renamed from m68*-apollo*.
8707 Use bsd4-3. Don't set NON_GNU_CPP.
8708
8709 * make-dist: Don't copy in src/s/*.inp. Don't copy nt/src.
8710 In nt, copy various different things, but not *.cmd.
8711 Fix the ln commands for the subdirs of nt.
8712
8713 1995-04-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8714
8715 * configure.in (*-sun-sunos4.1.3*): Use sunos4shr.h.
8716
8717 1995-04-27 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8718
8719 * configure.in (*-sun-sunos4.1.3*): Use shared libraries,
8720 since that's what the header file expects.
8721
8722 1995-04-24 Francesco Potortì (pot@cnuce.cnr.it)
8723
8724 * configure.in (m68k-motorola-sysv*): Distinguish between 68030
8725 and 68040 based machines when choosing options for gnucc.
8726
8727 1995-04-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8728
8729 * Makefile.in (top_distclean): Delete config.cache.
8730
8731 1995-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8732
8733 * Makefile.in (install-arch-indep): Delete .#* when copying subdirs.
8734
8735 * configure.in: Use m/ncr386.h.
8736
8737 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8738
8739 * Makefile.in (install-arch-indep): Undo Sep 23 change.
8740
8741 1995-04-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8742
8743 * make-dist (lib-src): Don't copy *.lex; it doesn't exist anymore.
8744 (man): Don't copy texindex.c and getopt.c; they're deleted.
8745 (etc): Omit `e'; it's a subdirectory.
8746 (etc/e): Use `../..', not `..', to reference top level.
8747
8748 1995-04-06 Simon Leinen <simon@lia.di.epfl.ch>
8749
8750 * Makefile.in (install-arch-indep, dist):
8751 Look for `update-subdir' in $(srcdir).
8752
8753 1995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8754
8755 * make-dist: Include mkinstalldirs in distribution.
8756
8757 1995-04-05 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8758
8759 * make-dist: Add missing close backquote.
8760
8761 1995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8762
8763 * make-dist: Don't distribute shortnames directory.
8764
8765 1995-03-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8766
8767 * Makefile.in (blessmail): Pass archlibdir to the sub-make.
8768
8769 1995-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8770
8771 * configure.in (m88k-motorola-sysv4*): Use usg5-4-2.
8772
8773 1995-02-23 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8774
8775 * configure.in (EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
8776
8777 1995-02-13 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8778
8779 * configure.in (mips-sgi-irix6): New configuration.
8780
8781 1995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8782
8783 * Makefile.in (maintainer-clean): Renamed from realclean.
8784
8785 1995-02-02 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8786
8787 * configure.in: Create a .gdbinit that sources the real one,
8788 if using a different build directory.
8789
8790 1995-01-23 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8791
8792 * configure.in: Check for sys/select.h.
8793
8794 1995-01-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8795
8796 * configure.in: On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
8797
8798 1994-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8799
8800 * configure.in: Handle isc 4.1 operating system.
8801
8802 1994-12-10 Richard Stallman <rms@kepa>
8803
8804 * configure.in (rs6000-ibm-aix4.1*): New alternative.
8805 (rs6000-ibm-aix4*): New alternative.
8806
8807 1994-12-06 Richard Stallman <rms@kepa>
8808
8809 * configure.in: For SVR4.2, set NON_GNU_CPP if not already set.
8810
8811 1994-11-30 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8812
8813 * configure.in: Don't try to make directories that are guaranteed
8814 to already exist.
8815
8816 1994-11-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8817
8818 * configure.in: Generate man/Makefile from man/Makefile.in.
8819 Create the man subdir.
8820
8821 * Makefile.in (dvi): Run Make in our man subdir.
8822
8823 * make-dist: Create subdir etc/e.
8824 Make links to it.
8825 Put man/Makefile.in in dist, instead of man/Makefile.
8826
8827 1994-11-21 David J. MacKenzie (djm@mole.gnu.ai.mit.edu)
8828
8829 * configure.in: Add --with-pop, --with-kerberos, and
8830 --with-hesiod for movemail.
8831
8832 1994-11-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8833
8834 * configure.in (m68*-apollo*): Use s/domain.h.
8835
8836 1994-11-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8837
8838 * configure.in (m68*-apollo*): Set NON_GNU_CPP.
8839
8840 1994-11-14 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8841
8842 * configure.in: Don't add -I, -L, -R options for cc if their
8843 arguments would be empty.
8844
8845 1994-11-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8846
8847 * configure.in (i860-intel-osf1*): New alternative.
8848 (mips-sgi-irix5.[01]*): Distinguish from irix5*.
8849 (mips-sgi-irix*): Now an alias for mips-sgi-irix5*.
8850
8851 1994-11-09 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8852
8853 * configure.in: Make h_errno check not use nested functions.
8854
8855 1994-11-09 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8856
8857 * Makefile.in (install-arch-indep): Delete *.orig in copied dirs.
8858
8859 1994-11-08 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
8860
8861 * Makefile.in (install-arch-indep): Avoid continued comment
8862 swallowing target line.
8863
8864 1994-11-08 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
8865
8866 * configure.in: Protect a character class with `changequote'.
8867
8868 1994-11-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8869
8870 * configure.in: Accept `news' as a synonym for `newsos'.
8871
8872 1994-11-03 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8873
8874 * Makefile.in: Don't rm files if cd fails.
8875
8876 1994-11-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8877
8878 * make-dist: Put nt subdir and its subdirs in the dist.
8879 (lib-src): Put makefile.nt in the dist.
8880 (lisp): Put makefile.nt in the dist.
8881
8882 1994-10-29 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8883
8884 * configure.in: Change a stray `[' to `test'.
8885
8886 1994-10-28 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8887
8888 * configure.in: Adapt for Autoconf v2. Use the standard argument
8889 parser, host type canonicalizer, X11 finder, and message
8890 printing macros. Use the new macro names. Use `test' instead of `['.
8891
8892 1994-10-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8893
8894 * configure.in: Check for getpagesize.
8895
8896 1994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8897
8898 * make-dist (msdos): Put sed* in the distribution.
8899
8900 1994-10-17 Morten Welinder <terra@mole.gnu.ai.mit.edu>
8901
8902 * config.bat: New option, `--with-x', for configuring Emacs
8903 for use with the X11 system DesqView/X.
8904 New option, `--no-debug', for compiling Emacs without debug
8905 information thus saving disk space.
8906 (src/config.h, src/paths.h): Use `update' (which is like
8907 `move-if-changed') to change the file.
8908 (src/config.h): When configuring for X11 perform extra changes.
8909 (src/makefile): When configuring for X11 perform extra changes.
8910 (lib-src): Remove temporary files.
8911 (): Check that `sed', `rm', `mv', and `gcc' are available.
8912
8913 1994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8914
8915 * Makefile.in (sharedstatedir): Substitute sharedstatedir properly.
8916
8917 * configure.in (bitmapdirs): Default to /usr/include/X11/bitmaps.
8918
8919 1994-10-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8920
8921 * configure.in (EMACS_CONFIGURATION): Use $canonical as value.
8922
8923 * configure.in (canonical): Substitute var into makefiles.
8924 (bitmapdir): Likewise.
8925
8926 * Makefile.in (bitmapdir): New variable.
8927 (src/paths.h, paths-force): Edit PATH_BITMAPS.
8928
8929 1994-10-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8930
8931 * make-dist: Put update-subdirs and lisp/subdirs.el in the dist.
8932
8933 * Makefile.in (dist, install-arch-indep): Run update-subdirs.
8934 * update-subdirs: New shell script.
8935
8936 1994-10-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8937
8938 * Makefile.in (top_distclean): Don't rm build-install.
8939 (SOURCES): Delete build-install.in.
8940
8941 * make-dist: Don't distribute build-ins.in.
8942 * build-ins.in: File deleted.
8943
8944 1994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
8945
8946 * Makefile.in (mkdir): Use mkinstalldirs instead of make-path.
8947
8948 1994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8949
8950 * Makefile.in: Use libexecdir and sharedstatedir as appropriate.
8951
8952 * configure.in (libexecdir): Renamed from libdir. New default.
8953 (sharedstatedir): Renamed from statedir. New default.
8954 (datadir): New default.
8955
8956 * make-dist: Don't distribute subdirs.el.
8957
8958 1994-10-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8959
8960 * configure.in (eaccess): Check for it.
8961
8962 1994-10-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8963
8964 * configure.in (mktime): Check for it.
8965
8966 1994-10-02 Paul Reilly <pmr@geech.gnu.ai.mit.edu>
8967
8968 * configure.in (motif): Add support for usage and option checking.
8969
8970 1994-09-24 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
8971
8972 * configure.in (utimes): Check for it.
8973
8974 1994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
8975
8976 * Makefile.in (install-arch-indep): Don't do mkdir here.
8977
8978 1994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8979
8980 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8981 riscix.h renamed to acorn.h.
8982
8983 1994-09-21 Michael Ben-Gershon (mybg@cs.huji.ac.il)
8984
8985 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8986 New configurations.
8987
8988 1994-09-21 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8989
8990 * configure.in: Remove trailing slashes from srcdir.
8991
8992 1994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8993
8994 * configure.in (i[345]86-sequent-ptx*): Handle.
8995
8996 1994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8997
8998 * Makefile.in (paths-force): Depend on src/paths.h.
8999
9000 1994-09-19 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9001
9002 * configure.in (config_options): Save all arguments, not just some.
9003
9004 1994-09-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
9005
9006 * Makefile.in (install-arch-indep): Copy DOC-*, not DOC*.
9007
9008 * configure.in: Add AC_AIX.
9009 Add checks to set HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL, HAVE_SELECT.
9010
9011 1994-09-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9012
9013 * configure.in (parsing options): Simplify sed command to delete -'s.
9014
9015 1994-09-16 Karl Heuer <kwzh@churchy.gnu.ai.mit.edu>
9016
9017 * configure.in (config_options): New shell variable.
9018 Pass its value to C code in EMACS_CONFIG_OPTIONS.
9019
9020 1994-09-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9021
9022 * configure.in (alpha-dec-osf*): New target.
9023
9024 * Makefile.in: Use just one FRC target.
9025
9026 1994-09-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9027
9028 * Makefile.in (removenullpaths, paths-force):
9029 Use name paths.h.tmp$$, which depends on the pid.
9030
9031 1994-09-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9032
9033 * Makefile.in (removenullpaths, paths-force):
9034 Put paths.h.tmp in top-level dir, not in src.
9035
9036 1994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9037
9038 * Version 19.27 released.
9039
9040 1994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9041
9042 * Version 19.26 released.
9043
9044 1994-09-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9045
9046 * configure.in: Check for lrand48, not rand48.
9047
9048 1994-09-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9049
9050 * configure.in (powerpc-ibm-aix3.1*, powerpc-ibm-aix3.2.5)
9051 (powerpc-ibm-aix*): New aliases.
9052
9053 1994-08-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9054
9055 * make-dist (src/m, src/s): Put *.inp in distribution.
9056
9057 1994-08-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9058
9059 * configure.in: Accept i586 and i486 along with i386.
9060
9061 1994-08-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9062
9063 * configure.in: Do compute unexec, LIBX, system_malloc, etc
9064 even if CPP env var was set by the user.
9065
9066 * configure.in (i[34]86-*-*): For SCO 3.2v4, fix NON_GNU_CPP value.
9067
9068 1994-08-14 Jonathan I. Kamens (jik@gza-client1.aktis.com)
9069
9070 * Makefile.in: Uninstall "$(EMACS)", not "emacs".
9071
9072 1994-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9073
9074 * configure.in (i[34]86-*-*): For SCO 3.2v4, set NON_GNU_CPP.
9075
9076 1994-08-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9077
9078 * configure.in: Check more specifically for i*86-sun-sunos.
9079
9080 1994-08-03 Caveh Jalali (caveh@eng.sun.com)
9081
9082 * configure.in: Handle solaris 2.4.
9083
9084 1994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9085
9086 * configure.in (rand48): Check for it.
9087
9088 1994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9089
9090 * make-dist: Update the info files.
9091
9092 1994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9093
9094 * configure.in: Make "checking..." messages' style consistent.
9095 (HAVE_H_ERRNO): New test.
9096
9097 1994-07-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9098
9099 * configure.in (i860-*-sysv4*): Set NON_GNU_CC and NON_GNU_CPP.
9100
9101 1994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9102
9103 * configure.in (CFLAGS): If the envvar was specified, use that.
9104 And set REAL_CFLAGS from it too.
9105
9106 1994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9107
9108 * make-dist: Update finder-inf.el.
9109
9110 1994-07-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9111
9112 * make-dist (msdos): Include sed4.inp in dist.
9113
9114 * Makefile.in (libsrc_libs): Var deleted.
9115
9116 1994-07-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9117
9118 * Makefile.in (mkdir, removenullpaths): Put g in sed replace commands.
9119
9120 1994-06-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9121
9122 * configure.in (mips-sony-newsos4*): New alias.
9123
9124 1994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9125
9126 * configure.in (*-convex-bsd*): Set NON_GNU_CPP.
9127 (*-convex-convexos*): Accept this as alias.
9128
9129 1994-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9130
9131 * configure.in: Get CFLAGS both with and without THIS_IS_CONFIGURE,
9132 for two different uses.
9133
9134 1994-06-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9135
9136 * configure.in: Define THIS_IS_CONFIGURE when extracting CFLAGS etc.
9137
9138 1994-06-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9139
9140 * make-dist: Put ./BUGS into the distrib.
9141
9142 1994-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9143
9144 * configure.in: Handle 386 running Solaris 2.
9145
9146 1994-06-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9147
9148 * configure.in (mips-siemens-sysv*): Use cpp, not cc -E.
9149
9150 1994-06-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9151
9152 * configure.in (mips-sony-newsos*): Use news-risc.h.
9153
9154 * configure.in: Accept bsdi as opsys, like bsd386.
9155
9156 1994-06-01 Morten Welinder (terra@diku.dk)
9157
9158 * config.bat (src/paths.h): Use sed script msdos/sed4.inp.
9159
9160 1994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9161
9162 * Version 19.25 released.
9163
9164 * make-dist (shortversion): Don't assume another period follows.
9165
9166 1994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9167
9168 * Makefile.in (install-arch-indep): Use /bin/pwd uniformly, not pwd.
9169 (uninstall): Use /bin/pwd.
9170
9171 * Makefile.in (blessmail): Depend on src.
9172 (all): Don't depend on blessmail.
9173
9174 * Makefile.in (src/paths.h): Don't force recomputation.
9175 (paths-force): New target; force recomputation of paths.h.
9176 (all): Depend on paths-force.
9177 (src, lib-src): Depend on src/paths.h.
9178
9179 * configure.in (*-sun-sunos4*): Set GCC_TEST_OPTIONS,
9180 NON_GCC_TEST_OPTIONS.
9181
9182 1994-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9183
9184 * configure.in: Don't insist on subversions for irix.
9185
9186 1994-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9187
9188 * configure.in (hppa*-hp-hpux9shr): Move alternative up.
9189
9190 * configure.in (i[34]86-next-*): New alternative.
9191
9192 1994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9193
9194 * Version 19.24 released.
9195
9196 * configure.in: New config hppa*-hp-hpux9shr*.
9197
9198 1994-05-22 Morten Welinder (terra@tyr.diku.dk)
9199
9200 * config.bat: Doc fix.
9201
9202 1994-05-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9203
9204 * Makefile.in (mostlyclean, clean, distclean, realclean)
9205 (extraclean): Don't act on man subdir if it doesn't exist.
9206
9207 1994-05-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9208
9209 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS): New vars.
9210 Use them to set up CC.
9211 (*-sun-sunos4.1.3): Set them.
9212
9213 1994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9214
9215 * Makefile.in (lib-src): Don't depend on src/paths.h.
9216
9217 1994-05-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9218
9219 * build-ins.in (copydests): Get rid of spurious `-'s.
9220
9221 * configure.in: Define EMACS_CONFIGURATION instead of CONFIGURATION.
9222
9223 1994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9224
9225 * Version 19.23 released.
9226
9227 * configure.in [HAVE_X11]: Merge $C_SWITCH_X_SITE into CFLAGS
9228 for the Xlib and Xt checks; then restore old CFLAGS.
9229
9230 1994-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9231
9232 * configure.in (HAVE_X11XTR6): Add newline before #if.
9233 Add newline after #endif.
9234
9235 1994-05-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9236
9237 * configure.in (HAVE_X11XTR6): Arrange to define it.
9238
9239 1994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9240
9241 * Makefile.in (install): Depend on blessmail.
9242
9243 1994-05-12 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
9244
9245 * configure.in (mips-siemens-sysv*): Put quotes around value
9246 containing blanks.
9247
9248 1994-05-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9249
9250 * Makefile.in (TAGS): Use the makefile in src subdir.
9251
9252 1994-05-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9253
9254 * configure.in (opsys): Recognize `gnu'.
9255
9256 1994-05-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9257
9258 * configure.in (using NON_GNU_CPP): Fix test for CPP already set.
9259
9260 1994-05-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
9261
9262 * configure.in: Remove AC_LANG_C call. Not needed with Autoconf
9263 version > 1.8.
9264
9265 1994-05-08 Morten Welinder (terra@diku.dk)
9266
9267 * config.bat: Forcibly remove "# " style comments from makefiles.
9268
9269 1994-05-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9270
9271 * Makefile.in (uninstall): When processing lispdir and etcdir,
9272 do nothing unless it exists and is a directory.
9273
9274 1994-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9275
9276 * Makefile.in (install-arch-indep): Do install info/dired-x*.
9277 Merge code in from install-doc.
9278 (install-doc): Merge code back into install-arch-indep.
9279 (install-arch-dep): Don't depend on install-doc.
9280
9281 * configure.in (run_in_place): Don't use pwd for archlibdir and docdir.
9282
9283 1994-05-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9284
9285 * configure.in (making src/Makefile and lib-src/Makefile):
9286 Split off the autoconf substitutions and don't pass them thru cpp.
9287 (undefs): Use $canonical as well as $configuration.
9288
9289 * make-dist: Distribute lisp/Makefile.
9290
9291 * configure.in: Recognize m88k-dg-dgux5.4.3* and m88k-dg-dgux5.4.2*.
9292 Use lower case names for the s files.
9293
9294 1994-05-03 Morten Welinder (terra@diku.dk)
9295
9296 * config.bat: Added possibility for different file name
9297 transcriptions in lib-src.
9298
9299 1994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9300
9301 * Makefile.in (lib-src): Undo previous change.
9302 (blessmail): New target to run maybe-blessmail in lib-src.
9303 (all): Depend on blessmail.
9304
9305 * Makefile.in (lib-src): Depend on src.
9306
9307 1994-04-30 Paul Reilly (pmr@churchy.gnu.ai.mit.edu)
9308
9309 * configure.in (m88k-dg-dgux5.4R3): Use dgux5-4R3.
9310 (m88k-dg-dgux5.4R2): dgux5.4R2.
9311
9312 1994-04-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9313
9314 * configure.in (window_system): Restore accidentally deleted code
9315 that uses AC_FIND_X.
9316
9317 * make-dist: Distribute config.bat.
9318
9319 1994-04-29 Morten Welinder (terra@diku.dk)
9320
9321 * config.bat: Corrected the configuration of lib-src
9322 to keep up with configure. Add note about dos version 3
9323 or better needed (djgpp needs that). Add note explaining
9324 that either install in c:/emacs or edit the script.
9325 Don't change to c:/emacs, but assume we're there (to minimize
9326 the number of places to change).
9327
9328 * config.bat: Build-in the first step towards X11 support with
9329 the X11 emulator that exists. At this time it won't work,
9330 and several files are missing.
9331
9332 1994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9333
9334 * configure.in: Use m/hp800.h in place of m/hp9000s800.h.
9335 Don't look for -lresolv.
9336
9337 * Makefile.in (lib-src): Depend on src/paths.h.
9338
9339 1994-04-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9340
9341 * configure.in: Restore deleted AC_SUBST of `configuration'.
9342 Improve error message for bad --with-x-toolkit value.
9343
9344 * configure.in: Define CONFIGURATION in src/config.h
9345 rather than substituting in src/Makefile.in.
9346
9347 1994-04-26 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9348
9349 * Makefile.in (install-doc): New target.
9350 (install-arch-dep): Depend on install-doc.
9351 (mkdir): Create docdir.
9352
9353 1994-04-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9354
9355 * configure.in: Test for libresolv.a.
9356 Substitute machfile and opsysfile.
9357
9358 1994-04-22 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9359
9360 * Makefile.in (.PHONY, install): Kill reference to obsolete do-install.
9361 (install-arch-dep): Install under the name $(EMACS).
9362
9363 1994-04-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9364
9365 * configure.in (version): Use entire value of emacs-version.
9366 (mips-siemens-sysv*): New alternative.
9367
9368 1994-04-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9369
9370 * Makefile.in (install-arch-indep): Don't install dired-x*.
9371
9372 1994-04-18 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9373
9374 * configure.in (src/Makefile, lib-src/Makefile): Delete ^L.
9375 Fix definition of $undefs.
9376
9377 1994-04-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9378
9379 * configure.in (window_system): Obey --with-x11=no and --with-x10=no.
9380
9381 * configure.in (lib-src/Makefile.in): Use src, not lib-src, in -I.
9382
9383 1994-04-16 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
9384
9385 * configure.in: Call AC_LANG_C, if it's defined, after AC_PREPARE.
9386
9387 1994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9388
9389 * configure.in (lib-src/Makefile.in): Make this from Makefile.in.in
9390 and run it thru cpp, as with src/Makefile.in.
9391
9392 * configure.in: Use AC_SET_MAKE.
9393
9394 1994-04-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9395
9396 * configure.in (i[34]86-ncr-sysv*): Use usg5-4-2.
9397
9398 1994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9399
9400 * Makefile.in (MAKE): Don't just assign it--use @SET_MAKE@.
9401
9402 * configure.in (CFLAGS): Exclude ${CFLAGS} from singlequotes.
9403 (printing the choices): Make the toolkit message unconditional.
9404 (USE_X_TOOLKIT): Use `none', not `no', if none.
9405 (include libsrc_libs): Include config.h, and specify -I for srcdir.
9406 Get rid of temp file foofoo1.
9407
9408 1994-04-13 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9409
9410 * configure.in (CFLAGS): Use shell syntax, not Makefile.
9411
9412 1994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9413
9414 * configure.in (window_system): If no X, set USE_X_TOOLKIT=no.
9415 (printing the choices): State choice of toolkit.
9416 (libsrc_libs): Recalculate after writing config.h;
9417 then update lib-src/Makefile.
9418
9419 1994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9420
9421 * configure.in: Add sunos4shr as alternative for suns.
9422 Conditionals testing for null $CC were backwards.
9423
9424 1994-04-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9425
9426 * make-dist (msdos): Don't link patch1. Link sed*.inp, not sed.in*.
9427
9428 1994-04-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9429
9430 * configure.in: Handle -isc4.0*.
9431
9432 1994-03-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9433
9434 * configure.in (esix5): Set NON_GNU_CPP.
9435
9436 1994-03-24 Roland McGrath (roland@mole.gnu.ai.mit.edu)
9437
9438 * Makefile.in (thisdir): Nonsensical variable removed.
9439 (install-arch-indep): Set shell var thisdir=`pwd` before cd and cd
9440 back to $thisdir, rather than the directory `this_dir'.
9441
9442 1994-03-17 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9443
9444 * Makefile.in (install-arch-indep): Add missing backslash after a
9445 `then'.
9446
9447 1994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9448
9449 * Makefile.in (thisdir): New variable.
9450 (install-arch-indep): Go back to thisdir to run INSTALL_DATA.
9451
9452 1994-03-08 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9453
9454 * configure.in: Add freebsd.
9455
9456 1994-03-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9457
9458 * configure.in: Check for fpathconf.
9459
9460 1994-03-02 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9461
9462 * configure.in (with_x_toolkit): Fix typo in previous change.
9463
9464 1994-03-01 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9465
9466 * configure.in: New s-file for rs60000-ibm-aix3.2.5.
9467
9468 1994-02-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9469
9470 * configure.in (with_x_toolkit): Don't allow motif or open-look.
9471
9472 1994-02-24 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
9473
9474 * configure.in: Fix value of docdir.
9475 * Makefile.in (install-arch-indep): Install DOC* in docdir.
9476
9477 1994-02-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9478
9479 * configure.in (*-sysv4.1): Set NON_GNU_CPP.
9480
9481 1994-02-22 Karl Heuer (kwzh@geech.gnu.ai.mit.edu)
9482
9483 * configure.in: New variable docdir to control where the docstring
9484 file goes.
9485 Makefile.in: Use it to initialize PATH_DOC in paths.h.
9486
9487 1994-02-22 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9488
9489 * configure.in: When --run-in-place, don't inherit archlibdir.
9490
9491 1994-02-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9492
9493 * Makefile.in (install-arch-dep, install-arch-indep):
9494 New targets split up former do-install rule.
9495 (do-install): Target deleted.
9496
9497 1994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9498
9499 * configure.in (mips-sony-newsos*): New configuration.
9500
9501 1994-02-14 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
9502
9503 * configure.in (rs6000-bull-bosx*): Added support for BULL dpx20.
9504
9505 1994-02-11 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9506
9507 * configure.in: Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
9508
9509 1994-02-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9510
9511 * configure.in: Don't initialize CC.
9512
9513 1994-02-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9514
9515 * configure.in (creating src/Makefile): Also generate -U switches
9516 for symbols in the $configuration value.
9517
9518 * configure.in: Check for sys_siglist being declared in system header.
9519
9520 1994-02-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9521
9522 * configure.in (creating src/Makefile): Delete blank lines
9523 along with lines of whitespace.
9524 (m68k-motorola-sysv*, m68000-motorola-sysv*): Compute proper CC value.
9525
9526 1994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9527
9528 * configure.in: Get, use, and substitute C_SWITCH_MACHINE
9529 like C_SWITCH_SYSTEM.
9530 (m68*-motorola-sysv*): Set CC. Require cpu type to be m68k or m68000.
9531
9532 1994-02-04 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9533
9534 * configure.in (drem): Check for this function.
9535
9536 1994-02-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9537
9538 * configure.in (Using NON_GNU_CPP): Don't lose if it has spaces.
9539 If CPP was inherited from environment, don't use NON_GNU_CPP.
9540 (NON_GNU_CC): Likewise.
9541 (handling with_gcc): Use explicit if in the `no' case.
9542 (cc_specified): New variable; if set, don't use NON_GNU_CC.
9543
9544 1994-02-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9545
9546 * configure.in (mips-mips-riscos4*): Set NON_GNU_CPP.
9547
9548 1994-02-01 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
9549
9550 * configure.in: Check whether fmod exists.
9551
9552 1994-01-31 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9553
9554 * make-dist: Distribute {src,lisp}/ChangeLog.? instead of
9555 {src,lisp}/OChangeLog.
9556
9557 1994-01-22 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9558
9559 * configure.in: Restore Jan 8 and Jan 16 changes. The -U hack is
9560 necessary for proper operation. This code works with the current
9561 released version of Autoconf.
9562
9563 1994-01-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9564
9565 * configure.in (with_x_toolkit): Treat values athena and lucid alike.
9566 (USE_X_TOOLKIT): Define it for all values except `no'.
9567
9568 * configure.in: Undo first Jan 8 change and Jan 16 change.
9569
9570 1994-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9571
9572 * configure.in: Handle --with-x-toolkit. Produce lwlib/Makefile.
9573 Substitute USE_X_TOOLKIT as both C macro and Make variable.
9574
9575 * Makefile.in (lwlib/Makefile): New target.
9576 (SUBDIR_MAKEFILES): Depend on lwlib/Makefile.
9577 (clean, mostlyclean, distclean, realclean): Handle lwlib subdir.
9578 (unlock, relock): Handle lwlib subdir.
9579
9580 * Makefile.in: Add some .PHONY targets.
9581
9582 * make-dist: Handle lwlib subdir like oldXMenu subdir.
9583
9584 * lwlib: New subdirectory.
9585
9586 1994-01-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9587
9588 * configure.in: If CPP has a value that is a directory,
9589 discard the value.
9590
9591 1994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9592
9593 * configure.in (srcdir_undefs): Add g flag to sed substitution to
9594 remove -U[0-9]*.
9595
9596 1994-01-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9597
9598 * Makefile.in (do-install): Install the dired-x info files.
9599
9600 * configure.in: Provide for variable LD_SWITCH_X_SITE_AUX.
9601 (See src/s/sol2.h.)
9602
9603 1994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9604
9605 * configure.in (m68k-harris-cxux*, m88k-harris-cxux*): New configs.
9606
9607 1994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9608
9609 * configure.in (creating src/Makefile): Put code inside 2nd arg to
9610 AC_OUTPUT as it should be; hopefully no one will again see fit to
9611 gratuitously break this and not make a change log entry.
9612 Optimized sed processing of Makefile.in and cpp output; now
9613 preserves comments previously removed from the cpp input.
9614 Eliminated temp file for cpp output. Generate -U switches to
9615 undefine all identifiers that appear in the directory name
9616 ${srcdir}; pass these to cpp.
9617
9618 * configure.in (version): Fix sed regexp to match two-elt version
9619 number.
9620
9621 * configure.in: Check for strerror.
9622
9623 1994-01-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9624
9625 * configure.in: Test for bcmp.
9626
9627 1994-01-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9628
9629 * make-dist (tempdir): Put subdir msdos into the distribution.
9630
9631 1993-01-07 Morten Welinder (terra@diku.dk)
9632
9633 * config.bat: New file.
9634
9635 1994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9636
9637 * Makefile.in (${SUBDIR} target): Pass down LDFLAGS and CPPFLAGS.
9638
9639 1994-01-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9640
9641 * configure.in (m68*-next-*): Don't care about which os is specified.
9642 (i[34]86-*-*): Check for *-nextstop*.
9643
9644 1993-12-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9645
9646 * configure.in: Check for setsid.
9647
9648 1993-12-17 Richard Stallman (rms@srarc2)
9649
9650 * configure.in (*-sun-solaris*): Add special case for Solaris 2.3.
9651
9652 1993-12-15 Richard Stallman (rms@srarc2)
9653
9654 * Makefile.in (mkdir): Make only the lockdir writable.
9655
9656 * configure.in (i860-*-sysv4): Renamed from i860-*-sysvr4.
9657
9658 1993-12-11 Richard Stallman (rms@srarc2)
9659
9660 * Makefile.in (libdir): Use @libdir@.
9661
9662 1993-12-08 Richard Stallman (rms@srarc2)
9663
9664 * Makefile.in (install): Add empty command.
9665
9666 1993-12-04 Richard Stallman (rms@srarc2)
9667
9668 * make-dist: Put man/getopt.c in the dist.
9669
9670 * configure.in (LIBS): Add test for existence of XSetWMProtocols.
9671
9672 * Makefile.in (install): Depend on ${SUBDIR}, not `all'.
9673
9674 1993-12-03 Richard Stallman (rms@srarc2)
9675
9676 * configure.in (solaris): Set NON_GNU_CPP instead of CPP.
9677 Set it for all solaris versions.
9678 (mips-mips-riscos4*): Set NON_GNU_CC, not CC.
9679 (after checking for GCC): If not GCC, and NON_GNU_CPP is set, set CPP.
9680 Likewise for NON_GNU_CC and CC.
9681
9682 1993-12-01 Richard Stallman (rms@srarc2)
9683
9684 * configure.in (mips-mips-riscos4*): Assign variable CC.
9685 (checking ${with_gcc}): If "no", don't override CC if already set.
9686 (CC): Initialize it as empty.
9687
9688 1993-11-30 Richard Stallman (rms@srarc2)
9689
9690 * configure.in (Suns): Set CPP if *-solaris2.3*.
9691
9692 1993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9693
9694 * Version 19.22 released.
9695
9696 * Makefile.in (do-install): Use umask 022 in copying etc and lisp dirs.
9697
9698 1993-11-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9699
9700 * make-dist: When breaking links, use cp -p.
9701 Copy install.sh into distribution.
9702 Move the temp dir up into the parent dir;
9703 don't leave the staging dir make-dist.tmp... in existence.
9704 * install.sh: New file.
9705
9706 1993-11-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9707
9708 * configure.in (i[34]86-ncr-sysv*): New specific alternative.
9709
9710 1993-11-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9711
9712 * configure.in (version): When --run-in-place, exclude
9713 ${datadir}/emacs/site-lisp from locallisppath.
9714
9715 1993-11-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9716
9717 * configure.in: Delete jumk.c before writing it.
9718
9719 1993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9720
9721 * Version 19.21 released.
9722
9723 * Makefile.in (mkdir): Ignore error from chmod.
9724
9725 1993-11-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9726
9727 * make-dist: Don't put lisp/forms.README in the distribution.
9728
9729 1993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9730
9731 * configure.in (creating src/Makefile): Before running cpp,
9732 discard all lines that start with `# Generated' or /**/#.
9733
9734 1993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9735
9736 * Version 19.20 released.
9737
9738 * make-dist: Use build-ins.in, not build-install.in.
9739 Don't bother updating TAGS since it's not included.
9740
9741 * build-ins.in: Renamed from build-install.in.
9742
9743 1993-11-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9744
9745 * make-dist: Don't try to link *.texinfo--there are none now.
9746 When running make in lib-src, specify YACC var value.
9747
9748 1993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9749
9750 * configure.in (extrasub): Add vpath patterns for %.[yls].
9751
9752 * configure.in: Don't do seddery on config.status after AC_OUTPUT.
9753 Instead just include the commands to make src/Makefile as the
9754 second arg to AC_OUTPUT.
9755
9756 * configure.in: Use : instead of dnl for comment inside
9757 $makefile_command.
9758
9759 * configure.in: No longer use vpath_sed. Instead, when we notice
9760 srcdir already configured, set extrasub to hack vpath in the
9761 makefiles.
9762
9763 * configure.in: In cmds to make src/Makefile, chmod Makefile.new
9764 before moving it.
9765 * Makefile.in (VPATH): Define to @srcdir@.
9766
9767 1993-09-28 Brian J. Fox (bfox@cubit)
9768
9769 * configure.in: Don't copy ${srcdir}/src/Makefile.in; that file
9770 doesn't exist. Just copy src/Makefile.in instead. Touch
9771 all of the Makefiles after editing config.status.
9772
9773 * INSTALL: Update documentation to match new configuration
9774 mechanism.
9775
9776 1993-09-27 Brian J. Fox (bfox@ai.mit.edu)
9777
9778 * configure.in: Allow any of the path or directory Makefile
9779 variables to be set with flags to configure. Create all Makefiles
9780 at configure time. Edit special commands into config.status after
9781 src/Makefile.in is built from src/Makefile.
9782
9783 * Makefile.in (src/Makefile, lib-src/Makefile, oldXMenu/Makefile):
9784 If these files are out of date, simply have config.status
9785 rebuild them; don't rebuild them explicitly.
9786
9787 1993-09-25 Brian J. Fox (bfox@ai.mit.edu)
9788
9789 * build-install.in: Change src/xemacs to src/emacs. We no longer
9790 create src/xemacs, so the file wouldn't be found.
9791
9792 * make-dist: Remove `src/ymakefile', add `src/Makefile.in.in'.
9793
9794 1993-09-24 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
9795
9796 * configure.in: Avoid forcing the search of /usr/include before
9797 fixed include files by resetting C_SWITCH_X_SITE if it is
9798 "-I/usr/include".
9799
9800 1993-09-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9801
9802 * Makefile.in (@rip_paths@locallisppath):
9803 Delete ${datadir}/emacs/site-lisp.
9804
9805 1993-09-15 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9806
9807 * configure.in:
9808 Use AC_QUOTE_SQUOTE twice to properly quote vpath_sed value.
9809 Remove ${extra_output} from AC_OUTPUT call.
9810
9811 1993-09-17 Brian J. Fox (bfox@inferno)
9812
9813 * make-dist: Quote backquotes found in strings to be echoed.
9814
9815 * configure.in: Use "sh -c pwd" when we want to avoid having the
9816 shell fix up the value of $PWD.
9817
9818 1993-09-13 Brian J. Fox (bfox@inferno)
9819
9820 * Makefile.in (do-install): Don't abort if ln or chmod at the end
9821 of the installation fail. Suggested by Karl Berry.
9822
9823 1993-08-30 Brian J. Fox (bfox@inferno)
9824
9825 * Makefile.in (*clean): Use "$(MAKE) $(MAKEFLAGS)" wherever "make"
9826 was used. Set MAKEFLAGS from MFLAGS.
9827
9828 1993-09-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9829
9830 * configure.in: Test for res_init in libc.
9831
9832 1993-09-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9833
9834 * configure.in: In the file ${tempcname}, use configure___
9835 instead of @configure@.
9836
9837 1993-09-12 Roland McGrath (roland@sugar-bombs.gnu.ai.mit.edu)
9838
9839 * make-dist: Dist vpath.sed.
9840
9841 * Makefile.in (lib-src/Makefile, src/Makefile, oldXMenu/Makefile):
9842 Depend on vpath.sed.
9843 Replace sed command for VPATH with @vpath_sed@.
9844
9845 * configure.in: Substitute variable `vpath_sed'.
9846 If not in $srcdir and $srcdir is configured,
9847 issue warning that GNU make is required,
9848 and set vpath_sed to use vpath.sed script.
9849
9850 1993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9851
9852 * configure.in: Remove check for $srcdir being configured. This
9853 pretty much works now.
9854 Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
9855 Check for XFree86 (/usr/X386/include) independent of whether
9856 -lXbsd exists.
9857
9858 * Makefile.in (info, dvi, clean, mostlyclean, distclean,
9859 realclean, unlock, relock): Use `$(MAKE)' in place of plain
9860 `make'.
9861
9862 1993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9863
9864 * Version 19.19 released.
9865
9866 * configure.in (i386-*-sunos4): Assume Sunos 4.0.
9867
9868 1993-08-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9869
9870 * configure.in: Check for XScreenNumberOfScreen.
9871
9872 1993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9873
9874 * configure.in: Add * to end of all configuration alternatives.
9875 (m68*-sony-newsos3*): New alternative.
9876
9877 1993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9878
9879 * make-dist: Include getdate.c in distribution.
9880
9881 * configure.in: For --help, use $PAGER if it is set.
9882 (LIB_X11_LIB): Default to -lX11.
9883 (mips-sgi-irix5.*): New alternative.
9884
9885 * Makefile.in (do-install): Install info/gnus* and info/sc*.
9886
9887 * configure.in (m68*-hp-hpux*, hppa*-hp-hpux*):
9888 Recognize *.B8.* as hpux version 8.
9889 (m68*-tektronix-bsd*): Fix typo in tek4300.
9890 (AC_HAVE_FUNCS): Add ftime.
9891
9892 1993-08-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9893
9894 * configure.in (m88k-tektronix-sysv3*): Added the missing *.
9895 Use tekxd88, not tekXD88.
9896
9897 1993-08-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9898
9899 * configure.in: Check for -lm. Then can check for frexp and logb.
9900
9901 1993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9902
9903 * Version 19.18 released.
9904
9905 * make-dist (src): Don't put gnu-hp300 in dist.
9906 (src, lisp): Include OChangeLog in dist.
9907
9908 1993-08-08 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9909
9910 * configure.in: Test for presence of logb and frexp functions.
9911
9912 1993-08-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9913
9914 * configure.in (machine): Add i370-ibm-aix*.
9915
9916 1993-08-03 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9917
9918 * configure.in (function checks): Test for mkdir and rmdir.
9919
9920 * configure.in (function checks): Don't test for random and bcopy
9921 only when we're building with X; look for them all the time.
9922
9923 1993-07-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9924
9925 * configure.in: Test for availability of bcopy functions, searching
9926 the X libraries if we're using X.
9927
9928 * configure.in: Test for the presence of/usr/lpp/X11/bin/smt.exp,
9929 and #define HAVE_AIX_SMT_EXP if we do. This is present in some
9930 versions of AIX, and needs to be passed to the loader.
9931
9932 * configure.in: Test for the availability of the
9933 XScreenResourceString function.
9934
9935 1993-07-30 David J. MacKenzie (djm@frob.eng.umd.edu)
9936
9937 * configure.in: If we found X on our own, set C_SWITCH_X_SITE and
9938 LD_SWITCH_X_SITE and assume --with-x11.
9939 Only look for X11 files if we weren't told about a window system
9940 or if we were told to use X11 but not told where.
9941 Search the libraries from the s and/or m files when checking for
9942 functions.
9943
9944 * configure.in: Remove any trailing slashes in prefix and exec_prefix.
9945
9946 1993-07-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9947
9948 * make-dist: Include lisp/dired.todo in the distribution.
9949
9950 1993-07-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9951
9952 * configure.in: Add code to set HAVE_INET_SOCKETS.
9953
9954 1993-07-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9955
9956 * configure.in: If we do find x_includes and x_libraries
9957 via AC_FIND_X, set C_SWITCH_X_SITE and LD_SWITCH_X_SITE.
9958
9959 1993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9960
9961 * make-dist: Include src/gnu-hp300 in the dist.
9962
9963 * configure.in (canonical): New variable holds the canonicalized
9964 configuration. Don't alter `configuration'. Use `configuration'
9965 for Makefile.in for file naming.
9966 (testing x_includes and x_libraries): Use =, not ==.
9967
9968 1993-07-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9969
9970 * Version 19.17 released.
9971
9972 * Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
9973 directory's makefile. This allows the invocation of CPP which
9974 builds xmakefile to receive these switches. The SunSoft C
9975 preprocessor inserts spaces between tokens if it doesn't get the
9976 -Xs flag requested in src/s/sol2.h.
9977
9978 1993-07-12 Frederic Pierresteguy (F.Pierresteguy@frcl.bull.fr)
9979
9980 * configure.in (m68k-bull-sysv3): New config.
9981
9982 1993-07-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9983
9984 * configure.in: Use the autoconf AC_FIND_X macro to try to find
9985 the X Windows libraries.
9986
9987 1993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9988
9989 * make-dist (tempdir): Don't create lisp/forms-mode directory in
9990 the distribution. Those files aren't kept in their own
9991 subdirectory any more.
9992
9993 1993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9994
9995 * Version 19.16 released.
9996
9997 1993-06-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9998
9999 * configure.in: Add --verbose flag.
10000
10001 1993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10002
10003 * version 19.15 released.
10004
10005 1993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10006
10007 * Makefile.in (top_distclean): Use -f switch when cleaning out
10008 lock dir; it might be empty.
10009
10010 * configure.in: Only check for -lXbsd once.
10011
10012 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10013
10014 * Version 19.14 released.
10015
10016 1993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10017
10018 * make-dist: If using gzip, create distribution with '.gz' extension.
10019
10020 * make-dist (lisp/term): This doesn't have a ChangeLog anymore.
10021 (lisp/forms-mode): This doesn't exist anymore.
10022
10023 * configure.in: Look for the closedir function.
10024
10025 1993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10026
10027 * configure.in (CPP): Autoconf sets this to a shell variable
10028 reference, which doesn't work when it's edited into a makefile.
10029 Expand that variable reference.
10030
10031 * Makefile.in (CPP): New variable.
10032 (src/Makefile): Edit CPP into src/Makefile.
10033
10034 * Makefile.in (src/Makefile): Don't bother exiting single quotes
10035 and entering double quotes to get the values of LD_SWITCH_X_SITE
10036 and the other make variables; make substitutes them in anyway.
10037
10038 * Makefile.in (uninstall): Don't remove the lisp and etc
10039 directories if they're in the source tree.
10040
10041 Bring mumbleclean targets into conformance with GNU coding standards.
10042 * Makefile.in (mostlyclean, clean): Separate these two; just have
10043 them pass the request to the subdirectory makefiles.
10044 (distclean): Pass the request down, and then get rid of the
10045 files configure built, and get rid of the Makefiles.
10046 (realclean): Pass the request down, and then do the same things
10047 distclean does.
10048 (uninstall, info, dvi): New targets.
10049
10050 * configure.in: Move clause for PC-compatible i386 box to the end
10051 of the case statement, to avoid masking configurations below.
10052
10053 * configure.in: Add case for m88k-motorola-sysv4.
10054
10055 * configure.in: Add support for HP/UX versions 7, 8, and 9 on
10056 the HP 68000 machines.
10057
10058 * configure.in: Put the arguments to LD_SWITCH_X_SITE's and
10059 C_SWITCH_X_SITE's -L and -I switches in quotes, so the
10060 preprocessor won't fiddle with them.
10061
10062 1993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10063
10064 * Makefile.in (TAGS): cd to src to run etags.
10065
10066 1993-06-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10067
10068 * configure.in (version): Check the X libraries for XrmSetDatabase
10069 and random, and see if we have -lXbsd.
10070
10071 1993-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10072
10073 * configure.in: Pass "-Isrc" to the CPP we run to examine the
10074 s/*.h and m/*.h files. Martin Tomes
10075 <mt00@controls.eurotherm.co.uk> says ISC Unix 3.0.1 needs it.
10076
10077 1993-06-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10078
10079 * configure.in: Move i386-prime-sysv* and i386-sequent-bsd*
10080 above the general i386 alternative.
10081
10082 1993-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10083
10084 * configure.in: Recognize configuration name for Data General
10085 AViiON machines.
10086
10087 * configure.in: Use AC_LONG_FILE_NAMES.
10088
10089 1993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10090
10091 * configure.in: Test for bison.
10092 * Makefile.in (YACC): New variable.
10093 (lib-src/Makefile.in): Edit YACC into the makefile.
10094
10095 1993-06-08 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10096
10097 * Version 19.13 released.
10098
10099 * configure.in (CFLAGS): Don't set this according to the value of
10100 the GCC shell variable. Instead, consult the machine and system
10101 files for the values of C_OPTIMIZE_SWITCH and C_DEBUG_SWITCH, and
10102 test __GNUC__ while we're at it.
10103
10104 * configure.in: Remove extra ;; from hpux cases.
10105
10106 1993-06-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10107
10108 * configure.in: Check to see if the system has -ldnet.
10109
10110 1993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10111
10112 * make-dist: Add clauses to distribute lisp/forms-mode.
10113
10114 1993-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10115
10116 * configure.in (machine): Fix the versions in hpux version number test.
10117 Do not guess based on cpu type. Do check for explicit system version.
10118
10119 1993-06-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10120
10121 * configure.in: Do NOT look for `unknown' as company name.
10122
10123 1993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10124
10125 * configure.in: Fix typo in message.
10126
10127 1993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10128
10129 * Version 19.12 released.
10130
10131 * Makefile.in (do-install): Correct previous etc-copying change.
10132 Partially rewrite using `if'.
10133 (src/Makefile): Insert --x-libraries option into LD_SWITCH_X_SITE.
10134
10135 * Version 19.11 released.
10136
10137 * configure.in: Handle 386bsd.
10138
10139 1993-05-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10140
10141 * make-dist: Update getdate.c.
10142
10143 * configure.in: Handle bsd386.
10144
10145 * Makefile.in (do-install): Use `-' in tar options.
10146
10147 * configure.in: Change ! "${...}" to x"${...}" = x.
10148
10149 * Makefile.in (do-install): Copy the DOC-* files from the build
10150 etc directory, as well as lots of things from ${srcdir}/etc.
10151
10152 * make-dist: Copy config.guess.
10153
10154 * configure.in: Handle AIX versions 1.2, 1.3.
10155
10156 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10157
10158 * configure.in: Use s/bsd4-3.h for mips-mips-riscos4, and add
10159 the configuration name mips-mips-usg* to represent USG systems.
10160
10161 * configure.in: Fix logic to detect if srcdir is already configured.
10162
10163 * Makefile.in: Pass in LD_SWITCH_X_SITE.
10164
10165 * Makefile.in (mkdir, clean, mostlyclean, do-install): Use `(cd
10166 foo && pwd)` instead of `(cd foo ; pwd)` to get the canonical name
10167 of a directory; cd might fail, and have pwd print out the current
10168 directory.
10169
10170 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10171
10172 * configure.in: When looking for sources, use '.', not `.`. Also '..'.
10173
10174 1993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10175
10176 * configure.in: Complain if srcdir points at an already-configured
10177 tree.
10178
10179 1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10180
10181 * Version 19.10 released.
10182
10183 1993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10184
10185 * Makefile.in: Use Makefile comments, not C comments.
10186
10187 * configure.in: Add case for the Tektronix XD88.
10188
10189 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10190
10191 * configure.in: Handle sysv4.2 and sysvr4.2.
10192
10193 1993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10194
10195 * configure.in: Traverse the argument list without destroying it;
10196 don't use shift. It turns out that "set - ${saved_arguments}"
10197 doesn't work portably.
10198
10199 * configure.in: Add missing "fi".
10200
10201 * make-dist: Rebuild configure if configure.in is newer.
10202
10203 * Makefile.in (src:, lib-src:, FRC:): Force the src and lib-src
10204 targets to be executed even if make remembers that it has already
10205 satisfied FRC.
10206
10207 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10208
10209 * Makefile.in (do-install): Delete redundant code to copy etc twice.
10210
10211 * configure.in (romp): Handle various version numbers with aos and bsd.
10212
10213 1993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10214
10215 * configure.in: Fix message text.
10216
10217 1993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10218
10219 * make-dist: Make a `site-lisp' directory in the distribution,
10220 instead of a `local-lisp' directory, which hasn't been the
10221 appropriate name for a long time.
10222 * Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
10223 from the distribution first, then /usr/local/lib/emacs/site-lisp.
10224
10225 * Makefile.in (do-install): Correctly detect if ./etc and
10226 ${srcdir}/etc are the same.
10227
10228 * configure.in: Extract UNEXEC from the system configuration
10229 files, compute the name of the source file corresponding to the
10230 object file, and #define it as UNEXEC_SRC in config.h.
10231
10232 * configure.in: If srcdir is '.', then try using PWD to make it
10233 absolute.
10234
10235 * configure.in: Include ${srcdir} in the printed report, to help
10236 people notice if it's an automounter path.
10237
10238 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10239
10240 * configure.in (prefix): Don't run pwd on srcdir unnecessarily.
10241
10242 1993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10243
10244 * Makefile.in (do-install): Delete the dest dir, not the source dir,
10245 when they are different. Add `shift' command.
10246 (COPYDESTS, COPYDIR): Delete external-lisp dir.
10247 (externallispdir): Var deleted.
10248
10249 * configure.in: Delete spurious paren outputting short_usage.
10250
10251 1993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10252
10253 * Version 19.9 released.
10254
10255 1993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10256
10257 * Makefile.in (${SUBDIR}): Pass the value of the make variable to
10258 subdirectory makes.
10259
10260 * make-dist: Check for .elc files with no corresponding .el file.
10261
10262 * Makefile.in (mkdir): Make all the directories in locallisppath.
10263
10264 * config.guess: New file.
10265 * configure.in: Use it, tentatively.
10266 * INSTALL: Mention its usage.
10267
10268 * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;
10269 the former gives you the operating system rev directly. Use
10270 s/hpux.h if we don't recognize what we got.
10271
10272 * Makefile.in (do-install): Don't remove a destination directory
10273 if it's the same as the source. If ${srcdir}/info == ${infodir},
10274 don't try to copy the info files.
10275
10276 * Makefile.in (COPYDIR, COPYDESTS): Don't mention etc twice; this
10277 doesn't work if you're not using a separate source directory.
10278 (do-install): Copy the build tree's etc directory only after
10279 making sure it's not also the source tree's etc directory.
10280
10281 1993-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10282
10283 * configure.in: Handle sunos4.1.3 specially.
10284
10285 1993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10286
10287 * Makefile.in (INSTALL): Add definition.
10288
10289 * configure.in: Fix some messages. Support -with-gnu-cc.
10290 At the end, use `set --', not `set -'.
10291 Delete spurious `.h' in hpux alternatives.
10292
10293 1993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10294
10295 * Version 19.8 released.
10296
10297 1993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10298
10299 * configure.in: When looking for source in the same directory as
10300 the configure script, make the path thus discovered absolute.
10301 If the user specifies the `--srcdir' switch, make that directory
10302 absolute too.
10303
10304 * Makefile.in (srcdir): Remove comment saying this doesn't work.
10305
10306 * Makefile.in (src/paths.h): Edit the `infodir' variable into this
10307 too, as the value of the PATH_INFO macro.
10308
10309 * configure.in: Check to see if the source lives in the same
10310 directory as the configure script.
10311
10312 1993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10313
10314 * Makefile.in (install): Split this into `install' and
10315 `do-install', to give people more control over exactly what gets
10316 done.
10317 (do-install): New target, containing the guts of `install'. Don't
10318 remove and recreate the directories inside the copying loop - do
10319 it all before the copying loop. Pass more flags to the lib-src
10320 make.
10321 (mkdir): Create ${infodir}, ${mandir}, and ${sitelispdir} here, to
10322 avoid errors and warnings.
10323
10324 * configure.in: For generic IBM PC boxes, insist on "unknown" for
10325 the manufacturer - the more general case was blocking other i386
10326 configuration names below, and that's how the names are written in
10327 MACHINES anyway.
10328
10329 * make-dist: When breaking links, remove the link before moving
10330 the copy onto it, to avoid interactive behavior.
10331
10332 * Makefile.in: Doc fix.
10333
10334 * configure.in: Doc fix.
10335
10336 * INSTALL: Mention --exec-prefix option.
10337
10338 * configure.in: Add support for the `--exec-prefix' option.
10339 * Makefile.in: Accept that support.
10340
10341 * configure.in: Use the AC_PROG_INSTALL macro.
10342 * Makefile.in (INSTALL): Variable removed.
10343 (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
10344
10345 * configure.in: Distinguish between hp800's and hp700's by calling
10346 "uname -m".
10347
10348 1993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10349
10350 * configure.in: Recognize configuration names for i860 boxes
10351 running SYSV.
10352
10353 1993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10354
10355 * configure.in: Distinguish between hp800's and hp700's by the
10356 version of HP/UX they run, since that's something people are more
10357 likely to know - hp700's run 8.0.
10358 Add HP 700 configuration.
10359
10360 * configure.in: Test for the presence of the `rename' function.
10361
10362 * Makefile.in (C_SWITCH_X_SITE): New variable - get this from
10363 configure.in.
10364 (oldXMenu/Makefile): Edit C_SWITCH_X_SITE into this.
10365
10366 * make-dist: Break intra-tree links.
10367
10368 * configure.in: Explain that this is an autoconf script, and give
10369 instructions for rebuilding configure from it. Arrange to put
10370 comments in configure explaining this too.
10371
10372 * configure.in: Make the first line of the configure script be
10373 "#!/bin/sh". Leaving the first line blank didn't work.
10374
10375 * configure.in (long_usage): Removed; made short_usage describe
10376 the options briefly.
10377
10378 * configure.in: Implement the --prefix option.
10379 * Makefile.in (prefix): Add support for it here.
10380 * INSTALL: Document it here.
10381
10382 * Makefile.in (install): Don't assume that the files in the `info'
10383 subdirectory match *.info. They don't have that prefix.
10384
10385 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10386
10387 * configure.in: Add case for version 5 of Esix.
10388
10389 1993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10390
10391 * Version 19.7 released.
10392
10393 * make-dist: There aren't any *.com files in lib-src anymore.
10394
10395 * make-dist: Copy texinfo.tex and texindex.c, rather than linking
10396 them; they're symlinks to other filesystems on the GNU machines.
10397
10398 * make-dist: Check that the manual reflects the same version of
10399 Emacs as stated in lisp/version.el. Edit that version number into
10400 the README file.
10401
10402 1993-05-21 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10403
10404 * configure.in: Remove the hack of AC_DEFINE; use
10405 AC_DEFINE_UNQUOTED.
10406
10407 1993-05-20 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10408
10409 * make-dist: Don't distribute precomp.com, compile.com, or
10410 link.com from ./src; they're in ./vms now.
10411
10412 Some time-handling patches from Paul Eggert:
10413 * configure.in: Add AC_TIMEZONE.
10414
10415 1993-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10416
10417 * configure.in: Recognize Linux as a valid operating system for
10418 the i386.
10419
10420 1993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10421
10422 * make-dist: Distribute some VMS files we got from Richard Levitte.
10423
10424 * Makefile.in (oldXMenu/Makefile): Take oldXMenu/Makefile.in as
10425 the source for the sed command, not oldXMenu/Makefile.
10426
10427 1993-05-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10428
10429 * INSTALL: Don't claim the srcdir option doesn't work.
10430
10431 1993-05-16 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10432
10433 * configure.in: Include remarks saying what order the autoconf
10434 tests should go in, and remind people to change config.h.in
10435 whenever they add autoconf tests which make #definitions.
10436
10437 * make-dist: Distribute oldXMenu/Makefile.in, not oldXMenu/Makefile.
10438
10439 1993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10440
10441 * Makefile.in (oldXMenu/Makefile): Make this depend on
10442 ${srcdir}/oldXMenu/Makefile.in, not itself.
10443
10444 * PROBLEMS: Some updates from David J. Mackenzie.
10445
10446 More changes from David J. Mackenzie.
10447 * Makefile.in (install.sysv, install.xenix, install.aix): Targets
10448 removed; autoconf and config.h should specify all these
10449 differences.
10450 (buildlisppath): Make this path depend on ${srcdir}.
10451 (INSTALLFLAGS): Removed.
10452 (INSTALL): Include the -c flag.
10453 (install): Change the way we invoke install accordingly.
10454
10455 Install ${srcdir} changes from DJM.
10456 * Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this
10457 list.
10458 (COPYDIR, COPYDESTS): Install files from both the etc directory in
10459 the source tree and the etc directory in the object tree.
10460 (${SUBDIR}): Pass the prefix variable down to submakes.
10461 (everywhere): Use `sed', not `/bin/sed'. Not all systems have sed
10462 in /bin.
10463 (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in
10464 values for srcdir and VPATH.
10465 (install): Add `v' flag to tar command. Make sure that `dir'
10466 exists in ${srcdir}/info before copying it. Remember that the man
10467 pages come from the source tree, not the object tree.
10468 * configure.in: Remove remarks saying that the --srcdir option
10469 doesn't work.
10470 Create the etc directory in the object tree.
10471 Recognize configuration names of the form *-sun-solaris*.
10472 Recognize sunos5 and solaris as operating system names.
10473
10474 * configure.in: Use the AC_TIME_WITH_SYS_TIME macro, for
10475 lib-src/getdate.y and src/systime.h.
10476
10477 1993-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10478
10479 * make-dist: Make links in info subdir.
10480
10481 1993-05-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10482
10483 * configure.in: Call AC_STDC_HEADERS.
10484
10485 1993-05-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10486
10487 * configure.in: Sidestep autoconf's quoting of the second argument
10488 of AC_DEFINE, so we can specify the value to put there. It would
10489 be nice if autoconf provided some way to specify computed values
10490 for macros.
10491
10492 1993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10493
10494 * Makefile.in (DEFS): Deleted; since we're using AC_CONFIG_HEADER,
10495 this is always just -DHAVE_CONFIG_H.
10496
10497 The GNU coding standards specify that CFLAGS should be left for
10498 users to set.
10499 * Makefile.in (CFLAGS): Let configure determine the default value
10500 for this. Don't
10501 have it default to DEFS.
10502 (${SUBDIR}): Pass CFLAGS down to submakes, not DEFS.
10503 (lib-src/Makefile, src/Makefile): Edit the default value for
10504 CFLAGS into these files, not DEFS.
10505 * configure.in (CFLAGS): Choose a default value for this - "-g"
10506 normally, or "-g -O" if we're using GCC. Edit it into the
10507 top-level Makefile.
10508
10509 * configure.in: When scanning the machine and system description
10510 #include files, write their names to conftest.c properly.
10511
10512 1993-05-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10513
10514 * configure.in: In configuration name case for Apallos running
10515 Domainios, set opsys, not opsysfile.
10516
10517 * configure.in: Use the autoconf AC_CONFIG_HEADER macro to produce
10518 src/config.h, instead of AC_OUTPUT; the latter overwrites
10519 src/config.h even when it hasn't changed, puts a makefile-style
10520 comment at the top even though it's C code, and produces a
10521 config.status script which doesn't do the job right.
10522
10523 * configure.in: Add AC_LN_S test, so we can tell whether or not we
10524 can use a symbolic link to get the X Menu library into src.
10525 * Makefile.in (LN_S): New variable.
10526 (src/Makefile): Edit the value of LN_S into this makefile.
10527
10528 1993-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10529
10530 * configure.in: Support *-sco3.2v4* as opsystem.
10531
10532 * make-dist: Don't include calc directory.
10533 Exclude many files in the man directory; copy a few.
10534
10535 1993-05-04 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10536
10537 * configure.in: Use AC_HAVE_HEADERS to test for sys/time.h, and
10538 call AC_STRUCT_TM to see what's in time.h.
10539
10540 * configure.in: Employ quoting stupidity to get the value of CPP
10541 to expand properly.
10542
10543 1993-04-27 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10544
10545 * configure.in: Use the AC_PROG_CPP macro, and then use the CPP
10546 variable to scan the machine and system description files.
10547
10548 * configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
10549 so that getdate.y builds correctly.
10550
10551 1993-04-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10552
10553 * configure.in (tempcname): Change this to "conftest.c", so it will
10554 work properly on systems with short filenames; this is the name
10555 autoconf uses.
10556
10557 * configure.in: Also detect the availability of dup2 and
10558 gethostname.
10559
10560 * configure.in: Use the AC_ALLOCA test.
10561 * Makefile.in (ALLOCA): New variable, to be set by ./configure.
10562 (lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
10563
10564 1993-04-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10565
10566 * make-dist: Distribute configure, as well as configure.in.
10567 Oversight.
10568
10569 1993-04-23 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10570
10571 * Makefile.in (install): Print out the name of the directory we're
10572 copying, so people can have some idea of whether we're making
10573 progress.
10574
10575 * Makefile.in (install.aix, install.xenix, install.sysv, install):
10576 Don't forget to re-create the COPYDESTS directories after we clear
10577 them out.
10578
10579 1993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10580
10581 * Makefile.in: Add autoconf cookies so that the configure
10582 script can comment out sections of path variable definitions to
10583 choose between the installable configuration and the run-in-place
10584 configuration.
10585 * configure.in: Add new option `--run-in-place', to select the
10586 run-in-place path definitions.
10587
10588 * configure.in: Add a clause to the big configuration name case
10589 for the NeXT machine.
10590
10591 1993-04-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10592
10593 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10594 Make sure that each source directory exists, and is different from
10595 the destination directory; then, delete the destination before
10596 copying over the source.
10597
10598 * make-dist: Distribute configure.in, instead of configure.
10599
10600 1993-04-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10601
10602 * configure.in: Don't set CC to "gcc -O" if the user specifies
10603 `--with-gcc'. Add -O to DEFS if GCC is set.
10604
10605 1993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10606
10607 * Makefile.in (clean mostlyclean): Missing right paren.
10608
10609 * configure.in: When checking for X windows, search for an X11
10610 subdirectory of ${x_includes}.
10611
10612 * configure.in: Check for gettimeofday function, for getdate.y.
10613
10614 Change `configure' to a mixture of custom code and autoconf stuff.
10615 autoconf can't derive all the information we need, but we'd really
10616 like to be able to take advantage of some of its tests, and its
10617 file-editing facilities.
10618 * configure.in: Renamed from configure.
10619 Quote the sections of shell script we want copied literally to
10620 the configure script.
10621 (compile): Initialize this to make the autoconf macros' code happy.
10622 Use AC_PROG_CC, AC_CONST, and AC_RETSIGTYPE instead of writing out
10623 code to do their jobs.
10624 Use autoconf to produce Makefile and src/config.h.
10625 Remove the Makefile-style comment that autoconf places at the top
10626 of src/config.h.
10627 (config_h_opts): Removed - no longer necessary.
10628 * Makefile.in (configname): Renamed to configuration.
10629 (CONFIG_CFLAGS): Renamed to DEFS.
10630 (CC, DEFS, C_SWITCH_SYSTEM, version, configuration): Adjusted to
10631 get values via autoload @cookies@.
10632 (libsrc_libs): Get this from autoconf. We used to do nothing
10633 about this.
10634 (${SUBDIR}): Pass DEFS to submakes instead of CONFIG_CFLAGS.
10635
10636 * Makefile.in (src/paths.h, lib-src/Makefile, src/Makefile): Don't
10637 echo the move-if-change command.
10638
10639 1993-04-08 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
10640
10641 * make-dist: Distribute lib-src/rcs-checkin.
10642
10643 * make-dist: It's oldXMenu/compile.com, not oldXMenu/compile.mms.
10644 Don't try to make links to the RCS or Old subdirectories.
10645 Use the appropriate extension for the compression type in use.
10646 Create the tar file in the shell's initial default directory, not
10647 in ${tempparent}.
10648 Erase the whole ${tempparent} tree, not just ${tempdir}.
10649
10650 1993-03-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10651
10652 * Makefile.in (src/paths.h): Don't echo the huge sed command we
10653 use to build paths.h.
10654 (lib-src/Makefile, src/Makefile): Similarly.
10655
10656 * configure: Extend test for working `const' keyword to handle AIX
10657 3.2 cc.
10658
10659 1993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10660
10661 * make-dist: Distribute lisp/term/ChangeLog.
10662
10663 Arrange for C compilation throughout the tree to get
10664 C_SWITCH_SYSTEM from the configuration files.
10665 * configure: Extract C_SWITCH_SYSTEM from the machine and
10666 system-dependent files, and save it in the top-level Makefile.
10667 * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit.
10668 (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
10669
10670 * make-dist: Include the VMS support files in oldXMenu in the
10671 distribution.
10672
10673 * configure: Doc fix.
10674
10675 * configure: Fix corrupted config_h_opts.
10676
10677 * configure: Properly report option names in error messages.
10678
10679 * configure: Properly recognize --x-includes and --x-libraries
10680 options.
10681
10682 * configure: Fix syntax errors in code handling XFree386.
10683
10684 1993-03-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10685
10686 * configure: Add special code to detect XFree386, and tell
10687 config.h about it.
10688
10689 * configure: Properly handle extracting values of LIBS_MACHINE and
10690 LIBS_SYSTEM that contain spaces.
10691
10692 * configure: Add `--x-includes' and `--x-libraries' options. I
10693 think these are dopey, but no less than three alpha testers, at
10694 large sites, have said they have their X files installed in odd
10695 places. Implement them by setting C_SWITCH_X_SITE and
10696 LD_SWITCH_X_SITE in src/config.h.
10697
10698 1993-03-22 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10699
10700 * make-dist: Don't distribute etc/Old files.
10701
10702 * GETTING.GNU.SOFTWARE, PROBLEMS: Registered into RCS with their
10703 backups.
10704
10705 1993-03-20 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10706
10707 * make-dist: Fix typo.
10708
10709 1993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10710
10711 * make-dist: Corrected typo, fixed it to discard = and TAGS files
10712 in some cases where it should but didn't seen to.
10713
10714 * Makefile.in: Added unlock and relock productions.
10715
10716 1993-03-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10717
10718 * make-dist: Add a --compress option to force make-dist to use
10719 compress.
10720
10721 * make-dist: Use gzip, if we can find it.
10722
10723 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10724 make rs6000-ibm-aix default to -aix32.
10725
10726 1993-03-17 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10727
10728 * Makefile.in: Added `Developer's configuration' section.
10729
10730 1993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
10731
10732 * Makefile.in: Add commented-out variable settings for developer's
10733 configuration.
10734
10735 1993-03-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10736
10737 * make-dist: Distribute `src/bitmaps' too.
10738
10739 1993-03-14 Charles Hannum (mycroft@hal.gnu.ai.mit.edu)
10740
10741 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10742 make rs6000-ibm-aix default to -aix32.
10743
10744 1993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10745
10746 * configure: Recognize strings like "sysvr0" or "sysvr1" as System V.
10747
10748 * Makefile.in (install.sysv): Add a second `$' in front of
10749 `${dest}', so that the shell will expand it, instead of Make.
10750
10751 * configure: When processing the name of the configure script,
10752 collapse `././' to `./', but leave a single `./' prefix alone.
10753
10754 * configure: Doc fix.
10755
10756 1993-03-04 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10757
10758 * configure: Handle isc3.0 correctly.
10759
10760 1993-02-25 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10761
10762 * make-dist: Don't try to copy the COPYING notice into
10763 external-lisp; we're not distributing that directory any more.
10764
10765 1993-02-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10766
10767 * Makefile.in (install, install.aix, install.xenix, install.sysv):
10768 Remove CVS subdirectories from the installed directory trees, as
10769 well as RCS directories.
10770
10771 1993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10772
10773 * make-dist: Only copy gmalloc.c if we couldn't link it.
10774 Don't try to copy man/{README,Makefile} unless they actually exist.
10775
10776 * Makefile.in (lisppath): Don't include externallispdir in this.
10777 We're not sure whether we're even going to distribute the
10778 directory yet.
10779
10780 1993-02-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10781
10782 * make-dist: Don't distribute the external-lisp directory anymore.
10783 * INSTALL: Remove all references to external-lisp.
10784
10785 * configure: Detect whether the compiler supports `const'
10786 properly, and edit src/config.h accordingly.
10787
10788 * configure: Tweak layout of final report.
10789
10790 * Makefile.in (${SUBDIR}): Pass CONFIG_CFLAGS to the submakes, not
10791 CFLAGS.
10792
10793 * Makefile.in (locallisppath): Make this default to
10794 ${datadir}/emacs/site-lisp, instead of
10795 ${datadir}/emacs/local-lisp. ${datadir} and ${statedir} are often
10796 the same thing, and local-lisp causes completion conflicts with
10797 lock.
10798 (lisppath): Add ${externallispdir} to this.
10799 * INSTALL: Adjust installation directions.
10800
10801 * Makefile.in (externallispdir): New variable, to say where to
10802 install the externally-maintained lisp files.
10803 (COPYDIR, COPYDESTS): Copy the external lisp directory just like
10804 the others.
10805 * INSTALL: Describe external-lisp and the new externallispdir
10806 variable.
10807
10808 1993-02-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10809
10810 * configure (progname): New option `--with-gcc'. Make it clearer
10811 how we are trying to guess whether or not we have GCC.
10812 * INSTALL: Document the `--with-gcc' option, and improve
10813 description of `--with-x' options.
10814
10815 1993-02-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10816
10817 * Makefile.in (COPYDIR, COPYDESTS): Remove ${srcdir}/info and
10818 ${infodir} from these variables; we have written out explicit code
10819 to install the info files.
10820
10821 1993-01-25 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10822
10823 * make-dist: Don't distributed the RCS files in the etc directory.
10824
10825 1993-01-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10826
10827 * Makefile.in: Some makes can't handle comments in the middle of
10828 commands; move them to before the whole rule.
10829
10830 1993-01-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10831
10832 * README: Mention what Emacs is.
10833
10834 1993-01-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10835
10836 * make-dist: Include `./lisp/calc-2.02' in the distribution.
10837 Add `./cpp' and `./man' back into the distribution.
10838
10839 1993-01-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10840
10841 * Makefile.in: Define MAKE, and use where appropriate.
10842
10843 1993-01-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10844
10845 * make-dist: Remember that the authoritative COPYING notice is
10846 `etc/COPYING', not `../etc/COPYING'.
10847
10848 1992-12-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10849
10850 * make-dist: Make sure that the COPYING notices in each directory
10851 are copies, not symlinks.
10852
10853 1992-12-19 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10854
10855 * INSTALL: The build process produces an executable called `emacs'
10856 now. Change references.
10857 * Makefile.in: Adjust `install.mumble' targets to install
10858 `src/emacs', not `src/xemacs'.
10859
10860 * configure: Start with a blank line; this keeps some old CSH's
10861 from thinking it's a CSH script. Most systems will just use
10862 /bin/sh to run it, which is what we're expecting; the only other
10863 shells which might try to interpret it themselves are probably
10864 Bourne-compatible.
10865
10866 1992-12-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10867
10868 * INSTALL: Improvements suggested by David Mackenzie.
10869
10870 1992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10871
10872 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10873 Don't try to copy the info files if there aren't any; the
10874 unexpanded globbing pattern disappoints `install'. Ignore the
10875 return status of that command.
10876
10877 * INSTALL: Updated for new configuration arrangement.
10878
10879 * configure: Don't make the top-level Makefile read-only - people
10880 may want to edit the values of the path variables.
10881
10882 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10883 Install the info files in ${infodir}. Install the executable
10884 under both `emacs' and `emacs-VERSION'.
10885
10886 * Makefile.in: Doc fix.
10887
10888 * Makefile.in (exec_prefix): New variable, as per latest version
10889 of coding standards.
10890 (bindir, libdir): Use it, instead of `prefix'.
10891 (lib-src/Makefile): Edit value of exec_prefix into lib-src/Makefile.
10892
10893 * Makefile.in (mandir): Make the default value for this depend on
10894 $(prefix).
10895
10896 * Makefile.in (datadir, statedir, libdir): Make these all default
10897 to ${prefix}/lib.
10898 (lispdir, locallisppath, etcdir, lockdir, archlibdir): Adjusted
10899 to compensate.
10900
10901 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10902 Install the etags and ctags man pages too.
10903
10904 * Makefile.in (distclean): Don't delete backup files; that's the
10905 job of extraclean.
10906 (extraclean): Like distclean, but deletes backup and autosave files.
10907
10908 1992-12-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10909
10910 Make path specification conform to GNU coding standards.
10911 * configure (long_usage): Remove all traces of old arguments from
10912 usage messages, and document the options we do accept in more
10913 detail: -with-x... and --srcdir.
10914 (options, boolean_opts): Deleted; we don't have enough options to
10915 make this worthwhile.
10916 (prefix, bindir, lisppath, datadir, libdir, lockdir): Deleted,
10917 along with the code which supported them; these should be set as
10918 arguments to the top-level make.
10919 (config_h_opts): Since this no longer doubles as a list of option
10920 names, make them upper case; this simplifies the code which uses
10921 them to build the sed command to edit src/config.h. Change the
10922 code which sets them.
10923 (cc, g, O): Don't allow the user to set these using options; they
10924 should be specified using `CC=' and `CFLAGS=' arguments to the
10925 top-level make. Just choose reasonable default values for them,
10926 and edit them into Makefile.in's default CC and CONFIG_CFLAGS
10927 values.
10928 (gnu_malloc, rel_alloc): Don't allow the user to set these using
10929 options; use them whenever the configuration files say they're
10930 possible.
10931 Simplify the argument processing loop. Don't accept abbreviations
10932 for option names; these might conflict with other configuration
10933 options in the future.
10934 Add some support for the `--srcdir' option. Check for the sources
10935 in . and .. if `--srcdir' is omitted. If the directories we will
10936 compile in don't exist yet, create them under the current directory.
10937 Note that the rest of the build process doesn't really support
10938 this.
10939 Edit only the top Makefile. That should edit the others. Edit
10940 into the makefile: `version', from lisp/version.el, `configname'
10941 and `srcdir' from the configuration arguments, `CC' and
10942 `CONFIG_CFLAGS' as guessed from the presence or absence of GCC in
10943 the user's path, and LOADLIBES as gleaned from the system
10944 description files.
10945 Simplify the report generated; it doesn't need to include any
10946 description of paths now.
10947 Make `config.status' exec configure instead of just calling it, so
10948 there's no harm in overwriting `config.status'.
10949 * Makefile.in (version, configname): New variables, used to choose
10950 the default values for datadir and libdir.
10951 Path variables rearranged into two clearer groups:
10952 - In the first group are the variables specified by the GNU coding
10953 standards (prefix, bindir, datadir, statedir, libdir, mandir,
10954 manext, infodir, and srcdir).
10955 - In the second are the variables actually used for Emacs's paths
10956 (lispdir, locallisppath, lisppath, buildlisppath, etcdir, lockdir,
10957 archlibdir), which depend on the first category.
10958 datadir and libdir default to directories under
10959 ${prefix}/lib/emacs instead of ${prefix}/emacs, by popular
10960 demand.
10961 etcdir and lispdir default to subdirectories of datadir.
10962 archlibdir defaults to libdir.
10963 The new installation tree is a bit deeper than it used to be, so
10964 use the new make-path program in lib-src to build them all.
10965 Always build a new src/paths.h.tmp and then move-if-change it to
10966 src/paths.h, to avoid unnecessary rebuilds while responding to the
10967 right changes.
10968 Remove all mention of arch-lib. Run utility commands from
10969 lib-src, and let the executables be copied into archlibdir when
10970 Emacs is installed.
10971 Add targets for src/Makefile, lib-src/Makefile, and
10972 oldXMenu/Makefile, editing the values of the path variables into
10973 them.
10974 Let lib-src do its own installation.
10975 (datadir): Default to putting data files under
10976 ${prefix}/lib/emacs/${version}, not /usr/local/emacs.
10977 (emacsdir): Variable deleted; it would only be confusing to use.
10978 (lispdir, etcdir): Default to ${datadir}/lisp.
10979 (mkdir): Use make-path for this.
10980 (lockdir): Do this in mkdir.
10981 (Makefile): New target.
10982
10983 * configure (usage_message): Rename to long_usage.
10984
10985 * make-dist: Don't bother creating an arch-lib directory; that's
10986 only for installation now.
10987
10988 1992-11-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10989
10990 * configure: Use GCC-style configuration names, using config.sub.
10991 Change the usage and help messages.
10992
10993 * configure: Initialize window_system, not indow_system.
10994
10995 * configure: Report which window system, compiler, and signal
10996 handler return type we decide to use.
10997
10998 * make-dist: Explain what's going on if config.sub and gmalloc.c
10999 can't be linked. Place the code which copies them near the code
11000 which links the rest of the files around them.
11001
11002 1992-11-15 Jim Blandy (jimb@apple-gunkies.gnu.ai.mit.edu)
11003
11004 * make-dist: Don't bother to distribute src/*.com, or
11005 src/vmsbuild; those have all been moved to `../vms'.
11006
11007 1992-11-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11008
11009 * make-dist: Don't forget that the way to avoid filenames starting
11010 with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
11011 `[a-zA-Z0-9].h'. Add a new section for dealing with files that we
11012 couldn't make hard links to, since we have two already, and
11013 perhaps more to come.
11014
11015 1992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11016
11017 * configure: When editing parameters into lib-src/Makefile, change
11018 the definition of CONFIG_CFLAGS instead of CFLAGS itself; CFLAGS
11019 needs some other flags too.
11020
11021 1992-11-03 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11022
11023 * configure: Remove spurious echo of the configuration name.
11024
11025 * make-dist: Don't distribute files in src/m and src/s whose names
11026 begin with `='.
11027
11028 1992-10-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11029
11030 * configure: Update GNU_MALLOC and REL_ALLOC in config.h.
11031 Also LISP_FLOAT_TYPE.
11032
11033 1992-10-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11034
11035 * make-dist: Copy config.sub, since it's a symbolic link to a file
11036 on another file system.
11037
11038 1992-10-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11039
11040 * make-dist: Include lib-src/makedoc.com and emacs.csh in the
11041 distribution.
11042
11043 * config.sub: New file, to help us recognize configuration names.
11044 * make-dist: Include it in the distribution.
11045
11046 1992-09-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11047
11048 * configure: Convert `-' to `_' in specified option names.
11049 Accept options with --. Delete --highpri and --have-x-menu options.
11050 New options --with-x and --with-x10 replace -window-system.
11051 Don't mention options --gnu-malloc, --rel-alloc
11052 or --lisp-float-type in help message.
11053
11054 1992-09-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11055
11056 * make-dist: Include the `vms' subdirectory in the distribution.
11057
11058 1992-09-10 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11059
11060 * configure: Remove lines starting with "# DIST: " when building
11061 lib-src/Makefile and src/Makefile. This allows us to mark the
11062 "Makefile.in" files with explanatory comments which won't also get
11063 stuck in the Makefiles.
11064
11065 1992-09-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11066
11067 * make-dist: Don't use the '+' operator in the sed regular
11068 expression that extracts the version number from lisp/version.el;
11069 Ultrix sed doesn't seem support the operator. Just double the
11070 operand and use *.
11071
11072 1992-09-01 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11073
11074 * Makefile.in: Doc fix.
11075
11076 1992-08-31 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11077
11078 * configure: Rewrite sed command to remove at most one ./ prefix;
11079 Ultrix's sed doesn't allow us to apply the * operator to a \( \)
11080 group.
11081
11082 1992-08-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11083
11084 * Makefile.in (src/paths.h): Use sed, not /bin/sed.
11085
11086 1992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11087
11088 * make-dist: Go ahead and build a new TAGS file, unless the
11089 --newer option was specified. Don't try to delete a TAGS file
11090 from etc; it's not kept there, and shouldn't be deleted anyway.
11091
11092 1992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11093
11094 * make-dist: If the lisp directory contains a default.el, don't
11095 distribute it.
11096
11097 * configure: When searching signal.h for the type of a signal
11098 return handler, make a copy of it, not a symbolic link to it; that
11099 way, it will work on systems that don't have symbolic links.
11100
11101 1992-08-14 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
11102
11103 * make-dist: Taught it about vcdiff and rcs2log, added --newer
11104 option for generating incremental distributions. Stopped it from
11105 generating a TAGS file into the distribution; that sucker is
11106 *big*, and easily enough generated with the toplevel makefile.
11107
11108 1992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11109
11110 * configure: When writing config.status, don't prefix progname
11111 with a '.'; it might be absolute.
11112
11113 1992-08-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11114
11115 * configure: Choose to use X11 if either /usr/lib/libX11.a or
11116 /usr/include/X11 exist, not only if both exist.
11117
11118 1992-07-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11119
11120 * make-dist: Make the new external-lisp directory a duplicate of
11121 the external-lisp directory, not the lisp directory.
11122
11123 1992-07-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11124
11125 * Makefile.in (clean, mostlyclean): Don't bother trying to `make
11126 clean' in arch-lib; it doesn't even have a Makefile.
11127
11128 * Makefile.in (clean, mostlyclean): In the test which tries to
11129 distinguish between the build directory, which should be cleaned,
11130 and the installed directory, which shouldn't, cd to `${emacsdir}',
11131 not `${DESTDIR}${LIBDIR}'.
11132
11133 1992-06-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11134
11135 * make-dist: Be sure to delete the .c and .h files that YACC and
11136 BISON create from getdate.y.
11137
11138 * external-lisp: New directory; see `external-lisp/README'.
11139 * make-dist: Added support for the external-lisp subdirectory.
11140
11141 * make-dist: Changed message which complains that make-dist wasn't
11142 invoked in the right directory to indicate which files it was
11143 looking for.
11144
11145 1992-06-29 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11146
11147 * configure: Add comments explaining why we can't translate
11148 character ranges or control characters in `tr'.
11149
11150 1992-06-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11151
11152 * configure: When generating the configuration message, we used to
11153 build the message from the start so that each line began with "# "
11154 so that it would be a comment in `config.status'. However, this
11155 causes trouble if any of the variables we use in the message
11156 expand to more than one line of text - as gnu_malloc_reason
11157 sometimes does. So instead, we build the message as it should be
11158 printed to the user (i.e. without the "# " prefixes), and stick on
11159 the "# "s when we write it to `config.status'.
11160
11161 * Makefile.in (clean, mostlyclean): Don't neglect to clean out
11162 `lib-src' and `arch-lib'.
11163
11164 * configure: When generating report and `config.status' file, note
11165 that bindir only determines where `make install' and
11166 `build-install' will place the executables; this should make it
11167 clear that the ordinary build process will not try to install
11168 things.
11169
11170 1992-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11171
11172 * make-dist: Change messages to say that we are 'making links to
11173 X', rather than 'copying X'. And put `' quotes around file names.
11174
11175 * make-dist: Include '.tmp' in the name of the staging directory.
11176
11177 * make-dist: Pass the `-f' option to rm when you're not sure that
11178 the files you're removing actually exist.
11179
11180 * make-dist: When setting up etc/COPYING, always nuke whatever is
11181 there, and then copy it in, to make sure we get a real file.
11182
11183 * make-dist: Don't try to distribute *.defns files any more. The
11184 only such file was for simula.el, which has been superseded by a
11185 version which doesn't have a separate .defns file.
11186
11187 1992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
11188
11189 * make-dist: Don't distribute configured versions of config.h.in,
11190 paths.h.in, Makefile.in in src.
11191
11192 * configure: Delete .tmp files before creating them; don't bother
11193 trying to make final targets writable first, since it won't
11194 matter to move-if-change.
11195
11196 1992-05-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11197
11198 * Makefile.in (mkdir, lockdir): Don't put dashes in front of the
11199 mkdir and chmod in the center of all the conditionals. GNU Make
11200 will strip these out, but other makes won't.
11201
11202 1992-05-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11203
11204 * make-dist: Include move-if-change in list of files to distribute.
11205
11206 1992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11207
11208 * configure: Remove any "." elements from the program name.
11209
11210 * configure: Don't record the values of all the possible arguments
11211 in config.status; only record the options that the user specified.
11212
11213 * configure: Use move-if-change to move in the new src/config.h.
11214
11215 1992-04-29 Ken Raeburn (Raeburn@Cygnus.COM)
11216
11217 * move-if-change: New file, copied from gcc release.
11218 * Makefile.in (src/paths.h): Use it, and put the "sed" output into
11219 a temp file, so we don't update paths.h if an error occurs or if
11220 it doesn't need changing.
11221
11222 1992-04-28 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11223
11224 * Makefile.in (src/paths.h): Do not install a value for the
11225 PATH_SUPERLOCK value; that macro doesn't exist anymore.
11226 * build-install.in: Same thing.
11227
11228 1992-04-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11229
11230 * make-dist: Check the flag called "make_tar", not "make_dir"; the
11231 latter, being a typo, is always false, resulting in a program
11232 whose default behavior is to painstakingly build a copy of the
11233 source tree, and then delete it. Rah.
11234
11235 * Makefile.in: Add dist target, and comment for it.
11236
11237 * configure: When scanning <signal.h> for a declaration for
11238 signal, create a symbolic link with a name ending in .c, so the
11239 compiler won't complain that it's only been given .h files.
11240
11241 * configure: Check whether there are any arguments available
11242 before shifting to get the value of a non-boolean parameter.
11243
11244 * make-dist: Doc fix.
11245
11246 1992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11247
11248 * configure: Instead of grepping /usr/include/signal.h for a
11249 signal declaration, run /usr/include/signal.h or
11250 /usr/include/sys/signal.h through cpp and grep for the
11251 declaration.
11252
11253 * configure: Redirect the output of grep to /dev/null instead of
11254 using grep -s - that flag means different things on other systems.
11255
11256 * Makefile.in: Use 'buildlisppath' instead of 'dumplisppath',
11257 since the former is recognizable even if you don't know what
11258 'dumping' is.
11259 * configure: Accommodate that change.
11260
11261 * configure: Accept options for all of the directories you can
11262 change in the Makefile.
11263
11264 * configure: Accept "-OPTION VALUE" as well as "-OPTION=VALUE".
11265
11266 * INSTALL: Mention that you have to copy all the 'FOO.in' files to
11267 FOO before you can use them.
11268
11269 * build-install.in: Made the "Where To Install Things" section
11270 conform with the similar section from Makefile.in. Copied section
11271 which builds src/paths.h from src/paths.h.in from the Makefile.
11272
11273 1992-04-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11274
11275 * configure: Write config.status to pass its command-line
11276 arguments on to configure, so that people can use it to recreate
11277 an old configuration, with minor changes.
11278
11279 1992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11280
11281 * configure: Don't rely on option variables being unset if their
11282 values are the empty string. In particular, when producing the
11283 English report, don't assume that highpri will be unset when no
11284 increased priority has been requested; -highpri='' should be the
11285 same as omitting -highpri altogether.
11286
11287 * configure: Fix dumb bug: when running the system and machine
11288 description files through cpp, mark those lines that we want to
11289 evaluate with the string '@configure@', and then only evaluate
11290 them. This way if the files include anything that actually
11291 generates text (type definitions or external declarations, say),
11292 we won't try to eval it.
11293
11294 1992-04-11 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11295
11296 * make-dist: New shell script.
11297
11298 * configure: When creating foo from foo.in, make foo read-only to
11299 remind people to edit the .in file instead.
11300
11301 * INSTALL: Changed references to config.h-dist to config.h.in.
11302 The "BUILDING GNU EMACS BY HAND" section neglected to mention how
11303 to build src/paths.h from src/paths.h.in; added a paragraph to do
11304 this.
11305 * configure, Makefile, build-install: Changed filenames like
11306 FOO-dist to FOO.in.
11307
11308 1992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11309
11310 * Makefile, build-install: Renamed to Makefile.in and
11311 build-install.in; the configure script will edit these to produce
11312 the usable Makefile and build-install.
11313 * configure: Changed to produce ./Makefile, ./build-install,
11314 lib-src/Makefile, and src/Makefile from their *.in counterparts,
11315 instead of editing them in place.
11316
11317 1992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11318
11319 * Makefile: Re-arranged so that the undumped Emacs will search
11320 ../lisp *after* the site's local elisp files.
11321 (locallisppath, dumplisppath): New variables.
11322 (lisppath): This variable's default value is now chosen based on
11323 $(locallisppath) and $(lispdir); while it used to be the
11324 customization point for adding site-local elisp directories to
11325 load-path, that job is now handled mostly by locallisppath.
11326 (src/paths.h): Edit the value of a new macro, PATH_DUMPLOADSEARCH.
11327 Check the values being assigned to the *LOADSEARCH macros for null
11328 path elements (like '::' in 'foo::bar').
11329
11330 * configure: When checking if the machine- and system-dependent
11331 files define a particular macro or not, actually run them through
11332 CPP and test the macros with #ifs, instead of just grepping for
11333 the macros' names. In particular, check for SYSTEM_MALLOC in this
11334 way.
11335
11336 1992-04-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11337
11338 * Makefile (install): Don't use -s in install. (Keep the symbols.)
11339
11340 1992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11341
11342 * configure: Make the config.status file an executable shell
11343 script which will recreate the same configuration. Include the
11344 verbal description of the current configuration as a comment in
11345 the script.
11346 * INSTALL: Doc fix.
11347
11348 * Makefile: Brought the Makefile up to the GNU coding
11349 standards, as described in standards.text:
11350 (TAGS): New name for the target which rebuilds the tags table.
11351 (check): New target; doesn't do anything yet.
11352 (mostlyclean): New target, synonymous with clean.
11353 (realclean): New target. Currently, this just calls the
11354 subdirectories's makefiles and then deletes config.status.
11355 (INSTALL, INSTALLFLAGS, INSTALL_PROGRAM, INSTALL_DATA): New
11356 variables.
11357 Installation directory variables changed to conform.
11358 (install, install.sysv, install.xenix, install.aix): Changed the
11359 code which copies the directories into their installed location to
11360 allow the installed locations to be in several different
11361 directories; the old version assumed that they would all be in
11362 $(emacsdir).
11363 (mkdir, lockdir): Allow the installed locations to be in several
11364 different directories.
11365 * INSTALL: Doc fix.
11366
11367 * build-install: Use the same variable names as the Makefile.
11368 Allow the installed locations to be in several different
11369 directories.
11370
11371 1992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11372
11373 * Makefile (src/paths.h): Instead of using a single sed command to
11374 edit both the PATH_LOCK and PATH_SUPERLOCK macros, edit the two
11375 separately, and don't forget to append "/!!!SuperLock!!!" to the
11376 value of the PATH_SUPERLOCK macro.
11377
11378 * config.emacs: Renamed to configure, for consistency with other
11379 GNU products. Internal references changed.
11380 INSTALL, Makefile: References changed.
11381
11382 * lock: New directory, which should always be empty. If this
11383 directory doesn't exist, Emacs won't complain; it just won't lock.
11384 Having this here means that people can just unpack Emacs, build
11385 it, and have locking work.
11386
11387 * share-lib: Re-renamed to etc, for the sake of tradition.
11388 * config.emacs: Changed default value for datadir to ../etc.
11389 * INSTALL, README: Adjusted.
11390
11391 1992-03-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11392
11393 * config.emacs: Guess the value for LOADLIBES in lib-src/Makefile
11394 by running CPP on the appropriate s/*.h and m/*.h files.
11395
11396 1992-03-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11397
11398 * config.emacs: Make sure to set the "exit on error" flag once
11399 we've removed config.status; errors should abort the configuration.
11400
11401 1992-02-15 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11402
11403 * config.emacs: Added -distribute option, so that the Makefile
11404 paths are in their proper form. I don't know why this matters.
11405
11406 1992-02-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11407
11408 * local-lisp: New directory, empty in the distribution, for people
11409 to put local elisp code in.
11410 * config.emacs: Include it in the default load path.
11411 * README: Document it.
11412
11413 1992-01-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11414
11415 * config.emacs: Guess the type of signal handling functions based
11416 on the contents of /usr/include/signal.h.
11417
11418 * config.emacs: Print out progress report messages.
11419
11420 * Makefile (src/paths.h): Don't generically replace
11421 /usr/local/lib/emacs with LIBROOT. This can hide bugs in the
11422 editing of the other entries, and each entry should be dealt with
11423 explicitly anyway.
11424
11425 * build-install: Converted from C-shell to Bourne shell.
11426 * config.emacs: Edit build-install properly.
11427
11428 * config.emacs: Doc fix.
11429
11430 1992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11431
11432 * Makefile (install): Remove `B' from tar xf command.
11433
11434 1992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
11435
11436 * config.emacs: Removed support for the `maintain-environment'
11437 option; the only important difference between this and its absence
11438 has been removed.
11439 * INSTALL: Removed mention of `maintain-environment'.
11440
11441 * config.emacs: Fix arguments to sed when processing boolean
11442 arguments.
11443
11444 1991-12-05 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
11445
11446 * config.emacs: New file, to help automate the installation
11447 process.
11448
11449 * Makefile: Lots of changes to support the separation of etc into
11450 architecture-dependent and -independent files:
11451 (EMACSROOT): New variable, giving the directory under which all of
11452 Emacs's libraries should be installed. Changed rest of file to
11453 use it.
11454 (LIBDIR): Now denotes only architecture-dependent dir.
11455 (DATADIR): New variable, denoting architecture-independent dir.
11456 (LOCKDIR): New variable, for completeness.
11457 (SUBDIR): No more etc, new lib-src.
11458 (COPYDIR): No more etc, new arch-lib and share-lib.
11459 (src/paths.h): Set PATH_DATA and the LOCK macros too.
11460 (src): Now depends on lib-src, not etc.
11461 * build-install: Changes parallel to the above.
11462 * README: Describe the new arrangement.
11463
11464 * vms: New subdirectory for all the VMS stuff.
11465
11466 1991-12-03 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
11467
11468 * Makefile (LISPPATH): New variable.
11469 (src/paths.h): Define PATH_LOADSEARCH according to LISPPATH.
11470
11471 1990-09-28 Richard Stallman (rms@mole.ai.mit.edu)
11472
11473 * Makefile (install, install.sysv, install.xenix):
11474 Install wakeup instead of loadst. No need for setuid or setgid.
11475
11476 1990-08-07 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11477
11478 * Makefile (clean): Clean etc if that's not the installation dir.
11479
11480 1990-04-26 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11481
11482 * Makefile (paths.h): Make sed alter each name in the path.
11483
11484 1988-08-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11485
11486 * Makefile (install.sysv): Use cpio, not tar.
11487
11488 1988-08-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
11489
11490 * Makefile (lockdir): Rename `lock' target.
11491 Depend on it from install*, not from `all'.
11492
11493 1988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
11494
11495 * Makefile: Changed LIBDIR and BINDIR back to /usr/local/{emacs,bin}
11496 to match build-install and paths.h.
11497
11498 ;; Local Variables:
11499 ;; coding: utf-8
11500 ;; End:
11501
11502 Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc.
11503
11504 This file is part of GNU Emacs.
11505
11506 GNU Emacs is free software: you can redistribute it and/or modify
11507 it under the terms of the GNU General Public License as published by
11508 the Free Software Foundation, either version 3 of the License, or
11509 (at your option) any later version.
11510
11511 GNU Emacs is distributed in the hope that it will be useful,
11512 but WITHOUT ANY WARRANTY; without even the implied warranty of
11513 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11514 GNU General Public License for more details.
11515
11516 You should have received a copy of the GNU General Public License
11517 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.