Fix Electric Pair mode's autowrapping tests in batch-mode.
[bpt/emacs.git] / ChangeLog
CommitLineData
7c8114cb
JD
12013-12-27 Jan Djärv <jan.h.d@swipnet.se>
2
3 * configure.ac: Detect xcrun on OSX and use it for make, gcc and
4 libxml.
5
e76119d7
PE
62013-12-26 Paul Eggert <eggert@cs.ucla.edu>
7
8 Fix core dumps with gcc -fsanitize=address and GNU/Linux.
9 * configure.ac: Check whether addresses are sanitized.
10 (CANNOT_DUMP): Warn if addresses are sanitized and not CANNOT_DUMP.
11 (DOUG_LEA_MALLOC): Do not define if addresses are sanitized.
12 (SYSTEM_MALLOC): Define if addresses are sanitized.
13
9ebada6a
PE
142013-12-24 Paul Eggert <eggert@cs.ucla.edu>
15
16 Automate the procedure for updating copyright year.
17 * build-aux/update-copyright: New file.
18 * make-dist: Distribute it.
19 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
20 * msdos/autogen/Makefile.in: Update copyright year.
21
4157ea7f
AS
222013-12-23 Andreas Schwab <schwab@linux-m68k.org>
23
24 * configure.ac: Replace obsolete macro AC_CONFIG_HEADER by
25 AC_CONFIG_HEADERS.
26
4094a772
RS
272013-12-19 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
28
29 * .gitignore: Ignore refcard temporaries and info/*.info files.
30
e9ad5665
PE
312013-12-17 Paul Eggert <eggert@cs.ucla.edu>
32
33 Merge from gnulib, incorporating:
34 2013-12-17 gettimeofday: port recent C++ fix to Emacs
35 2013-12-17 gettimeofday: fix C++ crosscompilation
36 2013-12-17 qacl: port to Windows better
37 * lib/file-has-acl.c, lib/time.in.h, m4/gettimeofday.m4, m4/time_h.m4:
38 Update from gnulib.
39 * lib/gnulib.mk: Regenerate.
40
062727ce
PE
412013-12-16 Paul Eggert <eggert@cs.ucla.edu>
42
43 * INSTALL: Clarify treatment of image libraries.
44
96c06863
PE
452013-12-14 Paul Eggert <eggert@cs.ucla.edu>
46
47 Use bool for boolean, focusing on headers.
48 * configure.ac (PTY_OPEN, GC_MARK_SECONDARY_STACK):
49 Use bool for boolean.
50
6084a28b
DM
512013-12-14 Dani Moncayo <dmoncayo@gmail.com>
52
c07ff981
DM
53 * configure.ac (srcdir) [MINGW32]: If it is an absolute path,
54 force the format "/c/foo/bar" to simplify conversions to native
55 windows format.
6084a28b 56
06a4f110
GM
572013-12-13 Glenn Morris <rgm@gnu.org>
58
59 * INSTALL: No longer mention load-path and site-init/site-load.
60
62bd73fa
GM
612013-12-12 Glenn Morris <rgm@gnu.org>
62
b55e11bf
GM
63 * Makefile.in (install-info): Handle missing info/dir.
64 (info_dir_deps): New variable.
65 (${srcdir}/info/dir): Depend on .texi files rather than .info files.
66 (check-info): Update topics.
67 * build-aux/make-info-dir: Use .texi files rather than .info files.
68 Update topics.
69
e035a207
GM
70 * Makefile.in (install-info): Remove some useless subshells.
71
62bd73fa
GM
72 Stop keeping info/dir in the repository.
73 * build-aux/dir_top: Move here from admin/.
74 * build-aux/make-info-dir: New script.
75 * Makefile.in (bootstrap-clean): Delete info/.
76 (info-dir, ${srcdir}/info/dir): New rules.
77 (info): Also make info-dir.
78 (check-info): Rename from check-info-dir.
79 Instead of info/dir entries, check @dircategory in info/*.info.
80 * make-dist: Use `info' rule rather than `info-real'.
81 No more info/COPYING (not even the right license for info/ files).
89f01d7d
GM
82 Distribute new build-aux files.
83
62bd73fa
GM
84 * info/: Remove from repository.
85
89793882
GM
862013-12-11 Glenn Morris <rgm@gnu.org>
87
88 * info/dir: Add octave-mode.
89
a8f9bc05
PE
902013-12-11 Paul Eggert <eggert@cs.ucla.edu>
91
92 Remove the option of using libcrypto.
93 This scorches the earth and waits for spring;
94 see Ted Zlatanov and Stefan Monnier in
95 <http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00323.html>.
96 * configure.ac (with_openssl_default, HAVE_LIB_CRYPTO): Remove.
97 Do not say whether Emacs is configured to use a crypto library,
98 since it's no longer an option.
99 (gl_CRYPTO_CHECK): Define a dummy.
100 * lib/gl_openssl.h, m4/gl-openssl.m4: Remove.
101
7d01e13c
PE
1022013-12-10 Paul Eggert <eggert@cs.ucla.edu>
103
104 * configure.ac: Disable libcrypto by default.
105
106 Merge from gnulib, incorporating:
107 2013-12-07 md5, sha1, sha256, sha512: fix link error with partial lib
108 * m4/gl-openssl.m4: Update from gnulib.
109
83a5a2c8
EZ
1102013-12-08 Eli Zaretskii <eliz@gnu.org>
111
112 * configure.ac (HAVE_RSVG) [mingw32]: Don't link against librsvg
113 statically.
114
e9551b12
PE
1152013-12-08 Paul Eggert <eggert@cs.ucla.edu>
116
3bc9da32
PE
117 * configure.ac: Simplify supression of GTK deprecation warning.
118 Move -DGDK_DISABLE_DEPRECATION_WARNINGS out of the command line
119 and into config.h, to shorten the command line when doing 'make'.
120 Don't AC_SUBST GTK_CFLAGS, as this is not needed.
121
e9551b12
PE
122 Use libcrypto's checksum implementations if available, for speed.
123 On commonly used platform libcrypto uses architecture-specific
124 assembly code, which is significantly faster than the C code we
125 were using. See Pádraig Brady's note in
126 <http://lists.gnu.org/archive/html/bug-gnulib/2013-12/msg00000.html>.
127 Merge from gnulib, incorporating:
128 2013-12-07 md5, sha1, sha256, sha512: add gl_SET_CRYPTO_CHECK_DEFAULT
129 2013-12-07 md5, sha1, sha256, sha512: add 'auto', and set-default method
130 2013-12-04 include_next: minimize code duplication
131 2013-12-03 md5, sha1, sha256, sha512: support mandating use of openssl
132 2013-12-02 md5, sha1, sha256, sha512: use openssl routines if available
133 * configure.ac (--without-all): Set with_openssl_default too.
134 Use gl_SET_CRYPTO_CHECK_DEFAULT to default to 'auto'.
135 (HAVE_LIB_CRYPTO): New var.
136 Say whether Emacs is configured to use a crypto library.
137 * lib/gl_openssl.h, m4/absolute-header.m4, m4/gl-openssl.m4:
138 New files, copied from gnulib.
139 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
140 * lib/md5.c, lib/md5.h, lib/sha1.c, lib/sha1.h:
141 * lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
142 * m4/include_next.m4, m4/md5.m4, m4/sha1.m4, m4/sha256.m4, m4/sha512.m4:
143 Update from gnulib.
144
52789f7f
DG
1452013-12-01 Dmitry Gutov <dgutov@yandex.ru>
146
0449d6cd 147 * .dir-locals.el (log-edit-move): Add the "Author: " header.
52789f7f 148
a1209bc3
DM
1492013-11-30 Dani Moncayo <dmoncayo@gmail.com>
150
151 * build-aux/msys-to-w32 (w32pathlist): Do not translate paths
152 starting with %emacs_dir%.
153
f9b697dd
GM
1542013-11-30 Glenn Morris <rgm@gnu.org>
155
156 Stop keeping (most) generated cedet grammar files in the repository.
157 * configure.ac (SUBDIR_MAKEFILES, AC_CONFIG_FILES):
158 Add admin/grammars Makefile.
159 * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
160 Also clean admin/grammars, if present.
161
04445382
DM
1622013-11-29 Dani Moncayo <dmoncayo@gmail.com>
163
164 * Makefile.in (epaths-force-w32): Fix 2013-11-20 typo.
165
7cdf484b
SM
1662013-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
167
168 * configure.ac (HAVE_MENUS): Remove.
169
0845be75
GM
1702013-11-28 Glenn Morris <rgm@gnu.org>
171
172 * configure.ac (PATH_SEP): Replace with pre-existing SEPCHAR.
173
f7ec0d94
EZ
1742013-11-28 Eli Zaretskii <eliz@gnu.org>
175
16555151
EZ
176 * GNUmakefile (Makefile): Don't use $(CFG).
177 (CFG): Don't compute.
178
f7ec0d94
EZ
179 * configure.ac (PATH_SEP): Set and AC_SUBST.
180
de27f8ab
PE
1812013-11-27 Paul Eggert <eggert@cs.ucla.edu>
182
183 Merge from gnulib, incorporating:
184 2013-11-13 getgroups: work around _DARWIN_C_SOURCE problem
185 * lib/getgroups.c: Update from gnulib.
186
cb6c95a3
GM
1872013-11-27 Glenn Morris <rgm@gnu.org>
188
52d6635f 189 Move ja-dic, quail, leim-list.el from leim to lisp/leim.
cb6c95a3
GM
190 * Makefile.in (abs_builddir, leimdir): Remove.
191 (buildlisppath, SUBDIR, COPYDIR, COPYDESTS): No more leim directory.
192 (epaths-force-w32): No longer set BLD.
193 (leim): Remove.
194 (install-arch-indep): No longer run or install leim.
195 (mostlyclean, clean): No longer run leim rule.
196 (bootstrap-clean): Change leim target.
197 (maintainer-clean): Add leim.
198 (check-declare): Remove leim.
199 * README: Update for leim changes.
200 * configure.ac (leimdir): Remove.
201 (standardlisppath): No more leimdir.
202
203 * make-dist: Update for files from leim/ now being in lisp/leim/.
204
624780f0
GM
2052013-11-26 Glenn Morris <rgm@gnu.org>
206
207 Preload leim-list.el.
208 * Makefile.in (abs_builddir): New, set by configure.
209 (buildlisppath): Add leim/.
210 (epaths-force-w32): Set BLD.
211
7e8ed4f7
PE
2122013-11-21 Paul Eggert <eggert@cs.ucla.edu>
213
214 Fix some dependency problems that cause unnecessary recompiles.
4e8b6938 215 * configure.ac (OLDXMENU_TARGET, OLDXMENU, OLDXMENU_DEPS):
7e8ed4f7 216 Remove.
4e8b6938
PE
217 (LIBXMENU): Now is always either empty or a file name,
218 so that it can be used as a dependency.
7e8ed4f7 219
eca4ecba
GM
2202013-11-20 Glenn Morris <rgm@gnu.org>
221
222 * make-dist: Distribute build-aux/msys-to-w32.
223
e976486e
DM
2242013-11-20 Dani Moncayo <dmoncayo@gmail.com>
225
226 * build-aux/msys-to-w32: New file.
227 * Makefile.in (msys_to_w32, msys_lisppath_to_w32): Remove.
228 (msys_w32prefix_subst): Rename from msys_prefix_subst.
229 Operate on w32prefixpattern.
230 (epaths-force-w32): Use build-aux/msys-to-w32.
231
0f679e86
PE
2322013-11-17 Paul Eggert <eggert@cs.ucla.edu>
233
234 * configure.ac (DEBUGGER_SEES_C_MACROS): Remove.
235 It apparently doesn't work for GCC 3, and I suppose it's more
236 trouble than it's worth to worry about this.
237
1a191e5c
PE
2382013-11-15 Paul Eggert <eggert@cs.ucla.edu>
239
240 * configure.ac (DEBUGGER_SEES_C_MACROS): New macro.
241
2cf00efc
PE
2422013-11-14 Paul Eggert <eggert@cs.ucla.edu>
243
244 Simplify, port and tune bool vector implementation.
245 * configure.ac (BITSIZEOF_SIZE_T, SIZEOF_SIZE_T): Remove.
246
946ec224
PE
2472013-11-13 Paul Eggert <eggert@cs.ucla.edu>
248
249 * Makefile.in (ACLOCAL_INPUTS): Add configure.ac.
250
632e833f
DM
2512013-11-12 Dani Moncayo <dmoncayo@gmail.com>
252
f4f38fad
DM
253 * configure.ac [MINGW32]: Source nt/mingw-cfg.site.
254 * make-dist: Don't distribute nt/msysconfig.sh.
255
632e833f
DM
256 * Makefile.in (epaths-force-w32): Simplify w32srcdir computation.
257
220a304a
PE
2582013-11-08 Paul Eggert <eggert@cs.ucla.edu>
259
260 Merge from gnulib, incorporating:
261 2013-11-08 extern-inline: port better to OS X 10.9
262 2013-11-08 fpending: fix regression on DragonFly BSD
263 * lib/fpending.h, m4/extern-inline.m4, m4/fpending.m4:
264 Update from gnulib.
265
aea07e2c
PE
2662013-11-07 Paul Eggert <eggert@cs.ucla.edu>
267
268 Port to C11 aligned_alloc.
269 * configure.ac (GMALLOC_OBJ): Initialize to empty if !system_malloc
270 and doug_lea_malloc.
271 (aligned_alloc): Test for existence if !GMALLOC_OBJ and not darwin.
272 (posix_memalign): Test for existence only if !GMALLOC_OBJ and
273 not darwin and !aligned_alloc.
274
4dde498b
GM
2752013-11-05 Glenn Morris <rgm@gnu.org>
276
c923b188
GM
277 * configure.ac (abs_srcdir) [MINGW32]: No point setting it here,
278 config.status computes it.
279 * Makefile.in (epaths-force-w32): Move srcdir tweak here.
280
4dde498b
GM
281 * autogen: Remove directory. Move update_autogen to admin/.
282 * autogen.sh: Remove reference to copy_autogen.
283 * GNUmakefile (configure):
284 * Makefile.in (bootstrap): Do not try to run copy_autogen.
285 * config.bat: Use msdos/autogen rather than autogen.
286
df5b4930
PE
2872013-11-05 Paul Eggert <eggert@cs.ucla.edu>
288
289 Simplify and port recent bool vector changes.
290 * configure.ac (BITSIZEOF_SIZE_T, SIZEOF_SIZE_T):
291 New symbols to configure.
292
d0065ff1
EZ
2932013-11-04 Eli Zaretskii <eliz@gnu.org>
294
295 * configure.ac: Don't disallow builds in non-ASCII directories.
296 (Bug#15260)
297
91f2d272
PE
2982013-11-04 Paul Eggert <eggert@cs.ucla.edu>
299
300 Port to stricter C99 platforms.
301 Merge from gnulib, incorporating:
302 2013-11-03 intprops: port to Oracle Studio c99
303 * lib/intprops.h: Update from gnulib.
304
67fb4e6a
GM
3052013-11-02 Glenn Morris <rgm@gnu.org>
306
307 * Makefile.in (check): Depend on all.
308
cb16270e
GM
3092013-10-31 Glenn Morris <rgm@gnu.org>
310
311 * configure.ac: Use [!...] rather than [^...], for ksh. (Bug#15769)
312
55498a0f
GM
3132013-10-30 Glenn Morris <rgm@gnu.org>
314
315 * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
316 Also clean admin/unidata, if present.
317
a94fc965
GM
3182013-10-27 Glenn Morris <rgm@gnu.org>
319
320 * configure.ac: It seems installing in non-ASCII is not, in fact, ok.
321
da504eec
GM
3222013-10-25 Glenn Morris <rgm@gnu.org>
323
324 * configure.ac: It seems _installing_ in non-ASCII is ok, not building.
325
eb9a3661
GM
3262013-10-24 Glenn Morris <rgm@gnu.org>
327
357a5081
GM
328 * configure.ac:
329 * Makefile.in (install-arch-indep, install-etcdoc, install-info):
330 Avoid non-portable "`\" nesting.
331
eb9a3661
GM
332 * configure.ac (CPPFLAGS) [mingw32]: Use abs_top_srcdir.
333
334 * Makefile.in (abs_top_srcdir): New, set by configure.
335
b8e3b0a9
GM
3362013-10-23 Glenn Morris <rgm@gnu.org>
337
7b65c8d0
GM
338 * configure.ac: Explicit error for non-ASCII directories. (Bug#15260)
339
48f73cfb
GM
340 Progress towards allowing installation in directories with whitespace.
341 * Makefile.in (COPYDESTS, write_subdir, install-arch-dep)
342 (install-arch-indep, install-etcdoc, install-info, install-man)
a318e28f
GM
343 (install-etc, uninstall, install-nt, uninstall-nt):
344 Quote entities that might contain whitespace.
48f73cfb
GM
345 * build-aux/update-subdirs: Handle whitespace in argument.
346 Check cd return value.
347
b8e3b0a9
GM
348 Make building in directories with whitespace possible. (Bug#15675)
349 * configure.ac (srcdir): Don't make it absolute - abs_srcdir exists.
98434155 350 (src/.gdbinit): Use ac_abs_top_srcdir.
b8e3b0a9 351 * Makefile.in (abs_srcdir): New, set by configure.
4b56b9d7 352 (buildlisppath, epaths-force-w32): Use abs_srcdir.
b8e3b0a9
GM
353 (install-arch-indep, install-etcdoc, install-info, install-man)
354 (install-etc): Quote entities that might contain whitespace.
355
758bed52
PE
3562013-10-23 Paul Eggert <eggert@cs.ucla.edu>
357
358 Merge from gnulib, incorporating:
359 2013-10-14 acl: allow cross-compilation to Gentoo
360 2013-10-18 extern-inline: make safe for -Wundef usage
361 2013-09-30 fpending: use pure+const function attrs
362 * lib/fpending.h, m4/acl.m4, m4/extern-inline.m4: Update from gnulib.
363
9148ee92
GM
3642013-10-13 Glenn Morris <rgm@gnu.org>
365
366 * configure.ac [alpha]: Explicit error in non-ELF case. (Bug#15601)
367
46e5e833
PE
3682013-10-12 Paul Eggert <eggert@cs.ucla.edu>
369
370 Merge from gnulib, incorporating:
371 2013-10-10 strtoumax: port to Solaris 8
372 2013-10-09 strtoimax, strtoumax: port to HP-UX 11.11
373 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
374 * lib/inttypes.in.h, lib/strtoimax.c, m4/inttypes.m4, m4/strtoimax.m4:
375 * m4/strtoumax.m4:
376 Update from gnulib.
377
c5fc0178
SM
3782013-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
379
380 * configure.ac (LIBGNUTLS): Don't set LIBGNUTLS_* back to the empty
381 string when gnutls2 is installed but gnutls3 is not.
382
e1f9f9e3
TZ
3832013-10-11 Teodor Zlatanov <tzz@lifelogs.com>
384
385 * configure.ac: Define HAVE_GNUTLS3 if GnuTLS v3 is found.
386
f3606ef7
BF
3872013-10-10 Barry Fishman <barry_fishman@acm.org> (tiny change)
388
389 * configure.ac: Update for giflib 5. (Bug#15531)
390
4ed77415
EZ
3912013-10-08 Eli Zaretskii <eliz@gnu.org>
392
393 * configure.ac (HAVE_MENUS): Define unconditionally.
394
595e113b
PE
3952013-10-07 Paul Eggert <eggert@cs.ucla.edu>
396
397 Improve support for popcount and counting trailing zeros (Bug#15550).
398 Do this by using the Gnulib modules for this.
399 This should generate faster code on non-GCC, non-MSC platforms,
400 and make the code a bit more portable, at least in theory.
401 * lib/count-one-bits.c, lib/count-one-bits.h:
402 * lib/count-trailing-zeros.c, lib/count-trailing-zeros.h:
403 * m4/count-one-bits.m4, m4/count-trailing-zeros.m4:
404 New files, copied from gnulib.
405 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
406
4eed3157
PE
4072013-10-04 Paul Eggert <eggert@cs.ucla.edu>
408
3e45e702 409 Use hardware support for byteswapping on glibc x86 etc.
4eed3157
PE
410 * lib/byteswap.in.h, m4/byteswap.m4: New files, copied from Gnulib.
411 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
412
0a858ebf
PE
4132013-10-03 Paul Eggert <eggert@cs.ucla.edu>
414
415 Merge from gnulib, incorporating:
416 2013-10-02 verify: new macro 'assume'
417 2013-09-26 dup2, dup3: work around another cygwin crasher
418 2013-09-26 getdtablesize: work around cygwin issue
419
959c3d24
PE
4202013-09-25 Paul Eggert <eggert@cs.ucla.edu>
421
422 Merge from gnulib, incorporating:
423 2013-09-24 manywarnings: enable nicer gcc warning messages
424 2013-09-23 warnings: port --enable-gcc-warnings to Solaris Studio 12.3
425 2013-09-21 timespec: use the new TIMESPEC_RESOLUTION elsewhere
426 * configure.ac (WERROR_CFLAGS): Omit -fdiagnostics-show-option
427 and -funit-at-a-time, since manywarnings does that for us now.
428
8762e524
JD
4292013-09-23 Jan Djärv <jan.h.d@swipnet.se>
430
431 * configure.ac: With clang, check for and use -Wno-switch,
432 -Wno-tautological-constant-out-of-range-compare and -Wno-pointer-sign.
433
a84683fd
DC
4342013-09-23 Daniel Colascione <dancol@dancol.org>
435
436 * configure.ac: Check for valgrind headers.
437
3054cd01
XF
4382013-09-20 Xue Fuqiao <xfq.free@gmail.com>
439
440 * INSTALL: New homepage of libtiff.
441
f5f0132b
PE
4422013-09-20 Paul Eggert <eggert@cs.ucla.edu>
443
444 Work around performance bug on OS X 10.8 and earlier.
445 Perhaps Apple will fix this bug some day.
446 See the thread starting with Daniel Colascione's email in:
447 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00343.html
448 * configure.ac (FORTIFY_SOUR): New verbatim section.
449
230fe2a5
PE
4502013-09-19 Paul Eggert <eggert@cs.ucla.edu>
451
452 Merge from gnulib, incorporating:
453 2013-09-19 stdio: OS X port of putc_unlocked + extern inline
454 2013-09-19 signal: OS X port of sigaddset etc. + extern inline
455 2013-09-19 extern-inline: do not always suppress extern inline on OS X
456 2013-09-17 getgroups: statement without effect
457 2013-08-28 headers: check that _GL_INLINE_HEADER_BEGIN is defined
458
be9bc55e
EZ
4592013-09-19 Eli Zaretskii <eliz@gnu.org>
460
461 * configure.ac <srcdir> [MINGW32]: Make sure the value of 'srcdir'
462 is in the full /d/foo/bar form. See the discussion in
463 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00210.html,
464 and in particular
465 http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00252.html
466 and its followups, for the details.
467
19452b86
DA
4682013-09-17 Dmitry Antipov <dmantipov@yandex.ru>
469
470 * configure.ac: Do not check for g_type_init because we
471 require glib >= 2.28 for GTK3, glib >= 2.10 for GTK2,
472 glib >= 2.26 for GSettings and glib >= 2.7.0 for GConf, so
473 suitable glib should provide g_type_init unconditionally.
474
3fa2054e
JD
4752013-09-15 Jan Djärv <jan.h.d@swipnet.se>
476
477 * configure.ac: Add check for OSX 10.5, required for macfont.o.
478
8d17ef8d
GM
4792013-09-09 Glenn Morris <rgm@gnu.org>
480
481 * configure.ac (LDFLAGS_NOCOMBRELOC): New variable.
482 (LDFLAGS): Move nocombreloc option from here...
483 (LD_SWITCH_SYSTEM_TEMACS): ... to here.
8d17ef8d 484
7dc61a66
GM
4852013-09-08 Glenn Morris <rgm@gnu.org>
486
335142f9
GM
487 * configure.ac (--without-compress-install):
488 Rename from --without-compress-info. (Bug#9789)
489 (GZIP_INFO): Remove.
490 (GZIP_PROG): Allow --without-compress-install to disable it.
491 * Makefile.in (GZIP_INFO): Remove all references.
492
7dc61a66
GM
493 * info/dir: Tweak emacs-gnutls entry.
494
4b73fc73
PE
4952013-09-07 Paul Eggert <eggert@cs.ucla.edu>
496
497 Port --without-x --enable-gcc-warnings to Fedora 19.
498 * configure.ac (WERROR_CFLAGS): Omit redundant use of
499 -Wmissing-field-initializers, -Wswitch, -Wtype-limits,
500 -Wunused-parameter. If there is no window system, also omit
501 -Wsuggest-attribute=const and -Wsuggest-attribute=noreturn; this
502 is needed for Fedora 19.
503
257b3b03
DA
5042013-09-05 Dmitry Antipov <dmantipov@yandex.ru>
505
506 Make --without-x compatible with --enable-gcc-warnings.
507 * configure.ac: If both --without-x and --enable-gcc-warnings are
508 specified, use -Wno-unused-variable, -Wno-unused-but-set-variable
509 and -Wno-unused-but-set-parameter.
510
224e313d
PE
5112013-09-04 Paul Eggert <eggert@cs.ucla.edu>
512
513 Makefile improvements.
514 * Makefile.in (lib): Depend on am--refresh, to avoid a race.
515 (src): Remove duplicate dependency on FRC.
516 Invoke just one submake, not two. Avoid the need for 'pwd'.
517
de3d0b57
JD
5182013-09-02 Jan Djärv <jan.h.d@swipnet.se>
519
520 * configure.ac: Add ns_check_file.
521
2c347217
GM
5222013-08-31 Glenn Morris <rgm@gnu.org>
523
524 * configure.ac (--with-sound): Rename ossaudio to bsd-ossaudio,
525 and voxware to oss.
526
e0936eed
UM
5272013-08-31 Ulrich Müller <ulm@gentoo.org>
528
529 * configure.ac: Allow for --with-sound=voxware that will enable
530 sound but otherwise disable ALSA. This will use the OSS device,
531 typically /dev/dsp, for sound output. (Bug#15067)
532
7605d081
GM
5332013-08-31 Glenn Morris <rgm@gnu.org>
534
535 * make-dist: Update for nt/INSTALL* changes.
536
50b13cde
PE
5372013-08-28 Paul Eggert <eggert@cs.ucla.edu>
538
539 * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
540 for portability to hosts where /bin/sh has problems.
541
0acfedd3
SM
5422013-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
543
544 * configure.ac (DOCMISC_W32): New var to replace DOCMISC_*_W32.
545
43aac990
PE
5462013-08-27 Paul Eggert <eggert@cs.ucla.edu>
547
548 Simplify EMACS_TIME-related code.
549 Merge from gnulib, incorporating:
550 2013-08-27 timespec: new convenience constants and function
551
15091df5
DA
5522013-08-27 Dmitry Antipov <dmantipov@yandex.ru>
553
554 * configure.ac (DOCMISC_DVI_W32, DOCMISC_HTML_W32, DOCMISC_INFO_W32)
555 (DOCMISC_PDF_W32, DOCMISC_PS_W32): No spaces!
556
61ac6b9f
GM
5572013-08-27 Glenn Morris <rgm@gnu.org>
558
b4f581f0
GM
559 * configure.ac (emacs_broken_SIGIO): No longer set on gnu-kfreebsd.
560
1857cd3f
GM
561 * configure.ac (DOCMISC_DVI_W32, DOCMISC_HTML_W32, DOCMISC_INFO_W32)
562 (DOCMISC_PDF_W32, DOCMISC_PS_W32): New output variables.
563 * Makefile.in (check-info-dir): Ignore efaq-w32.
564
61ac6b9f
GM
565 * Makefile.in (mostlyclean, clean, distclean, bootstrap-clean)
566 (maintainer-clean, check-declare): Remove pointless subshells.
567 Check cd return value.
568
12c4970d
PE
5692013-08-26 Paul Eggert <eggert@cs.ucla.edu>
570
571 Minor merge from gnulib (mostly just for texinfo.tex).
572
917c483a
PE
5732013-08-22 Paul Eggert <eggert@cs.ucla.edu>
574
575 * configure.ac (EMACS_CONFIG_OPTIONS): Quote systematically (Bug#13274).
576 This improves on the patch already installed, by quoting options
577 that contain spaces and suchlike systematically, so that
578 EMACS_CONFIG_OPTIONS is no longer ambiguous when options contain
579 these characters.
580
f035e3a9
PE
5812013-08-21 Paul Eggert <eggert@cs.ucla.edu>
582
583 Port close-on-exec pty creation to FreeBSD 9.1-RELEASE (Bug#15129).
584 * configure.ac (PTY_OPEN): If posix_openpt with O_CLOEXEC fails
585 and reports EINVAL, try it again without O_CLOEXEC. This should
586 port PTY_OPEN to FreeBSD 9, which stupidly rejects O_CLOEXEC.
587 What were they thinking?
588
236beba0
PE
5892013-08-20 Paul Eggert <eggert@cs.ucla.edu>
590
591 * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
592 Fix shell-operator precedence problem in previous change.
593
f67dce44
GM
5942013-08-20 Glenn Morris <rgm@gnu.org>
595
596 * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
597 Clean test/automated if present.
598
51632863
PE
5992013-08-19 Paul Eggert <eggert@cs.ucla.edu>
600
601 Merge from gnulib, incorporating:
602 2013-08-15 warnings: minor optimization
603 2013-08-15 warnings: check -Wfoo rather than -Wno-foo
604
0fe73012
KB
6052013-08-15 Ken Brown <kbrown@cornell.edu>
606
607 * configure.ac (G_SLICE_ALWAYS_MALLOC): Update comment.
608
4fa44856
GM
6092013-08-15 Glenn Morris <rgm@gnu.org>
610
611 * make-dist: Do not distribute etc/refcards TeX intermediate files.
612 * Makefile.in (install-arch-indep):
613 Do not install etc/refcards TeX intermediate files.
614
af79c3cb
UM
6152013-08-14 Ulrich Müller <ulm@gentoo.org>
616
617 * configure.ac (EMACS_CONFIGURATION): Escape backslashes. (Bug#15091)
618
aa942e2b
EZ
6192013-08-12 Eli Zaretskii <eliz@gnu.org>
620
621 * configure.ac (HAVE_ZLIB): Don't use -lz on MinGW.
622
1d238bc7
PE
6232013-08-12 Paul Eggert <eggert@cs.ucla.edu>
624
625 Minor zlib configuration tweaks.
626 * configure.ac (HAVE_ZLIB): Don't assume zlib is linked if PNG is.
627
594a4307
EZ
6282013-08-12 Eli Zaretskii <eliz@gnu.org>
629
630 * configure.ac (LIBZ): Comment on w32 peculiarities regarding LIBZ.
631
eaca0446
PE
6322013-08-12 Paul Eggert <eggert@cs.ucla.edu>
633
634 Merge from gnulib, incorporating:
635 2013-08-11 fpending: port to recent Cygwin change to stdio_ext.h
636 2013-08-10 sys_time: port to OpenBSD
637
8496d8d7
GM
6382013-08-12 Glenn Morris <rgm@gnu.org>
639
640 * configure.ac (etcdocdir): Rename from docdir, to avoid confusion
641 with configure's standard --docdir argument. All uses updated.
642 * Makefile.in (etcdocdir): Rename from docdir. All uses updated.
643 (install-etcdoc): Rename from install-doc. All uses updated.
644 (uninstall): Run uninstall-doc.
645 (PSS): Add misc-ps.
646 (INSTALL_DVI, INSTALL_HTML, INSTALL_PDF, INSTALL_PS)
647 (INSTALL_DOC, UNINSTALL_DVI, UNINSTALL_HTML, UNINSTALL_PDF)
648 (UNINSTALL_PS, UNINSTALL_DOC): New variables.
649 ($(INSTALL_DOC), install-doc, install-dvi, install-html, install-pdf)
650 (install-ps, $(UNINSTALL_DOC), uninstall-doc, uninstall-dvi)
651 (uninstall-html, uninstall-pdf, uninstall-ps): New .PHONY rules.
652
8d28d0ac
PE
6532013-08-11 Paul Eggert <eggert@cs.ucla.edu>
654
655 Add --with-zlib to 'configure'.
656 * configure.ac: Add --with-zlib option to 'configure', so that Emacs
657 can be built without zlib. Don't assume that -lz is needed on
658 non-PNG hosts. Mention zlib configuration status in 'configure' output.
659
313546eb
LMI
6602013-08-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
661
662 * configure.ac: Test for zlib.
663
d4166523
EZ
6642013-08-10 Eli Zaretskii <eliz@gnu.org>
665
666 * configure.ac: Define and substitute UPDATE_MANIFEST.
667
016d3f7d
SB
6682013-08-04 Stephen Berman <stephen.berman@gmx.net>
669
670 * info/dir: Add todo-mode.
671
e0fdb694
PE
6722013-08-04 Paul Eggert <eggert@cs.ucla.edu>
673
674 Fix some minor races in hosts lacking mkostemp (Bug#15015).
675 Gnulib's emulation of mkostemp doesn't have races that Emacs's does.
676 * configure.ac (mkostemp): Remove check for this function;
677 gnulib does the check now.
678 (mkstemp): Remove check for this no-longer-used function.
679 * lib/mkostemp.c, lib/secure_getenv.c, lib/tempname.c, lib/tempname.h:
680 * m4/mkostemp.m4, m4/secure_getenv.m4, m4/tempname.m4:
681 New files, copied from Gnulib.
682 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
683
7bddb120
MA
6842013-07-29 Michael Albinus <michael.albinus@gmx.de>
685
686 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add
687 --without-file-notification to --without-all.
688
dfc7be39
XF
6892013-07-29 Xue Fuqiao <xfq.free@gmail.com>
690
691 * INSTALL: Fix description.
692
885e792c
GM
6932013-07-27 Glenn Morris <rgm@gnu.org>
694
695 * configure.ac: Extend the --with-sound option to allow
696 specification of OSS or ALSA (see bug#14812#64).
697
ef75383c
GM
6982013-07-25 Glenn Morris <rgm@gnu.org>
699
57cff712
GM
700 * info/dir: Add ido.
701
ef75383c
GM
702 * make-dist: Add a --tests option, to include test/.
703
1813e115
GM
7042013-07-24 Glenn Morris <rgm@gnu.org>
705
706 * configure.ac: Use self-descriptive tags for AC_CONFIG_COMMANDS.
707
60967f56
GM
7082013-07-23 Glenn Morris <rgm@gnu.org>
709
710 * configure.ac (etc, lisp): No need to create specially.
711 Configure already creates lisp, src/Makefile now creates etc.
712
a29c3e6d
PE
7132013-07-23 Paul Eggert <eggert@cs.ucla.edu>
714
e3ebe15a 715 Port to GNU/Linux systems with tinfo but not ncurses.
a29c3e6d
PE
716 * configure.ac (USE_NCURSES): New symbol.
717
6496aec9
PE
7182013-07-20 Paul Eggert <eggert@cs.ucla.edu>
719
720 Fix array bounds violation when pty allocation fails.
721 * configure.ac (PTY_TTY_NAME_SPRINTF): Use PTY_NAME_SIZE,
722 not sizeof pty_name, since pty_name is now a pointer to the array.
723
c04bbd85
PE
7242013-07-13 Paul Eggert <eggert@cs.ucla.edu>
725
726 * configure.ac: Simplify --with-file-notification handling.
727
671d4bfc
GM
7282013-07-12 Glenn Morris <rgm@gnu.org>
729
730 * configure.ac: If with-file-notification=yes, if gfile not found,
731 go on to try inotify (not on MS Windows or Nextstep).
732
bacba3c2
PE
7332013-07-12 Paul Eggert <eggert@cs.ucla.edu>
734
735 Fix races with threads and file descriptors.
736 * configure.ac (PTY_TTY_NAME_SPRINTF): Use emacs_close, not close.
737
c6e7fc0e
PE
7382013-07-10 Paul Eggert <eggert@cs.ucla.edu>
739
740 * Makefile.in (removenullpaths): Remove adjacent null paths (Bug#14835).
741
2aae948d
PR
7422013-07-09 Peter Rosin <peda@lysator.liu.se> (tiny change>
743
744 * configure.ac (HAVE_W32): Avoid nested functions (the second
745 argument of AC_LANG_PROGRAM is already expanded inside a
746 function). (Bug#14830)
747
4ebbdd67
PE
7482013-07-09 Paul Eggert <eggert@cs.ucla.edu>
749
7b154def
PE
750 Port recent close-on-exec changes to Cygwin (Bug#14821).
751 * lib/binary-io.c, lib/binary-io.h: New files.
752 Merge from gnulib, incorporating:
753 2013-07-09 accept4, dup3, pipe2: port to Cygwin
754 * lib/pipe2.c: Update from gnulib, as part of this merge.
755 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
756
4ebbdd67
PE
757 Handle errno and exit status a bit more carefully.
758 * lib/ignore-value.h: Remove this gnulib-imported file.
759 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
760
a04689de 7612013-07-08 Magnus Henoch <magnus.henoch@gmail.com> (tiny change)
e4b1e5af
JD
762
763 * configure.ac (HAVE_IMAGEMAGICK): Check on NS also (Bug#14798).
764
2a74a90a
PE
7652013-07-08 Paul Eggert <eggert@cs.ucla.edu>
766
767 Try to fix FreeBSD 9.1 porting problem (Bug#14812).
768 This incorporates the following merge from gnulib:
769 2013-07-07 stdalign, verify: port to FreeBSD 9.1, to C11, and to C++11
770
067428c1
PE
7712013-07-07 Paul Eggert <eggert@cs.ucla.edu>
772
9caab067
PE
773 Port to Ubuntu 10 (Bug#14803).
774 * configure.ac (accept4): New function to check for.
775
067428c1
PE
776 Make file descriptors close-on-exec when possible (Bug#14803).
777 * configure.ac (mkostemp): New function to check for.
778 (PTY_OPEN): Pass O_CLOEXEC to posix_openpt.
779 * lib/fcntl.c, lib/getdtablesize.c, lib/pipe2.c, m4/fcntl.m4:
780 * m4/getdtablesize.m4, m4/pipe2.m4: New files, taken from gnulib.
781 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
782
1399490e 7832013-07-03 Christoph Egger <christoph@debian.org> (tiny change)
0946b7ca
CE
784
785 * configure.ac (emacs_broken_SIGIO): Set on gnu-kfreebsd to avoid hang.
786 http://bugs.debian.org/712974
787
5583dcb6
PE
7882013-07-02 Paul Eggert <eggert@cs.ucla.edu>
789
57f8c490
PE
790 Remove some unused macros from 'configure'.
791 * configure.ac (HAVE_SOUNDCARD_H, HAVE_LINUX_VERSION_H, HAVE_SPEED_T)
792 (HAVE_GNUTLS_CALLBACK_CERTIFICATE_VERIFY)
793 (HAVE_GNUTLS_CERTIFICATE_SET_VERIFY_FUNCTION, HAVE_UTIMES)
794 (HAVE_LIBHESIOD, HAVE_LIBRESOLV, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
795 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
796 (HAVE_LIBKRB4, HAVE_LIBKRB, HAVE_DES_H, HAVE_KERBEROSIV_DES_H)
797 (HAVE_DEV_PTMX, DEVICE_SEP, USG5):
798 Remove these macros, as they are not used.
799 (sys_siglist): Remove macro; src/sysdep.c now does this.
800
5583dcb6
PE
801 * configure.ac (GTK_COMPILES): Check API a bit more carefully.
802 Also check that it links. Say whether it compiled and linked.
803
37afa042 8042013-07-01 Paul Eggert <eggert@cs.ucla.edu>
8f5f35cc 805
aaea7495
PE
806 Merge from gnulib, incorporating:
807 2013-06-23 ignore-value: port to gcc -pedantic
808 2013-06-21 extern-inline: port to gcc -std=c89
809
37afa042
PE
8102013-06-30 Paul Eggert <eggert@cs.ucla.edu>
811
8f5f35cc
PE
812 Do not use GTK 3 if it exists but cannot be compiled.
813 * configure.ac: Leave GTK_OBJ and term_header alone if GTK 3
814 exists but cannot be compiled.
815
ae7bfbf5
JB
8162013-06-27 Juanma Barranquero <lekktu@gmail.com>
817
818 * Makefile.in (install-arch-indep): Do not create directories passed
819 with --enable-locallisppath.
820
6e0e82a0 8212013-06-24 Glenn Morris <rgm@gnu.org>
ab6a27d8
GM
822
823 * configure.ac: Include X11/X.h when testing for Xft.h. (Bug#14684)
824
c9509ef4
JB
8252013-06-22 Juanma Barranquero <lekktu@gmail.com>
826
827 * .bzrignore: Add GNU idutils ID database file.
828
6b4914d2
YM
8292013-06-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
830
831 * configure.ac (HAVE_LIBXML2): Try built-in libxml2 on OS X 10.8
832 as a fallback.
833
aff6371e
SM
8342013-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
835
836 * .bzrignore: Don't unignore cl-loaddefs.el.
837
c9509ef4 8382013-06-20 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
89561f72
PE
839
840 * configure.ac (log2): Check for this function.
841
53d829de
JB
8422013-06-19 Juanma Barranquero <lekktu@gmail.com>
843
844 * .bzrignore: Add GNU GLOBAL files.
845
84575e67
PE
8462013-06-17 Paul Eggert <eggert@cs.ucla.edu>
847
4f405069 848 Use functions, not macros, for XINT etc. (Bug#11935).
84575e67
PE
849 * configure.ac (WARN_CFLAGS): Remove -Wbad-function-cast,
850 as it generates bogus warnings about reasonable casts of calls.
851
2a540847
PE
8522013-06-16 Paul Eggert <eggert@cs.ucla.edu>
853
854 * configure.ac: Report ACL usage at the end (Bug#14612).
855
b0e22831
PE
8562013-06-11 Paul Eggert <eggert@cs.ucla.edu>
857
858 --without-all should imply --with-file-notification=no. (Bug#14569)
859 * configure.ac (with_file_notification): Default to $with_features.
860
bf77e230
PE
8612013-06-09 Paul Eggert <eggert@cs.ucla.edu>
862
863 Merge from gnulib, incorporating:
864 2013-06-02 sig2str: port to C++
865 2013-05-29 c-ctype, regex, verify: port to gcc -std=c90 -pedantic
866
b33f93ee
JD
8672013-06-08 Jan Djärv <jan.h.d@swipnet.se>
868
869 * configure.ac (HAVE_GLIB): Only set XGSELOBJ if HAVE_NS = no.
870 (with_file_notification): Don't set to gfile if with_ns = yes.
871
6c0a9ed1
RC
8722013-06-07 Richard Copley <rcopley@gmail.com> (tiny change)
873
874 * Makefile.in (msys_to_w32): Modify to support d:\foo file names.
e7b41c4c
JB
875 (msys_lisppath_to_w32, msys_prefix_subst, msys_sed_sh_escape):
876 New variables.
d6f00819 877 (epaths-force-w32): Use them. (Bug#14513)
6c0a9ed1 878
b9110c6b
MA
8792013-06-03 Michael Albinus <michael.albinus@gmx.de>
880
881 * configure.ac (HAVE_GFILENOTIFY): Check for gio >= 2.24.
882
7f203aa1
EZ
8832013-06-03 Eli Zaretskii <eliz@gnu.org>
884
885 * configure.ac (HAVE_GFILENOTIFY): Do not change $LIBS.
886 (GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): Substitute.
887
55a87246
JD
8882013-06-03 Jan Djärv <jan.h.d@swipnet.se>
889
890 * configure.ac (HAVE_GLIB): Add GLib check. Set XGSELOBJ if GLib is
891 used. Remove xgselect.o from XOBJ.
892
c9628c79
MA
8932013-06-03 Michael Albinus <michael.albinus@gmx.de>
894
895 * configure.ac (file-notification): New option, replaces inotify option.
896 (HAVE_W32): Remove w32notify.o.
e7b41c4c 897 (with_file_notification): Add checks for glib and w32. Adapt check
c9628c79
MA
898 for inotify.
899 (Summary): Add entry for file notification.
900
901 * autogen/config.in: Add entries for HAVE_GFILENOTIFY,
902 HAVE_W32NOTIFY and USE_FILE_NOTIFY.
903
2044e704
JB
9042013-06-02 Juanma Barranquero <lekktu@gmail.com>
905
906 * .bzrignore: Ignore dirs libexec/, share/ and var/.
907
9dbd3bb1
XF
9082013-05-29 Xue Fuqiao <xfq.free@gmail.com>
909
910 * INSTALL: Fix description.
911
2d8ac645
YM
9122013-05-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
913
914 * configure.ac (HAVE_XRANDR): Check availability of
915 XRRGetScreenResources rather than that of XRRQueryExtension.
916
6b56a60a
EZ
9172013-05-18 Eli Zaretskii <eliz@gnu.org>
918
919 * make-dist (files): Add nt/msysconfig.sh, nt/mingw-cfg.site,
920 nt/epaths.nt, and nt/INSTALL.MSYS.
921
bfbe2627
PE
9222013-05-18 Paul Eggert <eggert@cs.ucla.edu>
923
31ff141c
PE
924 Port --enable-gcc-warnings to clang.
925 * configure.ac (nw): Remove obsolescent warnings.
926 These aren't needed for clang, or for gcc for that matter.
927 (emacs_cv_clang): New var, which tests for clang.
928 Omit warnings that clang is too picky about.
929 (GLIB_DISABLE_DEPRECATION_WARNINGS): Define this;
930 needed for Ubuntu 13.04 + clang + --enable-gcc-warnings.
931
bfbe2627
PE
932 * make-dist (files): Add nt/Makefile.in, nt/gnulib.mk.
933 Otherwise, 'configure; make' fails on non-Windows builds.
934
df065a0b
EZ
9352013-05-16 Eli Zaretskii <eliz@gnu.org>
936
937 * lib/Makefile.am: If building for MS-Windows, include
938 nt/gnulib.mk instead of lib/gnulib.mk.
939
940 * configure.ac: Adapt to MSYS build on MS-Windows.
941
942 * Makefile.in (NTDIR): New variable, for the MSYS build on
943 MS-Windows.
944 (SUBDIR): Add $(NTDIR).
945 (.PHONY): Add epaths-force-w32.
946 (msys_to_w32): New variable.
947 (epaths-force-w32, install-nt, uninstall-nt): New targets.
948 (lib-src src): Add $(NTLIB) to prerequisites.
949 (lib lib-src lisp leim nt): Add 'nt'.
950 (config.status): Use $(CFG).
951 (.PHONY): Add install-$(NTDIR) and uninstall-$(NTDIR).
952 (install, install-arch-dep): Add install-$(NTDIR).
953 (uninstall): Depend on uninstall-$(NTDIR).
954 (mostlyclean, clean, distclean, bootstrap-clean): Add 'nt'.
955
956 * GNUmakefile (CFG): New variable, uses mingw-cfg.site as
957 CONFIG_SITE for the MSYS build on MS-Windows.
958 (Makefile): Use $(CFG).
959
960 * .bzrignore: Ignore *.res, *.tmp, and *.map. Remove
961 src/emacs.res.
962
cdd0de4b
PE
9632013-05-16 Paul Eggert <eggert@cs.ucla.edu>
964
965 Merge from gnulib, incorporating:
966 2013-05-15 manywarnings: update for GCC 4.8.0
967 2013-05-15 stdio: use __REDIRECT for fwrite, fwrite_unlocked
968 2013-05-15 sig2str, stdio, warnings: port to clang
969
6e911150
SM
9702013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
971
972 * Makefile.in (install-doc): DOC file is not version specific any more.
973 * .bzrignore: Don't ignore DOC-* any more.
974
522fe43b
PE
9752013-05-13 Paul Eggert <eggert@cs.ucla.edu>
976
bb8eb357 977 * configure.ac (LD_SWITCH_SYSTEM_TEMACS): OpenBSD needs -nopie.
522fe43b
PE
978 Reported privately by Han Boetes <han@boetes.org>.
979
86cec478
JB
9802013-05-08 Juanma Barranquero <lekktu@gmail.com>
981
982 * lib/makefile.w32-in (ACL_H): New macro.
983 ($(BLD)/acl-errno-valid.$(O)): Update dependencies.
984
ffdc270a
PE
9852013-05-07 Paul Eggert <eggert@cs.ucla.edu>
986
e7b41c4c 987 Use Gnulib ACL implementation, for benefit of Solaris etc. (Bug#14295)
ffdc270a
PE
988 * configure.ac: Remove -with-acl option, since Gnulib does that for
989 us now.
990 (LIBACL_LIBS): Remove; no longer needed.
991 * lib/Makefile.am (CLEANFILES, SUFFIXES): New (empty) macros,
992 for the benefit of the new ACL implementation.
993 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/acl-errno-valid.$(O).
994 ($(BLD)/acl-errno-valid.$(O)): New rule.
995 * lib/acl-errno-valid.c, lib/acl-internal.h, lib/acl.h:
996 * lib/acl_entries.c, lib/errno.in.h, lib/file-has-acl.c:
997 * lib/qcopy-acl.c, lib/qset-acl.c, m4/acl.m4, m4/errno_h.m4:
998 New files, taken from gnulib.
999 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1000
4e3f9230
YM
10012013-05-07 Jan Djärv <jan.h.d@swipnet.se>
1002
1003 * configure.ac (HAVE_XRANDR, HAVE_XINERAMA): Define if available.
1004 (XRANDR_LIBS, XINERAMA_LIBS): New AC_SUBSTs.
1005
7a6018ad
PE
10062013-05-06 Paul Eggert <eggert@cs.ucla.edu>
1007
1008 Merge from gnulib, incorporating:
1009 2013-04-30 utimens, utimensat: work around Solaris UTIME_OMIT bug
1010
0922c475
PE
10112013-05-01 Paul Eggert <eggert@cs.ucla.edu>
1012
1013 * make-dist: Keep necessary restrictions on file access.
1014
d9774ea4
PE
10152013-04-29 Paul Eggert <eggert@cs.ucla.edu>
1016
1017 Merge from gnulib, incorporating:
1018 2013-04-28 extern-inline: work around bug in Sun c99
1019
d7ed9b36
PE
10202013-04-27 Paul Eggert <eggert@cs.ucla.edu>
1021
1022 Merge from gnulib, incorporating:
1023 2013-04-27 alignof, intprops, malloca: port better to IBM's C compiler
1024
f780d632
PE
10252013-04-26 Paul Eggert <eggert@cs.ucla.edu>
1026
1027 Port better to AIX (Bug#14258).
1028 * configure.ac (CFLAGS): Append -O if the user did not specify CFLAGS,
1029 we did not already infer an optimization option, and -O works.
1030 AIX xlc needs -O, otherwise garbage collection doesn't work.
1031
c6cb2f53
PE
10322013-04-22 Paul Eggert <eggert@cs.ucla.edu>
1033
1e8589d3
PE
1034 * make-dist: Do not distribute admin/unidata/Makefile.
1035 It is generated by 'configure'.
1036
c6cb2f53
PE
1037 * build-aux/update-subdirs: Don't leave subdirs.el~ behind.
1038 It messes up 'make distclean', and contains no useful information
1039 because it's a copy of subdirs.el.
1040
7e00831f
JM
10412013-04-18 John Marino <gnugcc@marino.st> (tiny change)
1042
1043 * configure.ac: Add DragonFly BSD, mostly same as FreeBSD. (Bug#14068)
1044
4f8902cd
GM
10452013-04-18 Glenn Morris <rgm@gnu.org>
1046
1047 * configure.ac (AC_PROG_LN_S): Remove, too restrictive.
1048 (LN_S_FILEONLY): New output variable.
1049 * Makefile.in (LN_S): Remove.
1050 (LN_S_FILEONLY): New, set by configure.
1051 (install-arch-dep): Use LN_S_FILEONLY rather than LN_S.
1052
e8bdb06e
KB
10532013-04-12 Ken Brown <kbrown@cornell.edu>
1054
1055 * configure.ac (canonical): Adapt to 64-bit Cygwin, for which
1056 `canonical' is `x86_64-unknown-cygwin'.
1057
ba3b2d88
KB
10582013-04-09 Ken Brown <kbrown@cornell.edu>
1059
1060 * configure.ac (W32_RES_LINK): Remove unneeded linker directive
1061 `-Wl,-bpe-i386', which is confusing in the 64-bit case.
1062 (Bug#12993)
1063
876da980
PE
10642013-04-07 Paul Eggert <eggert@cs.ucla.edu>
1065
1066 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
1067 * configure.ac (LD_SWITCH_SYSTEM_TEMACS): Append -pg if profiling
1068 and if not on GNU/Linux or FreeBSD.
1069 * lib/Makefile.am (AM_CFLAGS): Add $(PROFILING_CFLAGS), so that
1070 lib/*.o is profiled too.
1071
119b2d43
PE
10722013-03-30 Paul Eggert <eggert@cs.ucla.edu>
1073
1074 Merge from gnulib, incorporating:
1075 2013-03-29 stdalign: port to stricter ISO C11
1076 This helps to run 'configure' on MS-Windows; see Eli Zaretskii in
1077 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00999.html>.
1078
afeee3e5
PE
10792013-03-27 Paul Eggert <eggert@cs.ucla.edu>
1080
1081 * configure.ac (HAVE_XKBGETKEYBOARD): Remove.
1082 Subsumed by HAVE_XKB. All uses changed.
1083
a4cedbf7
JD
10842013-03-25 Jan Djärv <jan.h.d@swipnet.se>
1085
1086 * configure.ac (HAVE_XKB): Define if Xkb is present.
1087
f8ce376e
PE
10882013-03-24 Paul Eggert <eggert@cs.ucla.edu>
1089
1090 Merge from gnulib, incorporating:
1091 2013-03-21 sys_select, sys_time: port 2013-01-30 fix to Cygwin
1092
982efbcd
PE
10932013-03-18 Paul Eggert <eggert@cs.ucla.edu>
1094
4c9a1377
PE
1095 Fix bug when building Emacs with a GNU Make submake (Bug#13962).
1096 * Makefile.in (QUIET_SUBMAKE): New macro.
1097 (install-info, uninstall): Use it.
1098
19151a7f
PE
1099 Emacs crashes with ImageMagick 6.8.2-3 through 6.8.3-9 (Bug#13867).
1100 * configure.ac (IMAGEMAGICK_MODULE): Reject 6.8.2.
1101 We want to reject 6.8.2-3 through 6.8.3-9, but there seems to be
1102 no way to do this in pkg-config, so make do with a reasonable
1103 approximation.
1104
982efbcd
PE
1105 Automate the build of ja-dic.el (Bug#13984).
1106 * .bzrignore: Add leim/ja-dic/.
1107
5615c9a9
PE
11082013-03-13 Paul Eggert <eggert@cs.ucla.edu>
1109
47d7532e
PE
1110 File synchronization fixes (Bug#13944).
1111 * configure.ac (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
1112 (fsync): Remove check; now done by gnulib.
1113 * lib/fdatasync.c, lib/fsync.c, m4/fdatasync.m4, m4/fsync.m4:
1114 New files, from gnulib.
1115 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1116
5615c9a9 1117 Merge from gnulib, incorporating:
2c3f72f4 1118 2013-03-13 putenv: port to Solaris 10
5615c9a9
PE
1119 2013-03-12 mktime: fix configure typo
1120 2013-03-11 regex: port to mingw's recent addition of undeclared alarm
1121 2013-03-11 putenv: avoid compilation warning on mingw
1122 2013-03-11 unistd: don't prevent Tru64 Unix from using gnulib strtod.
1123
47d038b3
GM
11242013-03-11 Glenn Morris <rgm@gnu.org>
1125
1126 * Merge in all changes up to version 24.3 release.
1127
0bafabe7 11282013-03-06 Paul Eggert <eggert@cs.ucla.edu>
3b108d19
PE
1129
1130 * configure.ac (TERM_HEADER): Remove duplicate definition (Bug#13872).
1131 It can mess up 'configure' runs.
1132
b3cdfd9e
GM
11332013-03-05 Glenn Morris <rgm@gnu.org>
1134
1135 * Makefile.in (install-man): Ignore gzip exit status.
1136
4aff132c
GM
11372013-03-03 Glenn Morris <rgm@gnu.org>
1138
1139 * make-dist: Remove lzma (it's replaced by xz).
1140
89bd9d36
PE
11412013-03-01 Paul Eggert <eggert@cs.ucla.edu>
1142
1143 Merge from gnulib, incorporating:
1144 2013-02-21 putenv: port better to native Windows
1145 2013-02-18 extern-inline: avoid compilation error with HP-UX cc
1146 2013-02-14 putenv: fix heap corruption with mixed putenv/_putenv
1147
0e946786
KB
11482013-02-28 Ken Brown <kbrown@cornell.edu>
1149
1150 * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)
1151
1ddc2bd6
PE
11522013-02-25 Paul Eggert <eggert@cs.ucla.edu>
1153
1154 Simplify data_start configuration (Bug#13783).
1155 * configure.ac (CRT_DIR, LIB_STANDARD, START_FILES, DATA_START)
1156 (LD_FIRSTFLAG, ORDINARY_LINK, LIB_GCC): Remove.
1157 (AC_CHECK_HEADERS_ONCE): Remove sys/resource.h, as it's
1158 not always needed.
1159 (HAVE_DATA_START): New macro.
1160
b59a2e9e
PE
11612013-02-21 Paul Eggert <eggert@cs.ucla.edu>
1162
1163 Parallelize documentation builds.
1164 This speeds up building of documentation on multiprocessor
1165 platforms, and is motivated by Texinfo 5.0, which is much slower.
1166 Add a toplevel rule 'make docs' to make all the documentation.
1167 * .bzrignore: Add .dvi, .html, .ps.
1168 * Makefile.in (DVIS, HTMLS, INFOS, PSS, DOCS): New macros.
1169 ($(DOCS), docs, vi, html, pdf, ps): New rules.
1170 (info-real): Depend on $(INFOS) rather than doing it sequentially.
1171 (dvi): Depend on $(DVIS) rather than doing it sequentially.
1172
648e5523 11732013-02-15 Paul Eggert <eggert@cs.ucla.edu>
35b3a27e
PE
1174
1175 Fix AIX port (Bug#13650).
1176 * configure.ac (DATA_START, DATA_SEG_BITS): Set to 0x20000000 on AIX.
35b3a27e 1177
8c0905ac
EZ
11782013-02-12 Eli Zaretskii <eliz@gnu.org>
1179
1180 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/memrchr.$(O).
1181 ($(BLD)/memrchr.$(O)): New dependency.
1182
71d4202f
PE
11832013-02-11 Paul Eggert <eggert@cs.ucla.edu>
1184
a84b7c53
PE
1185 Tune by using memchr and memrchr.
1186 * .bzrignore: Add string.h.
1187 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1188 * lib/memrchr.c, lib/string.in.h, m4/memrchr.m4, m4/string_h.m4:
1189 New files, from gnulib.
1190
71d4202f
PE
1191 Merge from gnulib, incorporating:
1192 2013-02-11 unsetenv etc.: port to Solaris 11 + GNU Emacs
1193 2013-02-09 secure_getenv: fix C++ declaration typo
1194
55fe8e64
GM
11952013-02-11 Glenn Morris <rgm@gnu.org>
1196
1197 * configure.ac (emacs_config_options): Record some env vars.
1198
8b0590de
GM
11992013-02-10 Glenn Morris <rgm@gnu.org>
1200
1201 * configure.ac (emacs_config_options): Strip out the (internal)
1202 arguments --no-create and --no-recursion.
1203
8376d87e
PE
12042013-02-08 Paul Eggert <eggert@cs.ucla.edu>
1205
1206 Merge from gnulib, incorporating:
1207 2013-02-08 careadlinkat: stop exporting careadlinkatcwd
1208 The MS-Windows port can remove careadlinkatcwd at its convenience.
1209 2013-02-08 extensions: port better to HP-UX
1210 2013-02-06 extensions: port better to MINIX 3, HP-UX, autoheader 2.62
1211 2013-02-06 unistd: avoid namespace pollution on non-glibc systems
1212 2013-02-04 secure_getenv: new module [module not used by Emacs]
1213 2013-01-30 sys_time: port to Solaris 2.6
1214
8654f9d7
PE
12152013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1216
1217 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
1218 On my host, this speeds up directory-files-and-attributes by a
1219 factor of 3, when applied to Emacs's src directory.
1220 These functions are standardized by POSIX and are common these
1221 days; fall back on a (slower) gnulib implementation if the host
1222 is too old to supply them.
1223 * .bzrignore: Add lib/dirent.h.
1224 * lib/Makefile.am (libgnu_a_SOURCES): Add openat-die.c, save-cwd.c.
1225 * lib/careadlinkat.c, lib/careadlinkat.h: Merge from gnulib,
1226 incorporating: 2013-01-29 careadlinkat: do not provide careadlinkatcwd.
1227 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1228 * lib/dirent.in.h, lib/fdopendir.c, lib/fstatat.c, lib/openat-priv.h:
1229 * lib/openat-proc.c, lib/openat.h, m4/dirent_h.m4, m4/fdopendir.m4:
1230 * m4/fstatat.m4: New files, from gnulib.
1231 * lib/openat-die.c, lib/save-cwd.c, lib/save-cwd.h: New files.
1232 These last three are specific to Emacs and are not copied from gnulib.
1233 They are simpler than the gnulib versions and are tuned for Emacs.
1234
0eb61895
GM
12352013-02-01 Glenn Morris <rgm@gnu.org>
1236
1237 * make-dist: Only README files exist in lisp/ now, not README*.
1238
e02703bd
GK
12392013-01-23 Giorgos Keramidas <gkeramidas@gmail.com> (tiny change)
1240
4f405069 1241 * .bzrignore: Add lib-src/blessmail.
e02703bd 1242
ea78b882
PE
12432013-01-23 Paul Eggert <eggert@cs.ucla.edu>
1244
1245 Merge from gnulib, incorporating:
1246 2013-01-16 unistd: port to recent mingw
1247
795e7a5b 12482013-01-19 Glenn Morris <rgm@gnu.org>
94898d72
GM
1249
1250 * Makefile.in (install-arch-indep): Put back a chmod that was
1251 removed 2012-05-19. (Bug#13430)
1252
ffe04adc
PE
12532013-01-16 Paul Eggert <eggert@cs.ucla.edu>
1254
1255 Merge from gnulib, incorporating:
1256 2013-01-16 largefile: port better to Mac OS X 10.5
1257 2013-01-15 stdint: fix build with Android's Bionic fox x86
1258
c4e2ba0a
PE
12592013-01-16 Paul Eggert <eggert@cs.ucla.edu>
1260
1261 * configure.ac: Document that --enable-gcc-warnings emits errors.
1262 (Bug#13448)
1263
c0511b57 12642013-01-13 Glenn Morris <rgm@gnu.org>
39aff4a7
GM
1265
1266 * make-dist: Add options for xz compression and no compression.
1267
444b01bb
PE
12682013-01-12 Paul Eggert <eggert@cs.ucla.edu>
1269
1270 Enable conservative stack scanning for all architectures.
1271 Suggested by Stefan Monnier in
1272 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00183.html>.
1273 * configure.ac (GC_MARK_STACK): Remove.
1274
002b8433
PE
12752013-01-11 Paul Eggert <eggert@cs.ucla.edu>
1276
1277 * lib/getopt_.h: Remove trailing CRs that crept in.
1278
b76381c6
EZ
12792013-01-11 Eli Zaretskii <eliz@gnu.org>
1280
1281 * lib/getopt_.h: Regenerate.
1282
6466e676
PE
12832013-01-10 Paul Eggert <eggert@cs.ucla.edu>
1284
1285 Merge from gnulib, incorporating:
1286 2013-01-09 stdlib: port to Solaris 2.6
1287
92d59611
GM
12882013-01-04 Glenn Morris <rgm@gnu.org>
1289
1290 * info/dir: Add htmlfontify.
1291
ee0d3938
PE
12922013-01-04 Paul Eggert <eggert@cs.ucla.edu>
1293
1294 Merge from gnulib, incorporating:
1295 2013-01-04 stdio: remove now-unnecessary stdio.c
1296 2013-01-04 fprintftime: depend on stdio, not ignore-value
1297 2013-01-04 fwrite: silence __wur only for older glibc versions
1298 2013-01-04 fwrite: silence __wur without using inline
1299 * lib/stdio.c: Remove.
1300 * lib/stdio.in.h, lib/strftime.c: Update from gnulib.
1301 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1302
9ff99d22
PE
13032013-01-02 Paul Eggert <eggert@cs.ucla.edu>
1304
1305 Merge from gnulib, incorporating copyright-date changes and:
1306 2012-12-31 dup2: work around cygwin bug
1307
5a1d858b
JD
13082012-12-30 Jan Djärv <jan.h.d@swipnet.se>
1309
1310 * configure.ac: Check for GtkHandlebox.
8b745d92 1311 Check for GtkTearoffMenuItem.
7ec363cf
JD
1312 New enable: --enable-gtk-deprecation-warnings, default off.
1313 (HAVE_GTK3): If above enable is off, add
1314 -DGDK_DISABLE_DEPRECATION_WARNINGS to GTK_CFLAGS.
5a1d858b 1315
d5e5e7b4 13162012-12-30 Andreas Schwab <schwab@linux-m68k.org>
2550c6e4
AS
1317
1318 * configure.ac (TEMACS_LDFLAGS2): Don't define.
1319 (LIBS_GNUSTEP): Set for GNUstep and substitute.
1320 (LD_SWITCH_SYSTEM_TEMACS): Don't set for GNUstep.
1321
60f5e585
GM
13222012-12-27 Glenn Morris <rgm@gnu.org>
1323
1324 * configure.ac (emacs_config_options): New.
1325 Use $@ rather than undocumented $ac_configure_args.
1326 Replace any embedded double quotes. (Bug#13274)
1327
82e2a1f0 13282012-12-27 Andreas Schwab <schwab@linux-m68k.org>
02e7729e
AS
1329
1330 * configure.ac (SIGNALS_VIA_CHARACTERS): Also define for darwin.
1331 (Bug#13222)
1332
a8e1690b
PE
13332012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1334
1335 Revert static checking of stack smashing.
1336 * configure.ac (WARN_CFLAGS): Omit -Wstack-protector when
1337 configured with --enable-gcc-warnings. -Wstack-protector causes
1338 diagnostics to be issued on Ubuntu 12.10 x86-64.
1339
219023c4
PE
13402012-12-24 Paul Eggert <eggert@cs.ucla.edu>
1341
1342 Merge from gnulib, incorporating:
1343 2012-12-21 AC_PROG_MKDIR_P: port workaround to pre-2.62 Autoconf
1344 2012-12-20 AC_PROG_MKDIR_P: don't workaround if not buggy
1345 2012-12-17 filemode, sys_stat: Handle MPX files a la AIX.
1346
a4b0cca1 13472012-12-21 Akinori MUSHA <knu@iDaemons.org> (tiny change)
01824657
AM
1348
1349 * Makefile.in (install-arch-dep): Ignore chmod errors. (Bug#13233)
1350
7c3d167f
RF
13512012-12-16 Romain Francoise <romain@orebokech.com>
1352
1353 * configure.ac (acl): New option.
1354 (HAVE_POSIX_ACL): Test for POSIX ACL support. This is typically
1355 provided by libacl on GNU/Linux.
1356
97976f9f
PE
13572012-12-14 Paul Eggert <eggert@cs.ucla.edu>
1358
e7b41c4c 1359 Fix permissions bugs with setgid directories etc. (Bug#13125)
97976f9f
PE
1360 * configure.ac (BSD4_2): Remove; no longer needed.
1361
98c94021
GM
13622012-12-13 Glenn Morris <rgm@gnu.org>
1363
727f9739 1364 * info/dir: Add bovine, srecode, wisent.
98c94021 1365
727f9739 13662012-12-13 Andreas Schwab <schwab@suse.de>
0f59daaf
AS
1367
1368 * Makefile.in (install-info): Use `${MAKE} -s' for echo-info.
727f9739 1369 (uninstall): Likewise. (Bug#13143)
0f59daaf 1370
904dd565
PE
13712012-12-11 Paul Eggert <eggert@cs.ucla.edu>
1372
1373 Merge from gnulib for 'inline' (Bug#13040), incorporating:
1374 2012-12-11 extern-inline: avoid incompatibility with Darwin Libc
1375 * m4/extern-inline.m4: Update from gnulib.
1376
0eeb69fe
JB
13772012-12-11 Juanma Barranquero <lekktu@gmail.com>
1378
1379 * lib/makefile.w32-in (SIG2STR_H): New macro.
1380 ($(BLD)/sig2str.$(O)): Update dependencies.
1381
7e77303e
PE
13822012-12-10 Paul Eggert <eggert@cs.ucla.edu>
1383
1384 * configure.ac (HAVE_INOTIFY): Speed up configure-time test.
1385 There's no need to test for any of three inotify functions,
1386 since we use all three. Check for just the first one.
1387
1cf1bbd5
DC
13882012-12-10 Daniel Colascione <dancol@dancol.org>
1389
4f405069 1390 * .bzrignore: Add src/emacs.res.
9ca3e73a 1391
1cf1bbd5
DC
1392 * configure.ac (W32_RES, W32_RES_LINK, WINDRES): Teach the cygw32
1393 build how to compile Windows resource files; use these variables
1394 to tell src/Makefile.in how and whether to compile resources.
1395
81606b10
RS
13962012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1397
1398 * configure.ac (inotify): New option.
1399 (HAVE_INOTIFY): Test for inotify.
1400
75d7aa24
AS
14012012-12-09 Andreas Schwab <schwab@linux-m68k.org>
1402
1403 * configure.ac: Fix source command in .gdbinit.
1404 Don't quote $MAKEINFO.
1405
3cc53d60
PE
14062012-12-09 Paul Eggert <eggert@cs.ucla.edu>
1407
1408 Allow spaces in some configuration vars (Bug#13078).
1409 * configure.ac (srcdir): Don't assume $PWD lacks spaces.
1410 (srcdir, MAKEINFO, PKG_CONFIG, PKG_CONFIG_MIN_VERSION):
1411 All uses quoted, to allow spaces in these vars.
1412
5745a7df
PE
14132012-12-08 Paul Eggert <eggert@cs.ucla.edu>
1414
1415 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
1416 * lib/putenv.c, lib/unsetenv.c, m4/putenv.m4, m4/setenv.m4:
1417 New files, copied automatically from gnulib.
1418 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1419
63999a7d
EZ
14202012-12-08 Eli Zaretskii <eliz@gnu.org>
1421
1422 * lib/makefile.w32-in ($(BLD)/sig2str.$(O)): New dependency.
1423 Remove a stray character at the beginning of the file.
1424 (Bug#13026)
1425
d983a10b
PE
14262012-12-08 Paul Eggert <eggert@cs.ucla.edu>
1427
7be78020
PE
1428 Simplify get_lim_data.
1429 * configure.ac (ULIMIT_BREAK_VALUE): Remove.
1430
d983a10b
PE
1431 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
1432 * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
1433 Use SIGCHLD rather than SIGCLD.
1434 * lib/sig2str.c, lib/sig2str.h, m4/sig2str.m4: New files, from gnulib.
1435 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1436 * lib/makefile.w32-in (GNULIBOBJS): Add $(BUILD)/sig2str.$(O).
1437
d8ad4d3f 14382012-12-06 Glenn Morris <rgm@gnu.org>
de0e31ed
GM
1439
1440 * configure.ac: Handle info/ files with or without ".info" extension.
1441
f64898ab
PE
14422012-11-30 Paul Eggert <eggert@cs.ucla.edu>
1443
1444 Merge from gnulib for 'inline' (Bug#13040), incorporating:
1445 2012-11-29 snippet/warn-on-use: no 'static inline'
1446 2012-11-29 ftruncate, fts, lstat, openat, raise: no 'static inline'
1447 2012-11-29 arctwo, md4, md5, sha1, sha256, sha512: no 'static inline'
1448 2012-11-29 fflush, stat: no 'static inline'
1449 2012-11-29 stdio: better 'inline'
1450 2012-11-29 sys_stat: no 'static inline'
1451 2012-11-29 unistd: better 'inline'
1452 2012-11-29 c-strtod, memcoll, readutmp: no 'static inline'
1453 2012-11-29 extern-inline: no 'static inline'
1454 2012-11-29 sys_socket: better 'inline'
1455 * lib/stdio.c, lib/unistd.c: New files, from gnulib.
1456 * build-aux/snippet/warn-on-use.h, lib/gnulib.mk, lib/lstat.c:
1457 * lib/md5.c, lib/sha1.c, lib/sha256.c, lib/sha512.c, lib/stat.c:
1458 * lib/stdio.in.h, lib/sys_stat.in.h, lib/unistd.in.h, m4/c-strtod.m4:
1459 * m4/extern-inline.m4, m4/gnulib-comp.m4, m4/lstat.m4, m4/md5.m4:
1460 * m4/sha1.m4, m4/sha256.m4, m4/sha512.m4, m4/stat.m4, m4/stdio_h.m4:
1461 * m4/sys_socket_h.m4, m4/sys_stat_h.m4, m4/unistd_h.m4:
1462 Update from gnulib.
1463
5c9cf0a3 14642012-11-27 Eli Zaretskii <eliz@gnu.org>
50a60e02 1465
5c9cf0a3
GM
1466 * make-dist (nt): Adjust to changes in names of the *.manifest files.
1467
bcd77a2b
KB
14682012-11-24 Ken Brown <kbrown@cornell.edu>
1469
1470 * configure.ac (HAVE_MOUSE): Remove.
1471
95ef7787
PE
14722012-11-23 Paul Eggert <eggert@cs.ucla.edu>
1473
1474 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
1475 * configure.ac: Do not check for dirent.h or closdir.
1476
9239d970
PE
14772012-11-21 Paul Eggert <eggert@cs.ucla.edu>
1478
1479 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
1480 * configure.ac: Do not check for getcwd or getwd.
1481
1b3b7caa
GM
14822012-11-21 Glenn Morris <rgm@gnu.org>
1483
1484 * configure.ac (--enable-profiling): Doc fix.
1485
d7fcbbfe 14862012-11-20 Paul Eggert <eggert@cs.ucla.edu>
8ea5c4de
PE
1487
1488 Improve static checking of integer overflow and stack smashing.
d7fcbbfe
PE
1489 * configure.ac (WARN_CFLAGS): Add -Wstack-protector
1490 if using GCC 4.7.2 or later on a platform with
8ea5c4de
PE
1491 at least 64-bit long int. This improves static checking on these
1492 platforms, when configured with --enable-gcc-warnings.
1493
49cdacda
PE
14942012-11-17 Paul Eggert <eggert@cs.ucla.edu>
1495
1496 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
1497 * configure.ac: Do not check for fcntl.h.
1498 * lib/gnulib.mk: Regenerate.
1499
3d082a26
PE
15002012-11-16 Paul Eggert <eggert@cs.ucla.edu>
1501
1502 Remove no-longer-used pty_max_bytes variable.
1503 * configure.ac (fpathconf): Remove unnecessary check.
1504
73dcdb9f
PE
15052012-11-14 Paul Eggert <eggert@cs.ucla.edu>
1506
1507 Use faccessat, not access, when checking file permissions (Bug#12632).
1508 * .bzrignore: Add lib/fcntl.h.
1509 * configure.ac (euidaccess): Remove check; gnulib does this for us now.
1510 (gl_FCNTL_O_FLAGS): Define a dummy version.
1511 * lib/at-func.c, lib/euidaccess.c, lib/faccessat.c, lib/fcntl.in.h:
1512 * lib/getgroups.c, lib/group-member.c, lib/root-uid.h:
1513 * lib/xalloc-oversized.h, m4/euidaccess.m4, m4/faccessat.m4:
1514 * m4/fcntl_h.m4, m4/getgroups.m4, m4/group-member.m4:
1515 New files, from gnulib.
1516 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1517
8148369c
PE
15182012-11-05 Paul Eggert <eggert@cs.ucla.edu>
1519
dd0333b6
PE
1520 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
1521 * configure.ac (setpgid, setsid): Assume their existence.
1522 (AC_FUNC_GETPGRP, SETPGRP_RELEASES_CTTY): Remove; obsolete.
1523
8148369c
PE
1524 Simplify by assuming __fpending.
1525 Now that Emacs is using the gnulib fpending module,
1526 there's no need for Emacs to have a separate implementation.
1527 * configure.ac (stdio_ext.h, __fpending): Remove now-duplicate checks.
1528 (PENDING_OUTPUT_COUNT, DISPNEW_NEEDS_STDIO_EXT): Remove.
1529
b3cf17f6
EZ
15302012-11-03 Eli Zaretskii <eliz@gnu.org>
1531
3a7089c1
EZ
1532 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/fpending.$(O) and
1533 $(BLD)/close-stream.$(O).
1534 ($(BLD)/close-stream.$(O)):
1535 ($(BLD)/fpending.$(O)): New dependencies.
1536
7ccfb720
PE
15372012-11-03 Paul Eggert <eggert@cs.ucla.edu>
1538
1539 Fix data-loss with --batch (Bug#9574).
1540 * lib/close-stream.c, lib/close-stream.h, lib/fpending.c
1541 * lib/fpending.h, m4/close-stream.m4, m4/fpending.m4:
1542 New files, from gnulib.
1543 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1544
3478f4b5
EZ
15452012-11-03 Eli Zaretskii <eliz@gnu.org>
1546
1547 * config.bat: Copy lib/execinfo.in.h to lib/execinfo.in-h if needed.
1548
d036bcdf
GM
15492012-11-02 Glenn Morris <rgm@gnu.org>
1550
1551 * Makefile.in (EMACS_ICON): New variable.
1552 (install-etc): Use EMACS_ICON to allow choice of icon.
1553
25ca4587
GM
15542012-10-26 Glenn Morris <rgm@gnu.org>
1555
59696ae0
GM
1556 * Makefile.in (EMACS_NAME): New variable.
1557 (EMACS, install-etc, uninstall): Use $EMACS_NAME.
1558
eeced60b
GM
1559 * Makefile.in (EMACS, EMACSFULL): Transformations should not be
1560 applied to $EXEEXT.
1561
25ca4587
GM
1562 * Makefile.in (uninstall): Don't abort if some directories are missing.
1563 Apply transformation rules to manual pages, desktop and icon files.
1564 No more emacs22 icons to uninstall.
1565
a6c2cc07
GM
15662012-10-24 Glenn Morris <rgm@gnu.org>
1567
8bfcb8a6
GM
1568 * Makefile.in (install-etc, install-man):
1569 Don't apply program transform to standard file suffixes.
a6c2cc07 1570
7f8de58c
PE
15712012-10-23 Paul Eggert <eggert@cs.ucla.edu>
1572
1573 * configure.ac (_FORTIFY_SOURCE): Do not multiply define (Bug#12714).
1574 This ports to Gentoo. Problem originally reported against coreutils,
1575 but Emacs has it too.
1576
ed68379e
GM
15772012-10-23 Glenn Morris <rgm@gnu.org>
1578
1579 * Makefile.in (emacs_transform): Remove.
1580 (install-man): Revert 2012-10-21 change. (Bug#12713)
1581
8dc2a723
GM
15822012-10-21 Glenn Morris <rgm@gnu.org>
1583
ad483434
GM
1584 * Makefile.in (install-etc): Don't install emacs22 icons.
1585
8dc2a723
GM
1586 * Makefile.in (emacs_transform): New variable.
1587 (install-etc): Prefer a make variable to a shell variable.
1588
90eacf99
SM
15892012-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1590
1591 * Makefile.in ($(MAKEFILE_NAME)): Depend on src/lisp.mk as well.
1592
1a9c6830
GM
15932012-10-15 Glenn Morris <rgm@gnu.org>
1594
1595 * Makefile.in (install-man, install-etc):
1596 Apply $TRANSFORM. (Bug#12536#34)
1597 (clean): Delete etc/emacs.tmpdesktop.
1598
cde44a77
KH
15992012-10-11 Kenichi Handa <handa@gnu.org>
1600
1601 * .bzrignore: Add several files under admin/charsets.
1602
e08348a0
DC
16032012-10-08 Daniel Colascione <dancol@dancol.org>
1604
90eacf99
SM
1605 * configure.ac: Add --with-w32 as a window system option.
1606 Limit it to Cygwin for now. Integrate w32 into the refactored window
e08348a0
DC
1607 system configuration and set TERM_HEADER to w32term.h when w32 is
1608 configured.
1609
1610 (CYGWIN_OBJ): Add cygw32.o.
1611
335f5ae4
JD
16122012-10-07 Jan Djärv <jan.h.d@swipnet.se>
1613
1614 * configure.ac: Check that OSX is 10.4 or newer.
1615
c622b48f
PE
16162012-10-07 Paul Eggert <eggert@cs.ucla.edu>
1617
1618 Improve sys_siglist detection.
1619 * configure.ac (sys_siglist): Look for its decl in <signal.h>.
1620 Otherwise, it's not found in either Fedora 17 or Solaris 11.
1621
2b794d69
PE
16222012-10-04 Paul Eggert <eggert@cs.ucla.edu>
1623
bb1dfdad
PE
1624 Merge from gnulib, incorporating:
1625 2012-10-02 pselect: reject invalid file descriptors
1626 2012-10-02 ptsname: reject invalid file descriptors
1627 2012-10-02 manywarnings: cater to more gcc infelicities
1628 2012-09-30 sockets, sys_stat: restore AC_C_INLINE
1629 * lib/pselect.c, lib/stdlib.in.h, m4/manywarnings.m4, m4/pselect.m4:
1630 * m4/stdlib_h.m4, m4/sys_stat_h.m4: Update from gnulib.
1631 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1632
65788e2e
PE
16332012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1634
1635 Merge from gnulib, incorporating:
1636 2012-09-28 extern-inline: provide a -Wundef safe config.h
1637
a615a3ae
PE
16382012-09-27 Paul Eggert <eggert@cs.ucla.edu>
1639
1640 Check more robustly for timer_settime.
1641 This should fix an OS X build problem reported by Ivan Andrus in
1642 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00671.html>.
1643 * configure.ac (gl_THREADLIB): Define to empty, since Emacs
1644 does threads its own way.
89d17fd0 1645 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
a615a3ae 1646
c462dda8
PE
16472012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1648
1649 * Makefile.in (bootstrap): Set MAKEFILE_NAME when building Makefile,
1650 to avoid problems with recursion when using GNU make.
1651
e41c05e5
PE
16522012-09-22 Paul Eggert <eggert@cs.ucla.edu>
1653
bbe099e7
PE
1654 * Makefile.in (bootstrap): Simplify build procedure.
1655 Suggested by Wolfgang Jenker in
1656 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00456.html>.
1657
e41c05e5
PE
1658 Merge from gnulib, incorporating:
1659 2012-09-22 sockets, sys_stat: remove AC_C_INLINE in MSVC-only cases
1660
db8a5a18
TH
16612012-09-19 Tassilo Horn <tsdh@gnu.org>
1662
1663 * doc/emacs/misc.texi (DocView Slicing): Document new slice from
1664 BoundingBox feature.
1665
5fb91e71
JD
16662012-09-18 Jan Djärv <jan.h.d@swipnet.se>
1667
1668 * configure.ac (HAVE_GTK): Mention if we use GTK2 or GTK3.
1669
d3612ac3
AS
16702012-09-17 Andreas Schwab <schwab@linux-m68k.org>
1671
1672 * Makefile.in (bootstrap): Revert last change. Run config.status
1673 after config.status --recheck, run configure from $(srcdir).
1674 (config.status): Run configure from $(srcdir).
1675
eeceac93
PE
16762012-09-17 Paul Eggert <eggert@cs.ucla.edu>
1677
50bfc824
PE
1678 * Makefile.in: Fix build error on FreeBSD.
1679 ($(MAKEFILE_NAME)): Pass MAKE='$(MAKE)' to config.status's env.
1680 Suggested by Wolfgang Jenker in
1681 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00430.html>.
1682 (MAKE_CONFIG_STATUS): Remove. Remaining use expanded.
1683 This undoes part of the 2012-09-10 patch.
1684 (bootstrap): Run ./configure, rather than trying to run config.status
1685 if it exists. That builds src/epaths.h more reliably.
dee26dfa
PE
1686 Run autogen/copy_autogen if autogen.sh fails,
1687 to create 'configure'; problem reported by Andreas Schwab in
1688 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00438.html>.
1689 * autogen.sh: Exit with status 1 when failing due to missing tools,
1690 reverting the 2012-09-10 change to this file.
1691 * autogen/copy_autogen: Fail if one of the subsidiary actions fail.
1692 Use 'cp -f' for the build-aux files, since the destinations are
1693 typically read-only.
50bfc824 1694
eeceac93
PE
1695 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
1696 * configure.ac (ac_cv_func_vfork_works): Default to 'no' on
1697 Solaris 2.4, so that AC_FUNC_VFORK doesn't think vfork works.
1698
78f83752
GM
16992012-09-17 Glenn Morris <rgm@gnu.org>
1700
1701 * configure.ac (copyright): New output variable.
1702 (COPYRIGHT): New AC_DEFINE.
1703
0caaedb1
PE
17042012-09-16 Paul Eggert <eggert@cs.ucla.edu>
1705
1706 Remove configure's --without-sync-input option (Bug#12450).
1707 * configure.ac (SYNC_INPUT, BROKEN_SA_RESTART): Remove.
1708
83da1b55
GM
17092012-09-16 Glenn Morris <rgm@gnu.org>
1710
1711 Increase compartmentalization of Nextstep builds rules,
1712 and store Emacs version number in fewer versioned files.
1713 * configure.ac (ns_appsrc): Use relative names.
1714 (ns_frag): Remove.
1715 (Info-gnustep.plist, Emacs.desktop, Info.plist, InfoPlist.strings)
1716 (nextstep/Makefile): Generate these nextstep files.
1717 (SUBDIR_MAKEFILES): Add nextstep.
1718 * Makefile.in (clean, distclean, bootstrap-clean): Add nextstep.
1719 * make-dist (nextstep/templates): Add directory.
1720 (nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj): Remove.
1721 (nextstep/Cocoa/Emacs.base/Contents)
92f7c6f1 1722 (nextstep, nextstep/GNUstep/Emacs.base/Resources): Update contents.
83da1b55 1723
0328b6de
PE
17242012-09-15 Paul Eggert <eggert@cs.ucla.edu>
1725
1726 Port better to POSIX hosts lacking _setjmp (Bug#12446).
1727 * configure.ac (HAVE__SETJMP, HAVE_SIGSETJMP): New symbols.
1728 (_setjmp, _longjmp): Remove.
1729
e3141fcf
PE
17302012-09-14 Paul Eggert <eggert@cs.ucla.edu>
1731
2af03429
PE
1732 * configure.ac (--without-sync-input): Fix typo in usage message.
1733
e3141fcf
PE
1734 * configure.ac: Port to hosts lacking gtk.
1735 (PKG_CHECK_MODULES): Capture pkg-config diagnostics
1736 better, in particular, problems in invoking pkg-config itself.
1737 This is useful on hosts that don't have pkg-config.
1738 (GTK_MODULES): Do not exit 'configure' simply because gtk3
1739 and gtk2 are both missing. Problem found on Solaris 8.
1740
2c484e75
JD
17412012-09-13 Jan Djärv <jan.h.d@swipnet.se>
1742
1743 * configure.ac: Reorder Xaw3d messages.
4d0b77fc 1744 Report Gtk+ 3 as GTK.
2c484e75 1745
4a4bbad2
PE
17462012-09-13 Paul Eggert <eggert@cs.ucla.edu>
1747
1748 Simplify SIGIO usage (Bug#12408).
1749 * configure.ac (NO_TERMIO, BROKEN_FIONREAD, BROKEN_SIGAIO)
1750 (BROKEN_SIGPOLL, BROKEN_SIGPTY): Remove.
1751 (USABLE_FIONREAD, USABLE_SIGIO): New symbols. All uses of
1752 'defined SIGIO' replaced with 'defined USABLE_SIGIO', with no need
1753 to #undef SIGIO now (which was error-prone). Likewise, all uses
1754 of 'defined FIONREAD' replaced with 'defined USABLE_FIONREAD'.
1755
d673aedc
JD
17562012-09-12 Jan Djärv <jan.h.d@swipnet.se>
1757
1758 * configure.ac: No --with-x-toolkit given: Try gtk3 toolkit first
1759 and then gtk2 if not found.
1760 --with-x-toolkit=gtk|yes: As above, but fail if gtk2 or gt3 not found.
1761 --with-x-toolkit=gtk2: Only try gtk2, fail if not found.
1762 --with-x-toolkit=gtk3: Only try gtk3, fail if not found.
1763
9d9edd4b
GM
17642012-09-11 Glenn Morris <rgm@gnu.org>
1765
1766 * Makefile.in (install-arch-dep, install-arch-indep, install-doc):
1767 Be more explicit about dependencies, for parallel `make install'.
1768
c990426a
PE
17692012-09-11 Paul Eggert <eggert@cs.ucla.edu>
1770
1771 Simplify, document, and port floating-point (Bug#12381).
1772 * configure.ac (logb, cbrt): Do not check for these functions,
1773 as they are not being used.
1774
b8b0239f
PE
17752012-09-10 Paul Eggert <eggert@cs.ucla.edu>
1776
1777 Improve robustness of 'make bootstrap' (Bug#12376).
1778 Run autogen.sh after bootstrap-clean, to avoid bzr pull issues.
1779 * INSTALL, README: Document autogen.sh.
1780 * Makefile.in (Makefile): Mark it as precious, since it's updated
1781 atomically.
1782 (MAKE_CONFIG_STATUS): New macro.
1783 (config.status, bootstrap): Use it. This causes 'make bootstrap'
1784 to run config.status with the --recheck option, which is more
1785 appropriate for a bootstrap.
1786 (bootstrap): Run autogen.sh right after cleaning. Don't worry
1787 about failures due to missing tools.
1788 * autogen.sh: Exit with status 101 when failing due to missing tools.
1789 * make-dist: Distribute autogen.sh.
1790
f6196b87
PE
17912012-09-09 Paul Eggert <eggert@cs.ucla.edu>
1792
1793 Assume C89 or later for math functions (Bug#12381).
1794 * configure.ac (frexp, fmod): Remove checks for these functions,
1795 as we now assume them.
1796 (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC, NO_MATHERR)
1797 (HAVE_EXCEPTION):
1798 Remove; no longer needed.
1799
1a4f1e9b
PE
18002012-09-07 Paul Eggert <eggert@cs.ucla.edu>
1801
1802 More signal-handler cleanup (Bug#12327).
1803 * configure.ac (FLOAT_CHECK_DOMAIN): Comment fix (Bug#12327).
1804
2fe28299
PE
18052012-09-06 Paul Eggert <eggert@cs.ucla.edu>
1806
1807 Signal-handler cleanup (Bug#12327).
1808 * configure.ac (PTY_OPEN, PTY_TTY_NAME_SPRINTF):
1809 Adjust to syssignal.h changes.
1810 (SIGNAL_H_AB): Remove; no longer needed.
1811
7b6c362e
PE
18122012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1813
1088b922
PE
1814 Simplify redefinition of 'abort' (Bug#12316).
1815 * configure.ac (NO_ABRT): Remove.
1816
7b6c362e
PE
1817 * configure.ac (_setjmp, _longjmp): Check by compiling
1818 instead of by guessing. The guesses were wrong for
1819 recent versions of Solaris, such as Solaris 11.
1820
7f507777
PE
18212012-09-03 Paul Eggert <eggert@cs.ucla.edu>
1822
79a7bafe
PE
1823 * configure.ac (WARN_CFLAGS): Omit -Wjump-misses-init.
1824 It generates false alarms in doc.c, regex.c, xdisp.c. See
1825 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00040.html>.
1826
7f507777
PE
1827 Merge from gnulib, incorporating:
1828 2012-08-29 stdbool: be more compatible with mixed C/C++ compiles
1829 2011-11-30 manywarnings: update the list of "all" warnings
1830
f278d339
JD
18312012-09-02 Jan Djärv <jan.h.d@swipnet.se>
1832
1833 * configure.ac (HAVE_GOBJECT): Check for gobject-2.0 (Bug#12332).
1834
2d3800d2
PE
18352012-09-01 Paul Eggert <eggert@cs.ucla.edu>
1836
1837 * configure.ac (_FORTIFY_SOURCE): Define only when optimizing.
1838 This ports to glibc 2.15 or later, when configured with
1839 --enable-gcc-warnings. See Eric Blake in
1840 <http://lists.gnu.org/archive/html/bug-grep/2012-09/msg00000.html>.
1841
17a2cbbd
DC
18422012-09-01 Daniel Colascione <dan.colascione@gmail.com>
1843
1844 * configure.ac: Introduce term_header variable, which holds the
1845 value which will become TERM_HEADER in code. We effect our choice
1846 of window system by setting term_header and WINDOW_SYSTEM_OBJ
1847 instead of using ad-hoc variables and flags for each window
1848 system.
1849
6e8aca60
PE
18502012-08-26 Paul Eggert <eggert@cs.ucla.edu>
1851
1852 * configure.ac (CFLAGS): Prefer -g3 to -g if -g3 works
1853 and if the user has not specified CFLAGS. -g3 simplifies
1854 debugging, since it makes macros visible to the debugger.
1855
f0602979
JB
18562012-08-25 Juanma Barranquero <lekktu@gmail.com>
1857
1858 * lib/makefile.w32-in ($(BLD)/execinfo.$(O)): Update dependencies.
1859
391ceac5
EZ
18602012-08-25 Eli Zaretskii <eliz@gnu.org>
1861
1862 * lib/makefile.w32-in ($(BLD)/execinfo.$(O), execinfo.h): New targets.
1863 (GNULIBOBJS): Add $(BLD)/execinfo.$(O).
1864
f4a681b0
PE
18652012-08-24 Paul Eggert <eggert@cs.ucla.edu>
1866
1867 On assertion failure, print backtrace if available.
1868 Merge from gnulib, incorporating:
1869 2012-08-24 execinfo: port to FreeBSD
1870 2012-08-22 execinfo: new module
1871 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
1872 * lib/execinfo.c, lib/execinfo.in.h, m4/execinfo.m4: New files.
1873
5af9cb6b
GM
18742012-08-22 Glenn Morris <rgm@gnu.org>
1875
1876 * Makefile.in (install-arch-dep): If NO_BIN_LINK is non-null,
1877 do not create the bin/emacs link. (Bug#12011)
1878
01b13eb7
PE
18792012-08-21 Paul Eggert <eggert@cs.ucla.edu>
1880
1881 Merge from gnulib, incorporating:
1882 2012-08-20 extern-inline: support old GCC 'inline'
1883
9aa0092c
GM
18842012-08-20 Glenn Morris <rgm@gnu.org>
1885
1886 * configure.ac (AC_PROG_LN_S): Test for ln.
1887 * Makefile.in (LN_S): New, set by configure.
1888 (install-arch-dep): Use $LN_S.
1889
562d4436
PE
18902012-08-19 Paul Eggert <eggert@cs.ucla.edu>
1891
1892 Merge from gnulib, incorporating:
1893 2012-08-19 ignore-value, stat-time, timespec: omit AC_C_INLINE
1894 2012-08-19 mktime, sys_select: avoid 'static inline'
1895 2012-08-19 gnulib-tool: Fix indentation.
1896
51e6d6b2
PE
18972012-08-18 Paul Eggert <eggert@cs.ucla.edu>
1898
1899 * lib/sigprocmask.c, m4/signalblocking.m4: Remove.
1900 These files have been unused since the 2012-06-22 patch that
1901 introduced high-resolution time stamps.
1902
1598ef28
JB
19032012-08-17 Jan Beich <jbeich@tormail.org> (tiny change)
1904
1905 * configure.ac (PTY_OPEN): Try posix_openpt on gnu-linux,
1906 gnu-kfreebsd, freebsd, and netbsd. (Bug#12040)
1907
76d0e68f
PE
19082012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1909
1910 Merge from gnulib, incorporating:
1911 2012-08-05 extern-inline: also ignore -Wmissing-declarations
1912
57239922
JB
19132012-08-10 Juanma Barranquero <lekktu@gmail.com>
1914
1915 * lib/makefile.w32-in (STAT_TIME_H): New macro.
1916 (FTOASTR_C, $(BLD)/stat-time.$(O), $(BLD)/timespec.$(O))
1917 ($(BLD)/u64.$(O)): Update dependencies.
1918
9374581a
GM
19192012-08-10 Glenn Morris <rgm@gnu.org>
1920
1921 * configure.ac (DIRECTORY_SEP): Move here from src/lisp.h.
1922
da3d2105
DA
19232012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1924
1925 * configure.ac (--disable-features): Rename to --without-all.
1926 (OPTION_DEFAULT_ON): Change to use with_features.
1927 * INSTALL: Fix description.
1928
c30d4aef
DA
19292012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1930
1931 * configure.ac: New option --disable-features.
1932 (OPTION_DEFAULT_ON): Change to use enable_features.
1933 * INSTALL: Explain --disable-features.
1934
7d732d1a
GM
19352012-08-07 Glenn Morris <rgm@gnu.org>
1936
1937 * configure.ac: Require automake 1.11 (fairly arbitrarily).
1938 * autogen.sh (automake_min): Get it from configure.ac.
1939
1c6f11f4
GM
19402012-08-06 Glenn Morris <rgm@gnu.org>
1941
1db4583a
GM
1942 * configure.ac (BROKEN_GETWD) [unixware]: New define.
1943
1c6f11f4
GM
1944 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Remove.
1945 (PENDING_OUTPUT_COUNT): Absorb GNU_LIBRARY_PENDING_OUTPUT_COUNT.
1946 (DISPNEW_NEEDS_STDIO_EXT): New define.
1947
68b0c113
MA
19482012-08-05 Michael Albinus <michael.albinus@gmx.de>
1949
a4fe5376 1950 * INSTALL: Explain how to completely disable D-Bus. (Bug#12112)
68b0c113 1951
32d9ba9a
UM
19522012-08-05 Ulrich Müller <ulm@gentoo.org>
1953
1954 * configure.ac: Disable paxctl if binaries don't have a
1955 PT_PAX_FLAGS program header. (Bug#11979)
1956
fddc1855
EZ
19572012-08-03 Eli Zaretskii <eliz@gnu.org>
1958
1959 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/stat-time.$(O),
1960 $(BLD)/timespec.$(O), and $(BLD)/u64.$(O).
1961 (SHA512_H): Don't mention u64.h twice.
1962 ($(BLD)/stat-time.$(O), ($(BLD)/timespec.$(O), ($(BLD)/u64.$(O)):
1963 New targets.
1964
f35ef0ed
PE
19652012-08-03 Paul Eggert <eggert@cs.ucla.edu>
1966
1967 Merge from gnulib, incorporating:
1968 2012-08-02 stat-time, timespec, u64: support naive out-of-dir builds
1969
d7844221
YM
19702012-08-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1971
1972 * lib/Makefile.am (DEFAULT_INCLUDES): Add -I$(top_srcdir)/lib for
1973 out-of-tree build.
1974
837b365b
GM
19752012-08-02 Glenn Morris <rgm@gnu.org>
1976
d66b744d
GM
1977 * make-dist: Remove src/s.
1978
837b365b
GM
1979 * lib/makefile.w32-in (MS_W32_H): Update for new ms-w32.h location.
1980
3f750e43
PE
19812012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1982
a0d4efe9
PE
1983 Merge from gnulib (Bug#12116), incorporating:
1984 2012-08-01 extern-inline: new module
1985 2012-08-01 stat-time, timespec, u64, utimens: use extern-inline
bff2a4b8 1986 * lib/stat-time.c, lib/timespec.c, lib/u64.c, m4/extern-inline.m4:
a0d4efe9
PE
1987 New files. The new .c files are for instantiating extern inline
1988 functions.
1989
13294f95
PE
1990 Port to Solaris 8.
1991 Without this change, 'configure' fails because the recently-added
1992 wait3 prototype in config.h messes up later 'configure' tests.
1993 Fix this problem by droping wait3 and WRETCODE, as they're
1994 no longer needed on hosts that are current porting targets.
1995 * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
1996 All uses changed to waitpid and WEXITSTATUS.
1997
3f750e43
PE
1998 Avoid needless autoheader after autogen.sh.
1999 * src/stamp-h.in: Remove from bzr repository; no longer needed there.
2000 * .bzrignore: Add it.
2001 * autogen.sh: Create it.
2002
ae21c275
GM
20032012-08-01 Glenn Morris <rgm@gnu.org>
2004
2005 * configure.ac (DOS_NT, MSDOS): New system type templates.
2006
fca64dbd
UM
20072012-08-01 Ulrich Müller <ulm@gentoo.org>
2008
2009 * configure.ac (LIB_STANDARD, START_FILES) [FreeBSD]:
2010 Don't include crtbegin.o and crtend.o. (Bug#12047)
2011
5c0c0e8a
GM
20122012-08-01 Glenn Morris <rgm@gnu.org>
2013
ca35a5f7
GM
2014 * configure.ac (FLOAT_CHECK_DOMAIN, HAVE_INVERSE_HYPERBOLIC)
2015 (INTERNAL_TERMINAL): New.
b72c9a8c 2016
5c0c0e8a
GM
2017 * configure.ac (DEVICE_SEP, IS_DEVICE_SEP, IS_DIRECTORY_SEP)
2018 (IS_ANY_SEP): Move here from src/lisp.h.
2019
552a99b4
JB
20202012-08-01 Juanma Barranquero <lekktu@gmail.com>
2021
2022 * lib/makefile.w32-in (CONFIG_H): Update dependencies.
2023 (CONF_POST_H): New macro.
2024
8d8e2dfe
GM
20252012-07-31 Glenn Morris <rgm@gnu.org>
2026
bc96620a
GM
2027 * configure.ac (S_FILE): Remove output variable.
2028
68169a33
GM
2029 * configure.ac (opsysfile): Use AH_TEMPLATE. Doc fix.
2030
b2c7a106
GM
2031 * configure.ac (NULL_DEVICE, SEPCHAR, USER_FULL_NAME):
2032 Move here from src.
2033
8d8e2dfe
GM
2034 * configure.ac (AMPERSAND_FULL_NAME, subprocesses):
2035 Move here from conf_post.h.
2036
c09bfb2f
DA
20372012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
2038
2039 Improve OpenMotif detection on GNU/Linux systems.
2040 * configure.ac (MOTIF): Check for /usr/include/openmotif
2041 and /usr/(lib|lib64)/openmotif if --with-x-toolkit=motif.
2042
57ae02b1
AS
20432012-07-31 Andreas Schwab <schwab@linux-m68k.org>
2044
2045 * Makefile.in (install-arch-indep): Avoid eval.
2046
c1529ded
GM
20472012-07-31 Glenn Morris <rgm@gnu.org>
2048
b3a56300
GM
2049 * configure.ac (opsysfile, S_FILE): Now they are always empty.
2050
cd8bac79
GM
2051 * configure.ac (opsysfile): Forgot to set it to empty on sol2-10
2052 when removing src/s/sol2-6.h yesterday.
2053
268e2432
GM
2054 * configure.ac (USG5_4): Reintroduce this.
2055 (opsysfile): Set to empty on irix6-5, sol2*, and unixware.
2056
400d5621
GM
2057 * configure.ac (wait3, WRETCODE): Move here from src/s/usg5-4-common.h.
2058
7552f3ee
GM
2059 * configure.ac (opsysfile): Set to empty on hpux*, darwin;
2060 and to s/usg5-4-common.h on irix6-5.
c1529ded 2061
b429a4ee
GM
20622012-07-30 Glenn Morris <rgm@gnu.org>
2063
2064 * configure.ac (AH_BOTTOM): Use an include file, so that the
2065 contents do not get processed by autoheader.
2066
0aee6912
PE
20672012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2068
8f25abd3
PE
2069 Do not overwrite config.status while executing it (Bug#11214).
2070 * Makefile.in (MAKEFILE_NAME): New macro.
2071 ($(MAKEFILE_NAME)): Rename rule from Makefile.
2072 * configure.ac (epaths): Set MAKEFILE_NAME to a bogus value,
2073 so that GNU 'make' isn't tempted to make the Makefile and then
2074 regenerate config.status while config.status is running.
2075
0aee6912
PE
2076 Update .PHONY listings in makefiles.
2077 * Makefile.in (.PHONY): Add all, ${SUBDIR}, blessmail, epath-force,
2078 FRC, install-arch-dep, install-arch-indep, install-doc,
2079 install-info, install-man, install-etc, install-strip, uninstall,
2080 bootstrap-clean, TAGS, tags, info-real, force-info, check-info-dir.
2081 (.RECURSIVE): Remove; hasn't been needed for years.
2082
0a763bd1
GM
20832012-07-30 Glenn Morris <rgm@gnu.org>
2084
32bac6d6
GM
2085 * configure.ac (SIGNAL_H_AHB): New hack macro.
2086 (opsysfile): Set to empty on netbsd, openbsd.
2087 (AH_BOTTOM): Include signal.h if SIGNAL_H_AHB is defined.
2088
b65e7c46 2089 * configure.ac (_longjmp, _setjmp, TIOCSIGSEND): Move here from src/s.
0a763bd1 2090
847bb9eb
JD
20912012-07-30 Jan Djärv <jan.h.d@swipnet.se>
2092
2093 * Makefile.in (install-arch-indep): Remove sh -x.
2094
d34d6ffc
GM
20952012-07-30 Glenn Morris <rgm@gnu.org>
2096
abc7ec54
GM
2097 * configure.ac (opsysfile): Tweak message for null case.
2098
227f5bd0
GM
2099 * configure.ac (opsysfile): Set to empty on aix4-2, freebsd,
2100 gnu-linux, gnu-kfreebsd; and to usg5-4-common.h on sol2*, unixware.
d34d6ffc 2101
dc5493f1
PE
21022012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2103
2104 Merge from gnulib, incorporating:
2105 * doc/misc/texinfo.tex: Update to 2012-07-29.17 version.
2106
ffd817eb
JD
21072012-07-29 Jan Djärv <jan.h.d@swipnet.se>
2108
2109 * Makefile.in (install-arch-indep): Handle space in locallisppath.
2110
e32a5799
PE
21112012-07-28 Paul Eggert <eggert@cs.ucla.edu>
2112
2113 Use Gnulib environ module (Bug#9772).
2114 * m4/environ.m4: New file, from gnulib.
2115 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
2116
2117 Use Gnulib stdalign module (Bug#9772, Bug#9960).
2118 This should improve portability of macros like alignof and DECL_ALIGN.
2119 * lib/stdalign.in.h, m4/stdalign.m4: New files, from gnulib.
2120 * .bzrignore: Add lib/stdalign.h.
2121 * config.bat: Do not set NO_DECL_ALIGN; no longer needed.
2122 Copy lib/stdalign.in.h to lib/stdalign.in-h as needed.
2123 * configure.ac (HAVE_ATTRIBUTE_ALIGNED): Remove the code that
2124 fiddles with this, as gnulib now does this for us.
2125
441efe9f
DA
21262012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
2127
2128 Fix toolkit configuration report.
2129 * configure.ac (USE_X_TOOLKIT): Report toolkit as GTK3 if
2130 --with-x-toolkit=gtk3 is used.
2131
5dad233c
PE
21322012-07-17 Paul Eggert <eggert@cs.ucla.edu>
2133
2134 Fix regression with pthread_sigmask on FreeBSD (Bug#11884).
2135 * configure.ac: Configure gnulib at the end, not before running
2136 pkg-config. This restores the behavior before 2012-06-22, when
2137 higher-resolution time stamps were added, and fixes a bug whereby
2138 LIB_PTHREAD was not used and gnulib's part of 'configure'
2139 therefore incorrectly assumed that pthread_sigmask wasn't working.
2140 Fix the problem with -lrt and clock_gettime a different way.
2141 This should complete the fix for Bug#11884.
2142 (pre_PKG_CONFIG_CFLAGS, pre_PKG_CONFIG_LIBS): New shell vars.
2143
b6e9e0ff
PE
21442012-07-15 Paul Eggert <eggert@cs.ucla.edu>
2145
2146 Merge from gnulib, incorporating:
2147 2012-07-15 pthread_sigmask: fix bug on FreeBSD 9 (Bug#11884)
2148 2012-07-11 gettext: do not assume '#define ... defined ...' behavior
2149
5b3f250f
GM
21502012-07-14 Glenn Morris <rgm@gnu.org>
2151
2152 * configure.ac (GC_SETJMP_WORKS, GC_MARK_STACK): Move here from src/s.
2153 (AH_BOTTOM): Move GC_SETJMP_WORKS GCC fallback to main body.
2154
dbee5793
GM
21552012-07-13 Glenn Morris <rgm@gnu.org>
2156
32fb4bb6
GM
2157 * configure.ac (opsysfile): Set to empty on gnu, cygwin.
2158
983188fd
GM
2159 * configure.ac (BSD4_2, BSD_SYSTEM, USG, USG5, _AIX, CYGWIN)
2160 (DARWIN_OS, GNU_LINUX, HPUX, IRIX6_5, SOLARIS2):
2161 Move "system type" macros here from src/s.
2162 (BSD_SYSTEM_AHB): New hack macro.
2163 (AH_BOTTOM): Set BSD_SYSTEM, using BSD_SYSTEM_AHB.
2164
5b633342
GM
2165 * configure.ac (NSIG_MINIMUM, ULIMIT_BREAK_VALUE, SETUP_SLAVE_PTY)
2166 (GC_MARK_SECONDARY_STACK): Move here from src/s.
dbee5793 2167
308aab79
GM
21682012-07-12 Glenn Morris <rgm@gnu.org>
2169
4fae5a7a
GM
2170 * configure.ac (AH_BOTTOM) [DARWIN_OS]: Move SYSTEM_PURESIZE_EXTRA
2171 setting here from src/s/darwin.h.
2172
51c3b9b4
GM
2173 * configure.ac (NO_MATHERR): Unconditionally define for Darwin;
2174 as src/s/darwin.h used to.
2175
42bd1719
GM
2176 * configure.ac (NARROWPROTO, NO_ABORT, BROKEN_GET_CURRENT_DIR_NAME)
2177 (BROKEN_FIONREAD, BROKEN_PTY_READ_AFTER_EAGAIN, BROKEN_SIGAIO)
ba9e4b84 2178 (BROKEN_SIGPOLL, BROKEN_SIGPTY, FIRST_PTY_LETTER, NO_EDITRES)
0ab7b23a 2179 (G_SLICE_ALWAYS_MALLOC, PREFER_VSUSP, PTY_ITERATION, PTY_OPEN)
3f922c37 2180 (PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF, RUN_TIME_REMAP)
3e91a053 2181 (SETPGRP_RELEASES_CTTY, TAB3, TABDLY, RUN_TIME_REMAP, UNIX98_PTYS)
7ccad002 2182 (XOS_NEEDS_TIME_H): Move here from src/s.
308aab79 2183
c43fb4c3
GM
21842012-07-11 Glenn Morris <rgm@gnu.org>
2185
2186 * configure.ac (INTERRUPT_INPUT): Move here from src/s.
ee1cf5cf 2187 (HAVE_PTYS, HAVE_SOCKETS): Define unconditionally.
c43fb4c3 2188
554fef51
PE
21892012-07-11 Paul Eggert <eggert@cs.ucla.edu>
2190
2191 * configure.ac (tzset): Remove check that's redundant with gnulib.
2192
c8add24e
GM
21932012-07-11 Glenn Morris <rgm@gnu.org>
2194
172bedef
GM
2195 * configure.ac (CLASH_DETECTION): Define unconditionally.
2196
249685df
GM
2197 * configure.ac (opsysfile): Use bsd-common on gnu systems.
2198
c8add24e 2199 * configure.ac (GNU_LIBRARY_PENDING_OUTPUT_COUNT):
09f4e3b0 2200 (SIGNALS_VIA_CHARACTERS): Move here from src/s.
c8add24e 2201
5ebbef1d
PE
22022012-07-11 Paul Eggert <eggert@cs.ucla.edu>
2203
bb352260
PE
2204 Assume mkdir, rename, rmdir, strerror.
2205 * configure.ac (mkdir, rename, rmdir, strerror): Remove check.
5ebbef1d 2206
20e94fdd
GM
22072012-07-11 Glenn Morris <rgm@gnu.org>
2208
9d596af3
GM
2209 * configure.ac (DONT_REOPEN_PTY): Move here from src/s.
2210
20e94fdd
GM
2211 * configure.ac (DEFAULT_SOUND_DEVICE): New definition.
2212
22ffb973
PE
22132012-07-10 Paul Eggert <eggert@cs.ucla.edu>
2214
2215 Remove "#define unix" that is no longer needed (Bug#11905).
2216 Merge from gnulib to make "#define unix" unnecessary, incorporating:
2217 2012-07-10 getloadavg: clean out old Emacs and Autoconf cruft
2218 2012-07-09 getopt: Simplify after Emacs changed.
2219
882cf227
GM
22202012-07-10 Glenn Morris <rgm@gnu.org>
2221
d02eb359
GM
2222 * configure.ac (DATA_START, DATA_SEG_BITS, PENDING_OUTPUT_COUNT):
2223 Move here from src/s.
882cf227 2224
cda158b4
AS
22252012-07-09 Andreas Schwab <schwab@linux-m68k.org>
2226
2227 * configure.ac (PNG_DEPSTRUCT): Define this instead of
2228 PNG_DEPRECATED.
2229
5994c183
PE
22302012-07-09 Paul Eggert <eggert@cs.ucla.edu>
2231
2232 Add GCC-style 'const' attribute to functions that can use it.
2233 * configure.ac (WARN_CFLAGS): Add -Wsuggest-attribute=const.
2234 (ATTRIBUTE_CONST): New macro, in config.h.
2235
52331d2c
JB
22362012-07-09 Juanma Barranquero <lekktu@gmail.com>
2237
2238 * lib/makefile.w32-in: Rework dependencies.
2239 (GNU_LIB, NT_INC, C_CTYPE_H, MS_W32_H, CONFIG_H, FILEMODE_H)
2240 (FTOASTR_H, FTOASTR_C, GETOPT_INT_H, MD5_H, SHA1_H, SHA256_H)
2241 (U64_H, SHA512_H): New macros.
2242 (SRC): Redefine to point to src/, not current directory.
2243 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
2244 ($(BLD)/c-strncasecmp.$(O), $(BLD)/dtoastr.$(O))
2245 ($(BLD)/dtotimespec.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
2246 ($(BLD)/gettime.$(O), $(BLD)/strftime.$(O), $(BLD)/time_r.$(O))
2247 ($(BLD)/timespec-add.$(O), $(BLD)/timespec-sub.$(O), $(BLD)/md5.$(O))
2248 ($(BLD)/sha1.$(O), $(BLD)/sha256.$(O), $(BLD)/sha512.$(O))
2249 ($(BLD)/filemode.$(O)): Update dependencies.
2250
c4444d16
PE
22512012-07-09 Paul Eggert <eggert@cs.ucla.edu>
2252
2f93ecce
PE
2253 Merge from gnulib, incorporating:
2254 2012-07-09 timespec: mark functions with const attributes
2255
c4444d16
PE
2256 Rename configure.in to configure.ac (Bug#11603).
2257 The name 'configure.in' has been obsolescent for quite some time,
2258 and the next release of Autoconf will generate warnings for it.
61a11606
PE
2259 See commit 'v2.69-4-g560f16b' of 2012-05-06, "general: deprecate
2260 'configure.in' as autoconf input" in the Autoconf git repository.
c4444d16
PE
2261 * configure.ac: Rename from configure.in.
2262 * INSTALL, INSTALL.BZR, README, make-dist:
2263 * Makefile.in (AUTOCONF_INPUTS):
2264 * autogen.sh (autoconf_min):
2265 * autogen/update_autogen (sources):
2266 Adjust to reflect new name.
2267
0ccb0b09
PE
22682012-07-08 Paul Eggert <eggert@cs.ucla.edu>
2269
2270 Restore deprecation warnings, except for older libpng.
2271 * configure.in (WARN_CFLAGS): Remove -Wno-deprecated-declarations.
2272 (HAVE_LIBPNG_PNG_H): Don't bother checking for this if we have png.h.
2273 (PNG_DEPRECATED): Define when compiling with older PNG versions.
2274
4da41f1c
AS
22752012-07-07 Andreas Schwab <schwab@linux-m68k.org>
2276
2277 * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
2278
6045c4fd
PE
22792012-07-07 Paul Eggert <eggert@cs.ucla.edu>
2280
2281 Improve static checking when configured --with-ns.
2282 See Samuel Bronson's remarks in
2283 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00146.html>.
2284 * configure.in (WARN_CFLAGS): Omit -Wunreachable-code, as it's
2285 a no-op with recent GCC and harmful in earlier ones.
2286 Omit -Wsync-nand, as it's irrelevant to Emacs and provokes a
2287 warning when compiling with ObjC. Always omit
2288 -Wunsafe-loop-optimizations, as we don't mind when optimization is
2289 being done correctly.
2290
4516fbef
GM
22912012-07-07 Glenn Morris <rgm@gnu.org>
2292
41f9404e
GM
2293 * configure.in (BROKEN_SA_RESTART): Doc fix.
2294
4516fbef
GM
2295 * configure.in: Rather than checking for things then undef'ing
2296 them on some platforms, simply don't check for them.
2297 (getwd): Don't check for it on unixware.
2298 (random, rint): Don't check for these on hpux.
2299 (res_init, libresolv): Don't check for these on darwin.
2300
07adc2c6
JB
23012012-07-07 Juanma Barranquero <lekktu@gmail.com>
2302
2303 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O),
2304 $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O).
2305 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
2306 ($(BLD)/c-strncasecmp.$(O)): New dependencies.
2307
a69ca799
PE
23082012-07-06 Paul Eggert <eggert@cs.ucla.edu>
2309
f5c08e17
PE
2310 * configure.in: Document --enable-gcc-warnings better.
2311
fee5959d
PE
2312 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
2313 This is safer than strcasecmp, which has unspecified behavior
2314 outside the POSIX locale and in practice sometimes does not work
2315 in multibyte locales. Similarly for c_strncasecmp and strncasecmp.
2316 * configure.in (strcasecmp, strncasecmp): Remove checks.
f5c08e17 2317
fee5959d
PE
2318 * lib/c-ctype.c, lib/c-ctype.h, lib/c-strcase.h, lib/c-strcasecmp.c:
2319 * lib/c-strncasecmp.c: New files, taken from gnulib.
2320 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
2321
a69ca799
PE
2322 Merge from gnulib, incorporating:
2323 2012-07-06 timespec-sub: avoid duplicate include
2324 Reported by Juanma Barranquero.
2325
a02d99e7
GM
23262012-07-06 Glenn Morris <rgm@gnu.org>
2327
2328 * make-dist [update]: Let autoreconf figure out what needs updating.
2329 Use `make info-real'. leim/leim-list.el should always exist.
2330 Check cd return value.
2331
7dca65a4
PE
23322012-07-06 Paul Eggert <eggert@cs.ucla.edu>
2333
2334 Merge from gnulib. This is for OpenBSD 5.1 amd64.
2335 * m4/sys_time_h.m4: New version from gnulib, incorporating:
2336 2012-07-05 sys_time: allow too-wide tv_sec
2337
013aabf1
PE
23382012-07-04 Paul Eggert <eggert@cs.ucla.edu>
2339
2340 Merge from gnulib.
2341 * lib/alloca.in.h: New version from gnulib, incorporating:
2342 2012-07-03 alloca: add support for HP NonStop TNS/E native
2343
8ce70ed2
DA
23442012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
2345
2346 * configure.in: If --enable-gcc-warnings, disable
2347 -Wunsafe-loop-optimizations for -O1 optimization level.
2348
ca26824c
GM
23492012-06-30 Glenn Morris <rgm@gnu.org>
2350
2351 * configure.in (standardlisppath): New output variable.
2352 (lisppath): Use standardlisppath.
2353 * Makefile.in (standardlisppath): New, set by configure.
2354 (epaths-force): Use standardlisppath and locallisppath rather than
2355 lisppath.
2356
94eb8e0a
DA
23572012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
2358
1f9f395d 2359 * configure.in: Fix previous change. Remove --enable-asserts.
94eb8e0a
DA
2360 (CPPFLAGS): Remove conditional -DXASSERTS=1.
2361 Add --enable-link-time-optimization.
2362 * INSTALL: Mention this.
2363
e509cfa6
DA
23642012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
2365
2366 * configure.in: Add glyphs category to --enable-checking option.
2367 (GLYPH_DEBUG): Define if glyphs debugging is enabled.
2368
a54e2c05
DA
23692012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
2370
2371 * configure.in (ENABLE_CHECKING): Update comment.
2372
059e4fb5
PE
23732012-06-28 Paul Eggert <eggert@cs.ucla.edu>
2374
15458df4
PE
2375 * configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
2376 Emacs proper no longer uses these headers, and can rely on Gnulib
2377 for these checks.
2378
059e4fb5
PE
2379 Merge from gnulib.
2380 * m4/getopt.m4: Copy new version from gnulib, incorporating:
2381 getopt-posix: No longer guarantee that option processing is resettable.
2382
1ba6038a
GM
23832012-06-27 Glenn Morris <rgm@gnu.org>
2384
0b6b25d5
GM
2385 * configure.in: Only check for paxctl on gnu-linux. (Bug#11398#26)
2386
1ba6038a
GM
2387 * INSTALL: Remove references to paths.el.
2388
cc06e7e7
EZ
23892012-06-26 Eli Zaretskii <eliz@gnu.org>
2390
90eacf99
SM
2391 * lib/makefile.w32-in ($(GNULIBOBJS)): Depend on stamp_BLD.
2392 This replaces separate dependency for each object file, which required
cc06e7e7
EZ
2393 the same object file to be mentioned twice, causing failures in
2394 parallel builds.
2395
cf38a720
PE
23962012-06-26 Paul Eggert <eggert@cs.ucla.edu>
2397
2398 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
2399 * lib/makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
2400
3511c784
DA
24012012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
2402
2403 * configure.in (AC_CHECK_FUNCS): Detect library functions
2404 strcasecmp and strncasecmp.
2405
845ca893
PE
24062012-06-24 Paul Eggert <eggert@cs.ucla.edu>
2407
2408 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
2409 We might as well use the spelling standardized by C11,
2410 as in the long run that should simplify maintenance.
2411 * configure.in (NO_RETURN): Remove. All uses replaced by _Noreturn.
2412
696056c2
EZ
24132012-06-24 Eli Zaretskii <eliz@gnu.org>
2414
2415 * lib/makefile.w32-in ($(BLD)/dtotimespec.$(O)):
2416 ($(BLD)/timespec-add.$(O)):
2417 ($(BLD)/timespec-sub.$(O)): Don't depend on
2418 $(EMACS_ROOT)/nt/inc/sys/time.h.
2419
2420 * lib/stat-time.h:
2421 * lib/timespec.h:
2422 * lib/utimens.h: Revert last change.
2423
47d0c011
PE
24242012-06-23 Paul Eggert <eggert@cs.ucla.edu>
2425
2426 Merge from gnulib.
2427 * m4/getopt.m4: Copy new version from gnulib, incorporating:
2428 getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
2429
388cdec0
EZ
24302012-06-23 Eli Zaretskii <eliz@gnu.org>
2431
2432 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
2433 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/dtotimespec.$(O),
2434 $(BLD)/gettime.$(O), $(BLD)/timespec-add.$(O), and
2435 $(BLD)/timespec-sub.$(O).
2436 ($(BLD)/dtotimespec.$(O)):
2437 ($(BLD)/gettime.$(O)):
2438 ($(BLD)/timespec-add.$(O)):
2439 ($(BLD)/timespec-sub.$(O)): New dependencies.
2440
2441 * lib/stat-time.h:
2442 * lib/timespec.h:
ed9265fc 2443 * lib/utimens.h: Include sys/time.h.
388cdec0 2444
54e8a418
AS
24452012-06-23 Andreas Schwab <schwab@linux-m68k.org>
2446
2447 * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
2448 the correct CFLAGS and LIBS.
2449
d35af63c
PE
24502012-06-22 Paul Eggert <eggert@cs.ucla.edu>
2451
2452 Support higher-resolution time stamps (Bug#9000).
2453 * configure.in (gl_ASSERT_NO_GNULIB_POSIXCHECK)
2454 (gl_ASSERT_NO_GNULIB_TESTS, gl_INIT): Move these up earlier, so
2455 that the new clock stuff doesn't clash with RSVG_LIBS.
2456 (AC_CHECK_HEADERS): Don't check for sys/select.h, sys/time.h, utime.h,
2457 as gnulib does that for us now.
2458 (emacs_cv_struct_utimbuf, HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL)
2459 (GETTIMEOFDAY_ONE_ARGUMENT): Remove; gnulib does these now.
2460 (AC_CHECK_FUNCS): Remove utimes; no longer needed.
2461 * lib/dtotimespec.c, lib/gettime.c, lib/gettimeofday.c, lib/pselect.c:
2462 * lib/stat-time.h, lib/sys_select.in.h, lib/sys_time.in.h:
2463 * lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
2464 * lib/utimens.c, lib/utimens.h, m4/clock_time.m4, m4/gettime.m4:
2465 * m4/gettimeofday.m4, m4/pselect.m4, m4/stat-time.m4:
2466 * m4/sys_select_h.m4, m4/sys_socket_h.m4, m4/sys_time_h.m4:
2467 * m4/timespec.m4, m4/utimbuf.m4, m4/utimens.m4, m4/utimes.m4:
2468 New files, copied automatically from gnulib.
2469 * lib/gnulib.mk, m4/gnulib-comp.m4: Merge from gnulib.
2470
05730648
PE
24712012-06-22 Paul Eggert <eggert@cs.ucla.edu>
2472
2473 Merge from gnulib.
2474 * lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
2475 * lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
2476 * m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
2477 * m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
2478 Copy new versions from gnulib, incorporating the following changes:
2479 2012-06-22 time_r: fix typo that always overrode localtime_r decl
2480 2012-06-22 Write "Mac OS X" instead of "MacOS X".
2481 2012-06-21 mktime: fix integer overflow in 'configure'-time test
2482 2012-06-21 nonblocking: Avoid compilation error on mingw64.
2483 2012-06-19 stat, fstat: Avoid warnings on mingw64.
2484 2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
2485
646b5f55
AS
24862012-06-13 Andreas Schwab <schwab@linux-m68k.org>
2487
2488 * configure.in: Rename --enable-use-lisp-union-type to
2489 --enable-check-lisp-object-type and define CHECK_LISP_OBJECT_TYPE
2490 instead of USE_LISP_UNION_TYPE.
2491
8a07a8c6
GM
24922012-06-12 Glenn Morris <rgm@gnu.org>
2493
b4492cba
GM
2494 * configure.in (HAVE_PROCFS, _STRUCTURED_PROC): New AC_DEFINEs.
2495 (opsysfile): Set specially for sol2-10.
2496
8a07a8c6
GM
2497 * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
2498 New AC_DEFINEs, for hpux11.
2499 (opsysfile): Set specially for hpux11.
2500
03043c1b
PE
25012012-06-12 Paul Eggert <eggert@cs.ucla.edu>
2502
2503 * configure.in: Coalesce some function checking.
2504 This makes 'configure' a bit smaller.
2505 Prefer AC_CHECK_FUNCS_ONCE for functions that we always check for.
2506
ed846e5f
GM
25072012-06-12 Glenn Morris <rgm@gnu.org>
2508
0d369729
GM
2509 * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
2510
45fa9c0f
GM
2511 * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
2512
ed846e5f
GM
2513 * configure.in: Anticipate platforms with no src/s file.
2514
0e25d334
CY
25152012-06-12 Chong Yidong <cyd@gnu.org>
2516
2517 * configure.in: Check for MagickMergeImageLayers (Bug#11678).
2518
a9be7d2b
GM
25192012-06-11 Glenn Morris <rgm@gnu.org>
2520
2521 * configure.in (SYSTEM_TYPE): New AC_DEFINE.
2522
e3a3e213
MA
25232012-06-09 Michael Albinus <michael.albinus@gmx.de>
2524
2525 * configure.in (dbus_type_is_valid): Check for library function.
2526
276d5f5d
GM
25272012-06-06 Glenn Morris <rgm@gnu.org>
2528
2529 * INSTALL, make-dist: Remove vcdiff.
2530
418cd726
GM
25312012-06-03 Glenn Morris <rgm@gnu.org>
2532
2533 * INSTALL, make-dist: Remove rcs-checkin.
2534
c71232db
UM
25352012-06-03 Ulrich Müller <ulm@gentoo.org>
2536
1f9f395d 2537 * configure.in (PAXCTL): Check for paxctl. (Bug#11398)
c71232db 2538
501390c5
PE
25392012-06-01 Paul Eggert <eggert@cs.ucla.edu>
2540
2541 Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
2542 It is confusingly named and rarely useful. See, for example,
2543 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
2544 * INSTALL.BZR: Don't mention --disable-maintainer-mode.
2545 * Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
2546 * configure.in: Remove --disable-maintainer-mode.
2547 (USE_MAINTAINER_MODE, MAINT): Remove.
2548
0e7a053e
PE
25492012-05-28 Paul Eggert <eggert@cs.ucla.edu>
2550
2551 Make 'configure' a bit smaller and faster.
2552 * configure.in (INSTALL_INFO): Set it with one call to
2553 AC_PATH_PROG, not three.
2554 (PKG_CONFIG): Hoist this out of PKG_CHECK_MODULES, since it's
2555 so likely that it'll be needed.
2556 (AC_CHECK_HEADERS_ONCE): Prefer to AC_CHECK_HEADERS where either works.
2557 (AC_PROG_MAKE_SET): Remove; Automake does this.
2558 (sysinfo): Do not check for this function, as it's never used.
2559 (tzset): Check for this function just once.
2560 * m4/manywarnings.m4: Sync from gnulib, incorporating the following:
2561 2012-05-27 manywarnings: remove duplicate -Wmultichar entry
2562
cd376509
EZ
25632012-05-27 Eli Zaretskii <eliz@gnu.org>
2564
42a53d84
EZ
2565 * config.bat (lib): Create/update lib/stdalign.in-h and
2566 lib/sys_types.in-h.
2567
0e7a053e
PE
2568 * lib/makefile.w32-in ($(BLD)/md5.$(O)):
2569 ($(BLD)/sha1.$(O)):
2570 ($(BLD)/sha256.$(O)):
cd376509
EZ
2571 ($(BLD)/sha512.$(O)): Depend on $(EMACS_ROOT)/nt/inc/stdalign.h.
2572 Suggested by Christoph Scholtes <cschol2112@googlemail.com>.
2573
2574 * lib/getopt_.h: Regenerate.
2575
50c4645e
PE
25762012-05-27 Paul Eggert <eggert@cs.ucla.edu>
2577
2578 Assume gnulib does largefile.
2579 Gnulib does the largefile configuration anyway, so when configure.in
2580 invokes AC_SYS_LARGEFILE, that bloats 'configure' unnecessarily.
2581 * configure.in (AC_SYS_LARGEFILE): Remove.
2582 * lib/gnulib.mk: Autoupdate.
2583
caf8a9b2
PE
25842012-05-26 Paul Eggert <eggert@cs.ucla.edu>
2585
2586 Merge from gnulib. (Bug#11527)
2587
2588 The build procedure now creates <stdalign.h> and <sys/types.h> for
2589 older hosts that lack a working <stdalign.h> or whose
90eacf99
SM
2590 <sys/types.h> does not define pid_t, size_t, ssize_t, mode_t.
2591 New symbols such as WINDOWS_64_BIT_OFF_T may require attention in the
caf8a9b2
PE
2592 msdos and nt builds.
2593
2594 Here is a precis of gnulib changes that seem relevant; please see
2595 the gnulib ChangeLog for details.
2596
2597 2012-05-18 crypto: fix bug in large buffer handling
2598 2012-05-14 ignore-value.h: remove unused _GL_ATTRIBUTE_DEPRECATED
2599 2012-05-10 _Noreturn: port config.h to gcc -Wundef
2600 2012-05-08 warnings.m4: give a means to specify the program to compile
2601 2012-05-07 stdint: be more consistent with glibc, SunOS libc
2602 2012-04-21 Large File Support for native Windows platforms.
2603 2012-04-14 stat: Bypass buggy override in mingw64.
2604 2012-03-29 stdio: don't assume gets any more
2605 2012-03-24 Enable common subexpression optimization in GCC.
2606 2012-02-09 maint: replace FSF snail-mail addresses with URLs
2607 2012-01-30 sys_stat: Fix support for mingw64 and MSVC.
2608 2012-01-28 strtoimax: eliminate need for stdint.h, inttypes.h checks
2609 2012-01-21 stdint: Add support for Android.
2610 2012-01-15 Improve support for MSVC 9.
2611 2012-01-08 mktime: Avoid compilation error on Solaris 11.
2612 2012-01-05 Use ', not `, for quoting output.
2613 2012-01-05 strtoimax: Don't replace systems where intmax_t is int.
2614 2012-01-05 strtoimax: Work around AIX 5.1 bug.
2615 2012-01-05 inttypes: Modernize.
2616 2011-12-13 inttypes, stdint: add C++11 support
2617 2011-11-26 Fix conflict between two instantiations of module 'unistd'.
2618 2011-11-21 _Noreturn: Check that _MSC_VER is defined
2619 2011-11-10 ptsname_r: Avoid compilation error on OSF/1 5.1.
2620 2011-11-09 raise: fix mingw handling of SIGPIPE
2621 2011-10-27 Add stdalign module and use it in other modules.
2622
2623 * lib/stdalign.in.h, lib/sys_types.in.h, m4/off_t.m4, m4/stdalign.m4:
2624 * m4/sys_types_h.m4:
2625 New files.
2626 * build-aux/move-if-change, build-aux/snippet/_Noreturn.h:
2627 * build-aux/snippet/arg-nonnull.h, build-aux/snippet/c++defs.h:
2628 * build-aux/snippet/warn-on-use.h, doc/misc/texinfo.tex:
2629 * lib/alloca.in.h, lib/allocator.h, lib/careadlinkat.c:
2630 * lib/careadlinkat.h, lib/dosname.h, lib/dup2.c, lib/filemode.c:
2631 * lib/filemode.h, lib/ftoastr.c, lib/ftoastr.h, lib/getloadavg.c:
2632 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
2633 * lib/gettext.h, lib/gnulib.mk, lib/ignore-value.h, lib/intprops.h:
2634 * lib/inttypes.in.h, lib/lstat.c, lib/md5.c, lib/md5.h, lib/mktime.c:
2635 * lib/pathmax.h, lib/pthread_sigmask.c, lib/readlink.c, lib/sha1.c:
2636 * lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
2637 * lib/signal.in.h, lib/sigprocmask.c, lib/stat.c, lib/stdarg.in.h:
2638 * lib/stdbool.in.h, lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h:
2639 * lib/stdlib.in.h, lib/strftime.c, lib/strftime.h, lib/strtoimax.c:
2640 * lib/strtol.c, lib/strtoll.c, lib/strtoul.c, lib/strtoull.c:
2641 * lib/symlink.c, lib/sys_stat.in.h, lib/time.in.h, lib/time_r.c:
2642 * lib/u64.h, lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
2643 * m4/alloca.m4, m4/c-strtod.m4, m4/dup2.m4, m4/extensions.m4:
2644 * m4/filemode.m4, m4/getloadavg.m4, m4/getopt.m4, m4/gl-comp.m4:
2645 * m4/gnulib-common.m4, m4/gnulib-tool.m4, m4/include_next.m4:
2646 * m4/inttypes.m4, m4/largefile.m4, m4/longlong.m4, m4/lstat.m4:
2647 * m4/md5.m4, m4/mktime.m4, m4/multiarch.m4, m4/nocrash.m4:
2648 * m4/pathmax.m4, m4/pthread_sigmask.m4, m4/readlink.m4, m4/sha1.m4:
2649 * m4/sha256.m4, m4/sha512.m4, m4/signal_h.m4, m4/signalblocking.m4:
2650 * m4/socklen.m4, m4/ssize_t.m4, m4/st_dm_mode.m4, m4/stat.m4:
2651 * m4/stdarg.m4, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4:
2652 * m4/stdio_h.m4, m4/stdlib_h.m4, m4/strftime.m4, m4/strtoimax.m4:
2653 * m4/strtoll.m4, m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4:
2654 * m4/sys_stat_h.m4, m4/time_h.m4, m4/time_r.m4, m4/tm_gmtoff.m4:
2655 * m4/unistd_h.m4, m4/warnings.m4, m4/wchar_t.m4:
2656 Update from gnulib.
2657
34374650
PE
26582012-05-22 Paul Eggert <eggert@cs.ucla.edu>
2659
2660 Remove src/m/*.
2661 * configure.in: Remove all mention of src/m/*.
2662 (machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
2663 All uses removed.
2664 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
2665 (BITS_PER_LONG_LONG): Move to src/lisp.h.
2666 * lib/makefile.w32-in: Remove dependencies on
2667 $(EMACS_ROOT)/src/m/intel386.h.
2668 * make-dist: Don't make links to src/m.
2669
ec21c7f8
PE
26702012-05-22 Paul Eggert <eggert@cs.ucla.edu>
2671
2672 * Makefile.in (ACLOCAL_INPUTS): Fix up gnulib-comp.m4 name. (Bug#11529)
2673 Without this further fix, aclocal was being invoked unnecessarily.
2674
39078e4a
GM
26752012-05-22 Glenn Morris <rgm@gnu.org>
2676
2677 * Makefile.in (blessmail, install-arch-dep, uninstall):
2678 Check cd lib-src works.
2679 (install-arch-dep, uninstall): Remove unneeded subshells.
2680
be17565b
GM
26812012-05-21 Glenn Morris <rgm@gnu.org>
2682
ff0c3cfb
GM
2683 * update-subdirs: Move to build-aux/.
2684 * make-dist, Makefile.in (install-arch-indep): Update for this change.
2685
d10cfddd
GM
2686 * Makefile.in (leimdir): New, set by configure.
2687 (COPYDIR, COPYDESTS): Add leim directories.
2688 (install-leim): Remove.
2689 (install-arch-indep): Handle leim installation directly.
2690
be17565b
GM
2691 * vpath.sed: Remove unused file.
2692 * make-dist: No more vpath.sed.
2693
9b4ee616
PE
26942012-05-21 Paul Eggert <eggert@cs.ucla.edu>
2695
fb77d37e
PE
2696 Use full name for m4/gnulib-comp.m4. (Bug#11529)
2697 Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions,
2698 even though the file's name in gnulib is m4/gnulib-comp.m4.
2699 This had a problem when merging from gnulib, as the code temporarily
2700 renamed it to the full name, causing problems when interrupted.
2701 Now the file has its full name, with the idea that we will find
2702 a solution for MS-DOS that does not affect the rest of Emacs.
2703 * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4.
2704
261cb4bb
PE
2705 Assume C89 or later.
2706 * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
2707 (POINTER_TYPE, PROTOTYPES): Remove.
2708
9b4ee616
PE
2709 Make merging from gnulib a script, not a makefile action.
2710 Putting it in a makefile has some problems with reflection, as
2711 merging from gnulib updates 'configure', which can update the makefile.
2712 Putting it in a standalone script breaks this loop.
2713 * Makefile.in (gnulib_srcdir, $(gnulib_srcdir), DOS_gnulib_comp.m4)
2714 (GNULIB_MODULES, GNULIB_TOOL_FLAGS, sync-from-gnulib):
2715 Remove, moving the actions to the script admin/merge-gnulib.
2716
261cb4bb
PE
27172012-05-21 Glenn Morris <rgm@gnu.org>
2718
2719 * configure.in (LEIM_INSTALLDIR):
2720 Rename to leimdir, treat like lispdir.
2721
b847032c
GM
27222012-05-21 Glenn Morris <rgm@gnu.org>
2723
2724 * Makefile.in (install-arch-indep, install-doc, install-info)
2725 (uninstall): Scrap superfluous subshells.
2726
a04689de 27272012-05-19 Ulrich Müller <ulm@gentoo.org>
af006ad5
UM
2728
2729 * Makefile.in (install-etc): Respect DESTDIR. (Bug#11518)
2730
003fdae2
PE
27312012-05-19 Paul Eggert <eggert@cs.ucla.edu>
2732
9232a6d9
PE
2733 * configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
2734 getdomainname, mblen (twice), mbrlen (twice), mbsinit, ualarm,
2735 getsockopt, setsockopt, mremap, mempcpy.
2736
003fdae2
PE
2737 * configure.in (machine): Do not set to 'vax', since src/m/vax.h
2738 is being removed.
2739 (AC_CHECK_FUNCS): Remove ftime.
2740
e7333757
GM
27412012-05-19 Glenn Morris <rgm@gnu.org>
2742
e39b9806 2743 * Makefile.in (install-arch-indep): Remove unneeded subshell.
e39b9806 2744
42d5aa3e
GM
2745 * Makefile.in (install-arch-indep): Remove unneeded chmod.
2746 Set permissions of lisp/subdirs.el.
2747
9192d37d
GM
2748 * Makefile.in (SUBDIR): Add leim. Update users.
2749
2e5d41e4
GM
2750 * Makefile.in (lib, lib-src, lisp): Check cd return value.
2751
e7333757
GM
2752 * Makefile.in (leim): No need to set PARALLEL.
2753
7606c360
GM
27542012-05-18 Glenn Morris <rgm@gnu.org>
2755
6d1a623e
GM
2756 * Makefile.in (install-arch-indep, install-info, install-man):
2757 Simplify some one-sided ifs.
2758
29473393
GM
2759 * Makefile.in: Install only the relevant DOC file.
2760 (install-arch-indep): Delete etc/DOC*.
2761 (install-doc): No more need to delete etc/DOC.
2762
660c8c1e
GM
2763 * Makefile.in (install-arch-indep): Split into several rules.
2764 (install-doc, innstall-info, install-man): New rules.
2765
37f36bcb
GM
2766 * configure.in (mandir): May as well include it in the NS app bundle.
2767
0629a797
GM
2768 * configure.in (INSTALL_ARCH_INDEP_EXTRA): New output variable.
2769 * Makefile.in (INSTALL_ARCH_INDEP_EXTRA): New, set by configure.
2770 (install-arch-indep): Don't install-etc for self-contained ns builds.
2771
136c45ee
GM
2772 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
2773 No longer unconditonally add /sw directories. (Bug#2280)
2774
ed0ba302
GM
2775 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
2776 (install-arch-indep): Depend on install-leim.
2777 (install): Remove explicit install-leim dependence.
2778
62061397
GM
2779 * Makefile.in (install-arch-indep):
2780 Move last element of mkdir rule here.
2781 (mkdir): Remove rule.
2782
37baa3c8
GM
2783 * Makefile.in (install-arch-indep): Remove unneeded chmods.
2784 INSTALL_DATA does this for us.
2785
b533f05e
GM
2786 * Makefile.in (install-arch-dep): Ensure bindir exists.
2787 Drop mkdir dependency.
2788 (install-arch-indep): Ensure docdir, infodir, mandir exist.
2789 (install-leim): Drop mkdir dependency.
2790 (mkdir): Remove most directories, now made in relevant rules.
2791
7606c360
GM
2792 * Makefile.in (install-arch-indep): Combine adjacent loops.
2793
3a4155de
GM
27942012-05-17 Glenn Morris <rgm@gnu.org>
2795
d9a1e2c2
GM
2796 * Makefile.in (install-etc, mkdir):
2797 Make relevant directories in install-etc rather than mkdir.
2798
4c54abe1
GM
2799 * Makefile.in (write_subdir): Create the directory if needed.
2800 (install-arch-dep, mkdir): No need to make site-lisp directories.
2801
9f1ea7dc 2802 * Makefile.in (write_subdir): New.
05f3d308 2803 (install-arch-indep, install-arch-dep): Use $write_subdir.
9f1ea7dc 2804
40c117e7 2805 * configure.in (docdir, etcdir, infodir, lispdir):
b42c720d 2806 For a self-contained ns build, set these to the appropriate values.
40c117e7 2807 * Makefile.in (install-arch-dep): No need to move info/ any more.
b42c720d 2808
b4a36200
GM
2809 * configure.in (ns_self_contained): New output variable.
2810 * Makefile.in (ns_self_contained): New, set by configure.
2811 (install-arch-dep): For a self-contained ns build,
96182ae6
GM
2812 don't bother installing binaries then immediately deleting them.
2813
3a4155de
GM
2814 * Makefile.in (ns_appbindir, ns_appresdir):
2815 Move them before things that may refer to them.
2816 (install-arch-dep): No need to relocate self-contained ns libexec.
2817
2818 * configure.in (archlibdir): Set it for self-contained ns builds.
2819 (libexecdir): Don't expand it now (this is mainly cosmetic).
2820
f04940ae
PE
28212012-05-16 Paul Eggert <eggert@cs.ucla.edu>
2822
2823 * configure.in: Simplify by removing CPP etc.
2824 (CPP_TEST_OPTIONS, NON_GNU_CPP, cc_specified, SPECIFIED_CFLAGS)
2825 (SPECIFED_CPP, CPP, NON_GNU_CC, AC_PROG_CPP): Remove; not needed.
2826 In particular we no longer need to fiddle with CPP, since we don't
2827 use CPP specially any more.
2828 (gl_EARLY): Invoke this after adjusting CC, so that it uses the
2829 adjusted compiler.
2830 (AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_RANLIB): Comment out,
2831 since gl_EARLY and/or Autoconf already does these.
2832
27cb7be2
GM
28332012-05-16 Glenn Morris <rgm@gnu.org>
2834
2835 * configure.in: Try to fix building with gcc >= 4.6 on Darwin.
2836 (CPP): Do not unconditionally set it on Darwin.
2837 Instead, try to test if -no-cpp-precomp is accepted.
2838 (CPP_TEST_OPTIONS, SPECIFIED_CPP): New. (Bug#9755)
2839
ec3ca9ec
GM
28402012-05-15 Glenn Morris <rgm@gnu.org>
2841
4e7d487c 2842 * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
a3f7efb8 2843
75a9f5f5
GM
2844 * Makefile.in (install-arch-dep): Do not hard-code version number.
2845
ec3ca9ec
GM
2846 * Makefile.in (install-arch-dep): NS install no longer needs to
2847 symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change.
2848
3fe7cdc8
GM
28492012-05-12 Glenn Morris <rgm@gnu.org>
2850
9e6b06ed
GM
2851 * configure.in (ns_appbindir): Remove trailing "/".
2852
3fe7cdc8
GM
2853 * configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
2854 (MKDEPDIR): Use $MKDIR_P.
2855 * Makefile.in (MKDIR_P): New, set by configure.
2856 (mkdir): Use $MKDIR_P.
2857
a873f274
GM
28582012-05-11 Glenn Morris <rgm@gnu.org>
2859
2860 * Makefile.in (install-arch-indep): There are no more Makefile.c files.
e6124927 2861 Use INSTALL_DATA for the DOC file.
c8e32179 2862 Remove dead code for ./lisp that never executes.
a873f274 2863
ff57c2ec
GM
28642012-05-10 Glenn Morris <rgm@gnu.org>
2865
2866 * configure.in (LEIM_INSTALLDIR): New output variable.
2867
49ed9c8e
SM
28682012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2869
2870 * .dir-locals.el (log-edit-mode): Enable gnu-style checks.
2871
5122804a
GM
28722012-05-08 Glenn Morris <rgm@gnu.org>
2873
2874 * make-dist: No more doc/lispref/*.el.
2875
01319a4e
AS
28762012-05-05 Andreas Schwab <schwab@linux-m68k.org>
2877
2878 * configure.in: Fix quoting bugs.
2879
8045b906
GM
28802012-05-04 Glenn Morris <rgm@gnu.org>
2881
2882 * configure.in (INFO_EXT, INFO_OPTS): New output variables.
2883
9fa0e416
GM
28842012-05-02 Glenn Morris <rgm@gnu.org>
2885
3c30e766
GM
2886 * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat
2887 the choices made by FreeBSD and NetBSD. (Bug#10313)
2888
9aa071df
GM
2889 * Makefile.in (INFO_FILES): Remove variable.
2890 (INFO_NONMISC): New variable.
2891 (install-arch-indep, uninstall): Don't use $INFO_FILES.
2892
cd3771a0
GM
2893 * Makefile.in (uninstall): Remove useless-use-of-for; that for
2894 some reason caused problems on an old Solaris.
2895
a36e64d0
GM
2896 * Makefile.in (install-arch-indep, uninstall):
2897 Ensure that INSTALL-type commands are run from top-level.
2898
9e7a4bcf
GM
2899 * info/dir: Make some entries consistent with the source texi files.
2900
9fa0e416
GM
2901 * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
2902
7adecb99
GM
29032012-05-02 Glenn Morris <rgm@gnu.org>
2904
2905 * Makefile.in (install-arch-indep):
2906 Combine adjacent install-data and install-info loops.
2907
4737362e
GM
29082012-05-01 Glenn Morris <rgm@gnu.org>
2909
ab1121bd
GM
2910 * Makefile.in (MAN_PAGES): Remove.
2911 (install-arch-indep, uninstall): Don't use $MAN_PAGES.
2912
a4a18b8b
GM
2913 * configure.in: Try libtinfo for tputs.
2914 (LIBS_TERMCAP) [gnu*]: Use libtinfo if it was found. (Bug#9741)
2915
3ba0a545
GM
2916 * configure.in: Combine adjacent $opsys case blocks.
2917
e3da5b19
GM
2918 * configure.in (LIBS_TERMCAP): Remove unreachable branch for sol2.
2919
262f06da
GM
2920 * configure.in: Invert the TERMINFO logic,
2921 since "yes" is far more common than "no".
2922
9311dcff
GM
2923 * configure.in (HAVE_LIBNCURSES): Remove; it is required to be true.
2924
4d5c6349
GM
2925 * configure.in (LD_SWITCH_X_SITE_RPATH):
2926 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
2927
4737362e
GM
2928 * configure.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
2929
562e638f
GM
29302012-04-26 Glenn Morris <rgm@gnu.org>
2931
2932 * make-dist: No more doc/lispref/tindex.pl.
2933
dcbf5805
MA
29342012-04-22 Michael Albinus <michael.albinus@gmx.de>
2935
2936 * configure.in (dbus_validate_bus_name, dbus_validate_path)
2937 (dbus_validate_interface, dbus_validate_member): Check also for
e3a3e213 2938 these library functions.
dcbf5805 2939
4b5b5289
PE
29402012-04-22 Paul Eggert <eggert@cs.ucla.edu>
2941
2942 * configure.in (doug_lea_malloc): Check for __malloc_initialize_hook.
2943 With glibc 2.14 or later, when compiled with GCC 4.7.0's
2944 -Werror=deprecated-declarations flag, use of hooks like
2945 __malloc_initialize_hook causes compilation to fail because these
2946 hooks are deprecated. Modify 'configure' to check for these hooks too.
2947 Simplify the 'configure' code to test for all the hooks at once.
2948 (emacs_cv_var___after_morecore_hook): Remove, replacing with ...
2949 (emacs_cv_var_doug_lea_malloc): ... this new var.
2950
9ee7d8b9
PE
29512012-04-21 Paul Eggert <eggert@cs.ucla.edu>
2952
2953 Sync from gnulib version 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc
2954 dated 2011-10-07. Regenerating from current gnulib would be a
2955 pervasive change, and currently the trunk isn't open to such changes.
2956 * configure.in (WARN_CFLAGS): Remove; no longer needed now
2957 that gnulib does it.
2958 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
2959
5e6ab4e6
AS
29602012-04-21 Andreas Schwab <schwab@linux-m68k.org>
2961
2962 * m4/gl-comp.m4: Update. (Bug#11285)
2963
c07a4c0b 29642012-04-20 Ludovic Courtès <ludo@gnu.org>
d666446d
LC
2965
2966 * configure.in: Don't use the -R option (Bug#11251).
2967
6c94c34f 29682012-04-18 Paul Eggert <eggert@cs.ucla.edu>
b8df54ff 2969
9f46df23 2970 configure: new option --enable-gcc-warnings (Bug#11207)
b8df54ff
PE
2971 I have been using this change for many months in my private copy
2972 of Emacs, and have used it to find several bugs. It's mature
2973 enough to publish now.
2974 * Makefile.in (GNULIB_MODULES): Add warnings, manywarnings.
2975 * configure.in: Support --enable-gcc-warnings, in the style of
2976 other GNU packages such as coreutils.
2977 (C_WARNINGS_SWITCH): Remove, replacing with...
2978 (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable.
2979 (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I,
2980 when including system files with GCC.
2981 * etc/NEWS: Mention --enable-gcc-warnings.
67546201 2982 * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise.
b8df54ff
PE
2983 * lib/Makefile.am (AM_CFLAGS): New macro.
2984 * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib.
2985
316411f0
DA
29862012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
2987
2988 * configure.in (AC_CHECK_FUNCS):
1f9f395d 2989 Add getpwent, endpwent, getgrent, endgrent. (Bug#7900)
316411f0 2990
9b9b2ef2
GM
29912012-04-16 Glenn Morris <rgm@gnu.org>
2992
b1aa797c
GM
2993 * configure.in (NS_HAVE_NSINTEGER): Remove unnecessary variable.
2994
9b9b2ef2
GM
2995 * configure.in: Remove X libs workaround for old autoconf.
2996
badf86af
KB
29972012-04-12 Ken Brown <kbrown@cornell.edu>
2998
2999 * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398)
3000
2f097256
GM
30012012-04-11 Glenn Morris <rgm@gnu.org>
3002
3003 * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
3004
a9f72fc1
GM
30052012-04-10 Glenn Morris <rgm@gnu.org>
3006
3007 * configure.in: Conditionally generate admin/unidata/Makefile.
3008
6b4f4a2d
TZ
30092012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
3010
a9f72fc1 3011 * info/dir, Makefile.in (INFO_FILES): Add emacs-gnutls manual.
6b4f4a2d 3012
23df914b
GM
30132012-04-09 Glenn Morris <rgm@gnu.org>
3014
fd9d85c2
GM
3015 * Makefile.in (leim): Check cd return value. Pass fewer variables.
3016 (install-leim): Check cd return value. Pass $MFLAGS.
3017 (install-strip): Pass $MFLAGS.
3018
23df914b
GM
3019 * configure.in: Require makeinfo >= 4.7. (Bug#10910)
3020 Eg org.texi has been using 4.7 functions for some time.
3021
bf6bba2b
PE
30222012-04-07 Paul Eggert <eggert@cs.ucla.edu>
3023
3024 Check pkg-config exit status when configuring (Bug#10626).
3025 * configure.in (PKG_CHECK_MODULES): Do not assume that pkg-config
3026 works; check its exit status. Problem reported by Jordi Gutiérrez
3027 Hermoso in
3028 <http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00787.html>.
3029
f3774f20
GM
30302012-04-07 Glenn Morris <rgm@gnu.org>
3031
3032 * README, configure.in (AC_INIT): Bump version to 24.1.50.
3033
d67a9a85
EZ
30342012-04-07 Eli Zaretskii <eliz@gnu.org>
3035
3036 * lib/makefile.w32-in (gnulib, all): Don't depend on stamp_BLD.
3037
f20f95c6
PE
30382012-03-04 Paul Eggert <eggert@cs.ucla.edu>
3039
3040 configure: fix ncurses 'configure' issue on Solaris 10 (Bug#10677)
3041 * configure.in (LIBS_TERMCAP): Default this to the result of
3042 the tputs library search. Do a run-time test for the linkability
3043 of tputs unless cross-compiling, as that's more reliable if the
3044 link flags and libraries are messed up. Don't change LIBS as
3045 a result of the test, as that may mess up later tests.
3046
75197633
CS
30472012-02-05 Christoph Scholtes <cschol2112@googlemail.com>
3048
e7b41c4c 3049 * make-dist (README.W32): Include file in source tarball. (Bug#9750)
3e44c782 3050
75197633
CS
3051 * lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
3052 specific makefiles to support getopt_.h generation with MSVC.
3053
7eb21b49
GM
30542012-02-04 Glenn Morris <rgm@gnu.org>
3055
3056 * Makefile.in (uninstall):
3057 Handle compressed info files and man pages. (Bug#10718)
3058
44f92739
GM
30592012-02-02 Glenn Morris <rgm@gnu.org>
3060
3061 * configure.in [HAVE_NS]:
3062 Error if use --without-toolkit-scroll-bars. (Bug#10673)
3063
6df37268
PE
30642012-02-01 Paul Eggert <eggert@cs.ucla.edu>
3065
3066 Port to older Solaris 10 versions (Bug#10677).
3067 Bug reported by Chong Yidong for SunOS 5.10 Generic_127111-11 sparc.
3068 I cannot reproduce it on SunOS 5.10 Generic_141444-09 sparc but
3069 possibly this is because Sun fixed the 'stat' bug in my version.
3070 * Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid the pathmax module.
3071 * lib/pathmax.h, m4/pathmax.m4: New files, from gnulib.
3072 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
3073 These changes are based on gnulib version
3074 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc dated 2011-10-07 20:59:10,
3075 because Emacs is in feature freeze and we do not want to merge any
3076 more-recent changes from gnulib.
3077
8d8939e8
GM
30782012-01-31 Glenn Morris <rgm@gnu.org>
3079
e4070def
GM
3080 * configure.in: Throw an explicit error if Motif toolkit was
3081 requested but requirements could not be found.
3082
8d8939e8
GM
3083 * configure.in: Allow Emacs to actually be built with xaw scroll-bars.
3084
5a26ec89
EZ
30852012-01-30 Eli Zaretskii <eliz@gnu.org>
3086
3087 * lib/makefile.w32-in ($(BLD)/sha1.$(O) $(BLD)/sha256.$(O)
3088 $(BLD)/sha512.$(O)): Depend on stamp_BLD. Fixes a build failure
3089 with "make -j3".
3090
1b0880d5
JB
30912012-01-16 Juanma Barranquero <lekktu@gmail.com>
3092
3093 * .bzrignore: Ignore etc/__pycache__.
3094
adee8a65
PE
30952011-12-17 Paul Eggert <eggert@cs.ucla.edu>
3096
3097 Port HAVE_PTHREAD configuration to MirBSD 10 (Bug#10201).
090bd7cb 3098 * configure.in (HAVE_PTHREAD): Check for pthread_atfork if linking
adee8a65
PE
3099 to gmalloc.c. This should prevent a MirBSD 10 build failure reported
3100 by Nelson H. F. Beebe in
3101 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00065.html>.
3102
e152e577
JB
31032011-12-10 Juanma Barranquero <lekktu@gmail.com>
3104
3105 * update-subdirs: Don't set no-byte-compile twice (bug#10260).
3106
46d14be7
JD
31072011-12-10 Jan Djärv <jan.h.d@swipnet.se>
3108
3109 * configure.in (HAVE_ALSA, HAVE_GSETTINGS): Save and restore LIBS
3110 instead of LDFLAGS (Bug#10230).
3111
6c269a38
PE
31122011-12-03 Paul Eggert <eggert@cs.ucla.edu>
3113
4eec8d6f
PE
3114 * INSTALL.BZR: Mention configure -C, --disable-maintainer-mode.
3115
6c269a38 3116 Propagate configure flags to sub-configures.
1350a3cc 3117 * Makefile.in (cache_file, MAINTAINER_MODE_FLAG, CONFIGUREFLAGS):
6c269a38
PE
3118 New macros.
3119 (config.status, bootstrap): Use them to propagate configure flags
3120 to sub-configures.
3121 * configure.in (cache_file): AC_SUBST this, for Makefile.in.
3122
63e94eb8
PE
31232011-12-03 Paul Eggert <eggert@cs.ucla.edu>
3124
3125 * .bzrignore: Add config.cache.
3126
54e9e3bf
JD
31272011-11-27 Jan Djärv <jan.h.d@swipnet.se>
3128
3129 * configure.in: Check for gtk_window_set_has_resize_grip.
3130
20db1522
JB
31312011-11-24 Juanma Barranquero <lekktu@gmail.com>
3132
3133 * configure.in (HAVE_XPM): Fix typo.
3134
60bf278f
GM
31352011-11-22 Glenn Morris <rgm@gnu.org>
3136
5f77c86c
GM
3137 * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can
3138 have confusing effects on the build. (Bug#6401)
3139
60bf278f
GM
3140 * Makefile.in (install-arch-dep): Tweak previous change.
3141
816be9f6
YD
31422011-11-22 Yavor Doganov <yavor@gnu.org>
3143
3144 Do not install arch-dependent files in the app bundle if
3145 --disable-ns-self-contained is requested. (Bug#1335)
3146 * configure.in (exec_prefix, libexecdir): Define relative to
3147 `ns_appbindir' only if configured for a self-contained app.
3148 * Makefile.in (install-arch-dep): Test for the existence of
3149 libexec in the Emacs.app bundle before executing commands.
3150
d5ff9cd0
AS
31512011-11-20 Andreas Schwab <schwab@linux-m68k.org>
3152
3153 * configure.in: Remove reference to src/m/ibms390.h.
3154
1c889bf6
GM
31552011-11-13 Glenn Morris <rgm@gnu.org>
3156
3157 * INSTALL: Tiny updates for disk space used during installation.
3158
a6fc3b5c
EZ
31592011-11-05 Eli Zaretskii <eliz@gnu.org>
3160
3161 * lib/makefile.w32-in (FRC): New dummy target.
3162 (TAGS): Depend on FRC.
3163
9f77899d
GM
31642011-11-04 Glenn Morris <rgm@gnu.org>
3165
1f9f395d 3166 * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929)
9f77899d
GM
3167 Do not include GnuTLS version info in final summary message.
3168
0bd3cb7b
EZ
31692011-10-31 Eli Zaretskii <eliz@gnu.org>
3170
07f3add9
EZ
3171 * config.bat: Use config.in and Makefile.in from src/ and lib/, if
3172 they exist there, else from autogen/.
3173
3174 * make-dist (msdos): Add depfiles.bat and inttypes.h.
0bd3cb7b 3175
d2eaf3e4
NT
31762011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change)
3177
3178 * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
3179
e782cfab
PE
31802011-10-24 Paul Eggert <eggert@cs.ucla.edu>
3181
3182 * configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
3183 if the library is found. Otherwise, later configure-time tests,
3184 such as the test for pthread_sigmask, generate the wrong results
3185 on some platforms. Problem reported for FreeBSD by Nali Toja.
3186
7da0b018
PE
31872011-10-20 Paul Eggert <eggert@cs.ucla.edu>
3188
3189 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
3190 * configure.in (AC_STRUCT_TM, AC_STRUCT_TIMEZONE, HAVE_TM_GMTOFF):
3191 Remove; no longer needed, now that we defer to strftime for time
3192 zone names.
3193
0ffe1065
JD
31942011-10-18 Jan Djärv <jan.h.d@swipnet.se>
3195
3196 * configure.in (GLIB_REQUIRED, GTK_REQUIRED): Set to 2.10 (Bug#9786).
3197
23769e49
CY
31982011-10-18 Chong Yidong <cyd@gnu.org>
3199
3200 * make-dist: Remove Cocoa/Emacs.xcodeproj from distribution.
3201
fd8dea03
GM
32022011-10-13 Glenn Morris <rgm@gnu.org>
3203
3204 * configure.in: Also look for tputs in libcurses. (Bug#9736)
3205
f4cc5b54
PE
32062011-10-12 Paul Eggert <eggert@cs.ucla.edu>
3207
3208 * configure.in: Remove check for -lintl (Bug#9713).
f1bfb0db 3209 The check could break 'configure' on GNU/Linux with a (broken) libintl.
f4cc5b54
PE
3210 The check was helpful but not essential in Solaris 2.6 (1997),
3211 and is no longer needed in Solaris 8 (2000). Solaris 2.6 is
3212 obsolete -- Sun dropped support for it in 2006 -- and without
3213 access to that Silurian platform we can't maintain the code anyway.
3214
7c5ee88e
PE
32152011-10-07 Paul Eggert <eggert@cs.ucla.edu>
3216
d47439a3
PE
3217 Merge from gnulib, fixing some 'configure' typos (Bug#9696).
3218 * lib/signal.in.h, lib/sigprocmask.c, m4/gl-comp.m4:
3219 * m4/gnulib-common.m4: Merge from gnulib.
3220 Without this, 'configure' would say "func_gl_gnulib_m4code_pathmax:
3221 command not found" on powerpc-apple-darwin9.8.0.
3222
7c5ee88e
PE
3223 * configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
3224 This is now done by src/alloc.c.
3225
423dbf9b
RS
32262011-10-02 Richard Stallman <rms@gnu.org>
3227
3228 * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
3229 and xlinux_second_failure to xgnu_linux_second_failure.
3230
31bed486
EZ
32312011-09-29 Eli Zaretskii <eliz@gnu.org>
3232
5f91c1e5
EZ
3233 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
3234 lib/signal.in-h.
31bed486 3235
e785f2ec 3236 * config.bat: Rename GNUmakefile, so it is not run on MS-DOS.
31bed486
EZ
3237 Rename signal.in.h and alloca.in.h.
3238
e1504b9b
EZ
32392011-09-28 Eli Zaretskii <eliz@gnu.org>
3240
3241 * INSTALL: Mention that m17n libraries and libotf are needed for
3242 Arabic shaping.
3243
316f8af0
PE
32442011-09-26 Paul Eggert <eggert@cs.ucla.edu>
3245
3246 Merge from gnulib, improving some licensing wording.
3247 This clarifies and fixes some licensing issues raised by Glenn Morris
3248 <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
3249 It also merges the latest version of texinfo.tex and has some
3250 MSVC-related changes that don't affect Emacs.
3251 * Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
3252 pathmax, and raise, since these are needed only to address
3253 MSVC-related issues that Emacs doesn't have.
3254 * doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
3255 * lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
3256 * lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
3257 * m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
3258 * m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
3259 * m4/unistd_h.m4: Merge from gnulib.
3260
04d51ad4
AS
32612011-09-26 Andreas Schwab <schwab@linux-m68k.org>
3262
3263 * configure.in: Initialize HAVE_LIBXML2.
3264
6e99ef20
GM
32652011-09-26 Glenn Morris <rgm@gnu.org>
3266
3267 * make-dist: Add lib/makefile.w32-in.
3268
0538fab0
GM
32692011-09-24 Glenn Morris <rgm@gnu.org>
3270
3271 * configure.in (CRT_DIR): Fix netbsd/openbsd handling.
3272
c5b01d8c
LMI
32732011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
3274
3275 * .dir-locals.el: Change the debbugs regexp to allow having the
3276 bug number as the first thing on a line.
3277
0cc87afb
GM
32782011-09-15 Glenn Morris <rgm@gnu.org>
3279
3280 * configure.in: Make configure work with recent GNUsteps.
3281 (_NATIVE_OBJC_EXCEPTIONS): New AC_DEFINE.
3282 (GNU_OBJC_CFLAGS): Add -fobjc-exceptions when needed.
088f329c 3283 (C_SWITCH_X_SYSTEM): Enable GNUstep to find its headers.
0cc87afb 3284
3f44249e
PE
32852011-09-11 Paul Eggert <eggert@cs.ucla.edu>
3286
3287 Merge from gnulib, porting to Tru64.
3288 * lib/lstat.c, lib/stat.c, m4/include_next.m4, m4/nocrash.m4:
3289 * m4/signal_h.m4, m4/time_h.m4, m4/unistd_h.m4:
3290 Merge from gnulib. This fixes a compilation error on Tru64 UNIX
3291 aka OSF/1 5.1 DTK cc. There is also some mingw stuff here that
3292 doesn't affect Emacs.
3293
c8199d0f
PE
32942011-09-06 Paul Eggert <eggert@cs.ucla.edu>
3295
3296 * configure.in (isnan): Remove now-unnecessary check.
3297
e39b275c 32982011-09-06 Paul Eggert <eggert@cs.ucla.edu>
24e0f6b1 3299
abec06ff 3300 Merge from gnulib, using build-aux to remove clutter (Bug#9169).
e39b275c
PE
3301 This is to fix the following problems:
3302 . On FreeBSD 6.4, HP-UX 11.31, and Solaris 9, and when Emacs is
3303 configured not to use gtk or any other thread-using library,
3304 signals aren't blocked correctly.
3305 . On IRIX 6.5 it fixes an unwanted clash between Emacs's
3306 and IRIX's signal handling.
3307 . On Cygwin 1.7.5 it works around an incompatibility with
3308 the system pthread_sigmask.
3309 . On MacOS X 10.5 (32-bit), files whose inode numbers
3310 exceed 2**31 cannot be read or manipulated.
3311 . pthread_sigmask: Actually use results of gl_THREADLIB.
3312 . strtoimax, strtoumax: Avoid link error on OSF/1 with DTK cc.
3313 . find 'ar' program that fits with --host argument.
3314 . Allow the user to override the choice of AR, ARFLAGS, RANLIB.
74b880cb
PE
3315 * autogen/README: Update destination list.
3316 * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
3317 The autogenerated files compile, config.guess,
3318 config.sub, depcomp, install-sh, and missing are now in build-aux.
24e0f6b1
PE
3319 * m4/largefile.m4: New file, so that Emacs does not mess up when
3320 accessing files with large inode numbers in MacOS X 10.5 and later.
3321 * m4/nocrash.m4: New file, to avoid triggering background debugger
3322 and/or create core dumps during 'configure'.
3323 * build-aux/move-if-change: Renamed from move-if-change.
3324 * build-aux/snippet/arg-nonnull.h: Renamed from arg-nonnull.h.
3325 * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
3326 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
3327 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
24e0f6b1
PE
3328 * Makefile.in (epaths-force, sync-from-gnulib):
3329 move-if-change is now in build-aux.
3330 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
3331 of gnulib's pthread_sigmask module, but Emacs doesn't need it.
3332 (mkdir): install-sh is now in build-aux.
3333 * config.bat: c++defs.h is now in build-aux/snippets.
3334 * configure.in: Specify AC_CONFIG_AUX_DIR with build-aux (the
3335 usual parameter).
3336 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
3337 * lib/makefile.w32-in (ARG_NONNULL_H): arg-nonnull.h moved
3338 to build-aux/snippet.
3339 * lib/pthread_sigmask.c, lib/stdlib.in.h, m4/extensions.m4:
3340 * m4/getopt.m4, m4/gnulib-common.m4, m4/pthread_sigmask.m4:
3341 Merge from gnuilib. This fixes porting bugs on Cygwin, Irix, and
3342 Solaris, enables MacOS extensions, and enables nocrash during
3343 'configure'.
3344 * make-dist: Adjust to new build-aux and build-aux/snippit dirs.
3345
86633eab 33462011-09-04 Paul Eggert <eggert@cs.ucla.edu>
55e5faa1
PE
3347
3348 * configure.in (snprintf): New check.
3349
015faae4
PE
33502011-08-30 Paul Eggert <eggert@cs.ucla.edu>
3351
695a3dc5 3352 * configure.in (opsys): Change pattern to *-*-linux*
015faae4 3353 to recognize powerpc-gnu-linux-uclibc (Bug#9403).
1f87634f
PE
3354 Remove unreachable pattern hppa*-*-linux-gnu*.
3355 Also, remove ia64*-hp-hpux1[1-9]*, as it also sets machine=hp800,
3356 and that can't possibly work now that src/m/hp800.h no longer exists.
015faae4 3357
52ec1feb
JD
33582011-08-26 Jan Djärv <jan.h.d@swipnet.se>
3359
3360 * configure.in: Add -MP to DEPFLAGS (Bug#9372).
3361
377538cb
JD
33622011-08-13 Jan Djärv <jan.h.d@swipnet.se>
3363
3364 * configure.in: Add header check: sys/socket.h (Bug#8477),
3365 ifaddrs.h, net/if_dl.h. Check for getifaddrs and freeifaddrs.
3366 Check for sa_len in struct ifreq.ifr_addr (Bug#8477).
3367
ae9e757a
JD
33682011-08-04 Jan Djärv <jan.h.d@swipnet.se>
3369
3370 * configure.in (HAVE_PTHREAD): Add check for -lpthread (Bug#9216).
3371 (HAVE_GTK_AND_PTHREAD): Remove.
3372
be8ec0b3
AA
33732011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
3374
3375 * configure.in (HAVE_RSVG): Allow use of -lrsvg-2 for any NextStep
3376 build, not just GNUstep (Bug#9177).
3377
2573a837 33782011-07-28 Paul Eggert <eggert@cs.ucla.edu>
0e926e56
PE
3379
3380 Assume freestanding C89 headers, string.h, stdlib.h.
3381 Again, this simplifies the code, and all current platforms have these.
3382 * configure.in (AC_CHECK_HEADERS): Don't check for limits.h.
3383 (AC_HEADER_STDC): Remove.
3384 (AC_CHECK_FUNCS): No need to check for strchr, strrchr.
3385 (strchr, strrchr): Remove fallback macros.
3386
9cfdb3ec
PE
3387 Assume support for memcmp, memcpy, memmove, memset.
3388 This simplifies the code a bit. All current platforms have these,
3389 as they are required for C89. If this turns into a problem we
3390 can add the gnulib modules for these (a 1-line change to Makefile.in).
3391 * configure.in: Don't check for memcmp, memcpy, memmove, memset.
3392
427c285b
PE
33932011-07-27 Paul Eggert <eggert@cs.ucla.edu>
3394
3395 * GNUmakefile: New file.
3396 This is for convenience, so that one can run GNU make in an
3397 unconfigured source tree, and get a default build.
3398
2ad77c9d
JD
33992011-07-13 Jan Djärv <jan.h.d@swipnet.se>
3400
3401 * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.
3402
c8618a06
YM
34032011-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3404
3405 * configure.in (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie on Darwin
3406 so as to suppress address randomization (Bug#8395).
3407
f6ce9b9a
PE
34082011-07-09 Paul Eggert <eggert@cs.ucla.edu>
3409
3fcf7a1c
PE
3410 * lib/stdint.in.h: Merge from gnulib (Bug#9025).
3411 This fixes a build problem on older Mac OS X hosts.
3412
d9706d9f
PE
3413 * m4/pthread_sigmask.m4 (gl_FUNC_PTHREAD_SIGMASK): Omit gl_THREADLIB
3414 test, which runs afoul of Automake installations where, for example,
3415 /usr/share/aclocal contains a copy of gl_THREADLIB.
3416 Problem reported by Sven Joachim in
3417 <http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00529.html>.
3418 This is just a quick temporary fix, specific to Emacs; I'll work
3419 with the other gnulib maintainers to get a more-permanent fix.
3420
af66a2d7 3421 Add gnulib's strtoimax module, needed on Solaris 8.
f6ce9b9a
PE
3422 * Makefile.in (GNULIB_MODULES): Add strtoimax.
3423 * lib/strtoll.c, m4/strtoimax.m4, m4/strtoll.m4: New files,
3424 automatically imported from gnulib.
3425 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
3426
1692ae2d 34272011-07-08 Paul Eggert <eggert@cs.ucla.edu>
6db30f83 3428
8a6ebd58 3429 Add gnulib support for pthread_sigmask (Bug#9010).
6db30f83 3430 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
2a84b02d
PE
3431 * configure.in (AC_TYPE_UID_T): New dummy macro.
3432 Configure gnulib after adjusting LIBS,
3433 so that gnulib can assume the libraries in LIBS.
6db30f83 3434 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
2a84b02d 3435 * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
b29e7c21 3436 * lib/pthread_sigmask.c:
6db30f83
PE
3437 New files, automatically imported from gnulib.
3438 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
3439 due to the above changes.
3440 * .bzrignore: Add lib/signal.h.
3441
4a621aae
PE
3442 * lib/getopt.c, lib/unistd.in.h, m4/getopt.m4: Merge from gnulib.
3443
5e94cadb
AS
34442011-07-07 Andreas Schwab <schwab@linux-m68k.org>
3445
3446 * configure.in (maintainer-mode): Reflect default in help string.
3447
76b397fb
DN
34482011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
3449
3450 * configure.in: Remove reference to iris4d.h.
3451
869795d6
JD
34522011-07-05 Jan Djärv <jan.h.d@swipnet.se>
3453
3454 * configure.in (HAVE_GCONF): Allow both HAVE_GCONF and HAVE_GSETTINGS.
3455
3279eb87
GM
34562011-07-01 Glenn Morris <rgm@gnu.org>
3457
3458 * configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
3459
2e6e11eb
LMI
34602011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3461
3462 * configure.in (HAVE_GSETTINGS): Fix syntax for GSETTINGS tests,
3463 which made ./configure infloop.
3464
9851bfc5
JD
34652011-06-30 Jan Djärv <jan.h.d@swipnet.se>
3466
3467 * configure.in (gsettings): New option and check for GSettings.
3468
adbc4ef4
GM
34692011-06-29 Glenn Morris <rgm@gnu.org>
3470
3471 * configure.in: Try to test for the required crt*.o files.
3472
1f773f32
BW
34732011-06-27 Bill Wohler <wohler@newt.com>
3474
3475 * .bzrignore: Add lisp/mh-e/mh-autoloads.el and lisp/mh-e/mh-cus-load.el.
3476
7a7ef429
PE
34772011-06-25 Paul Eggert <eggert@cs.ucla.edu>
3478
3479 Use gnulib's dup2 module instead of rolling our own.
3480 * Makefile.in (GNULIB_MODULES): Add dup2.
3481 * configure.in: Do not check for dup2; gnulib does that now.
3482 * lib/dup2.c, m4/dup2.m4: New files, from gnulib.
3483
6dd7e400
PE
34842011-06-23 Paul Eggert <eggert@cs.ucla.edu>
3485
3486 * lib/getopt.c, lib/stat.c, m4/gl-comp.m4: Merge from gnulib.
3487
94a807ac 34882011-06-22 Paul Eggert <eggert@cs.ucla.edu>
fa23e171
PE
3489
3490 Use gnulib's alloca-opt module.
3491 * .bzrignore: Add lib/alloca.h.
3492 * Makefile.in (GNULIB_MODULES): Add alloca-opt.
3493 * configure.in (AC_FUNC_ALLOCA): Remove almost all the alloca stuff,
e92b6c88
PE
3494 as gnulib now does that for us. Put alloca check in config.h.
3495 Include <alloca.h> before any other include file, for AIX 3.
fa23e171
PE
3496 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
3497 * lib/alloca.in.h, m4/alloca.m4: New files, from gnulib.
3498
3ce9d0d4
LL
34992011-06-21 Leo Liu <sdl.web@gmail.com>
3500
3501 * m4/sha256.m4:
3502 * m4/sha512.m4:
3503 * m4/gl-comp.m4:
3504 * lib/u64.h:
3505 * lib/sha256.c:
3506 * lib/sha256.h:
3507 * lib/sha512.c:
3508 * lib/sha512.h:
3509 * lib/makefile.w32-in (GNULIBOBJS):
3510 * lib/gnulib.mk:
3511 * Makefile.in (GNULIB_MODULES): Add crypto/sha256 and
3512 crypto/sha512 modules from gnulib.
3513
add3f049
PE
35142011-06-19 Paul Eggert <eggert@cs.ucla.edu>
3515
3516 * lib/unistd.in.h, m4/getloadavg.m4: Merge from gnulib.
3517
3a4725e1
GM
35182011-06-17 Glenn Morris <rgm@gnu.org>
3519
3520 * configure.in: Restore the behavior of checking crt-dir only
3521 when the user specified it (not all platforms use it).
3522
bf4846e7
PE
35232011-06-16 Paul Eggert <eggert@cs.ucla.edu>
3524
3525 * m4/lstat.m4: Merge from gnulib (Bug#8878).
3526
4d61f28d 35272011-06-16 Miles Bader <miles@gnu.org>
0cca0a78
MB
3528
3529 * configure.in: Try to determine CRT_DIR automatically when
3530 using gcc.
3531
8c9b2106
PE
35322011-06-15 Paul Eggert <eggert@cs.ucla.edu>
3533
8aeb5be9
PE
3534 * lib/ftoastr.c, lib/stdio.in.h, lib/verify.h:
3535 * lib/gnulib.mk, m4/c-strtod.m4, m4/filemode.m4, m4/getloadavg.m4:
3536 * m4/getopt.m4, m4/gl-comp.m4, m4/lstat.m4, m4/md5.m4, m4/mktime.m4:
3537 * m4/readlink.m4, m4/sha1.m4, m4/stat.m4, m4/strftime.m4:
3538 * m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4, m4/time_r.m4:
3539 Merge from gnulib.
8c9b2106 3540
c195f2de
JD
35412011-06-14 Jan Djärv <jan.h.d@swipnet.se>
3542
3543 * configure.in: Add emacsgtkfixed.o to GTK_OBJ if HAVE_GTK3.
3544
7e2aa385
PE
35452011-06-08 Paul Eggert <eggert@cs.ucla.edu>
3546
3547 * lib/gnulib.mk, m4/gnulib-common.m4: Merge from gnulib.
3548
81eafe29
PE
35492011-06-07 Paul Eggert <eggert@cs.ucla.edu>
3550
3551 * configure.in: Add --with-wide-int.
3552 * INSTALL: Mention this.
3553
9afafefb
PE
35542011-06-06 Paul Eggert <eggert@cs.ucla.edu>
3555
3556 Merge from gnulib.
3557 * lib/careadlinkat.c, lib/careadlinkat.h, m4/gnulib-common.m4: Merge.
3558
f797625a
PE
35592011-06-02 Paul Eggert <eggert@cs.ucla.edu>
3560
3561 * lib/allocator.h, lib/careadlinkat.c: Merge from gnulib.
3562
90856fe0 35632011-05-30 Paul Eggert <eggert@cs.ucla.edu>
55d4c1b2
PE
3564
3565 Use 'inline', not 'INLINE'.
eefc9486 3566 * configure.in (INLINE): Remove.
55d4c1b2 3567
6a3e57bb
PE
35682011-05-29 Paul Eggert <eggert@cs.ucla.edu>
3569
3570 Adjust to recent gnulib change for @GUARD_PREFIX@.
3571 * lib/makefile.w32-in (getopt_h): Substitute @GUARD_PREFIX@, too.
3572 All uses of _GL_ for guard prefixes in lib/*.h replaced with
3573 _@GUARD_PREFIX@_.
3574
842b28a0
PE
35752011-05-27 Paul Eggert <eggert@cs.ucla.edu>
3576
e61923c8 3577 * lib/getopt.c, lib/intprops.h: Merge from gnulib.
842b28a0 3578
70716b1d
GM
35792011-05-24 Glenn Morris <rgm@gnu.org>
3580
a22d9d2c
GM
3581 * Makefile.in (check): Just give a message if no test/ directory.
3582
bdd556a2
GM
3583 * configure.in: Avoid using variables inside AC_CONFIG_FILES.
3584
70716b1d
GM
3585 * configure.in (OPT_MAKEFILES_IN): Remove.
3586 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
3587 (SUBDIR_MAKEFILES_IN): New output variable.
3588 * Makefile.in (OPT_MAKEFILES_IN): Remove.
3589 (SUBDIR_MAKEFILES_IN): Let configure set it.
3590
13c3daa4
LL
35912011-05-24 Leo Liu <sdl.web@gmail.com>
3592
3593 * m4/sha1.m4:
3594 * m4/gl-comp.m4:
3595 * lib/sha1.h:
3596 * lib/sha1.c:
3597 * lib/makefile.w32-in (GNULIBOBJS):
3598 * lib/gnulib.mk:
3599 * Makefile.in (GNULIB_MODULES): Add crypto/sha1 module.
3600
e09e38a8
GM
36012011-05-24 Glenn Morris <rgm@gnu.org>
3602
4ba4c54a
GM
3603 * configure.in: Remove test for already configured source directory.
3604 AM_INIT_AUTOMAKE has already done a more stringent test. (Bug#953)
3605
5a95c002
GM
3606 * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
3607
fa5d79db
GM
36082011-05-24 Glenn Morris <rgm@gnu.org>
3609
6c7e099d
GM
3610 * make-dist: Don't distribute test/. (Bug#8107)
3611 * configure.in (OPT_MAKEFILES_IN): New output variable.
3612 (AC_CONFIG_FILES): Conditionally include test/automated/Makefile.
3613 * Makefile.in (OPT_MAKEFILES_IN): New, set by configure.
3614 (SUBDIR_MAKEFILES_IN): Use $OPT_MAKEFILES_IN.
3615 (check): Give an explicit error if test/ is not present.
3616
fa5d79db
GM
3617 * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
3618 (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
3619 (Makefile): Use $SUBDIR_MAKEFILES_IN.
3620
2df215b5
PE
36212011-05-23 Paul Eggert <eggert@cs.ucla.edu>
3622
3623 * lib/verify.h: Merge from gnulib.
3624
f518ae90
PE
36252011-05-22 Paul Eggert <eggert@cs.ucla.edu>
3626
3627 * lib/intprops.h, lib/stdint.in.h, m4/mktime.m4, m4/readlink.m4:
3628 Merge from gnulib.
3629
16b71f3a
AS
36302011-05-21 Andreas Schwab <schwab@linux-m68k.org>
3631
3632 * Makefile.in (AUTOMAKE_INPUTS): Add $(srcdir)/lib/gnulib.mk.
3633
7285dc67
EZ
36342011-05-20 Eli Zaretskii <eliz@gnu.org>
3635
6a45b46f
EZ
3636 * .bzrignore: Add lib/stdio.in-h, lib/stdbool.h, and lib/stdint.h.
3637
7285dc67
EZ
3638 * config.bat: Concatenate lisp.mk onto the end of src/Makefile.
3639
b9704ad9
GM
36402011-05-20 Glenn Morris <rgm@gnu.org>
3641
3642 * configure.in (lisp_frag): New output file.
3643
4a720484
GM
36442011-05-19 Glenn Morris <rgm@gnu.org>
3645
3646 * configure.in (NS_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
3647 (WINDOW_SUPPORT): Remove output variables that are no longer used.
3648
a3c92bc1
EZ
36492011-05-17 Paul Eggert <eggert@cs.ucla.edu>
3650
8f906c40
EZ
3651 * lib/gnulib.mk:
3652 * lib/intprops.h:
3653 * lib/unistd.in.h:
3654 * m4/inttypes.m4:
3655 * m4/stdint.m4:
3656 * m4/unistd_h.m4: Sync from gnulib.
a3c92bc1 3657
d681f183
GM
36582011-05-14 Glenn Morris <rgm@gnu.org>
3659
3660 * configure.in: Treat failure to find an X toolkit the same way we treat
3661 failure to find X and image support.
3662
4f8c52a9
GM
36632011-05-12 Glenn Morris <rgm@gnu.org>
3664
3665 * Makefile.in (src, install-arch-indep, bootstrap-clean)
3666 (check-declare): Shell portability fixes. (Bug#8642)
3667
5a7f0a30
TZ
36682011-05-09 Teodor Zlatanov <tzz@lifelogs.com>
3669
3670 * configure.in: Require GnuTLS 2.6.x or higher.
3671
b08a63cc 36722011-05-06 Paul Eggert <eggert@cs.ucla.edu>
19548d08 3673
c378da0b
PE
3674 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
3675 * Makefile.in (GNULIB_MODULES): Add stdarg, for va_copy.
3676 * lib/stdarg.in.h, m4/stdarg.m4: New files, from gnulib.
3677
19548d08
PE
3678 * Makefile.in (GNULIB_TOOL_FLAG): Add --conditional-dependencies.
3679 This new gnulib-tool option saves 'configure' the trouble of
3680 checking for strtoull when strtoumax exists.
3681
d1a2ac5c
PE
3682 * configure.in (BITS_PER_LONG_LONG): New macro.
3683
773233f8
GM
36842011-05-05 Glenn Morris <rgm@gnu.org>
3685
3686 * Makefile.in (bootstrap-clean): Save config.log. (Bug#765)
3687 (top_distclean): Delete config.log~.
3688
40697cd9
BK
36892011-04-27 Ben Key <bkey76@gmail.com>
3690
3691 * configure.in: Fixed a bug that caused configure with
3692 --enable-checking=stringoverrun to have no effect.
3693
671875da 36942011-04-26 Paul Eggert <eggert@cs.ucla.edu>
c1e127f9
PE
3695
3696 * configure.in: Suppress unnecessary checks for size_t.
3697 (AC_TYPE_SIZE_T): Define an empty macro, to suppress obsolescent test.
3698 (size_t): Do not check for this, and do not typedef. This code
3699 is never exercised now.
3700
a8a2bb29
PE
3701 * Makefile.in (GNULIB_MODULES): Add strtoumax.
3702 This is needed for the new integer-reading code in lread.c.
3703 It automatically pulls in the following gnulib files, which
3704 are used on old-fashioned platforms that don't have strtoumax:
aaa93559
PE
3705 lib/inttypes.in.h, lib/strtoimax.c, lib/strtol.c, lib/strtoul.c,
3706 lib/strtoull.c, lib/strtoumax.c, lib/verify.h, m4/inttypes.m4,
3707 m4/strtoull.m4, m4/strtoumax.m4.
ce1b6817 3708 * .bzrignore: Add lib/inttypes.h.
a8a2bb29 3709
33630d51
TZ
37102011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
3711
3712 * configure.in: Check for GnuTLS certificate verify callbacks.
3713
bfab7d85
SM
37142011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3715
3716 * Makefile.in (config.status): Don't erase in case of error.
3717 In case it disappeared, rebuild it with `configure'.
3718
fe0e7ad7
KB
37192011-04-20 Ken Brown <kbrown@cornell.edu>
3720
3721 * configure.in (use_mmap_for_buffers): Set to yes on Cygwin.
3722
f5b06c35
GM
37232011-04-12 Glenn Morris <rgm@gnu.org>
3724
3725 * configure.in: Require ImageMagick >= 6.2.8. (Bug#7955)
3726
762f8d96 37272011-04-09 Paul Eggert <eggert@cs.ucla.edu>
7ec98caf
PE
3728
3729 * lib/allocator.c: New file, automatically generated by gnulib.
3730
5fac7083
GM
37312011-04-07 Glenn Morris <rgm@gnu.org>
3732
3733 * autogen/update_autogen: Ignore comment diffs in ldefs-boot.el.
3734
973f782d
EZ
37352011-04-06 Eli Zaretskii <eliz@gnu.org>
3736
3737 * lib/makefile.w32-in ($(BLD)/careadlinkat.$(O), GNULIBOBJS):
3738 Revert last change.
3739
f1f81baa
JB
37402011-04-06 Juanma Barranquero <lekktu@gmail.com>
3741
3742 * lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O).
3743 ($(BLD)/careadlinkat.$(O)): New target.
3744 ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
3745 ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)):
3746 Update dependencies.
3747
b70d23ff 37482011-04-06 Paul Eggert <eggert@cs.ucla.edu>
aa181334 3749
41cf7d1a
PE
3750 Fix more problems found by GCC 4.6.0's static checks.
3751
aa181334
PE
3752 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
3753
1f7196bf 3754 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
d1fdcab7
PE
3755 * Makefile.in (GNULIB_MODULES): Add careadlinkat.
3756 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
3757 * m4/ssize_t.m4: New files, automatically generated from gnulib.
3758
c0274801
GM
37592011-04-06 Glenn Morris <rgm@gnu.org>
3760
3761 * autogen/update_autogen: Handle loaddefs-like files as well.
3762 (usage): Add -l, -C.
3763 (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
3764 With -l, check status of lisp/ as well.
3765 With -C, clean before building.
3766 (autoreconf): Only pass -f in the `clean' case.
3767 (commit): New function.
3768
42e85a8f
GM
37692011-03-28 Glenn Morris <rgm@gnu.org>
3770
39f31873
GM
3771 * autogen/update_autogen: Pass -f to autoreconf.
3772
42e85a8f
GM
3773 * autogen.sh (get_version): Discard "not found" lines.
3774 (check_version): Respect $AUTOCONF etc environment variables.
3775
9af30bdf
GM
37762011-03-27 Glenn Morris <rgm@gnu.org>
3777
3778 * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
3779 (AH_BOTTOM): Do not define SIGTYPE.
3780
181855e6
GM
37812011-03-26 Glenn Morris <rgm@gnu.org>
3782
3783 * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,
3784 AC_TRY_RUN with AC_COMPILE_IFELSE, AC_LINK_IFELSE, AC_RUN_IFELSE.
3785
9ee0d174
AS
37862011-03-25 Andreas Schwab <schwab@linux-m68k.org>
3787
3788 * autogen/update_autogen: Remove useless function keyword.
3789
07da4b3c
EZ
37902011-03-25 Eli Zaretskii <eliz@gnu.org>
3791
3792 * config.bat: Generate src/config.h and lib/Makefile from
3793 autogen/config.in and autogen/Makefile.in.
3794
f6ca84c0
GM
37952011-03-25 Glenn Morris <rgm@gnu.org>
3796
3797 * compile, config.guess, config.sub, depcomp, install-sh, missing:
3798 Remove; autoreconf can supply them.
3799 * Makefile.in (sync-from-gnulib): Don't sync config.sub,
3800 config.guess, install-sh. Pass -i to autoreconf.
3801 * autogen/update_autogen (genfiles): Add compile, config.guess,
3802 config.sub, depcomp, install-sh, missing. Pass -i to autoreconf.
3803 Discard non-error output from autoreconf in -q case.
3804 * autogen/compile, autogen/config.guess, autogen/config.sub:
3805 * autogen/depcomp, autogen/install-sh, autogen/missing: New.
3806 * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp,
3807 install-sh, missing.
3808
8cc1d519
GM
38092011-03-23 Glenn Morris <rgm@gnu.org>
3810
9bb73912 3811 * autogen/update_autogen: Fix typo.
904a432c 3812 (msg): Remove function; use `exec' instead.
9bb73912 3813
8cc1d519
GM
3814 * Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
3815 (sync-from-gnulib): Don't sync mkinstalldirs.
3816 * make-dist: Don't distribute mkinstalldirs.
3817
c9c49752 38182011-03-23 Paul Eggert <eggert@cs.ucla.edu>
401bf9b4 3819
c9c49752 3820 Fix more problems found by GCC 4.5.2's static checks.
401bf9b4
PE
3821 * Makefile.in (GNULIB_MODULES): Add socklen.
3822 * configure.in: Do not check for sys/socket.h, since socklen does that.
3823 * m4/socklen.m4: New automatically-generated file, from gnulib.
3824
d5cad867
PE
3825 fakemail: Remove dependency on ignore-value.
3826 * Makefile.in (GNULIB_MODULES): Add stdio.
3827 * lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
3828 imported from gnulib.
cbd350f1 3829 * .bzrignore: Add lib/stdio.h.
c9c49752 3830
34cb1cc6
GM
38312011-03-22 Glenn Morris <rgm@gnu.org>
3832
3833 * autogen/copy_autogen: Work from ./ or ../.
3834 Fix time-stamps.
3835 * autogen.sh: Doc fix.
3836
66b87493
GM
38372011-03-20 Glenn Morris <rgm@gnu.org>
3838
3839 * autogen/: New directory, to be excluded from releases.
3840 * autogen/copy_autogen, autogen/update_autogen: New scripts.
3841 * autogen/README: New file.
3842 * autogen/aclocal.m4, autogen/config.in, autogen/configure:
3843 * autogen/Makefile.in: Add auto-updated generated files.
3844 * autogen.sh: No longer a no-op, now it tests for autotools
3845 and runs them as necessary.
cd1181db 3846 * configure.in: Default maintainer-mode to on.
66b87493
GM
3847 * aclocal.m4, configure, lib/Makefile.in: Remove files.
3848
1ef6de05
PE
38492011-03-13 Paul Eggert <eggert@cs.ucla.edu>
3850
3851 Update for gnulib.
3852 * Makefile.in (GNULIB_MODULES): Add intprops, as Emacs now
3853 includes <intprops.h> directly.
3854 * lib/sys_stat.in.h: New version from Gnulib, which fixes a bug
3855 when building Emacs on Solaris 9 and running it on Solaris 10.
3856
0afb4571
J
38572011-03-08 Jan Djärv <jan.h.d@swipnet.se>
3858
3859 * configure.in: Require 3.0 for --with-gtk3. Add HAVE_GTK3.
3860
33383987
JB
38612011-03-07 Chong Yidong <cyd@stupidchicken.com>
3862
3863 * Version 23.3 released.
3864
870d9cf6
GM
38652011-03-06 Glenn Morris <rgm@gnu.org>
3866
3867 * configure.in (FREETYPE_LIBS): Actually set it to something.
3868
6c0dea8a
PE
38692011-03-02 Paul Eggert <eggert@cs.ucla.edu>
3870
3871 Work around some portability problems with symlinks.
3872
3873 * Makefile.in (GNULIB_MODULES): Add lstat, readlink, symlink.
3874 * configure.in (lstat, HAVE_LSTAT): Remove special hack.
3875 * lib/dosname.h, lib/lstat.c, lib/readlink.c, lib/stat.c:
3876 * lib/symlink.c, m4/lstat.m4, m4/readlink.m4, m4/stat.m4:
3877 * m4/symlink.m4:
3878 New files, automatically generated from gnulib.
3879 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
3880 * m4/gl-comp.m4, src/config.in, config.sub: Regenerate.
3881
945d8b44
EZ
38822011-02-26 Eli Zaretskii <eliz@gnu.org>
3883
03382788
EZ
3884 * .bzrignore: Ignore new lib/*.in-h files.
3885
90eacf99
SM
3886 * config.bat: Rename stdint.in.h and sys_stat.in.h.
3887 Call depfiles.bat even if lib/deps already exist.
945d8b44 3888
9411886d
PE
38892011-02-25 Paul Eggert <eggert@cs.ucla.edu>
3890
3891 * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk:
d3af8a57
PE
3892 * lib/stdlib.in.h, m4/stdlib_h.m4: Regenerate to incorporate
3893 recent changes to configure.in and to gnulib.
9411886d 3894
1e8dbdc6
GM
38952011-02-24 Glenn Morris <rgm@gnu.org>
3896
3897 * configure.in: Replace obsolete AC_OUTPUT() with AC_CONFIG_FILES(),
3898 AC_CONFIG_COMMANDS(), and AC_OUTPUT sans arguments.
3899
f68c809d
PE
39002011-02-22 Paul Eggert <eggert@cs.ucla.edu>
3901
3902 Assume S_ISLNK etc. work, since gnulib supports this.
3903 * Makefile.in (GNULIB_MODULES): Add sys_stat.
3904 * configure.in: Check for lstat and set HAVE_LSTAT=0 if not.
3905 Pretend to be using the gnulib lstat module for benefit of sys/stat.h.
3906 * configure, lib/Makefile.in, lib/gnulib.mk: Regenerate.
3907
ba01e9d7
PE
39082011-02-21 Paul Eggert <eggert@cs.ucla.edu>
3909
3910 * lib/min-max.h: New file, for "min" and "max".
3911
9f8370e6
CS
39122011-02-21 Christoph Scholtes <cschol2112@gmail.com>
3913
90eacf99 3914 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Add dependency on
9f8370e6
CS
3915 $(EMACS_ROOT)/nt/inc/stdint.h.
3916
25c51af3
EZ
39172011-02-21 Eli Zaretskii <eliz@gnu.org>
3918
3919 * lib/makefile.w32-in ($(BLD)/filemode.$(O)): Move from
3920 src/makefile.w32-in and adapt. Depend on stamp_BLD.
3921 (GNULIBOBJS): Add $(BLD)/filemode.$(O).
3922
5fa4ac76
PE
39232011-02-20 Paul Eggert <eggert@cs.ucla.edu>
3924
3925 Import filemode module from gnulib.
3926 * .bzrignore: Add lib/sys/.
3927 * Makefile.in (GNULIB_MODULES): Add filemode.
3928 * lib/Makefile.am (MOSTLYCLEANDIRS): New macro.
3929 * lib/filemode.c: Renamed from src/filemode.c and regenerated
3930 from gnulib. This adds support for some more file types, e.g.,
3931 Cray DMF migrated files.
3932 * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c.
3933 * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4:
3934 * m4/sys_stat_h.m4: New files, generated from gnulib.
3935 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
3936 Regenerate.
3937
e1e6b4fb
EZ
39382011-02-20 Eli Zaretskii <eliz@gnu.org>
3939
3940 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Don't depend on
3941 $(EMACS_ROOT)/nt/inc/sys/stat.h.
3942
6cac9cb1
PE
39432011-02-20 Paul Eggert <eggert@cs.ucla.edu>
3944
3945 * configure.in (C_WARNINGS_SWITCH): Do not prepend -Wno-pointer-sign.
3946 This undoes the 2006-01-02 change. The -Wno-pointer-sign option
3947 is no longer needed, due to the recent SSDATA and related changes.
3948 Perhaps -Wno-pointer-sign should also be removed from
3949 nextstep/Cocoa/Emacs.xcodeproj/project.pbxproj but I have no easy
3950 way to test this so I left it alone.
3951 * configure: Regenerate.
3952
0a19a6f8 39532011-02-20 Christoph Scholtes <cschol2112@gmail.com>
32159fc3
CS
3954
3955 * lib/makefile.w32-in ($(BLD)/md5.$(O)): New recipe, moved from
3956 src/makefile.w32-in.
3957
61353ac8 39582011-02-20 Paul Eggert <eggert@cs.ucla.edu>
5f90be1b 3959
61353ac8 3960 Import crypto/md5 and stdint modules from gnulib.
5f90be1b 3961 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
61353ac8
PE
3962 Regenerate.
3963 * lib/md5.c, lib/md5.h: Rename from src/md5.h and lib/md5.h.
3964 Import the new versions from gnulib; they assume a C99-style
3965 <stdint.h>, supplied by the stdint module.
3966 * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files,
3967 imported from gnulib.
942f733f
PE
3968 * Makefile.in (MAKEFILE_MODULES): Add crypto/md5.
3969 * admin/notes/copyright: Remove src/md5.c and src/md5.h as
3970 special cases.
61353ac8 3971
9d9d12cd
EZ
39722011-02-19 Eli Zaretskii <eliz@gnu.org>
3973
152be435 3974 * .bzrignore: Ignore cxxdefs.h and lib/*.in-h files.
219463da 3975 Add lib/deps/.
152be435 3976
9d9d12cd 3977 * config.bat: Configure in `lib'.
219463da 3978 Generate *.Po files in lib/deps.
9d9d12cd 3979
7d315eb6
PE
39802011-02-18 Paul Eggert <eggert@cs.ucla.edu>
3981
3982 Import IRIX 6.5 getloadavg fixes from gnulib.
3983 * configure, lib/getloadavg.c, m4/getloadavg.m4: Regenerate.
3984
1f5d53eb
PE
39852011-02-16 Paul Eggert <eggert@cs.ucla.edu>
3986
3987 Import getloadavg module from gnulib.
3988 * .bzrignore: Add lib/stdlib.h.
3989 * Makefile.in (GNULIB_MODULES): Add getloadavg.
3990 * admin/notes/copyright: Remove src/getloadavg.c as a special case.
3991 * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this.
3992 (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES):
3993 Remove; gnulib does this now.
3994 * lib/getloadavg.c: Rename from src/getloadavg.c, and sync
3995 from gnulib. This adds support for several other systems, such
3996 as Tru64 4.0D, QNX, AIX perfstat, etc. It also fixes a potential
3997 buffer overrun on Linux hosts under very high load, and on hosts
3998 that maintain a channel to the load average file it makes sure
3999 the file descriptor is close-on-exec (on hosts that support this)
4000 and is not stdin, stdout, or stderr.
4001 * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files,
4002 from gnulib.
4003 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
4004 * src/config.in: Regenerate.
4005
bb55f713
PE
40062011-02-15 Paul Eggert <eggert@cs.ucla.edu>
4007
4008 Merge from gnulib.
4009
7127b760
PE
4010 * install-sh: Update to scriptversion 2011-01-19.21.
4011
bb55f713
PE
4012 2011-02-13 Bruno Haible <bruno@clisp.org>
4013
4014 Consistent macro naming for macros that use GCC __attribute__.
90eacf99 4015 * lib/ignore-value.h (_GL_ATTRIBUTE_DEPRECATED): Rename from
bb55f713
PE
4016 ATTRIBUTE_DEPRECATED.
4017
4018 2011-02-12 Bruno Haible <bruno@clisp.org>
4019
4020 setlocale: Prefer gnulib's override over libintl's override.
4021 * lib/gettext.h (setlocale): Redefine to rpl_setlocale if
4022 GNULIB_defined_setlocale is set.
4023
57e96f8e
GM
40242011-02-13 Glenn Morris <rgm@gnu.org>
4025
4026 * make-dist: Exclude generated file src/globals.h.
4027
988c07df
PE
40282011-02-10 Paul Eggert <eggert@cs.ucla.edu>
4029
4030 * arg-nonnull.h, c++defs.h, warn-on-use.h: Fix licenses.
4031 Sync from gnulib, which has been patched to fix the problem
4032 with the license notices. Problem reported by Glenn Morris in
4033 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00403.html>.
4034
ccded26c
SM
40352011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
4036
4037 * .bzrignore: Ignore globals.h and related stamp.
4038
6ffb2c0c
PE
40392011-02-09 Paul Eggert <eggert@cs.ucla.edu>
4040
4041 * lib/Makefile.in, lib/gnulib.mk: Regenerate.
4042 This merges the following fix from gnulib:
4043
4044 2011-02-08 Bruno Haible <bruno@clisp.org>
4045
4046 Split large sed scripts, for HP-UX sed.
4047
00b3c7ac
TT
40482011-02-08 Tom Tromey <tromey@redhat.com>
4049
4050 * configure: Rebuild.
4051 * configure.in (NS_OBJC_OBJ): New subst.
4052
91ccade4
PE
40532011-02-06 Paul Eggert <eggert@cs.ucla.edu>
4054
6ffb2c0c
PE
4055 gnulib: allow multiple gnulib generated replacements to coexist
4056 This defines a few preprocessor symbols that should not affect Emacs.
4057 * lib/getopt.in.h, lib/time.in.h, lib/unistd.in.h: Regenerate
4058 via "make sync-from-gnulib".
4059
e765a388
PE
4060 gnulib: undo previous change
4061 The upstream _HEADERS change was backed out of gnulib (see the
4062 same thread). Stay in sync with gnulib.
4063
91ccade4 4064 gnulib: adjust to upstream _HEADERS change
6ffb2c0c
PE
4065 * lib/Makefile.am (EXTRA_HEADERS, nodist_pkginclude_HEADERS):
4066 New empty macros, to accommodate recent changes to gnulib. See
4067 <http://lists.gnu.org/archive/html/bug-gnulib/2011-02/msg00068.html>.
4068 * c++defs.h, lib/Makefile.in, lib/ftoastr.h, lib/getopt.in.h:
4069 * lib/gnulib.mk, lib/ignore-value.h, lib/stdbool.in.h, lib/stddef.in.h:
4070 * lib/time.in.h, lib/unistd.in.h:
4071 Regenerate.
91ccade4 4072
d67985d3
PE
40732011-02-05 Paul Eggert <eggert@cs.ucla.edu>
4074
4075 sync from gnulib to remove HAVE_STDBOOL_H
90eacf99 4076 * m4/stdbool.m4 (AC_CHECK_HEADER_STDBOOL): Rename from
d67985d3
PE
4077 AC_HEADER_STDBOOL. All uses changed. Do not define
4078 HAVE_STDBOOL_H, as gnulib does not need this. This change is
4079 imported from the latest Autoconf git. It was motivated by Emacs,
4080 which uses gnulib but does not need HAVE_STDBOOL_H.
4081 * configure, src/config.in: Regenerate.
4082 * config.guess, config.sub: Sync to 2011-02-02 versions (whitespace)
4083
67342916
PE
40842011-02-03 Paul Eggert <eggert@cs.ucla.edu>
4085
4086 allow C code to suppress warnings about ignored return values
4087 * Makefile.in (GNULIB_MODULES): Add ignore-value.
6ffb2c0c
PE
4088 * configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
4089 * lib/ignore-value.h: New file.
67342916 4090
14beddf4 40912011-01-31 Chong Yidong <cyd@stupidchicken.com>
37f7b784
CY
4092
4093 * configure.in: Test existence of xaw3d library, not just the
4094 header (Bug#7642).
4095
6ffb2c0c
PE
40962011-01-31 Eli Zaretskii <eliz@gnu.org>
4097
4098 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and
4099 $(BLD)/time_r.$(O).
4100 ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and
4101 $(EMACS_ROOT)/src/m/intel386.h.
4102 ($(BLD)/strftime.$(O)):
4103 ($(BLD)/time_r.$(O)): Define prerequisites.
4104
16fab143
PE
41052011-01-31 Paul Eggert <eggert@cs.ucla.edu>
4106
4107 src/emacs.c now gets version number from configure.in
4108 * configure.in (version): Set this from $PACKAGE_VERSION,
4109 which is set from AC_INIT, rather than scouting through src/emacs.c.
4110 * configure: Regenerate.
4111 * make-dist (version): Get it from configure.in, not src/emacs.c.
4112
16c3e636
PE
41132011-01-30 Paul Eggert <eggert@cs.ucla.edu>
4114
4115 strftime: import from gnulib
4116 * Makefile.in (GNULIB_MODULES): Add strftime.
4117 * configure.in (AC_FUNC_STRFTIME, my_strftime): Remove; no longer
4118 needed.
6ffb2c0c 4119 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
16c3e636 4120 Regenerate.
6ffb2c0c
PE
4121 * lib/strftime.c, lib/strftime.h, lib/stdbool.in.h: New files,
4122 imported from gnulib.
16c3e636
PE
4123 * m4/strftime.m4, m4/stdbool.m4, m4/tm_gmtoff.m4: Likewise.
4124 This incorporates many changes from gnulib, including simpler
4125 handling of multibyte formats, porting to mingw32 and other
4126 platforms, and support for higher-resolution time stamps.
4127 Emacs does not yet use the higher-resolution interface.
4128
3de84ad9
PE
41292011-01-30 Paul Eggert <eggert@cs.ucla.edu>
4130
4131 gnulib: import mktime and move-if-change fixes from gnulib
4132
4133 * configure: Regenerate from the following.
4134
6ffb2c0c
PE
4135 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
4136
4137 mktime: clarify long_int width checking
4138 * lib/mktime.c (long_int_is_wide_enough): Move this assertion to
4139 the top level, to make it clearer that the assumption about
4140 long_int width is being checked. See
4141 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00554.html>.
4142
3de84ad9
PE
4143 2011-01-29 Paul Eggert <eggert@cs.ucla.edu>
4144
4145 TYPE_MAXIMUM: avoid theoretically undefined behavior
6ffb2c0c 4146 * lib/intprops.h (TYPE_MINIMUM, TYPE_MAXIMUM): Do not shift a
3de84ad9
PE
4147 negative number, which the C Standard says has undefined behavior.
4148 In practice this is not a problem, but might as well do it by the book.
4149 Reported by Rich Felker and Eric Blake; see
4150 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00493.html>.
6ffb2c0c
PE
4151 * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
4152 * lib/mktime.c (TYPE_MAXIMUM): Redo slightly to match the others.
4153
4154 mktime: #undef mktime before #defining it
4155 * lib/mktime.c (mktime) [DEBUG]: #undef mktime before #defining it.
4156
4157 mktime: systematically normalize tm_isdst comparisons
4158 * lib/mktime.c (isdst_differ): New function.
4159 (__mktime_internal): Use it systematically for all isdst comparisons.
4160 This completes the fix for libc BZ #6723, and removes the need for
90eacf99
SM
4161 normalizing tm_isdst.
4162 See <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>
6ffb2c0c
PE
4163 (not_equal_tm) [DEBUG]: Use isdst_differ here, too.
4164
4165 mktime: fix some integer overflow issues and sidestep the rest
4166
4167 This was prompted by a bug report by Benjamin Lindner for MinGW
4168 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00472.html>.
4169 His bug is due to signed integer overflow (0 - INT_MIN), and I
4170 I scanned through mktime.c looking for other integer overflow
4171 problems, fixing all the bugs I found.
4172
4173 Although the C Standard says the resulting code is still not safe
4174 in the presence of integer overflow, in practice it should be good
4175 enough for all real-world two's-complement implementations, except
4176 for debugging environments that deliberately trap on integer
4177 overflow (e.g., gcc -ftrapv).
4178
4179 * lib/mktime.c (WRAPV): New macro.
4180 (SHR): Also check that long_int and time_t shift right in the
4181 usual way, before using the fast-but-unportable method.
4182 (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove, no longer
4183 used. The code already assumed two's complement, so there's
4184 no need to test for alternatives. All uses removed.
4185 (TYPE_MAXIMUM): Don't rely here on overflow behavior not defined by
4186 the C standard. Problem reported by Rich Felker in
4187 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00488.html>.
4188 (twos_complement_arithmetic): Also check long_int and time_t.
4189 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New functions.
4190 (guess_time_tm, ranged_convert, __mktime_internal): Use them.
4191 (__mktime_internal): Avoid integer overflow with unary subtraction
4192 in two instances where -1 - X is an adequate replacement for -X,
4193 since the calculations are approximate.
3de84ad9
PE
4194
4195 2011-01-29 Eric Blake <eblake@redhat.com>
4196
4197 mktime: avoid infinite loop
4198 * m4/mktime.m4 (AC_FUNC_MKTIME): Avoid overflow on possibly-signed
4199 type; behavior is still undefined but portable to all known targets.
4200 Reported by Rich Felker.
4201
6ffb2c0c
PE
4202 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
4203
4204 mktime: avoid problems on NetBSD 5 / i386
4205 * lib/mktime.c (long_int): New type. This works around a problem
4206 on NetBSD 5 / i386, where 'long int' and 'int' are both 32 bits
4207 but time_t is 64 bits, and where I expect the existing code is
4208 wrong in some cases.
4209 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it.
4210 (ydhms_diff): Bring back the compile-time check for wide-enough
4211 year and yday.
4212
4213 mktime: fix misspelling in comment
4214 * lib/mktime.c (__mktime_internal): Fix misspelling in comment.
4215 This merges all recent glibc changes of importance.
4216
3de84ad9
PE
4217 2011-01-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4218
4219 move-if-change: cope with concurrent mv of identical file.
4220 * move-if-change (CMPPROG): Accept environment
4221 variable as an override for `cmp'.
4222 (usage): Document CMPPROG.
4223 Adjust comparison to drop stdout. Cope with failure of mv if
4224 the target file exists and is identical to the source, for
4225 parallel builds.
4226 Report from H.J. Lu against binutils in PR binutils/12283.
4227
6ffb2c0c
PE
42282011-01-29 Eli Zaretskii <eliz@gnu.org>
4229
4230 * lib/makefile.w32-in:
4231 * lib/getopt_.h: New files.
4232
c7e95b91
PE
42332011-01-28 Paul Eggert <eggert@cs.ucla.edu>
4234
4235 improve fix for MS-DOS file name clash
90eacf99 4236 * Makefile.in (DOS_gnulib_comp.m4): Rename from DOS-gnulib-comp.m4,
c7e95b91
PE
4237 for portability to POSIX make. Reported by Bruno Haible.
4238 (sync-from-gnulib): Copy gl-comp.m4 (if present) back to
4239 gnulib-comp.m4 before running gnulib-tool, to prevent old gnulib
4240 files from accumulating as garbage. Also reported by Bruno Haible.
4241
125c3718
PE
42422011-01-27 Paul Eggert <eggert@cs.ucla.edu>
4243
4244 fix two m4/gnulib-*.m4 file names that clashed under MS-DOS
4245 * Makefile.in (DOS-gnulib-comp.m4): New macro.
4246 (sync-from-gnulib): Rename m4/gnulib-comp.m4 to m4/gl-comp.m4 to avoid
4247 problems with MS-DOS 8+3 file name restrictions.
4248 Remove m4/gnulib-cache.m4, as we can live without it. If we kept
4249 it, it would also cause problems when extracting Emacs distribution
4250 tarballs on MS-DOS hosts.
4251 (ACLOCAL_INPUTS): Adjust to file renaming.
6ffb2c0c 4252 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
125c3718
PE
4253 * config.guess, config.sub: Sync from gnulib.
4254 * m4/gnulib-cache.m4: Remove from repository.
4255 * m4/gl-comp.m4: Rename from m4/gnulib-comp.m4.
4256
4004ef46
GM
42572011-01-25 Glenn Morris <rgm@gnu.org>
4258
0b5c5d82
GM
4259 * README: Add a note about ranges in copyright years.
4260
4004ef46
GM
4261 * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
4262
06d8ace5 42632011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
6de1218f
PG
4264
4265 * configure.in: Add HP-UX on IA64 (Bug#6811).
4266
d6974efa
PE
42672011-01-24 Paul Eggert <eggert@cs.ucla.edu>
4268
4269 Remove HAVE_RAW_DECL_CHOWN etc. from config.h
4270 * Makefile.in (sync-from-gnulib): Remove m4/warn-on-use.m4,
4271 as it is no longer needed.
6ffb2c0c 4272 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
d6974efa
PE
4273 * configure.in: Invoke the new gnulib macro
4274 gl_ASSERT_NO_GNULIB_POSIXCHECK, which removes the need for
4275 warn-on-use.m4 and for the HAVE_RAW_DECL_* symbols in config.h.
4276 * m4/getopt.m4: Sync from gnulib; this removes the need for
4277 HAVE_DECL_OPTRESET and HAVE_DECL_GETOPT_CLIP from config.h.
4278 * m4/gnulib-common.m4 (gl_ASSERT_NO_GNULIB_POSIXCHECK):
4279 New macro, synced from gnulib.
4280 * m4/warn-on-use.m4: Remove.
4281
e02ea74b
PE
42822011-01-22 Paul Eggert <eggert@cs.ucla.edu>
4283
4284 aclocal.m4: put this file back into repository
4285 This way, we don't have to assume that the maintainer has
4286 the automake package installed. See
4287 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00746.html>.
4288 * .bzrignore: Remove aclocal.m4, undoing the previous change.
4289 * Makefile.in (top_maintainer_clean): Do not remove aclocal.m4,
4290 undoing the previous change.
4291 * aclocal.m4: New file (actually, resurrected).
4292
48dcd482
MB
42932011-01-22 Miles Bader <miles@gnu.org>
4294
4295 * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
4296 FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
4297 Emacs directly uses fontconfig, and breaks building when using a
4298 strict linker).
4299
925e561d
PE
43002011-01-21 Paul Eggert <eggert@cs.ucla.edu>
4301
b06b1098
PE
4302 src/config.in: shrink slightly
4303 * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS.
4304 This makes src/config.in a bit smaller, by removing identifiers
4305 like GNULIB_TEST_MKTIME that Emacs does not need.
4306 * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4:
4307 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4:
4308 Sync from gnulib. This removes a few more unnecessary symbols from
4309 src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H.
4310 * configure, src/config.in: Regenerate.
4311
925e561d
PE
4312 aclocal.m4: tweaks to regenerate more conveniently
4313 This attempts to act better when the source is in a weird state. See
4314 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00734.html>.
4315 * Makefile.in (am--refresh): Add aclocal.m4, configure, config.in.
4316 * .bzrignore: Add aclocal.m4.
4317
942be821
PE
43182011-01-20 Paul Eggert <eggert@cs.ucla.edu>
4319
4320 aclocal.m4: omit auto-generated file from repository
4321 * Makefile.in (top_maintainer_clean): Remove aclocal.m4; this undoes
4322 the most recent change here.
4323 * aclocal.m4: Remove from bzr repository. This file is
4324 auto-generated and isn't needed to run 'configure'. See
4325 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00698.html>.
4326
0813c96e
PE
43272011-01-19 Paul Eggert <eggert@cs.ucla.edu>
4328
4329 Minor Makefile.in tweaks to build from gnulib better.
4330 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>
4331 * Makefile.in (sync-from-gnulib): Also run autoreconf -I m4.
4332 (top_maintainer_clean): Don't remove aclocal.m4.
4333
7cae64b4
PE
43342011-01-18 Paul Eggert <eggert@cs.ucla.edu>
4335
53911e8f
PE
4336 Minor cleanups for 'bzr status'
4337 * .bzrignore: Add emacs-*/, the output of make-dist, and stamp-h1,
4338 the output of config.guess.
4339 * Makefile.in (top_distclean): Remove stamp-h1 too.
4340
7cae64b4
PE
4341 * configure.in (HAVE_ATTRIBUTE_ALIGNED): Arrange for this to be
4342 defined if the compiler supports GCC-style __attribute__
4343 ((__aligned__ ...)). IBM AIX and Oracle Solaris Studio support
4344 this syntax.
4345
a3e44e79 43462011-01-17 Paul Eggert <eggert@cs.ucla.edu>
ecbfcc83 4347
3cbecb8f
PE
4348 Makefile.in: tidy up the building of lib
4349 * Makefile.in (am--refresh): Mark as .PHONY.
4350 (top_maintainer_clean): Don't remove lib/gnulib.mk m4/gnulib-cache.m4,
4351 as they're not rebuilt unless you do a "make sync-from-gnulib"
4352 and the former is needed for "configure".
4353 (maintainer-clean): Don't recurse into lib, as "make bootstrap-clean"
4354 has already removed lib/Makefile.
4355
ecbfcc83
PE
4356 * Makefile.in (GNULIB_MODULES): Change ftoastr to dtoastr.
4357 This avoids building ftoastr and ldtoastr, which aren't needed. See
4358 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00199.html>.
fa2c4f56 4359
803059b9
PE
4360 * .bzrignore: Add .h files that are host-dependent.
4361 Add lib/.deps/, lib/arg-nonnull.h, lib/c++defs.h, lib/getopt.h,
4362 lib/time.h, lib/unistd.h, lib/warn-on-use.h. These are
4363 host-dependent and are built as part of an ordinary 'make', and
4364 should not be checked in.
4365
6ffb2c0c
PE
4366 * lib/Makefile.in: Regenerate.
4367 * lib/COPYING: New file, a copy of COPYING.
4368
2a78afcc 4369 * configure: Regenerate.
37564543
PE
4370 * configure.in (AC_USE_SYSTEM_EXTENSIONS): Remove: gnulib does this.
4371
e275c824 4372 Regenerate.
6ffb2c0c
PE
4373 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
4374 * lib/gettext.h, lib/unistd.in.h, m4/unistd_h.m4:
4375 New files, copied from gnulib by gnulib-tool.
4376 * aclocal.m4, configure, lib/Makefile.in, m4/getopt.m4:
e275c824
PE
4377 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
4378 Regenerate.
ecbfcc83 4379
84bbb1ad
PE
4380 Use gnulib's getopt-gnu module.
4381 * Makefile.in (GNULIB_MODULES): Add getopt-gnu.
4382 (AUTOCONF_INPUTS): Remove getopt.m4; aclocal.m4 is a good-enough
4383 representative of the dependencies.
4384 * configure.in: Do not configure getopt, as gnulib does that now.
4385 * make-dist: Do not worry about lib-src/getopt.h, as gnulib handles
4386 getopt now, in lib.
ecbfcc83 4387
1fd182f0 4388 Regenerate.
6ffb2c0c
PE
4389 * arg-nonnull.h, c++defs.h, lib/mktime-internal.h, lib/mktime.c:
4390 * lib/stddef.in.h, lib/time.h, lib/time.in.h, lib/time_r.c:
1fd182f0
PE
4391 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4:
4392 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4:
4393 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4, m4/multiarch.m4:
4394 * m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4, m4/warn-on-use.m4:
4395 * m4/wchar_t.m4, warn-on-use.h:
4396 New files, copied from gnulib by gnulib-tool.
6ffb2c0c 4397 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
1fd182f0
PE
4398 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
4399 Regenerate.
4400
1e11dbe3
PE
4401 Use gnulib's mktime module.
4402 * Makefile.in (GNULIB_MODULES): Add mktime.
4403 * configure.in: Remove code no longer needed, as gnulib now does it.
4404 (AC_CHECK_FUNCS): Remove mktime.
4405 (AC_FUNC_MKTIME, BROKEN_MKTIME): Remove.
4406 (__restrict): Remove, as this now gets in the way of the C99
4407 support for 'restrict' pulled in by the gnulib mktime module.
4408 Code should now use 'restrict' and not '__restrict".
4409 (mktime): Remove.
4410 * make-dist: Put gnulib-generated files arg-nonnull.h, c++defs.h,
4411 and warn-on-use.h into the distribution.
1fd182f0
PE
4412
4413 Regenerate.
6ffb2c0c
PE
4414 * lib/dtoastr.c, lib/ftoastr.c, lib/ftoastr.h, lib/intprops.h:
4415 * lib/ldtoastr.c, m4/c-strtod.m4:
1fd182f0 4416 New files, copied from gnulib by gnulib-tool.
6ffb2c0c
PE
4417 * lib/dummy.c: Remove.
4418 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
1fd182f0
PE
4419 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
4420 Regenerate.
ecbfcc83 4421
1e11dbe3 4422 Use gnulib's ftoastr module.
fa2c4f56
PE
4423 * Makefile.in (GNULIB_MODULES): Add ftoastr. Remove dummy.
4424
743c80a7 4425 Regenerate.
6ffb2c0c
PE
4426 * aclocal.m4, compile, depcomp, lib/Makefile.in, lib/dummy.c:
4427 * lib/gnulib.mk, m4/00gnulib.m4, m4/gnulib-cache.m4:
743c80a7
PE
4428 * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing:
4429 New files, generated automatically, with 'make sync-from-gnulib'
4430 followed by 'make'.
4431 * configure, lisp/dired.el, src/config.in: Regenerate.
4432
9a514d4a
PE
4433 Automate syncing from gnulib.
4434 * INSTALL, README: Document new subdirectory 'lib'.
4435 * Makefile.in (SUBDIR): Add lib.
4436 (SUBDIR_MAKEFILES): Add lib/Makefile.
4437 (lib-src, src, TAGS, tags): Depend on lib.
4438 (gnulib_srcdir, GNULIB_MODULES, GNULIB_TOOL_FLAGS): New macros.
4439 ($(gnulib_srcdir)): New rule.
4440 (sync-from-gnulib): New rule, which is .PHONY.
4441 (lib): New rule, which is like lib-src.
4442 (Makefile): Depend on lib/Makefile.in.
4443 (AUTOCONF_INPUTS): Depend on aclocal.m4.
4444 (ACLOCAL_INPUTS, AUTOMAKE_INPUTS): New macros.
4445 ($(srcdir)/aclocal.m4, $(srcdir)/lib/Makefile.in): New rules.
4446 (am--refresh): New rule, to pacify Automake.
4447 (mostlyclean, clean, distclean, bootstrap-clean, maintainer-clean):
4448 Clean lib, too.
4449 (top_maintainer_clean): New macro, to remove gnulib-tool and Automake
4450 droppings.
4451 (maintainer-clean, extraclean): Use it.
4452 * configure.in: Initialize for automake and gnulib, by invoking
4453 AM_INIT_AUTOMAKE, AM_PROG_CC_C_O, gl_EARLY, and gl_INIT. Output
4454 lib/Makefile, too. Use automake to build gnulib, as gnulib works
4455 more conveniently with automake.
6ffb2c0c 4456 * lib/Makefile.am: New file.
9a514d4a
PE
4457 * make-dist: Also put into the distribution aclocal.m4,
4458 compile, depcomp, missing, and the files under lib/.
4459
dc3e3e7b
GM
44602011-01-15 Glenn Morris <rgm@gnu.org>
4461
4462 * Makefile.in (epaths-force): No more arch-tag to edit.
4463
dab73760
CY
44642011-01-15 Chong Yidong <cyd@stupidchicken.com>
4465
4466 * configure.in: Bump min libxml2 version to 2.6.17 (Bug#7603).
4467
9f4b8b47
PE
44682011-01-14 Paul Eggert <eggert@cs.ucla.edu>
4469
4470 * make-dist: Distribute test/ files too.
4471 Distribute every file under test/ that is under version control,
4472 using patterns like *.el to capture files that are added later.
4473 Without this change, "configure" would fail, because it would
4474 attempt to build from a Makefile.in that was not distributed.
4475
d221e780
CO
44762011-01-13 Christian Ohler <ohler@gnu.org>
4477
4478 * Makefile.in (INFO_FILES): Add ERT.
4479
4480 * Makefile.in (check): Run tests in test/automated.
4481
4482 * Makefile.in:
4483 * configure.in: Add test/automated/Makefile.
4484
bc5585d1
PE
44852011-01-07 Paul Eggert <eggert@cs.ucla.edu>
4486
2b3f5bc8
PE
4487 * install-sh, mkinstalldirs, move-if-change: Update from master
4488 source in gnulib.
4489
bc5585d1
PE
4490 * config.guess, config.sub: Updated from master source.
4491
2018939f
AS
44922011-01-05 Andreas Schwab <schwab@linux-m68k.org>
4493
4494 * configure.in: Check for __builtin_unwind_init.
4495
e5365138
GM
44962011-01-05 Glenn Morris <rgm@gnu.org>
4497
4498 * configure.in (HAVE_MAKEINFO): New output variable.
4499 (MAKEINFO): Reset to "makeinfo" if not found.
4500 * Makefile.in (install-arch-indep, info):
4501 Replace MAKEINFO = off with HAVE_MAKEINFO = no.
4502
a04689de 45032010-12-29 Ulrich Müller <ulm@gentoo.org>
4fc5868a
UM
4504
4505 * configure.in: Make gameuser configurable (Bug#7717).
4506
68251e16
GM
45072010-12-15 Glenn Morris <rgm@gnu.org>
4508
4509 * Makefile.in (install-arch-dep, uninstall): Remove code relating to the
4510 long absent lib-src/fns-*.el.
4511
838db889
GM
45122010-12-11 Glenn Morris <rgm@gnu.org>
4513
4514 * make-dist: Exclude etc/*.pyc.
4515
fe646d2c
AS
45162010-12-10 Andreas Schwab <schwab@linux-m68k.org>
4517
4518 * configure.in: Don't double machfile in final message.
4519
d96c83fa
CY
45202010-12-04 Chong Yidong <cyd@stupidchicken.com>
4521
4522 * configure.in: Fix last change.
4523
d6a003a8
AS
45242010-12-04 Andreas Schwab <schwab@linux-m68k.org>
4525
4526 * configure.in: Remove reference to removed machine description
90eacf99
SM
4527 files and allow $machine and $machfile to be empty.
4528 Substitute M_FILE/S_FILE instead of machfile/opsysfile.
d6a003a8 4529
067d23c9
KY
45302010-12-03 Glenn Morris <rgm@gnu.org>
4531
4532 * make-dist: Remove EMACS_UNIBYTE unsetting; it does nothing.
4533
45342010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
4535
4536 * configure.in <AC_CHECK_HEADERS>: Remove sys/ioctl.h.
4537 (EXTERNALLY_VISIBLE): New definition.
4538
45392010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
4540
4541 * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
4542
45432010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
4544
4545 * configure.in: Do not check for unconditionally included headers.
4546
45472010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4548
4549 * .dir-locals.el (log-edit-mode): Set log-edit-rewrite-fixes.
4550
45512010-11-09 Michael Albinus <michael.albinus@gmx.de>
4552
4553 * configure.in: Don't write a warning for D-Bus anymore.
4554
45552010-11-06 Andreas Schwab <schwab@linux-m68k.org>
4556
4557 * configure.in: Fix indentation.
4558
45592010-10-31 Ken Brown <kbrown@cornell.edu>
4560
90eacf99
SM
4561 * configure.in (checking whether localtime caches TZ):
4562 Use unsetenv instead of modifying environment directly.
067d23c9
KY
4563
45642010-10-25 Andreas Schwab <schwab@linux-m68k.org>
4565
4566 * configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
4567 to avoid warning.
4568
45692010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4570
e9fce1ac 4571 * configure.in: Remove the BROKEN annotation from GnuTLS.
067d23c9
KY
4572
45732010-10-22 Glenn Morris <rgm@gnu.org>
4574
4575 * make-dist: Avoid listing .el files twice. Don't try to run
4576 autoconf if --no-update.
4577
45782010-10-20 Glenn Morris <rgm@gnu.org>
4579
4580 * make-dist: No longer create lisp/MANIFEST.
4581
45822010-10-14 Glenn Morris <rgm@gnu.org>
4583
4584 * BUGS, INSTALL.BZR, README: Updates.
4585
45862010-10-13 Glenn Morris <rgm@gnu.org>
4587
4588 * make-dist: Remove --compress. Check for the appropriate
4589 gzip-like executable, and if not found, don't compress.
4590 Check version number in README, don't change it.
4591 Use find for nt/inc/*.h.
4592
45932010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
4594
90eacf99
SM
4595 * configure (ns_appdir, OLDXMENU, TOOLTIP_SUPPORT):
4596 Remove trailing / from directory names.
067d23c9
KY
4597
45982010-10-12 Glenn Morris <rgm@gnu.org>
4599
4600 * make-dist: Update and simplify.
4601
46022010-10-12 Eli Zaretskii <eliz@gnu.org>
4603
4604 * make-dist: Don't distribute src/buildobj.h. (Bug#7167)
4605
46062010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
4607
4608 * configure.in (PROFILING_LDFLAGS): Do not define, remove all uses.
4609
46102010-10-09 Glenn Morris <rgm@gnu.org>
4611
4612 * make-dist: No more doc/emacs/*.texi.in.
4613
4614 * configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
4615
46162010-10-09 Glenn Morris <rgm@gnu.org>
4617
4618 * configure.in: Combine some conditionals.
4619
4620 * configure.in (AC_OUTPUT): Add doc/emacs/emacsver.texi.
4621 * make-dist: Include doc/emacs/*.texi.in.
4622
4623 * INSTALL, make-dist: Remove references to b2m.
4624 * Makefile.in (MAN_PAGES): Remove b2m.1.
4625
46262010-10-05 Glenn Morris <rgm@gnu.org>
4627
4628 * .dir-locals.el: The Emacs convention is sentence-end-double-space.
4629
46302010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
4631
4632 * configure.in (NO_INLINE, noinline): Move here from src/xterm.c.
4633
46342010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
4635
4636 * configure.in: Include stdlib.h and string.h unconditionally.
4637
46382010-09-29 Romain Francoise <romain@orebokech.com>
4639
4640 * configure.in: Don't enable ImageMagick unless HAVE_X11.
4641
46422010-09-28 Glenn Morris <rgm@gnu.org>
4643
4644 * configure.in (HAVE_GNUTLS): Add a description to make autoheader
4645 happy.
4646
46472010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4648
4649 * configure.in: Enable imagemagick by default.
4650
46512010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
4652
4653 * configure.in (HAVE_GNUTLS): Don't break if we don't have the
e9fce1ac 4654 GnuTLS libraries.
067d23c9
KY
4655
46562010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4657
4658 * configure.in: Set up GnuTLS.
4659
46602010-09-22 Chong Yidong <cyd@stupidchicken.com>
4661
4662 * configure.in: Announce whether libxml2 is linked to.
4663
46642010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
4665
4666 * configure.in (LINKER): Rename to LD_FIRSTFLAG, do not include $(CC).
4667
46682010-09-18 Eli Zaretskii <eliz@gnu.org>
4669
4670 * config.bat: Detect that libxml2 is installed and if so, build
4671 with it.
4672
46732010-09-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
4674
4675 * configure.in (HAVE_LIBXML2): Check that the libxml2 we found can
4676 be used. This fixes a conf problem on Mac OS X.
4677
46782010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4679
4680 * configure.in: Check for libxml2.
4681
46822010-09-09 Glenn Morris <rgm@gnu.org>
4683
4684 * make-dist: No more TODO files under lisp/.
4685
46862010-09-04 Eli Zaretskii <eliz@gnu.org>
4687
4688 * config.bat: Produce lisp/gnus/_dir-locals.el from
4689 lisp/gnus/.dir-locals.el.
4690
46912010-08-23 Andreas Schwab <schwab@linux-m68k.org>
4692
4693 * configure.in: Fix check for librsvg, imagemagick and
4694 MagickExportImagePixels.
4695
46962010-08-18 Joakim Verona <joakim@verona.se>
4697
4698 * Makefile.in, configure.in: Checks for ImageMagick.
4699
47002010-08-10 Dan Nicolaescu <dann@ics.uci.edu>
4701
4702 * configure.in (AC_PREREQ): Require autoconf 2.65.
4703
47042010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4705
4706 * configure.in (AC_PREREQ): Require autoconf 2.66 to stop version churn.
4707
47082010-08-09 Andreas Schwab <schwab@linux-m68k.org>
4709
4710 * configure.in: Add AC_C_BIGENDIAN.
4711
47122010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4713
4714 * configure.in (ORDINARY_LINK): Use on hpux* too.
4715
47162010-08-06 Jan Djärv <jan.h.d@swipnet.se>
4717
4718 * configure.in: Check for util.h.
4719 Use -Wimplicit-function-declaration if compiler supports it.
4720
47212010-08-05 Eli Zaretskii <eliz@gnu.org>
4722
4723 * configure.in (UNEXEC_OBJ): Rename unexec.o => unexcoff.o.
4724
47252010-08-04 Andreas Schwab <schwab@linux-m68k.org>
4726
4727 * configure.in: Restore accidentally removed use of
4728 GCC_TEST_OPTIONS/NON_GCC_TEST_OPTIONS.
4729
47302010-07-29 Chad Brown <yandros@mit.edu>
4731
4732 * configure.in: Check for dirent.h.
4733
47342010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4735
4736 * configure.in: Remove reference to usg5-4, unused.
4737
47382010-07-25 Andreas Schwab <schwab@linux-m68k.org>
4739
4740 * configure.in: Check for __executable_start.
4741
47422010-07-24 Ken Brown <kbrown@cornell.edu>
4743
4744 * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715)
4745
47462010-07-24 Juanma Barranquero <lekktu@gmail.com>
4747
4748 * .bzrignore, .gitignore: Ignore README.W32 on the root directory.
4749
47502010-07-24 Ken Brown <kbrown@cornell.edu> (tiny change)
4751
4752 * configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
4753
47542010-07-12 Andreas Schwab <schwab@linux-m68k.org>
4755
4756 * configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
4757 (PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
4758 (C_OPTIMIZE_SWITCH): Remove.
4759 (TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
4760
47612010-07-11 Andreas Schwab <schwab@linux-m68k.org>
4762
4763 * configure.in: Don't check for index and rindex, check for strchr
4764 and strrchr. Define strchr and strrchr as index and rindex,
4765 resp., in src/config.h if not available.
4766
47672010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
4768
4769 * configure.in: Use -Wold-style-definition if available.
4770 This helps with the transition to standard C code, it can be
4771 removed when done.
4772
4773 * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
4774
4775 * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
4776 and MSWindows.
4777
47782010-07-07 Andreas Schwab <schwab@linux-m68k.org>
4779
4780 * configure.in: Don't check for bcopy, bcmp, bzero. Don't include
4781 <strings.h> and don't define bcopy, bzero, BCMP in config.h.
4782
47832010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
4784
4785 * configure.in (getenv): Remove K&R declaration.
4786
47872010-07-02 Jan Djärv <jan.h.d@swipnet.se>
4788
4789 * configure.in: Remove define __P.
4790
47912010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
4792
4793 * configure.in (--enable-use-lisp-union-type): New flag.
4794
47952010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
4796
4797 Fix CFLAGS for non-GCC compilers.
4798 * configure.in (CFLAGS): Always use -g like it was done before the
4799 2010-03-30 change.
4800 (REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
4801 (Bug#6538)
4802
48032010-06-30 Glenn Morris <rgm@gnu.org>
4804
4805 * configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
4806 Set with AC_DEFINE rather than AH_BOTTOM.
4807
4808 * configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
4809 (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
4810 Set with shell, not cpp.
4811 (LIBX): Remove, just use -lX11 in the one place this was used.
4812 (cannot_dump): Replace with CANNOT_DUMP.
4813
48142010-06-28 Jan Djärv <jan.h.d@swipnet.se>
4815
0a19a6f8 4816 * configure.in: Add --with-x-toolkit=gtk3. Remove HAVE_GTK_MULTIDISPLAY,
067d23c9
KY
4817 check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
4818 by minimum required Gtk+ 2.6). Add checks for functions introduced
4819 in Gtk+ 2.14 or newer (bug#6505).
4820
48212010-06-26 Eli Zaretskii <eliz@gnu.org>
4822
4823 * config.bat: Remove white space around "+" in COPY commands.
4824
48252010-06-23 Glenn Morris <rgm@gnu.org>
4826
4827 * info/dir: Start descriptions in column 32, per Texinfo convention.
4828
48292010-06-16 Chong Yidong <cyd@stupidchicken.com>
4830
4831 * INSTALL: Update font information (Bug#6389).
4832
48332010-06-16 Glenn Morris <rgm@gnu.org>
4834
4835 * INSTALL: General update.
4836
48372010-06-12 Glenn Morris <rgm@gnu.org>
4838
4839 * Makefile.in (install-arch-indep): Delete any old info .gz files first.
4840
48412010-06-11 Glenn Morris <rgm@gnu.org>
4842
4843 * configure.in (--without-compress-info): New option.
4844 (GZIP_INFO): New output variable.
4845
4846 * Makefile.in (GZIP_INFO): New, set by configure.
4847 (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
4848 Handle man pages in the same way.
4849
48502010-06-10 Glenn Morris <rgm@gnu.org>
4851
4852 * Makefile.in (install-arch-indep): Gzip the info files too.
4853
4854 * make-dist: Remove references to non-existent directories and files.
4855
48562010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
4857
4858 * configure.in: Include <strings.h> and <string.h> instead of
4859 "strings.h" and "string.h".
4860
48612010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
4862
4863 * configure.in: Remove code dealing with BSTRING.
4864
48652010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
4866
4867 * configure.in (AC_PREREQ): Require autoconf 2.65.
4868
4869 * configure.in (unxec): Do not define and substitute.
4870 (UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
4871
48722010-06-03 Glenn Morris <rgm@gnu.org>
4873
4874 * configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
4875
48762010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
4877
4878 Fix alloca definition when using gcc on non-gnu systems.
4879 * configure.in: Use the code sequence indicated by "info autoconf"
4880 for alloca (bug#6170).
4881
48822010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4883
4884 * .bzrignore: Ignore new files from trunk, which appear if you use
4885 colocated branches (i.e. "bzr switch").
4886
48872010-05-28 Glenn Morris <rgm@gnu.org>
4888
4889 * configure.in: Simplify some of the $canonical tests.
4890
48912010-05-27 Glenn Morris <rgm@gnu.org>
4892
4893 * config.bat: Do not preprocess src/Makefile.in.
4894
4895 * configure.in: Do not preprocess src/Makefile.in.
4896 (cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
4897 (AC_EGREP_CPP): Test no longer needed.
4898
4899 * make-dist: No more Makefile.c files.
4900
49012010-05-26 Glenn Morris <rgm@gnu.org>
4902
4903 * configure.in (YMF_PASS_LDFLAGS): Remove.
4904 (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
4905
4906 * configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
4907 Add $GNUSTEP_LOCAL_HEADERS.
4908 (LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
4909
4910 * configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
4911 (GNUSTEP_MAKEFILES): Remove.
4912 (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
4913 stuff to here.
4914
49152010-05-25 Glenn Morris <rgm@gnu.org>
4916
4917 * configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
4918 (LD_SWITCH_SYSTEM_TEMACS): ... to here.
4919
4920 * configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
4921 (LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
4922 here instead.
4923
49242010-05-24 Romain Francoise <romain@orebokech.com>
4925
4926 * make-dist: Look for version in src/emacs.c.
4927 Use lisp/subr.el rather than lisp/version.el for location check.
4928
49292010-05-21 Glenn Morris <rgm@gnu.org>
4930
4931 * configure.in (MKDEPDIR): Parallel build tweak.
4932
4933 * configure.in (ns_frag): New output file.
4934
4935 * configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
4936 (OLDXMENU_TARGET): Set to empty if USE_GTK.
4937
4938 * configure.in (cannot_dump): New output variable.
4939
49402010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
4941
4942 * configure.in: On NetBSD, if terminfo is found, use it in
4943 preference to termcap. (Bug#6190)
4944
49452010-05-20 Glenn Morris <rgm@gnu.org>
4946
4947 * make-dist (src): Include *.mk.
4948 * config.bat: Concatenate deps.mk onto the end of src/Makefile.
4949 * configure.in (DEPFLAGS, MKDEPDIR): New output variables.
4950 (deps_frag): New output file.
4951 (AUTO_DEPEND): Remove this definition.
4952
4953 * configure.in (--with-gtk, --with-gcc): Remove option stubs.
4954
49552010-05-19 Glenn Morris <rgm@gnu.org>
4956
4957 * configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
4958 (ORDINARY_LINK): New AC_DEFINE.
4959 (LIB_GCC): No need to set if ORDINARY_LINK.
4960
49612010-05-18 Glenn Morris <rgm@gnu.org>
4962
4963 * configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
4964 (POST_ALLOC_OBJ) [!cygwin]: Set to empty.
4965
4966 * config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
4967 * configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
4968 (RALLOC_OBJ): New output variable.
4969
4970 * config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
4971 * configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
4972
49732010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
4974
4975 * Makefile.in (src): Provide the name of the VCS file that witnesses
4976 a pull.
4977 ($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
4978
49792010-05-17 Glenn Morris <rgm@gnu.org>
4980
4981 * configure.in (OLDXMENU_DEPS): New output variable.
4982
49832010-05-16 Glenn Morris <rgm@gnu.org>
4984
4985 * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
4986
4987 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
4988 * Makefile.in (install-arch-dep): Update for above change.
4989
4990 * Makefile.in (ns_appdir): Remove.
4991 (install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
4992
4993 * configure.in (TEMACS_LDFLAGS2): New output variable.
4994
4995 * configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
4996 (START_FILES): Set to empty if NS_IMPL_GNUSTEP.
4997 (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
4998 nothing uses.
4999
50002010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
5001
5002 * configure.in: Remove references to usg5-4 and bsd-common, $opsys
5003 does not use them.
5004 (X11R5_INHIBIT_I18N): Remove, unused.
5005
50062010-05-15 Glenn Morris <rgm@gnu.org>
5007
5008 * configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
5009
5010 * configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
5011
50122010-05-15 Ken Raeburn <raeburn@raeburn.org>
5013
5014 * configure.in: Look for version string in its new location.
5015
50162010-05-15 Eli Zaretskii <eliz@gnu.org>
5017
5018 * config.bat: Remove support for DJGPP v1.x.
5019
50202010-05-15 Glenn Morris <rgm@gnu.org>
5021
5022 * configure.in (OLDXMENU_TARGET): New output variable.
5023
5024 * Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
5025
5026 * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
5027 and other files that no longer exist.
5028
50292010-05-14 Glenn Morris <rgm@gnu.org>
5030
5031 * configure.in (cpp_undefs): Add mktime, register, X11.
5032
5033 * configure.in (GPM_MOUSE_SUPPORT): Remove.
5034 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
5035 (HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
5036
5037 * configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
5038 (GNUSTEP_MAKEFILES): Do not output.
5039
50402010-05-13 Glenn Morris <rgm@gnu.org>
5041
5042 * configure.in: Fix some paren typos.
5043
5044 * configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
5045
5046 * configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
5047
50482010-05-12 Glenn Morris <rgm@gnu.org>
5049
5050 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
5051
5052 * configure.in (LIB_GCC): New output variable.
5053
50542010-05-11 Glenn Morris <rgm@gnu.org>
5055
5056 * make-dist (msdos): No more mainmake.
5057
5058 * configure.in: Generate lib-src/Makefile directly, do not run cpp.
5059 * config.bat: Do not run cpp on lib-src/Makefile.in.
5060
5061 * config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
5062
50632010-05-10 Glenn Morris <rgm@gnu.org>
5064
5065 * configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
5066
5067 * configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
5068 (BLESSMAIL_TARGET): New output variable.
5069
50702010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
5071
5072 * INSTALL: Fix typos.
5073
50742010-05-08 Chong Yidong <cyd@stupidchicken.com>
5075
5076 * configure.in: Add check for buggy version of GCC (Bug#6031).
5077
50782010-05-08 Glenn Morris <rgm@gnu.org>
5079
5080 * configure.in (HAVE_LIBNCURSES): New local variable.
5081 (TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
5082 replacing cpp in src/s/*.h and src/Makefile.in.
5083
50842010-05-07 Chong Yidong <cyd@stupidchicken.com>
5085
5086 * Version 23.2 released.
5087
50882010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
5089
5090 * configure.in: Add tests for `isnan' and `copysign'.
5091
50922010-05-07 Eli Zaretskii <eliz@gnu.org>
5093
5094 * config.bat: Allow for 2 leading `#'s in comments in
5095 src/Makefile.in.
5096
50972010-05-07 Glenn Morris <rgm@gnu.org>
5098
5099 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
5100 Merges logic from src/s/* and src/Makefile.in.
5101 (LD_SWITCH_SYSTEM_TEMACS): New output variable.
5102
51032010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
5104
5105 Define START_FILES and LIB_STANDARD using autoconf.
5106 * configure.in (START_FILES, LIB_STANDARD): New definitions, moved
5107 here from src/s/*.h.
5108 (HAVE_CRTIN): Remove, inline logic in the netbsd
5109 START_FILES/LIB_STANDARD computation.
5110
51112010-05-06 Glenn Morris <rgm@gnu.org>
5112
5113 * configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
5114
5115 * Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
5116 (LD_SWITCH_X_SITE): Remove unused variables.
5117
51182010-05-04 Glenn Morris <rgm@gnu.org>
5119
5120 * configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
5121 as well.
5122 (LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
5123
5124 * configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
5125
5126 * configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
5127 variables, replacing c_switch_machine, c_switch_system.
5128 * Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
5129 @c_switch_system@.
5130
51312010-05-03 Glenn Morris <rgm@gnu.org>
5132
5133 * configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
5134
5135 * make-dist: There are no more src/m/*.inp files.
5136
51372010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
5138
5139 * configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
5140 (ac_link): Do not use ld_switch_machine.
5141
51422010-05-01 Glenn Morris <rgm@gnu.org>
5143
5144 * configure.in (OTHER_OBJ): Remove.
5145 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
5146
51472010-04-30 Glenn Morris <rgm@gnu.org>
5148
5149 * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
5150 Elsewhere, maybe include it.
5151
5152 * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
5153 (OLDXMENU, LIBXMENU): New output variables.
5154
5155 * configure.in (OTHER_OBJ): New output variable.
5156
51572010-04-28 Glenn Morris <rgm@gnu.org>
5158
5159 * configure.in (CYGWIN_OBJ): New output variable.
5160
5161 * configure.in (GPM_MOUSE_SUPPORT): New output variable.
5162
5163 * configure.in (FONT_OBJ): New output variable.
5164
5165 * configure.in (LIBXMU): New output variable.
5166
5167 * configure.in (NS_OBJ, NS_SUPPORT): New output variables.
5168
5169 * configure.in (machine, canonical): On amdx86-64, check for a 32-bit
5170 userland and maybe change values to i386 (move test from s/amdx86-64.h).
5171
51722010-04-27 Glenn Morris <rgm@gnu.org>
5173
5174 * configure.in (LIBXTR6): New output variable. Move unixware special
5175 case here from src/s/unixware.h.
5176
5177 * configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
5178 in Makefiles.
5179 (TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
5180
5181 * configure.in (HAVE_MOTIF_2_1): Remove unused variable.
5182 (LIBXP): No longer substitute in Makefiles.
5183 (MOTIF_LIBW): New output variable. Move system-specific settings here
5184 from src/s files.
5185
51862010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
5187
5188 Reduce CPP usage.
5189 * configure.in (LIB_X11_LIB): Remove, inline in the only user.
5190 (unexec): Define unconditionally, all platforms define
5191 UNEXEC. AC_SUBST it.
5192 (UNEXEC_SRC): Remove, unused.
5193 (C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
5194
51952010-04-27 Glenn Morris <rgm@gnu.org>
5196
5197 * configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
5198 replaced by LIBXP.
5199
5200 * configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
5201 (CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
5202 On hpux10-20, default to /lib.
5203
5204 * configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
5205
52062010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
5207
5208 * configure.in (LIBS_MACHINE): Remove, unused.
5209
5210 * configure.in (LIB_MATH): New output variable. Set it for some systems.
5211
52122010-04-24 Glenn Morris <rgm@gnu.org>
5213
5214 * configure.in (CRT_DIR): New output variable.
5215 (--with-crt-dir): New option. (Bug#5655)
5216 (HAVE_LIB64_DIR): Remove.
5217
52182010-04-22 Dan Nicolaescu <dann@ics.uci.edu>
5219
5220 * configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
5221
52222010-04-22 Miles Bader <miles@gnu.org>
5223
5224 * configure.in: Get rid of "unix" pre-defined macro when
5225 preprocessing Makefile. (Bug#5857)
5226
52272010-04-21 Andreas Schwab <schwab@linux-m68k.org>
5228
5229 Avoid non-portable shell command negation
5230 * configure.in: Revert last change.
5231
52322010-04-21 Jan Djärv <jan.h.d@swipnet.se>
5233
5234 * configure.in: Change "if test ! -f" to "if ! test -f".
5235
52362010-04-21 Glenn Morris <rgm@gnu.org>
5237
5238 * configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
5239 (GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
5240
52412010-04-21 Karel Klíč <kklic@redhat.com>
5242
5243 * configure.in: New option: --with(out)-selinux, on by default.
5244 Set HAVE_LIBSELINUX if we find libselinux, and substitute
5245 LIBSELINUX_LIBS in Makefiles.
5246
52472010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
5248
5249 * configure.in: Remove all references to LIBX11_SYSTEM.
5250
52512010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
5252
5253 * configure.in: Remove all references to C_DEBUG_SWITCH.
5254
52552010-03-27 Eli Zaretskii <eliz@gnu.org>
5256
5257 * config.bat <lib-src>: Edit out lines that begin with several #
5258 characters.
5259
52602010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
5261
5262 * configure.in: Remove support for old UNIX System V systems and
5263 for Unixware on non-x86 machines.
5264
5265 * configure.in: Remove support for Solaris on PPC and for old versions.
5266
5267 * configure.in: Remove non-working lynxos port.
5268
52692010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
5270
5271 * .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
5272
52732010-03-19 Glenn Morris <rgm@gnu.org>
5274
5275 * configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
5276 happy.
5277
52782010-03-18 Jan Djärv <jan.h.d@swipnet.se>
5279
5280 * configure.in: Check for tputs and friends, abort if not
5281 found (bug#5735).
5282
52832010-03-18 Glenn Morris <rgm@gnu.org>
5284
5285 * configure.in (--with-x-toolkit): In the help text, say which options
5286 are synonyms.
5287
5288 * configure.in (--with-mmdf, --with-mail-unlink):
5289 New options, off by default.
5290 (--with-mailhost): New option to set default POP host.
5291 (LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
5292 (LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
5293 New variables, substituted in Makefiles.
5294 (try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
5295 (LIBGIF): Use AC_SUBST rather than AC_DEFINE.
5296 (HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
5297 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
5298 (HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
5299
53002010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
5301
5302 * Makefile.in (uninstall): Handle the case where archlibdir does not
5303 exist. (Bug#5720)
5304
53052010-03-12 Eli Zaretskii <eliz@gnu.org>
5306
75f1671a 5307 These changes remove termcap.c from the build on POSIX platforms.
067d23c9
KY
5308 * configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
5309
5310 * configure: Regenerated.
5311
53122010-03-10 Chong Yidong <cyd@stupidchicken.com>
5313
5314 * Branch for 23.2.
5315
53162010-01-31 Juri Linkov <juri@jurta.org>
5317
5318 * .bzrignore: Add TAGS-LISP.
5319
53202010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
5321
5322 * configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
5323 this header file).
5324
53252010-01-12 Juanma Barranquero <lekktu@gmail.com>
5326
5327 * .bzrignore: Ignore all .exe, instead of individual files.
5328
53292010-01-12 Chong Yidong <cyd@stupidchicken.com>
5330
5331 * configure.in: Explicitly check for and link to -lXrender.
5332
53332010-01-12 Glenn Morris <rgm@gnu.org>
5334
5335 * INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
5336 for bug reports for development versions.
5337
53382010-01-02 Eli Zaretskii <eliz@gnu.org>
5339
5340 * .bzrignore: Add more ignored patterns, including for the MS-DOS
5341 build.
5342
53432009-12-27 Karl Fogel <kfogel@red-bean>
5344
5345 * INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
5346 * INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
5347
53482009-12-17 Glenn Morris <rgm@gnu.org>
5349
5350 * .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
5351
53522009-12-15 Glenn Morris <rgm@gnu.org>
5353
5354 * info/dir: Add EDT entry.
5355 * Makefile.in (INFO_FILES): Add edt.
5356
53572009-12-10 Jan Djärv <jan.h.d@swipnet.se>
5358
1154d12e 5359 * configure.in: Check for RSVG if GNUstep is used.
067d23c9
KY
5360
53612009-12-09 Jan Djärv <jan.h.d@swipnet.se>
5362
5363 * configure.in: Don't check for RSVG or GConf unless X11 is used.
5364
53652009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
5366
5367 * configure.in: Allow compiling Emacs with GTK on Cygwin.
5368
53692009-12-01 Glenn Morris <rgm@gnu.org>
5370
5371 * make-dist: Add etc/images/mpc directory.
5372
53732009-11-21 Jan Djärv <jan.h.d@swipnet.se>
5374
5375 * configure.in: Don't check for GConf unless X is used.
5376
53772009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
5378
5379 * configure.in: Use -Wdeclaration-after-statement if available.
5380
53812009-11-17 Jan Djärv <jan.h.d@swipnet.se>
5382
5383 * configure.in: New option: --with(out)-gconf.
5384 Set HAVE_GCONF if we find gconf.
5385
53862009-11-17 Glenn Morris <rgm@gnu.org>
5387
5388 * Makefile.in (INFO_FILES): Add semantic.
5389
53902009-11-16 Chong Yidong <cyd@stupidchicken.com>
5391
5392 * info/dir: Add Semantic.
5393
53942009-11-16 Glenn Morris <rgm@gnu.org>
5395
5396 * Makefile.in (install-arch-indep): Use a more restrictive Makefile
5397 pattern, so as not to exclude makefile*.el. (Bug#4912)
5398
53992009-11-14 Jan Djärv <jan.h.d@swipnet.se>
5400
5401 * configure.in: --enable-autodepend is new. Check for GNU Make
5402 and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
5403 gcc and GNU make to generate dependencies.
5404
54052009-10-27 Glenn Morris <rgm@gnu.org>
5406
5407 * make-dist: Make links to doc/lispintro/*.pdf.
5408
54092009-10-23 Jim Meyering <meyering@redhat.com>
5410
5411 * configure.in: Invoke $CPP with -P when creating Makefile and
5412 src/Makefile. Without this, gcc 4.4.2 converts each
5413 backslash-newline pair in the input to a bare newline, yielding
5414 invalid Makefiles.
5415
5416 * configure: Regenerate.
5417
54182009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
5419
5420 * configure.in (vax-dec-vms): Remove, not supported anymore.
5421
54222009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5423
5424 * configure.in (NS_HAVE_NSINTEGER): Back out previous change.
5425 (*-apple-darwin*): Add x86_64 architecture.
5426
54272009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
5428
5429 * config.guess, config.sub: Updated from master source.
5430
54312009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
5432
5433 * configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
5434
54352009-10-07 Edward Trumbo <etrumbo@comcast.net> (tiny change)
5436
5437 * Makefile.in (INFO_FILES): Add EDE and EIEIO.
5438
54392009-09-29 Glenn Morris <rgm@gnu.org>
5440
5441 * make-dist (check): Update for two new levels of subdirectory in lisp/.
5442
54432009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
5444
5445 * config.guess, config.sub: Updated from master source.
5446
5447 * configure.in (OTHER_FILES): Define using autoconf not cpp.
5448
54492009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
5450
5451 * .dir-locals.el (change-log-mode): Restore bug-reference-mode.
5452
54532009-09-13 Chong Yidong <cyd@stupidchicken.com>
5454
5455 * INSTALL: Update URL for GNU FreeFont.
5456
54572009-09-09 Glenn Morris <rgm@gnu.org>
5458
5459 * Makefile.in (install-arch-indep): Don't recursively change perms of
5460 site-lisp and infodir. There may be non-Emacs files in here, and the
5461 files supplied by Emacs are all handled explicitly already. (Bug#3800)
5462 (mkdir): Set umask to world-readable before creating directories.
5463 mkinstalldirs already checks if dirs exist, don't duplicate this test.
5464
54652009-08-29 Glenn Morris <rgm@gnu.org>
5466
5467 * Makefile.in (info-real): Don't ignore errors from doc Makefiles.
5468 (info): Don't give an error in the absence of makeinfo - let the doc
5469 Makefiles do that, if the info files need rebuilding. (Bug#3982)
5470
54712009-08-23 Ken Raeburn <raeburn@raeburn.org>
5472
5473 * Makefile.in (install-arch-indep): If the versioned DOC-####
5474 generated during loadup+dump isn't found, install the plain DOC
5475 file that always gets generated, in case CANNOT_DUMP is set.
5476
5477 * configure.in: Warn if package version specified here doesn't
5478 match the version in version.el.
5479 * configure: Regenerate.
5480
54812009-08-22 Michael Albinus <michael.albinus@gmx.de>
5482
5483 * configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
5484
5485 * configure: Regenerate.
5486
54872009-08-19 Glenn Morris <rgm@gnu.org>
5488
5489 * INSTALL: Remove reference to cvtmail.
5490
54912009-08-15 CHENG Gao <chenggao@gmail.com>
5492
5493 * Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
5494
54952009-08-02 Kevin Ryde <user42@zip.com.au>
5496
5497 * INSTALL: Fix free fonts URL.
5498
54992009-07-22 Glenn Morris <rgm@gnu.org>
5500
5501 * configure.in (AC_PREREQ): Require autoconf 2.62.
5502
55032009-07-04 Andreas Schwab <schwab@linux-m68k.org>
5504
5505 * configure.in (--enable-checking, --enable-profiling):
5506 Use AS_HELP_STRING.
5507
55082009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
5509
5510 * configure.in (--enable-profiling): New option.
5511 (mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
5512
55132009-06-27 Glenn Morris <rgm@gnu.org>
5514
5515 * configure.in: Restore netbsd on mips, mipsel, mipseb.
5516
55172009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
5518
5519 * configure.in (--enable-checking): New option.
5520
55212009-06-24 Glenn Morris <rgm@gnu.org>
5522
5523 * make-dist: Warn if subdir does not exist in source.
5524 (nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
5525 (nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
5526 No longer make links.
5527
55282009-06-24 Yavor Doganov <yavor@gnu.org>
5529
5530 * make-dist (tempdir): Don't create directories preferences.gorm
5531 and preferences.nib, they are no longer required.
5532
55332009-06-21 Chong Yidong <cyd@stupidchicken.com>
5534
5535 * Branch for 23.1.
5536
55372009-06-12 Chong Yidong <cyd@stupidchicken.com>
5538
5539 * configure.in: Delete mac-fix-env target, which has been
5540 removed (Bug#3531).
5541
55422009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5543
1154d12e 5544 * configure.in: Don't define CANNOT_DUMP for GNUstep any more.
067d23c9
KY
5545
55462009-05-05 Per Starbäck <per@starback.se> (tiny change)
5547
5548 * BUGS: Use new binding of view-emacs-problems.
5549
c7015153 55502009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
067d23c9
KY
5551
5552 * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
5553 for Solaris compatibility.
5554
55552009-04-25 Chong Yidong <cyd@stupidchicken.com>
5556
5557 * configure: Regenerate.
5558
5559 * configure.in: Disable use of FreeType without libXft.
5560
55612009-04-19 Jan Djärv <jan.h.d@swipnet.se>
5562
5563 * configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
5564 Check if it is declared in gtk.h.
5565
55662009-04-12 Andreas Schwab <schwab@linux-m68k.org>
5567
5568 * Makefile.in (install-arch-indep): Remove .gitignore files.
5569
55702009-04-03 Kenichi Handa <handa@m17n.org>
5571
5572 * INSTALL: Make the section "Complex Text Layout support
5573 libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
5574
55752009-03-06 Dan Nicolaescu <dann@ics.uci.edu>
5576
5577 * configure.in (rs6000-ibm-aix6*): Fix typo.
5578
55792009-03-04 Glenn Morris <rgm@gnu.org>
5580
5581 * Makefile.in (INFO_FILES): Add auth.
5582
55832009-03-03 Glenn Morris <rgm@gnu.org>
5584
5585 * info/dir: Add Auth-source.
5586
55872009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
5588
5589 * Makefile.in (src): Fix last change so the first `cd' doesn't affect
5590 the second.
5591
55922009-02-28 Eli Zaretskii <eliz@gnu.org>
5593
5594 * config.bat: Copy .dbxinit to _dbxinit.
5595
5596 * make-dist (Making links to `info'): Remove .gitignore.
5597
55982009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
5599
5600 * Makefile.in (lib-src, lisp): Use simpler rule.
5601 (src): Be more specific to avoid recompiling all the .elc files just
5602 because the bootstrap-emacs is missing.
5603
56042009-02-26 Chong Yidong <cyd@stupidchicken.com>
5605
5606 * configure.in: Require librsvg >= 2.11.
5607
56082009-02-23 Adrian Robert <Adrian.B.Robert@gmail.com>
5609
5610 * configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
5611 (HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
5612
56132009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
5614
5615 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
5616
56172009-02-03 Glenn Morris <rgm@gnu.org>
5618
5619 * make-dist: Add some missing files, remove some that are no longer
5620 present.
5621
56222009-02-02 Glenn Morris <rgm@gnu.org>
5623
5624 * make-dist: Add some missing nextstep/ files.
5625
56262009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
5627
5628 * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
5629
56302009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
5631
5632 * configure.in: Add support for m68k-*-netbsd.
5633
56342009-01-14 Juri Linkov <juri@jurta.org>
5635
5636 * .dir-locals.el (change-log-mode): Remove bug-reference-mode.
5637
5638 * .dir-locals.el (change-log-mode): Add bug-reference-url-format
5639 and bug-reference-mode.
5640
56412009-01-11 Juri Linkov <juri@jurta.org>
5642
5643 * INSTALL.CVS: Move configuration explicitly to the first step.
5644
56452009-01-09 Glenn Morris <rgm@gnu.org>
5646
5647 * .dir-locals.el: Don't set indent-tabs-mode.
5648
56492008-12-30 Kenichi Handa <handa@m17n.org>
5650
5651 * configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
5652 the function OTF_get_variation_glyphs.
5653
56542008-12-30 Jan Djärv <jan.h.d@swipnet.se>
5655
5656 * Makefile.in (install-arch-dep): Remove old directories in
5657 ns_app* before moving new directories there.
5658
56592008-12-27 Dan Nicolaescu <dann@ics.uci.edu>
5660
5661 * .dir-locals.el: Remove non-working entry for pmail.
5662 (fill-column): Fix typo.
5663 (change-log-mode): Add fill column.
5664
56652008-12-26 Eli Zaretskii <eliz@gnu.org>
5666
5667 * config.bat: Produce _dir-locals.el from .dir-locals.el.
5668
56692008-12-23 Dan Nicolaescu <dann@ics.uci.edu>
5670
5671 * make-dist (tempdir): Distribute .dir-locals.el.
5672
5673 * .dir-locals.el: New file.
5674
56752008-12-19 Eli Zaretskii <eliz@gnu.org>
5676
5677 * config.bat (--with-system-malloc): New option; see msdos/INSTALL
5678 for rationale.
5679
56802008-12-13 Glenn Morris <rgm@gnu.org>
5681
5682 * Makefile.in (install-arch-indep): Add new man-pages.
5683 (manext): Remove variable.
5684 (MAN_PAGES): New variable.
5685 (install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
5686 and remove.
5687 (uninstall): Remove desktop file and icons, game scores if empty.
5688
56892008-12-11 Dan Nicolaescu <dann@ics.uci.edu>
5690
5691 * config.guess, config.sub: Updated from master source.
5692
56932008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
5694
5695 * Makefile.in (install-arch-indep): Install ebrowse.1.
5696
56972008-12-09 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
5698
5699 * configure.in: Add Solaris on x86_64.
5700
57012008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
5702
5703 * config.guess, config.sub: Updated from master source.
5704
57052008-12-08 Eli Zaretskii <eliz@gnu.org>
5706
5707 * info/dir: Fix last change.
5708
57092008-12-07 Eli Zaretskii <eliz@gnu.org>
5710
5711 * info/dir: Untabify.
5712
a04689de 57132008-11-28 Ulrich Müller <ulm@gentoo.org>
067d23c9
KY
5714
5715 * configure.in: Fix last change.
5716
57172008-11-28 Richard M Stallman <rms@gnu.org>
5718
5719 * configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
5720 New configurations.
5721
57222008-11-20 Josh Elsasser <josh@elsasser.org> (tiny change)
5723
5724 * configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
5725 removed while misclassified as now unsupported hp9000s300. (Bug#1365)
5726
57272008-11-15 Eli Zaretskii <eliz@gnu.org>
5728
5729 * Makefile.in (INFO_FILES): Remove ns-emacs.
5730
5731 * info/dir (NS-Emacs): Remove entry.
5732
57332008-11-08 Eli Zaretskii <eliz@gnu.org>
5734
5735 * INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
5736
57372008-11-07 Glenn Morris <rgm@gnu.org>
5738
5739 * configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
5740
57412008-10-31 Eli Zaretskii <eliz@gnu.org>
5742
5743 * config.bat: Tell user to expect one "File not found" message
5744 while the `doc' directory is being configured.
5745
57462008-10-30 Chong Yidong <cyd@stupidchicken.com>
5747
5748 * update-subdirs: Put obsolete directory last.
5749
57502008-10-30 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
5751
5752 * configure.in: Check fontconfig always.
5753
57542008-10-30 Dan Nicolaescu <dann@ics.uci.edu>
5755
5756 * configure (*-solaris2.[7-9]*): Fix typo.
5757
57582008-10-24 Glenn Morris <rgm@gnu.org>
5759
5760 * configure.in (--without-sync-input, --with-pkg-config-prog):
5761 Help strings start with lower case.
5762 (--with-gnustep-conf): New option.
5763 (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
5764
57652008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
5766
5767 * configure.in: Use `.' instead of `source' to source GNUstep.conf.
5768 Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
5769 is not found. (Bug#1230)
5770
57712008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
5772
5773 * configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
5774 Use sol2-6.h for Solaris 7-9.
5775
a04689de 57762008-10-18 Ulrich Müller <ulm@gentoo.org>
067d23c9
KY
5777
5778 * configure.in: Add support for GNU/Linux on SuperH.
5779
57802008-10-12 Andreas Schwab <schwab@suse.de>
5781
5782 * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
5783
1a71cb28 57842008-10-03 Adrian Robert <Adrian.B.Robert@gmail.com>
067d23c9
KY
5785
5786 * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
5787 "X") to avoid confusion.
5788
5789 * configure: Regenerate.
5790
57912008-09-07 Romain Francoise <romain@orebokech.com>
5792
5793 * make-dist: Distribute doc/man/ChangeLog.
5794
57952008-08-28 Chong Yidong <cyd@stupidchicken.com>
5796
5797 * configure.in: Disable XFT and Freetype when without X.
5798
5799 * configure: Regenerate.
5800
58012008-08-24 Dan Nicolaescu <dann@ics.uci.edu>
5802
5803 * configure.in (NS_IMPL_GNUSTEP): Increase pure size.
5804
58052008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
5806
90eacf99
SM
5807 * configure.in (GNUSTEP_SYSTEM_HEADERS):
5808 Define GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
067d23c9
KY
5809
5810 * configure: Regenerate.
5811
58122008-08-20 Eli Zaretskii <eliz@gnu.org>
5813
5814 * configure.in: Move "#define subprocesses" before
5815 config_opsysfile is included.
5816
58172008-08-19 Kenichi Handa <handa@m17n.org>
5818
5819 * INSTALL (Extra fonts): Mention local fonts, don't mention
5820 mule-unicode.
5821
58222008-08-16 Chong Yidong <cyd@stupidchicken.com>
5823
5824 * make-dist: Omit info/.arch-inventory.
5825
58262008-08-16 Jason Rumney <jasonr@gnu.org>
5827
5828 * make-dist (tempdir/nt): Link emacsclient.rc.
5829
58302008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
5831
5832 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
5833 AC_SUBST it.
5834 (GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
5835 AC_SUBST it.
5836 (OTHER_FILES): Always define for HAVE_NS.
5837 (C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
5838 * configure: Regenerate.
5839
58402008-08-07 Andreas Schwab <schwab@suse.de>
5841
5842 * configure.in: Correctly handle
5843 --enable-cocoa-experimental-ctrl-g=no and
5844 --enable-ns-self-contained=yes.
5845
58462008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
5847
5848 * configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
90eacf99
SM
5849 (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep.
5850 Don't bother undef'ing since won't have desired effect.
067d23c9
KY
5851
58522008-08-06 Andreas Schwab <schwab@suse.de>
5853
5854 * configure.in: Fix quoting.
5855
58562008-08-06 Chong Yidong <cyd@stupidchicken.com>
5857
5858 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
5859
a04689de 58602008-08-05 Ulrich Müller <ulm@gentoo.org>
067d23c9
KY
5861
5862 * configure.in: Add checks for krb5_error.text and
5863 krb5_error.e_text struct members.
5864
58652008-08-04 Chong Yidong <cyd@stupidchicken.com>
5866
5867 * configure.in: Test for existence of NSInteger.
5868 Suggested by Yavor Doganov.
5869
58702008-08-02 Romain Francoise <romain@orebokech.com>
5871
5872 * Makefile.in (INFO_FILES): Add mairix-el.
5873
58742008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
5875
5876 * make-dist:
5877 * README: Remove VMS support.
5878 * vms: Remove directory.
5879
58802008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
5881
5882 * configure.in (MULTI_KBOARD): Remove.
5883
58842008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
5885
5886 * configure.in (DO_BLOCK_INPUT): Remove, unused.
5887
58882008-07-29 Chong Yidong <cyd@stupidchicken.com>
5889
5890 * info/dir (File): Add mairix-el.
5891
58922008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
5893
5894 Remove support for Mac Carbon.
5895 * mac: Remove directory.
5896 * make-dist:
5897 * configure.in:
5898 * README:
5899 * Makefile.in:
5900 * INSTALL: Remove code for Carbon.
5901 * configure: Regenerate.
5902
59032008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
5904
5905 * Makefile.in (install-arch-dep): Fix typo in NS installation commands.
5906
59072008-07-25 Chong Yidong <cyd@stupidchicken.com>
5908
5909 * configure.in: Check for getrlimit.
5910
5911 * configure: Regenerate.
5912
59132008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
5914
5915 * configure.in (LD_SWITCH_SITE): Remove, set the values directly
5916 in src/Makefile.in.
5917 (static): Remove, autoconf would always comment it out anyway.
5918 (subprocesses): Define unconditionally.
5919
59202008-07-19 Yavor Doganov <yavor@gnu.org> (tiny change)
5921
5922 * configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
5923 compilation under GNUstep.
5924
59252008-07-18 Kenichi Handa <handa@m17n.org>
5926
5927 * INSTALL (Complex Text Layout support libraries): Delete the
5928 paragraph about --enable-font-backend.
5929
59302008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
5931
5932 * configure.in: Print out some info to user for NeXTstep builds.
5933 (ns-app): Remove enable option.
5934 (ns-self-contained): Add enable option.
5935 (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
5936 GNUstep, use to set install prefixes, and substitute in Makefiles.
5937 * configure: Regenerate.
5938 * Makefile.in (install-arch-dep): Perform post-install cleanup inside
5939 NS app bundle.
5940
59412008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5942
5943 * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
5944
59452008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
5946
5947 * configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
5948 NS_IMPL_COCOA.
5949
59502008-07-16 Glenn Morris <rgm@gnu.org>
5951
5952 * configure.in (with_kerberos, with_kerberos5, with_hesiod):
5953 Fix tests for OPTION_DEFAULT_OFF (variables never unset).
5954 (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
5955 never unset.
5956
5957 * make-dist: Add nextstep/ directories.
5958 (src, lib-src): Add .m files.
5959
59602008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
5961
5962 * configure.in (freebsd, kfreebsd): Undo part of previous change.
5963 (USER_FULL_NAME): Remove, not used anymore.
5964 * configure: Regenerate.
5965
59662008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5967
5968 Changes and additions for NeXTstep windowing system (Cocoa and
5969 GNUstep) support.
5970
5971 * configure.in: Add support for NS window system: --with-ns (default
5972 off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
5973 sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
5974 disable font backend if window system is "none", not if !HAVE_X11.
5975 * Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
5976 (install-arch-dep): Add commands to assemble NS .app package.
5977
59782008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
5979
5980 * configure.in: Use macppc for Darwin. Remove references to
5981 desupported systems.
5982 * configure: Regenerate.
5983
59842008-07-05 Glenn Morris <rgm@gnu.org>
5985
5986 * make-dist (EMACS): Doc fix.
5987 (lisp): There are no *.dat or image files here any more.
5988 (src): There are no *.s files here any more.
5989 (etc/images, etc/images/*): Link to most regular files.
5990
59912008-07-04 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5992
5993 * configure.in: Remove reference to deleted $USE_FONT_BACKEND.
5994
59952008-07-01 Glenn Morris <rgm@gnu.org>
5996
5997 * configure.in (cpp_undefs): Rename from `undefs', update uses.
5998 Use $srcdir rather than $top_srcdir. Set before calling AC_OUTPUT,
5999 and explicitly export there. (Bug#507.)
6000
60012008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
6002
6003 * configure.in:
6004 * configure: Remove references to obsolete systems.
6005
60062008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
6007
6008 * Makefile.in (Makefile): Use it for its timestamp value as well, and
6009 make it depend on all other */.in files.
6010 (src/Makefile, src/config.stamp, lib-src/Makefile)
6011 (doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
6012 (doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
6013 (leim/Makefile, lisp/Makefile): Remove those overlapping targets.
6014 (leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
6015
6016 * configure.in: Don't create src/config.stamp any more.
6017
60182008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6019
6020 * Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
6021
60222008-06-22 Glenn Morris <rgm@gnu.org>
6023
6024 * Makefile.in (top_bootclean): Remove obsolete references to lock/.
6025
60262008-06-21 Romain Francoise <romain@orebokech.com>
6027
6028 * Makefile.in (INFO_FILES): Add sasl.
6029
60302008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6031
6032 * Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
6033 (bootstrap-build): Remove.
6034 (top_bootclean): New var.
6035 (top_distclean, bootstrap-clean): Use it.
6036 (bootstrap): Don't recheck config. Make normally.
6037
60382008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
6039
6040 * Makefile.in (SUBDIR): Include `lisp'.
6041 (lisp): Depend on `src'.
6042 (top_distclean): Don't remove config.status.
6043 (bootstrap-clean): New target.
6044 (maintainer-clean): Use it.
6045 (bootstrap): Use bootstrap-clean. Re-run config.status.
6046 (src/bootstrap-emacs${EXEEXT}): New target.
6047 (bootstrap-build): Use it. Don't use bootstrap-prepare because
6048 src/Makefile now takes care of it.
6049 (bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
6050
60512008-06-15 Glenn Morris <rgm@gnu.org>
6052
6053 * info/dir: Add sasl.
6054
60552008-06-09 Alan Mackenzie <acm@muc.de>
6056
6057 * INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
6058
60592008-06-08 Eric S. Raymond <esr@snark.thyrsus.com>
6060
6061 * INSTALL.CVS: Indicate when "cvs update -d" may be needed.
6062
60632008-06-07 Glenn Morris <rgm@gnu.org>
6064
6065 * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
6066 serve no purpose.
6067
60682008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
6069
6070 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
6071 * configure: Regenerate.
6072
60732008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6074
6075 * update-subdirs: Don't touch subdirs.el if it is unchanged.
6076
60772008-05-14 Kenichi Handa <handa@m17n.org>
6078
6079 * configure: Regenerate.
6080
6081 * configure.in: Don't handle --disable-font-backend. Don't print
6082 a message about a font backend.
6083
60842008-05-09 Glenn Morris <rgm@gnu.org>
6085
6086 * configure.in: Make absence of makeinfo a fatal error only if the info
6087 files don't exist.
6088 * Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
6089
60902008-05-07 Eli Zaretskii <eliz@gnu.org>
6091
6092 * config.bat: Fix last change: don't use < and > in "rem" lines,
6093 they are interpreted as redirection by DOS shells.
6094
60952008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6096
6097 * configure.in: Check availability of AvailabilityMacros.h
6098 if HAVE_CARBON.
6099
6100 * configure: Regenerate.
6101
61022008-05-03 Glenn Morris <rgm@gnu.org>
6103
6104 * configure.in (x_libraries): Remove standard 64-bit directories -
6105 experimental workaround for minor autoconf bug.
6106
6107 * configure.in (--without-makeinfo): New option. If set,
6108 absence of suitable makeinfo is not a fatal error.
6109 * Makefile.in (MAKEINFO): New, set by configure.
6110 (install-arch-indep): Without makeinfo, ignore any missing manuals.
6111 (info-real): New target.
6112 (info): Without makeinfo, do nothing, else call `info-real'.
6113
61142008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
6115
6116 * configure.in: Remove hpux10.20 from the desupported list.
6117
61182008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6119
6120 * configure.in: Define USE_LUCID/USE_MOTIF in config.h.
6121
61222008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
6123
6124 * configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
6125 rather than change CPPFLAGS.
6126 (HAVE_GTK): Rename to USE_GTK.
6127
61282008-04-16 Yavor Doganov <yavor@gnu.org> (tiny change)
6129
6130 * configure.in: Replace the obsolete macros AC_AIX and
6131 AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
6132
61332008-04-05 Andreas Schwab <schwab@suse.de>
6134
6135 * configure.in: No longer create admin/unidata/Makefile.
6136
61372008-03-28 Andreas Schwab <schwab@suse.de>
6138
6139 * Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
6140 (lisp/Makefile): New rule.
6141
61422008-03-13 Glenn Morris <rgm@gnu.org>
6143
6144 * configure.in (AC_INIT): Fix version number.
6145 (sync-input): Reword the option, since it's on by default.
6146
61472008-03-11 Jan Djärv <jan.h.d@swipnet.se>
6148
6149 * configure.in: Add --enable-sync-input, default yes.
6150
61512008-03-11 Glenn Morris <rgm@gnu.org>
6152
6153 * Makefile.in (install-etc, mkdir): Handle directory
6154 etc/images/icons/hicolor/*/mimetypes/.
6155
6156 * make-dist: Handle icons/hicolor/scalable directory.
6157
61582008-03-05 Glenn Morris <rgm@gnu.org>
6159
6160 * configure.in: Enable font-backend by default.
6161 (USE_FONT_BACKEND): Set to "no" in absence of X.
6162 (PKG_CONFIG): Don't set multiple times, once is enough.
6163 (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
6164
61652008-03-03 Glenn Morris <rgm@gnu.org>
6166
6167 * Makefile.in (iconsrcdir): New variable.
6168 (install-etc, mkdir): Use $iconsrcdir. Handle the `scalable' icon
6169 directory.
6170
61712008-02-29 Glenn Morris <rgm@gnu.org>
6172
6173 * test/: New directory.
6174
61752008-02-27 Jan Djärv <jan.h.d@swipnet.se>
6176
6177 * configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
6178
61792008-02-25 Dan Nicolaescu <dann@ics.uci.edu>
6180
6181 * configure.in: Print an error for systems that we think are obsolete
6182 and are proposed to be removed. Remove some more unused systems.
6183 Add support for powerpc-ibm-aix6*.
6184
61852008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
6186
6187 * configure.in: Remove references to obsolete variables and systems.
6188
61892008-02-21 Glenn Morris <rgm@gnu.org>
6190
6191 * Makefile.in (set_installuser): New.
6192 (install-arch-indep): Use set_installuser to avoid duplicate code.
6193
6194 * README.unicode: Split into admin/notes/unicode,font-backend and
6195 remove.
6196
61972008-02-10 Matthew Luckie <mjl@luckie.org.nz> (tiny change)
6198
6199 * configure.in (arm*-*-freebsd*): Add.
6200
62012008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
6202
6203 * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
6204 dealing with obsolete variables.
6205
62062008-02-08 Glenn Morris <rgm@gnu.org>
6207
6208 * Makefile.in (check-info-dir): New target.
6209
62102008-02-08 Michael Olson <mwolson@gnu.org>
6211
6212 * Makefile.in (INFO_FILES): Add epa.
6213
6214 * info/dir: Add EasyPG Assistant manual to the "Emacs misc
6215 features" section.
6216
62172008-02-06 Glenn Morris <rgm@gnu.org>
6218
6219 * configure.in (--with-gcc): Give an error saying this option has
6220 been removed.
6221 (--with-gtk): Remove this option.
6222
62232008-02-06 Tom Tromey <tromey@redhat.com>
6224
6225 * configure.in (--with-gcc): Remove.
6226 * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
6227
a04689de 62282008-02-05 Ulrich Müller <ulm@gentoo.org>
067d23c9
KY
6229
6230 * INSTALL: Recommend giflib, not libungif.
6231
62322008-02-05 Tom Tromey <tromey@redhat.com>
6233
6234 * configure.in (--with-dbus): Default to enabled.
6235
62362008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
6237
6238 * INSTALL (Complex Text Layout support libraries): New section.
6239
62402008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
6241
6242 * make-dist: Remove references to files in mac/ that have been
6243 deleted.
6244
62452008-02-02 Thien-Thi Nguyen <ttn@gnuvola.org>
6246
6247 * configure.in: For libotf and m17n-flt checks, set shell vars
6248 HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
6249 pkg_check_m17n_flt, respectively, for the sake of the summary output.
a04689de 6250 Reported by Ulrich Müller.
067d23c9
KY
6251
62522008-02-02 Eli Zaretskii <eliz@gnu.org>
6253
6254 * configure.in: If admin/unidata/UnicodeData.txt is present, copy
6255 admin/unidata/Makefile.in to Makefile.
6256
62572008-02-02 Glenn Morris <rgm@gnu.org>
6258
6259 * configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
6260 (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
6261 (HAVE_XFT): Add "Does Emacs use..." messages at end.
6262
62632008-02-01 Miles Bader <miles@gnu.org>
6264
6265 * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
6266 [libotf], and [m17n-flt] options.
6267
62682008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6269
6270 * configure.in: Add EMACS_ARG_N([libotf]...), and
6271 EMACS_ARG_N([m17n-flt]. Set back OLD_CPPFLAGS to CPPFLAGS (not
6272 CFLAGS) in XFT checking part. Don't alter C_SWITCH_X_SITE,
6273 CFLAGS, and LIBS in checking of m17n-flt.
6274
62752008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
6276
6277 * configure.in: Check the availability of m17n-flt library.
6278
62792008-02-01 Kenichi Handa <handa@m17n.org>
6280
6281 * configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
6282 not available.
6283
62842008-02-01 Kenichi Handa <handa@m17n.org>
6285
6286 * configure.in: New args --enable-font-backend, --with-xft,
6287 --with-freetyp. New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
6288 HAVE_FREETYPE, HAVE_LIBOTF. New AC_SUBSTs XFT_LIBS,
6289 FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
6290 FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
6291
62922008-02-01 Kenichi Handa <handa@m17n.org>
6293
6294 * make-dist: Include etc/charsets in tarball.
6295
62962008-02-01 Kenichi Handa <handa@m17n.org>
6297
6298 * configure.in: While running cpp on junk.c, include
6299 -DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
6300 exists.
6301
63022008-01-29 Dan Nicolaescu <dann@ics.uci.edu>
6303
6304 * configure.in (xtensa): Match more configurations.
6305
63062008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
6307
6308 * configure.in: Update comment.
6309
63102008-01-26 Glenn Morris <rgm@gnu.org>
6311
6312 * configure.in (--without-gcc): By default, neither off nor on.
6313 (--with-carbon): Tone down rhetoric in help text.
6314
63152008-01-25 Glenn Morris <rgm@gnu.org>
6316
6317 * configure.in: Correct usage of OPTION_DEFAULT_ON,
6318 OPTION_DEFAULT_OFF so that the defaults are as they used to be.
6319 Default `Carbon' to off (it's unsupported).
6320
63212008-01-24 Glenn Morris <rgm@gnu.org>
6322
6323 * configure.in: Standardize dbus-related messages.
6324
63252008-01-23 Michael Olson <mwolson@gnu.org>
6326
6327 * configure.in (pkg-config-prog): Remove initial whitespace.
6328
63292008-01-23 Tom Tromey <tromey@redhat.com>
6330
6331 * configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
6332 (EMACS_ARG_Y, EMACS_ARG_N): Remove.
6333 Update all users.
6334
63352008-01-21 Dan Nicolaescu <dann@ics.uci.edu>
6336
6337 * config.guess, config.sub: Updated from master source.
6338
63392008-01-17 Andreas Schwab <schwab@suse.de>
6340
6341 * configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
6342
63432008-01-17 Glenn Morris <rgm@gnu.org>
6344
6345 * configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
6346
63472008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
6348
6349 * configure.in: Remove more references to unsupported systems.
6350
63512008-01-16 Sven Joachim <svenjoac@gmx.de>
6352
6353 * make-dist: Add --lzma.
6354
63552008-01-16 Glenn Morris <rgm@gnu.org>
6356
6357 * Makefile.in (maybe_bootstrap): Remove texinfo message, since
6358 configure checks for this.
6359
63602008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
6361
6362 * configure.in: Remove more references to unsupported systems.
6363
63642008-01-06 Romain Francoise <romain@orebokech.com>
6365
6366 * configure.in: Delete extra semicolons.
6367
63682008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
6369
6370 * configure.in: Remove references to unsupported systems.
6371
63722008-01-05 Romain Francoise <romain@orebokech.com>
6373
6374 * make-dist: Add --bzip2. Update copyright.
6375
63762008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
6377
6378 * configure.in: Remove support for Masscomp.
6379
63802008-01-05 Glenn Morris <rgm@gnu.org>
6381
6382 * Makefile.in (desktopdir, icondir): New variables.
6383 (install-arch-indep): Also depend on `install-etc'.
6384 (install-etc): New target.
6385 (mkdir): Also create the `applications' and `icons' directories.
6386
63872008-01-04 Glenn Morris <rgm@gnu.org>
6388
6389 * make-dist: Update for new etc/images/icons/hicolor directory.
6390
63912007-12-09 Andreas Schwab <schwab@suse.de>
6392
6393 * configure.in: D-Bus is not enabled by default.
6394
63952007-12-06 Jan Djärv <jan.h.d@swipnet.se>
6396
6397 * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
6398 change.
6399
64002007-12-04 Jan Djärv <jan.h.d@swipnet.se>
6401
6402 * configure.in: Give package name and version to AC_INIT.
6403
64042007-12-03 Magnus Henoch <mange@freemail.hu>
6405
6406 * configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
6407
64082007-12-03 Michael Albinus <michael.albinus@gmx.de>
6409
6410 * configure.in: No need for DBUS_INFO anymore.
6411
6412 * Makefile.in (INFO_FILES): Use dbus unconditionally.
6413
64142007-12-02 Michael Albinus <michael.albinus@gmx.de>
6415
6416 * configure.in: Add D-Bus checks. D-Bus is disabled by default.
6417
6418 * Makefile.in (INFO_FILES): Add dbus.
6419
64202007-12-02 Romain Francoise <romain@orebokech.com>
6421
6422 * make-dist: Fix last change.
6423
64242007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
6425
6426 * configure.in: Add support for gnu-kfreebsd.
6427
64282007-11-28 Glenn Morris <rgm@gnu.org>
6429
6430 * make-dist: Add etc/nxml.
6431
64322007-11-24 Romain Francoise <romain@orebokech.com>
6433
6434 * Makefile.in (INFO_FILES): Add nxml-mode.
6435
64362007-11-23 Romain Francoise <romain@orebokech.com>
6437
6438 * make-dist: Include nXML. Don't try to copy FTP, it was removed on
6439 2007/10/17. Don't special-case alloca.c which is no longer in CVS.
6440
64412007-11-20 Andreas Schwab <schwab@suse.de>
6442
6443 * configure.in: Always include <resolv.h> when checking for res_init.
6444
64452007-11-17 Andreas Schwab <schwab@suse.de>
6446
6447 * update-subdirs: Atomically update subdirs.el.
6448
64492007-11-17 Glenn Morris <rgm@gnu.org>
6450
6451 * Makefile.in (check-declare): New target.
6452
64532007-11-07 Glenn Morris <rgm@gnu.org>
6454
6455 * configure.in: Deprecate Mac Carbon port.
6456
64572007-11-01 Jan Djärv <jan.h.d@swipnet.se>
6458
6459 * configure.in: Remove HAVE_X11R5 check.
6460
64612007-10-31 Glenn Morris <rgm@gnu.org>
6462
6463 * Makefile.in (install-arch-indep): Fallback to $USER and `id -un'
6464 when changing ownership of installed files.
6465
64662007-10-30 Glenn Morris <rgm@gnu.org>
6467
6468 * make-dist: Add new directory etc/gnus.
6469
64702007-10-30 Michael Olson <mwolson@gnu.org>
6471
6472 * Makefile.in (INFO_FILES): Alphabetize. Add remember.
6473
64742007-10-29 Glenn Morris <rgm@gnu.org>
6475
6476 * make-dist: Add new directories etc/images/smilies/grayscale,medium.
6477
64782007-10-23 Glenn Morris <rgm@gnu.org>
6479
6480 * MAINTAINERS: Move to admin/.
6481
64822007-10-17 Chong Yidong <cyd@stupidchicken.com>
6483
6484 * configure.in (HAVE_RES_INIT): Define if res_init() exists.
6485 (HAVE_LIBRESOLV): Also define if we are using res_init().
6486
64872007-10-17 Glenn Morris <rgm@gnu.org>
6488
6489 * FTP: Remove file, since it's just a duplicate of one in etc/.
6490
64912007-10-05 Eli Zaretskii <eliz@gnu.org>
6492
6493 * config.bat: Fix configuring `doc' due to changes in the
6494 directory structure.
6495
64962007-09-16 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
6497
6498 * configure.in: Don't use -lpthread on HP-UX.
6499
65002007-09-16 Glenn Morris <rgm@gnu.org>
6501
6502 * make-dist: File gfdl.1 has been removed.
6503
65042007-09-15 Glenn Morris <rgm@gnu.org>
6505
6506 * configure.in: Fix makeinfo version regexp.
6507
65082007-09-12 Glenn Morris <rgm@gnu.org>
6509
6510 * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
6511 implementation of alloca is not found.
6512
6513 * Makefile.in (SOURCES, unlock, relock): Delete.
6514 (install-arch-indep): Do not exclude the etc/ Makefiles.
6515
65162007-09-09 Juri Linkov <juri@jurta.org>
6517
6518 * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc).
6519
6520 * README: Add doc/ to documentation directories.
6521
65222007-09-08 Michael Olson <mwolson@gnu.org>
6523
6524 * MAINTAINERS: Add myself for ERC and tq.el.
6525 Update for new doc/ directory layout.
6526
65272007-09-06 Romain Francoise <romain@orebokech.com>
6528
6529 * make-dist: Update for new doc/ directory layout.
6530
65312007-09-06 Glenn Morris <rgm@gnu.org>
6532
6533 * Makefile.in (mansrcdir): New variable.
6534 (SUBDIR_MAKEFILES): Update for new doc/ directory layout.
6535 (man/Makefile, lispref/Makefile, lispintro/Makefile): Rename and
6536 update these targets for new doc/ directory layout.
6537 (doc/misc/Makefile): New target.
6538 (install-arch-indep): Use mansrcdir for new location of manpages.
6539 (mostlyclean, clean, distclean, maintainer-clean, unlock)
6540 (relock, info, dvi): Update targets for new doc/ directory layout.
6541
6542 * configure.in (AC_OUTPUT): Update names of generated Makefiles
6543 for new doc/ directory layout.
6544
65452007-09-02 Andreas Schwab <schwab@suse.de>
6546
6547 * configure.in: Use AS_HELP_STRING throughout.
6548 * configure: Regenerate.
6549
65502007-09-02 Jan Djärv <jan.h.d@swipnet.se>
6551
6552 * configure.in: Require Gtk/Glib 2.6.
6553
65542007-09-02 Thien-Thi Nguyen <ttn@gnuvola.org>
6555
6556 * configure.in (EMACS_ARG_Y, EMACS_ARG_N): New AC_DEFUNs.
6557 Use them throughout in place of AC_ARG_WITH calls.
6558 * configure: Regenerate.
6559
65602007-09-01 Andreas Schwab <schwab@suse.de>
6561
6562 * configure.in: Put quotes around nested macro calls.
6563
a04689de 65642007-08-31 Ulrich Müller <ulm@gentoo.org> (tiny change)
067d23c9
KY
6565
6566 * configure.in: Fix typo.
6567 * configure: Regenerate.
6568
65692007-08-30 Glenn Morris <rgm@gnu.org>
6570
6571 * configure.in (AH_BOTTOM): Copy some manual changes made to
6572 src/config.in here so they are not lost when it regenerates.
6573
6574 * README.multi-tty: Move to admin/notes/multi-tty, with some edits.
6575
65762007-08-29 Károly Lőrentey <karoly@lorentey.hu>
6577
6578 * README.multi-tty: New file.
6579
65802007-08-29 Glenn Morris <rgm@gnu.org>
6581
6582 * README: Increase version to 23.0.50.
6583
65842007-08-29 Jan Djärv <jan.h.d@swipnet.se>
6585
6586 * configure.in: New option: --without-xaw3d.
6587
65882007-08-24 Glenn Morris <rgm@gnu.org>
6589
6590 * configure.in: Check for a suitably recent makeinfo.
6591
65922007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
6593
6594 * configure.in (Check for required libraries): Typo.
6595
65962007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6597
6598 * configure.in: Check librsvg2 also for Mac Carbon.
6599
66002007-08-22 Romain Francoise <romain@orebokech.com>
6601
6602 * make-dist: Follow reorganization of files in etc/.
6603
66042007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
6605
6606 * configure.in: Add support for SVG images through librsvg2.
6607
66082007-07-28 Eli Zaretskii <eliz@gnu.org>
6609
6610 * Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
6611 to avoid an error message if there is no DOC there.
6612
66132007-07-25 Glenn Morris <rgm@gnu.org>
6614
6615 * Relicense all FSF files to GPLv3 or later.
6616
6617 * COPYING, info/COPYING: Switch to GPLv3.
6618
66192007-06-20 Jan Djärv <jan.h.d@swipnet.se>
6620
6621 * configure.in: Complain if X seems to be installed but no
6622 development files were found.
6623
66242007-06-20 Glenn Morris <rgm@gnu.org>
6625
6626 * configure.in: Prefer libgif over libungif.
6627
66282007-06-14 Jan Djärv <jan.h.d@swipnet.se>
6629
6630 * configure.in: Check for all image libraries before exiting.
6631
66322007-06-13 Jan Djärv <jan.h.d@swipnet.se>
6633
6634 * configure.in: Exit with error if image libraries aren't found.
6635
66362007-06-13 Chong Yidong <cyd@stupidchicken.com>
6637
6638 * configure.in: Merge xaw3d and libXaw checks. Check xaw3d even
6639 when compiling without scrollbars.
6640
66412007-06-12 Glenn Morris <rgm@gnu.org>
6642
6643 * configure.in (HAVE_GIF): If -lungif fails, try -lgif.
6644
66452007-06-11 Jan Djärv <jan.h.d@swipnet.se>
6646
6647 * configure.in: Change wording about yes/gtk and lucid/athena
6648 being synonyms.
6649
66502007-06-08 Glenn Morris <rgm@gnu.org>
6651
6652 * configure.in: Make gtk the default toolkit.
6653
66542007-06-07 Glenn Morris <rgm@gnu.org>
6655
6656 * configure.in (NON_GNU_CPP): On Solaris, set using a proper check
6657 for a Sun C compiler.
6658
6659 * Makefile.in (install-arch-indep): Install only the DOC- file
6660 specific to the build, if possible, rather than DOC-*.
6661
66622007-06-02 Chong Yidong <cyd@stupidchicken.com>
6663
6664 * Version 22.1 released.
6665
66662007-05-25 Chong Yidong <cyd@stupidchicken.com>
6667
6668 * mkinstalldirs: Sync to version in automake CVS.
6669
66702007-05-22 Andreas Schwab <schwab@suse.de>
6671
6672 * configure.in: Prefer build_alias over host when host_alias is not set.
6673 * configure: Regenerate.
6674
66752007-05-20 Andreas Schwab <schwab@suse.de>
6676
6677 * configure.in: Remove empty AC_SUBST.
6678 * configure: Regenerate.
6679
66802007-05-20 Nick Roberts <nickrob@snap.net.nz>
6681
6682 * configure.in: Use HAVE_GPM instead of HAVE_GPM_H and implement
6683 it like others.
6684 * configure: Regenerate.
6685
66862007-05-20 Nick Roberts <nickrob@snap.net.nz>
6687
6688 * configure.in (AC_CHECK_HEADERS): Add gpm.h.
6689 (AC_CHECK_LIB): Add -lgpm.
6690 * configure: Regenerate.
6691
66922007-05-03 Glenn Morris <rgm@gnu.org>
6693
6694 * configure: Tweak message about the absence of shell functions.
6695
66962007-04-27 Andreas Schwab <schwab@suse.de>
6697
6698 * Makefile.in (config.status): Depend on ${srcdir}/lisp/version.el.
6699
67002007-04-26 Glenn Morris <rgm@gnu.org>
6701
6702 * README: Increase version to 22.1.50.
6703
67042007-04-24 Juanma Barranquero <lekktu@gmail.com>
6705
6706 * INSTALL (DETAILED BUILDING AND INSTALLATION): Fix typo.
6707
67082007-04-19 Glenn Morris <rgm@gnu.org>
6709
6710 * configure.in: Signal error if Xaw libs are missing in a Lucid build.
6711
67122007-04-18 Glenn Morris <rgm@gnu.org>
6713
6714 * INSTALL: Mention CPP.
6715
67162007-04-15 Glenn Morris <rgm@gnu.org>
6717
6718 * FTP: Replace with a pointer to the web version.
6719
67202007-04-13 Glenn Morris <rgm@gnu.org>
6721
6722 * INSTALL: In lib-src, timer, wakeup, yow are removed.
6723
67242007-04-04 Glenn Morris <rgm@gnu.org>
6725
6726 * configure.in (NON_GNU_CPP): Use associated preprocessor when
6727 compiling with Sun Studio on Solaris.
6728
67292007-03-23 Glenn Morris <rgm@gnu.org>
6730
6731 * configure.in: Restore support for hp800 (removed 2007-01-27)
6732 following clarification of legal status.
6733
67342007-03-22 Joe Buehler <jbuehler@spirentcom.com> (tiny change)
6735
6736 * configure.in: Add support for AIX4.3 on IBM RS6000.
6737
6738 * configure: Regenerate.
6739
67402007-03-20 Richard Stallman <rms@gnu.org>
6741
6742 * configure.in: Fix previous change.
6743
67442007-03-19 Deanna Phillips <deanna@sixbit.org> (tiny change)
6745
6746 * configure.in (arm-*-openbsd*, hppa-*-openbsd*)
90eacf99
SM
6747 (m88k-*-openbsd*, mips64-*-openbsd*, sh-*-openbsd*): Add.
6748 (ns32k-*-openbsd*, ns32k-*-openbsd*): Delete.
067d23c9
KY
6749
67502007-03-19 Chong Yidong <cyd@stupidchicken.com>
6751
6752 * configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
6753 user specifies "without".
6754
6755 * configure: Regenerate.
6756
67572007-03-18 Jan Djärv <jan.h.d@swipnet.se>
6758
6759 * configure.in: Warning for Gtk+ and Cygwin added.
6760 (HAVE_XFT): OLD_CFLAGS changed to OLD_CPPFLAGS.
6761
67622007-02-27 Glenn Morris <rgm@gnu.org>
6763
6764 * make-dist (oldXMenu): Remove Imakefile.
6765 (etc/images): Add README.
6766
67672007-02-25 Dan Nicolaescu <dann@ics.uci.edu>
6768
6769 * configure.in (xtensa-*-linux-gnu*): New configuration.
6770
6771 * configure: Regenerate.
6772
67732007-02-22 Dan Nicolaescu <dann@ics.uci.edu>
6774
6775 * config.guess, config.sub: Updated from master source.
6776
67772007-01-31 Sascha Wilde <wilde@sha-bang.de> (tiny change)
6778
6779 * configure.in (PKG_CHECK_MODULES): Change ///* to / in cflags and libs.
6780
67812007-01-29 Chong Yidong <cyd@stupidchicken.com>
6782
6783 * configure.in: Restore support for hp800's not running HP-UX.
6784
6785 * configure: Regenerate.
6786
67872007-01-27 Chong Yidong <cyd@stupidchicken.com>
6788
6789 * configure.in: Remove support for hp800 and sr2k machine types.
6790
6791 * configure: Regenerate.
6792
67932007-01-26 Jan Djärv <jan.h.d@swipnet.se>
6794
6795 * configure.in: Add check for libXft.
6796
67972007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
6798
6799 * INSTALL: Info files moved to share/info.
6800
68012007-01-02 Stephen C. Gilardi <scgilardi@gmail.com> (tiny change)
6802
6803 * configure.in: Detect and use fink-installed in intel-based Mac
6804 builds; change Apple Darwin section to support both PowerPC and
6805 Intel-based Macs.
6806
68072006-12-26 Andreas Schwab <schwab@suse.de>
6808
6809 * Makefile.in (datarootdir): Define.
6810
68112006-12-24 Richard Stallman <rms@gnu.org>
6812
6813 * configure.in: Require Autoconf 2.61.
6814
68152006-12-22 Mark Davies <mark@mcs.vuw.ac.nz>
6816
6817 * configure.in: Add support for NetBSD on x86-64, hp800 and sh3el.
6818 Remove redundant entry for powerpc-apple-netbsd.
6819
6820 * configure: Regenerate.
6821
68222006-12-22 Chong Yidong <cyd@stupidchicken.com>
6823
6824 * configure: Regenerate with autoconf 2.61.
6825
68262006-12-20 Jan Djärv <jan.h.d@swipnet.se>
6827
6828 * configure.in: Detect alsa/asoundlib.h also.
6829 * configure: Regenerate.
6830
68312006-12-19 Jan Djärv <jan.h.d@swipnet.se>
6832
6833 * configure.in: Check if GTK+ compiles at all.
6834
68352006-12-10 Andreas Schwab <schwab@suse.de>
6836
6837 * configure.in: Remove check for struct timezone, its result is
6838 never used.
6839
68402006-12-08 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
6841
6842 * configure.in: Add support for Solaris 10 on x86-64.
6843
68442006-12-08 Jan Djärv <jan.h.d@swipnet.se>
6845
6846 * INSTALL (DETAILED BUILDING AND INSTALLATION): Document usage
6847 of PKG_CONFIG_PATH.
6848
68492006-12-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6850
6851 * configure.in (HAVE_SYNC): New test.
6852
68532006-12-03 Glenn Morris <rgm@gnu.org>
6854
6855 * Makefile.in: Fix Copyright format.
6856
6857 * configure.in (AH_TOP): Add missing Copyright year.
6858
6859 * update-subdirs: Add missing Copyright years.
6860
68612006-11-27 Chris Moore <christopher.ian.moore@gmail.com>
6862
6863 * Makefile.in: Touch only the parts of the share/emacs directory
6864 specific to this version.
6865
68662006-11-26 Chong Yidong <cyd@stupidchicken.com>
6867
6868 * configure.in (HAVE_X86_64_LIB64_DIR): New test.
6869
68702006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6871
6872 * configure.in (HAVE_CANCELMENUTRACKING): Remove test.
6873
68742006-11-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6875
6876 * configure.in: Prefer X11 to Carbon only when some X-specific
6877 option is specified (Thanks to Jan Djärv and Andreas Schwab).
6878
68792006-11-04 Romain Francoise <romain@orebokech.com>
6880
6881 * Makefile.in (bootstrap-clean-before): Fix typo.
6882 Use new target `bootstrap-clean' in the leim subdirectory.
6883
68842006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6885
6886 * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
6887
68882006-10-30 Chong Yidong <cyd@stupidchicken.com>
6889
6890 * make-dist: Add makefile.w32-in to the man, lispref and lispintro
6891 directories.
6892
68932006-10-29 Jeramey Crawford <jeramey@jeramey.com>
6894
6895 * configure.in: Enable x86-64 OpenBSD compilation.
6896
68972006-10-28 Glenn Morris <rgm@gnu.org>
6898
6899 * AUTHORS: Add cal-html.el author.
6900
69012006-10-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6902
6903 * make-dist: Make links to mac/make-package and
6904 mac/Emacs.app/Contents/Resources/Emacs.icns.
6905
69062006-10-27 Chong Yidong <cyd@stupidchicken.com>
6907
6908 * README: Bump version number to 22.0.90.
6909
69102006-10-23 Andreas Schwab <schwab@suse.de>
6911
6912 * configure.in: Make sure x_default_search_path is always set even
6913 when x_libraries is empty, and look in .../share as well for each
6914 library directory.
6915
69162006-09-28 Kenichi Handa <handa@m17n.org>
6917
6918 * configure.in (locallisppath): Don't include leim dir.
6919 (lisppath): Include leim dir.
6920
69212006-09-15 Jay Belanger <belanger@truman.edu>
6922
6923 * COPYING: Replace "Library Public License" by "Lesser Public
6924 License" throughout.
6925
69262006-09-11 Paul Eggert <eggert@cs.ucla.edu>
6927
6928 * make-dist (EMACS): Exit and fail if the EMACS environment
6929 variable is set to something other than an absolute file name.
6930
69312006-08-16 Andreas Schwab <schwab@suse.de>
6932
6933 * configure.in (PKG_CHECK_MODULES): Use AS_MESSAGE_LOG_FD instead
6934 of hardcoding it.
6935
69362006-08-16 Richard Stallman <rms@gnu.org>
6937
6938 * INSTALL.CVS: Clean up wording.
6939
69402006-07-14 Eli Zaretskii <eliz@gnu.org>
6941
6942 * configure.in (PKG_CHECK_MODULES): Redirect the output of
6943 $PKG_CONFIG --exists "$2" to config.log.
6944 * configure: Regenerate.
6945
1a71cb28 69462006-07-09 Richard Stallman <rms@gnu.org>
067d23c9
KY
6947
6948 * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections.
6949
69502006-07-09 Kim F. Storm <storm@cua.dk>
6951
6952 * CONTRIBUTE: Use outline format.
6953 Add section on copyright years (from admin/notes/years).
6954
69552006-07-08 Eli Zaretskii <eliz@gnu.org>
6956
6957 * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config
6958 to /dev/null, since we don't need the error message, just the
6959 exit status.
6960
69612006-07-07 Eli Zaretskii <eliz@gnu.org>
6962
6963 * CONTRIBUTE: Slight formatting changes and typo fixes.
6964 Add description of NEWS markings.
6965
69662006-07-07 Kim F. Storm <storm@cua.dk>
6967
6968 * CONTRIBUTE: Mention INSTALL.CVS.
6969
69702006-07-05 Romain Francoise <romain@orebokech.com>
6971
6972 * make-dist (top-level): Add CONTRIBUTE.
6973
69742006-07-04 Richard Stallman <rms@gnu.org>
6975
6976 * CONTRIBUTE: Much rewrite.
6977
69782006-07-04 Nick Roberts <nickrob@snap.net.nz>
6979
6980 * CONTRIBUTE: New file.
6981
69822006-06-24 Eli Zaretskii <eliz@gnu.org>
6983
6984 * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.
6985
69862006-05-18 Jan Djärv <jan.h.d@swipnet.se>
6987
6988 * configure.in: Add check for ALSA.
6989
69902006-05-06 Eli Zaretskii <eliz@gnu.org>
6991
6992 * Makefile.in (INFO_FILES): Remove emacs-xtra.
6993
6994 * info/dir: Remove the Emacs-Xtra entry.
6995
69962006-04-20 Ramprasad B <ramprasad_i82@yahoo.com>
6997
6998 Update copyright year(s) in many files.
6999
70002006-04-01 Eli Zaretskii <eliz@gnu.org>
7001
7002 * configure: Regenerated.
7003
70042006-04-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
7005
7006 * configure.in (HAVE_XAW3D): Disable Xaw3d check if
7007 --without-toolkit-scroll-bars was specified.
7008
70092006-04-01 Christoph Bauer <Christoph.Bauer@lms-gmbh.de> (tiny change)
7010
7011 * configure.in (hppa*-hp-hpux1[1-9]*): Add -D_INCLUDE__STDC_A1_SOURCE
7012 to CFLAGS. Update Copyright years written to src/config.in.
7013
70142006-03-18 Claudio Fontana <claudio@gnu.org>
7015
7016 * Makefile.in (INFO_FILES): New variable, contains all Info file names.
7017 (install-arch-indep, uninstall): Use $(INFO_FILES) to specify files
7018 to be installed/uninstalled.
7019 (uninstall): Invoke "$(INSTALL_INFO) --remove" to remove references
7020 to Info files installed by Emacs.
7021
70222006-03-03 Claudio Fontana <claudio@gnu.org>
7023
7024 * Makefile.in (install, uninstall): Add DESTDIR variable to
7025 support staged installations.
7026
70272006-02-14 Richard M. Stallman <rms@gnu.org>
7028
7029 * configure.in (s390x-*-linux-gnu*): New configuration.
7030
70312006-01-31 Jan Djärv <jan.h.d@swipnet.se>
7032
7033 * configure.in: Require GTK 2.4 or newer.
7034
70352006-01-29 Michael Olson <mwolson@gnu.org>
7036
7037 * Makefile.in (install-arch-indep, uninstall): Add ERC.
7038 * info/dir (ERC): New entry.
7039
70402006-01-29 Eli Zaretskii <eliz@gnu.org>
7041
7042 * info/dir: Fix last change.
7043
70442006-01-28 Luc Teirlinck <teirllm@auburn.edu>
7045
7046 * Makefile.in (install-arch-indep, uninstall): Add rcirc.
7047
70482006-01-27 Eli Zaretskii <eliz@gnu.org>
7049
7050 * info/dir: Untabify the whole file.
7051 (Rcirc): New entry.
7052
70532006-01-12 Andreas Schwab <schwab@suse.de>
7054
7055 * configure.in: Move AC_AIX and AC_GNU_SOURCE before first compile
7056 check.
7057
70582006-01-02 Chong Yidong <cyd@stupidchicken.com>
7059
7060 * configure.in: Use -Wno-pointer-sign if available.
7061
70622005-12-29 Andreas Schwab <schwab@suse.de>
7063
7064 * config.guess, config.sub: Updated from master source.
7065
70662005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
7067
7068 * configure.in: Use amdx86-64 for freebsd on x86_64.
7069
70702005-11-22 Romain Francoise <romain@orebokech.com>
7071
7072 * make-dist: Add etc/images/icons.
7073
70742005-11-03 Andreas Schwab <schwab@suse.de>
7075
7076 * configure.in: Use GZIP_PROG instead of GZIP.
7077
90eacf99 7078 * Makefile.in (GZIP_PROG): Rename from GZIP.
067d23c9
KY
7079 (install-arch-indep): Adjust.
7080
70812005-11-01 Andreas Schwab <schwab@suse.de>
7082
7083 * Makefile.in (bootstrap): Fix dependencies for parallel build.
7084 (bootfast): Likewise.
7085
70862005-11-01 Romain Francoise <romain@orebokech.com>
7087
7088 * configure.in: Check for gzip.
7089
7090 * Makefile.in (install): Compress source files.
7091
70922005-10-24 Steven Tamm <steventamm@mac.com>
7093
7094 * configure.in: Fix darwin386 configuration issue.
7095
70962005-10-22 Eli Zaretskii <eliz@gnu.org>
7097
7098 * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure.
7099
71002005-10-17 Bill Wohler <wohler@newt.com>
7101
7102 * make-dist: Create and populate etc/images/low-color.
7103
71042005-10-15 Bill Wohler <wohler@newt.com>
7105
7106 * make-dist: Create and populate etc/images/gud.
7107
71082005-10-08 Richard M. Stallman <rms@gnu.org>
7109
7110 * make-dist (tempparent): Don't check for 14-char file name limit.
7111
71122005-10-07 Romain Francoise <romain@orebokech.com>
7113
7114 * make-dist: Add etc/images/ezimage and etc/images/mail
7115 directories. Install images in etc/images.
7116
71172005-10-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7118
7119 * configure.in: Prefer Carbon if --enable-carbon-app or
7120 --with-carbon is explicitly specified even when X11 is detected.
7121
71222005-09-15 Ulf Jasper <ulf.jasper@web.de>
7123
7124 * Makefile.in (install-arch-indep, uninstall):
7125 Handle newsticker manual.
7126 (info): Add - to commands.
7127
71282005-09-10 Giuseppe Scrivano <gscrivano@gmail.com>
7129
7130 Remove the MAXPATHLEN limitations:
7131
7132 * configure.in (AC_CHECK_FUNCS): Check for get_current_dir_name.
7133
71342005-09-09 Eli Zaretskii <eliz@gnu.org>
7135
7136 * configure.in <lynxsos*>: Support for LynxOS on PPC.
7137 * configure: Regenerate.
7138
71392005-09-05 Paul Eggert <eggert@cs.ucla.edu>
7140
7141 * config.guess, config.sub: Updated from master source.
7142
71432005-08-03 Juanma Barranquero <lekktu@gmail.com>
7144
7145 * .cvsignore: Add `lock'.
7146
71472005-07-28 Juanma Barranquero <lekktu@gmail.com>
7148
7149 * .cvsignore: Add `data' and `site-lisp' (for in-place installs).
7150
71512005-07-26 Paul Eggert <eggert@cs.ucla.edu>
7152
7153 Merge gnulib getopt implementation into Emacs.
7154
7155 * Makefile.in (AUTOCONF_INPUTS): New macro.
7156 ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
7157 so that these files also depend on m4/getopt.m4.
7158 * configure.in: Configure getopt by including m4/getopt.m4,
7159 and configuring a getopt replacement if necessary.
7160 * make-dist: Add m4 subdirectory. Unlink lib-src/getopt.h.
7161 * m4/getopt.m4: New file.
7162
71632005-07-06 Lute Kamstra <lute@gnu.org>
7164
7165 * configure.in: Fix capitalization.
7166
71672005-07-04 Lute Kamstra <lute@gnu.org>
7168
7169 Update FSF's address in GPL notices.
7170
71712005-06-19 Jérôme Marant <jerome@marant.org>
7172
7173 * Makefile.in (epaths-force): Protect both lisppath and
7174 buildlisppath from whitespace.
7175
71762005-06-08 Steven Tamm <steventamm@mac.com>
7177
090bd7cb 7178 * configure.in: Support Darwin/MacOSX on Intel.
067d23c9
KY
7179
71802005-06-06 Jan Djärv <jan.h.d@swipnet.se>
7181
7182 * configure.in (HAVE_CANCELMENUTRACKING): New test.
7183
1a71cb28 71842005-05-19 Jérôme Marant <jmarant@marant.org>
067d23c9
KY
7185
7186 * configure.in: Add --enable-locallisppath.
7187
71882005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7189
7190 * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
90eacf99
SM
7191 Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS.
7192 Define USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
067d23c9
KY
7193
71942005-05-07 Jérôme Marant <jerome@marant.org>
7195
7196 * make-dist: Remove references to makefile.nt and makefile.def.
7197 Include widgets and images subdirectories of etc. Do not exclude
7198 ldefs-boot.el.
7199
72002005-04-23 Andreas Schwab <schwab@suse.de>
7201
7202 * configure.in: Remove duplicate match for powerpc configuration.
7203
72042005-04-20 Thien-Thi Nguyen <ttn@gnu.org>
7205
7206 * configure.in: Check for <pwd.h>.
7207
72082005-04-14 Lute Kamstra <lute@gnu.org>
7209
7210 * make-dist: Distribute all ChangeLog files in lisp/.
7211 Don't distribute ldefs-boot.el.
7212 lisp/makefile.nt no longer exists.
7213
72142005-04-13 Lute Kamstra <lute@gnu.org>
7215
7216 * make-dist: Don't use DONTCOMPILE from lisp/Makefile.in; check
7217 for "no-byte-compile: t" in the file instead.
7218
72192005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
7220
7221 * configure.in <Motif>: Don't let a special LessTif/Motif1.2 install
7222 shadow the main Lesstif/Motif-2.1 libs and includes.
7223
72242005-03-10 Jan Djärv <jan.h.d@swipnet.se>
7225
7226 * configure.in: Only add XASSERTS to cppflags.
7227
72282005-03-04 Jan Djärv <jan.h.d@swipnet.se>
7229
7230 * configure.in: Added --enable-asserts.
7231
72322005-02-09 Kim F. Storm <storm@cua.dk>
7233
7234 Change release version from 21.4 to 22.1 throughout.
7235 Change development version from 21.3.50 to 22.0.50.
7236
72372005-01-19 Steven Tamm <steventamm@mac.com>
7238
7239 * configure.in: Check for <sys/utsname.h>.
7240
72412004-12-11 Kim F. Storm <storm@cua.dk>
7242
7243 * Makefile.in (info): Undo 2004-12-05 change.
7244
72452004-12-08 Luc Teirlinck <teirllm@auburn.edu>
7246
7247 * info/dir (File): Add URL and Org Mode manuals.
7248 * Makefile.in (install-arch-indep, uninstall): Add url and org
7249 manuals.
7250
72512004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
7252
7253 * configure.in (INLINE, RE_TRANSLATE_P): Move patches mistakenly
7254 committed to src/config.in.
7255
72562004-12-07 Jan Djärv <jan.h.d@swipnet.se>
7257
7258 * configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
7259 pthreads and define HAVE_GTK_AND_PTHREAD.
7260
72612004-12-05 Richard M. Stallman <rms@gnu.org>
7262
7263 * Makefile.in (info): Ignore errors building info files.
7264
72652004-11-27 Eli Zaretskii <eliz@gnu.org>
7266
7267 * config.bat: If 8-byte alignment is not supported, define
7268 NO_DECL_ALIGN in src/config.h, instead of trivially defining
7269 DECL_ALIGN. Protect & with "" because & is special for cmd.exe;
7270 filter through Sed to remove the quotes.
7271
72722004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
7273
7274 * info/.cvsignore: Ignore everything. It's OK since .cvsignore does
7275 not apply to files explicitly `cvs add'ed.
7276
72772004-11-12 Eli Zaretskii <eliz@gnu.org>
7278
7279 * config.bat: Don't require djecho.exe for the v1.x build.
7280 Add a test for DECL_ALIGN support, and add a trivial definition to
7281 src/config.h if 8-byte alignment is not supported.
7282
72832004-11-08 Kim F. Storm <storm@cua.dk>
7284
7285 * Makefile.in (bootstrap, bootstrap-clean-before): Remove .elc
7286 files before building.
7287 (bootfast, bootstrap-clean-before-fast): New targets, like
7288 bootstrap but don't remove .elc files.
7289
72902004-11-06 Lars Brinkhoff <lars@nocrew.org>
7291
7292 * configure.in: Add check for getrusage.
7293
72942004-11-02 Jan Djärv <jan.h.d@swipnet.se>
7295
7296 * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION):
7297 New tests for new and old GTK file dialogs.
7298 (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set
7299 to no.
7300
73012004-10-20 Jan Djärv <jan.h.d@swipnet.se>
7302
7303 * configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
7304 can be set. Remove SETARCH test.
7305
73062004-10-08 Steven Tamm <steventamm@mac.com>
7307
ed9265fc 7308 * configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h.
067d23c9
KY
7309
73102004-10-06 Jan Djärv <jan.h.d@swipnet.se>
7311
7312 * configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
7313 AC_MSG_WARN. Move output of warning message to end of configure run.
7314
73152004-10-05 Jan Djärv <jan.h.d@swipnet.se>
7316
7317 * configure.in (HAVE_RANDOM_HEAPSTART): Rename HAVE_EXECSHIELD.
7318 Run test to see if heap start address is random.
7319
73202004-09-29 Miles Bader <miles@gnu.org>
7321
7322 * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
7323 if setarch is present.
7324
73252004-09-25 Jan Djärv <jan.h.d@swipnet.se>
7326
7327 * configure.in (HAVE_EXECSHIELD): Only define on x86.
7328
73292004-09-24 Jan Djärv <jan.h.d@swipnet.se>
7330
7331 * configure.in: Check for exec-shield.
7332
1a71cb28
GM
73332004-09-04 Reiner Steib <Reiner.Steib@gmx.de>
7334
7335 * Makefile.in (install-arch-indep): Add pgg and sieve.
7336
7337 * info/.cvsignore: Added pgg and sieve.
7338
067d23c9
KY
73392004-08-06 Andreas Schwab <schwab@suse.de>
7340
7341 * Makefile.in (install-arch-indep, uninstall): Add flymake.
7342
73432004-07-31 Eli Zaretskii <eliz@gnu.org>
7344
7345 * config.bat: Update URLs in the comments.
7346
067d23c9
KY
73472004-07-05 Andreas Schwab <schwab@suse.de>
7348
7349 * Makefile.in (install-arch-indep): Remove .arch-inventory files.
7350
73512004-06-21 Kenichi Handa <handa@m17n.org>
7352
7353 * make-dist: Link leim-ext.el into tempdir.
7354
73552004-06-15 Luc Teirlinck <teirllm@auburn.edu>
7356
7357 * info/dir (File): Add emacs-xtra.
7358 * Makefile.in (install-arch-indep, uninstall): Add emacs-xtra.
7359
73602004-06-12 Juri Linkov <juri@jurta.org>
7361
7362 * info/dir: Move menu help lines from `* Menu:' to file header.
7363 Describe the purpose of a red *.
7364
73652004-05-04 Dave Love <fx@gnu.org>
7366
7367 * configure.in: Don't use `extrasub'.
7368
73692004-04-29 Dave Love <fx@gnu.org>
7370
7371 * configure.in: Don't forget to quote args to `test'.
7372
73732004-04-24 Thien-Thi Nguyen <ttn@gnu.org>
7374
7375 * autogen.sh: Update filename in "please read" message.
7376
73772004-04-17 Richard M. Stallman <rms@gnu.org>
7378
7379 * INSTALL: Move the info about site-lisp dirs,
7380 and say uninstalled Emacs looks there too.
7381
73822004-04-04 Eli Zaretskii <eliz@gnu.org>
7383
7384 * config.bat (lib-src): Recognize comment lines in Makefile.in
7385 that have a TAB after the #, to avoid errors in preprocessing with
7386 GCC 3.3.3.
7387
73882004-03-31 Luc Teirlinck <teirllm@auburn.edu>
7389
7390 * Makefile.in: Mention in comment that `make maintainer-clean'
7391 deletes .elc files.
7392
73932004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
7394
7395 * update-subdirs: Add local variables to prevent byte-compiling.
7396
73972004-03-21 Dave Love <fx@gnu.org>
7398
7399 * configure.in: Fix previous change.
7400
74012004-03-18 Dave Love <fx@gnu.org>
7402
7403 * configure.in: Add -znocombreloc to LDFLAGS if compiler supports it.
7404
74052004-03-15 Luc Teirlinck <teirllm@auburn.edu>
7406
7407 * info/dir (File): Add SMTP and SES.
7408
74092004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
7410
7411 * Makefile.in (maintainer-clean): Clean in the lisp dir as well.
7412 (bootstrap): Use the new bootstrap-prepare target in lisp.
7413
74142004-02-18 Kim F. Storm <storm@cua.dk>
7415
7416 * INSTALL.CVS: Add info about ssh/cvs related problems and work-around.
7417
74182004-02-16 Eli Zaretskii <eliz@gnu.org>
7419
7420 * make-dist: Don't link index.*perm and permute-index into tempdir.
7421
74222004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
7423
7424 * AUTHORS (JonathanYavner): Rename testcover-*.el to tcover-*.el
7425 to match previous changes by Eli Zaretskii.
7426
74272004-02-09 Luc Teirlinck <teirllm@auburn.edu>
7428
7429 * Makefile.in: Set CDPATH to an empty string.
7430
74312004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
7432
7433 * configure.in <darwin>: Use fink packages if available.
7434
74352004-01-25 Jérôme Marant <jmarant@free.fr> (tiny change)
7436
7437 * make-dist (lispref): Do include lispref/index.texi.
7438
74392004-01-06 Eric Hanchrow <offby1@blarg.net>
7440
7441 * make-dist (tempdir): Include cursors in nt/icons.
7442
74432003-12-30 Eli Zaretskii <eliz@gnu.org>
7444
7445 * INSTALL.CVS: Renamed from INSTALL-CVS to avoid file-name
7446 clashes with install-sh on 8+3 filesystems.
7447
1a71cb28 74482003-12-24 Miles Bader <miles@gnu.org>
067d23c9
KY
7449
7450 * .cvsignore: Add .arch-inventory.
7451
74522003-12-24 Andreas Schwab <schwab@suse.de>
7453
7454 * configure.in: Check for <sys/socket.h>. Include it before
7455 including <net/if.h>. Move check for <net/if.h> before its use.
7456
74572003-12-24 Jan Djärv <jan.h.d@swipnet.se>
7458
7459 * Makefile.in (install-arch-dep): Don't let cd output go into
7460 pipe for carbon_appdir.
7461
74622003-12-24 Andreas Schwab <schwab@suse.de>
7463
7464 * configure.in (PKG_CHECK_MODULES): Fix quoting.
7465
74662003-12-01 Andreas Schwab <schwab@suse.de>
7467
7468 * configure.in (powerpc-apple-darwin*): Use ${CC-cc} instead of
7469 hardcoding gcc.
7470
74712003-11-16 Jan Djärv <jan.h.d@swipnet.se>
7472
7473 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
7474 multiple displays.
7475 Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
7476
74772003-09-23 Dave Love <fx@gnu.org>
7478
7479 * configure.in: Check members of struct ifreq.
7480
74812003-09-14 Kim F. Storm <storm@cua.dk>
7482
7483 * configure.in: Add checks for sys/ioctl.h and net/if.h.
7484
74852003-09-12 Luc Teirlinck <teirllm@mail.auburn.edu>
7486
7487 * Makefile.in (install-arch-indep, uninstall): Add SES manual.
7488
74892003-08-18 Lute Kamstra <lute@gnu.org>
7490
7491 * configure.in: Revert the change of 2003-07-29 as GTK+ 2.2 is not
7492 required anymore.
7493
74942003-08-07 Andrew Choi <akochoi@shaw.ca>
7495
7496 * configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
7497 option instead of -traditional-cpp for CPP.
7498
74992003-07-29 Richard M. Stallman <rms@gnu.org>
7500
7501 * configure.in (HAVE_XIM): Define if XIM is available.
7502
75032003-07-29 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
7504
7505 * configure.in: The function gtk_window_set_icon_from_file was
7506 introduced in GTK+ 2.2, so check for that release.
7507
75082003-07-23 Andreas Schwab <schwab@suse.de>
7509
7510 * configure.in: Add --enable-maintainer-mode, substitute MAINT.
7511
7512 * Makefile.in (YACC): Remove, not used.
7513 (MAINT): Don't set.
7514 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
7515 disable dependency on ${srcdir}/configure.in when maintainer mode
7516 is disabled.
7517
75182003-07-22 Dave Love <fx@gnu.org>
7519
7520 * configure.in: Make XRegisterIMInstantiateCallback test depend on
7521 HAVE_X11, not with_xim.
7522 (HAVE_CRTIN): Provide template.
7523 <with_png>: Test for png.h and libpng/png.h.
7524
75252003-07-15 Andreas Schwab <schwab@suse.de>
7526
7527 * configure.in: Temporarily leave quoting for AC_DEFINE.
7528
75292003-07-13 Stefan Monnier <monnier@cs.yale.edu>
7530
7531 * configure.in: Check for posix_memalign.
7532
75332003-07-12 Richard M. Stallman <rms@gnu.org>
7534
7535 * configure.in [netbsd systems]: Define HAVE_CRTIN properly.
7536
75372003-07-09 Kim F. Storm <storm@cua.dk>
7538
7539 * INSTALL (DETAILED BUILDING AND INSTALLATION): Describe new
7540 functionality of --without-xim.
7541
75422003-06-29 Dave Love <fx@gnu.org>
7543
7544 * configure.in: Fix XRegisterIMInstantiateCallback check for gcc.
7545
75462003-06-23 Dave Love <fx@gnu.org>
7547
7548 * configure.in: Check for sys/_mbstate_t.h.
7549 Test XRegisterIMInstantiateCallback prototype.
7550 (AH_BOTTOM): Define DO_BLOCK_INPUT, my_strftime.
7551
75522003-06-06 Dave Love <fx@gnu.org>
7553
7554 * configure.in: Check for locale.h.
7555
75562003-06-05 Dave Love <fx@gnu.org>
7557
7558 * configure.in: Check for memcpy, mempcpy, mblen, mbrlen.
7559 Use AC_FUNC_STRFTIME, AC_STRUCT_TIMEZONE, AC_TYPE_MBSTATE_T.
7560 (NLIST_STRUCT): Don't define.
7561 (AH_BOTTOM): Define my_strftime.
7562
75632003-06-02 Richard M. Stallman <rms@gnu.org>
7564
7565 * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
7566
75672003-05-24 Andreas Schwab <schwab@suse.de>
7568
7569 * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
7570 bzero, and bcmp.
7571
75722003-05-22 Dave Love <fx@gnu.org>
7573
7574 * configure.in: Remove redundant test for term.h. Test for difftime.
7575
75762003-05-20 Dave Love <fx@gnu.org>
7577
7578 * configure.in: Append * to s390-*-linux-gnu case.
7579 (LIBMAIL) <lockfile>: Don't define.
7580
067d23c9
KY
75812003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
7582
7583 * INSTALL (* GNU/Linux development packages): Mention Debian and
7584 RedHat package names.
7585
75862003-04-30 Boyd Lynn Gerber <gerberb@zenez.com>
7587
7588 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
7589
75902003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
7591
7592 * INSTALL (* GNU/Linux development packages): Tell people to
7593 install additional packages for compiling Emacs.
7594
1a71cb28
GM
75952003-04-30 Richard M. Stallman <rms@gnu.org>
7596
7597 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
7598
75992003-04-28 Francesco Potortì <pot@gnu.org>
7600
7601 * configure.in: Undo last (RMS') change, as it is useless, per
7602 Dave Love.
7603
76042003-04-08 Richard M. Stallman <rms@gnu.org>
7605
7606 * configure.in: Put #include of jpeglib.h at start of line.
7607
067d23c9
KY
76082003-04-06 Francesco Potortì <pot@gnu.org>
7609
7610 * configure.in: Use the same configuration for all aix5, not just
7611 aix5.1.
7612
76132003-03-16 Nelson H. F. Beebe <beebe@math.utah.edu> (tiny change)
7614
7615 * configure.in: Check for need for bigtoc support on IBM AIX for
7616 solving a linker table overflow problem.
7617
76182003-03-03 Rob Browning <rlb@defaultvalue.org>
7619
7620 * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
7621 (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
7622 over bzero, bcmp, and bcopy.
7623
76242003-02-23 Simon Josefsson <jas@extundo.com>
7625
7626 * Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
7627
76282003-02-21 Klaus Zeitler <kzeitler@lucent.com>
7629
7630 * configure.in: Set new hpux10-20.h as "major" include for 10.20.
7631
76322003-02-13 Robert J. Chassell <bob@rattlesnake.com> (tiny change)
7633
7634 * INSTALL (* Extra fonts): Say that Emacs doesn't include fonts.
7635
76362003-02-08 Andreas Schwab <schwab@suse.de>
7637
7638 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
7639 instead of the substitution.
7640
76412003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
7642
7643 * Makefile.in: Use @EXEEXT@ for Cygwin.
7644 Use USERNAME if LOGNAME is not set (for Cygwin).
7645
7646 * configure.in: Add opsys=cygwin.
7647
76482003-01-22 Andreas Schwab <schwab@suse.de>
7649
7650 * configure.in: Set HAVE_MENUS=yes when HAVE_CARBON=yes instead of
7651 redefining it explicitly in src/config.in.
7652
76532003-01-22 Markus Rost <rost@math.ohio-state.edu>
7654
7655 * Makefile.in (bootstrap): Make bootstrap-after.
7656
76572003-01-20 Jan Djärv <jan.h.d@swipnet.se>
7658
7659 * configure.in: Fix --with-gtk.
7660
76612003-01-19 Jan Djärv <jan.h.d@swipnet.se>
7662
090bd7cb 7663 * configure.in: Add --with-gtk, --with-x-toolkit=gtk.
067d23c9
KY
7664
7665 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add text about GTK.
7666
76672003-01-14 Francesco Potortì <pot@gnu.org>
7668
7669 * configure.in (m68k-motorola-sysv): Remove (obsolete).
7670
76712003-01-07 Steven Tamm <steventamm@mac.com>
7672
7673 * configure.in: New option, --enable-carbon-app, to specify
7674 that the application should be installed
7675 * Makefile.in (install-arch-dep): On Mac OS X, install the
090bd7cb 7676 Emacs.app application if carbon-app is enabled.
067d23c9
KY
7677
76782003-01-06 Dave Love <fx@gnu.org>
7679
7680 * configure.in: Check for nl_langinfo.
7681 [!HAVE_SIZE_T]: Fix typedef.
7682
76832003-01-06 David Kastrup <dak@gnu.org>
7684
7685 * Makefile.in (INSTALL_INFO): Get install-info command from configure.
7686
7687 * configure.in: Add tests for install-info.
7688
76892002-12-09 Markus Rost <rost@math.ohio-state.edu>
7690
7691 * configure.in (*-sunos5*, *-solaris*): Revert previous change -
7692 use again sol2-6 instead of sol2-8.
7693
76942002-12-09 Dave Love <fx@gnu.org>
7695
7696 * configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
7697
76982002-12-08 Andreas Schwab <schwab@suse.de>
7699
7700 * Makefile.in (install-arch-indep): Revert last change.
7701
77022002-11-27 Dave Love <fx@gnu.org>
7703
7704 * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST.
7705 Check for __sys_siglist too. Check for memset.
7706 Use AC_FUNC_GETPGRP. Add mipsel-*-linux-gnu* target.
7707
77082002-11-22 Juanma Barranquero <lektu@terra.es>
7709
7710 * config.guess, config.sub: Updated from master source.
7711
77122002-11-19 Karl Fogel <kfogel@red-bean.com>
7713
7714 * autogen.sh: New file.
7715
1a71cb28 77162002-11-18 Dave Love <fx@gnu.org>
067d23c9
KY
7717
7718 * configure.in: Tidy up various quoting issues throughout.
7719 Use AC_GNU_SOURCE.
7720 (AH_BOTTOM): Fix #endif protecting config.h. Maybe include
7721 alloca.h. Define GC_SETJMP_WORKS, GC_LISP_OBJECT_ALIGNMENT.
7722 Maybe define bcopy, bzero, bcmp.
7723 (powerpcle-*-solaris2.5*, powerpcle-*-solaris2*): Remove (use
7724 non-existent machine file).
7725 (sys/vlimit.h, sys/resource.h, fsync, __restrict): Test for.
7726 (term.h, X11/Xaw3d/Scrollbar.h): Avoid warning from test.
7727 (nlist.h): Move test up.
7728
77292002-11-18 Markus Rost <rost@math.ohio-state.edu>
7730
7731 * configure.in (*-sunos5*, *-solaris*): Use sol2-8.
7732
77332002-11-14 Francesco Potortì <pot@gnu.org>
7734
7735 * configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
7736
77372002-11-11 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
7738
7739 * Makefile.in (install-arch-indep): Prepend $(srcdir)/ to lisp.
7740
77412002-11-08 Dave Love <fx@gnu.org>
7742
7743 * configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf 2.54.
7744 (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
7745
77462002-11-07 Miles Bader <miles@gnu.org>
7747
7748 * Makefile.in (maybe_bootstrap): Fix shell variable usage.
7749 Handle separate-build-dir case.
7750
77512002-11-06 Richard M. Stallman <rms@gnu.org>
7752
7753 * Makefile.in (maybe_bootstrap): Add doublequotes to make it
7754 bulletproof. $bar may be empty when there are no .elc files.
7755
77562002-10-30 Dave Love <fx@gnu.org>
7757
7758 * configure.in: Require autoconf 2.53. Test for pty.h,
7759 sys/mman.h, sys/param.h, mremap, memmove.
7760 (AH_BOTTOM): Maybe include strings.h. Add local variables for mode.
7761 (AC_PROG_YACC): Delete.
7762 (size_t): Use AC_CHECK_TYPES.
7763 (AH_TOP): Up-date copyright.
7764
77652002-10-01 Juanma Barranquero <lektu@terra.es>
7766
7767 * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
7768
77692002-09-19 Richard M. Stallman <rms@gnu.org>
7770
7771 * configure.in: Fix the LessTif-directory-finder for real.
7772
77732002-09-14 Richard M. Stallman <rms@gnu.org>
7774
7775 * Makefile.in (maybe_bootstrap): Test for complete absence
7776 of compiled Lisp files.
7777
77782002-09-11 Stefan Monnier <monnier@cs.yale.edu>
7779
7780 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
7781 (bootstrap-clean-after): Delete.
7782 (bootstrap): Make the sequencing explicit.
7783
77842002-09-10 Richard M. Stallman <rms@gnu.org>
7785
7786 * configure.in: Fix previous LessTif change.
7787
77882002-09-09 Richard M. Stallman <rms@gnu.org>
7789
7790 * configure.in (powerpcle-*-solaris2.5*): New configuration.
7791 (powerpcle-*-solaris*): Use version 2.6 as default.
7792 (*-sunos5.6*, *-solaris2.6*): New alternative.
7793 (*-sunos5*): Use version 2.6 as default.
7794
77952002-09-06 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7796
7797 * configure.in: Fix typo.
7798
77992002-09-05 Richard M. Stallman <rms@gnu.org>
7800
7801 * configure.in: Look for LessTif in /usr/X11R6/LessTif/ before Motif.
7802
7803 * configure.in: Handle $GCC_LINK_TEST_OPTIONS and
7804 $NON_GCC_LINK_TEST_OPTIONS after the AC_PROG_... macros.
7805
78062002-08-26 Kim F. Storm <storm@cua.dk>
7807
7808 * Makefile.in (install-arch-indep): Do not remove DOC file
7809 when it is the only DOC file installed; this is the case when
7810 CANNOT_DUMP is defined. From Joe Buehler (tiny change).
7811
78122002-07-24 Markus Rost <rost@math.ohio-state.edu>
7813
7814 * configure.in: Fix typo.
7815
78162002-07-24 Richard M. Stallman <rms@gnu.org>
7817
7818 * configure.in: Don't print anything special about gamedir.
7819
7820 * configure.in: Delete nonstandard --with-game-user option.
7821
78222002-07-21 Richard M. Stallman <rms@gnu.org>
7823
7824 * Makefile.in (gamedir, localstatedir): New variables.
7825 (epaths-force): Insert value of gamedir into PATH_GAME.
7826
7827 * configure.in (gamedir): Handle it like lispdir.
7828 (--with-game-dir option): Delete.
7829
78302002-06-21 Pavel Janík <Pavel@Janik.cz>
7831
7832 * configure.in: Add support for mipseb-*-netbsd* machines.
7833
78342002-06-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7835
7836 * Makefile.in (install-arch-indep, uninstall): Add Tramp.
7837
78382002-06-17 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
7839
7840 * info/dir (File): Add an entry for Tramp.
7841
78422002-06-17 Eli Zaretskii <eliz@is.elta.co.il>
7843
7844 * INSTALL-CVS: New file.
7845
78462002-06-07 Andreas Schwab <schwab@suse.de>
7847
7848 * configure.in (x86_64-*-linux-gnu*): New system.
7849
78502002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
7851
7852 * config.bat: Handle the case when lispintro is truncated to lispintr.
7853
78542002-05-26 Paul Eggert <eggert@twinsun.com>
7855
7856 * config.guess, config.sub: Updated from master source.
7857
78582002-05-09 Richard M. Stallman <rms@gnu.org>
7859
7860 * configure.in (emacs_cv_speed_t): Add square brackets for clarity.
7861
78622002-05-04 Pavel Janík <Pavel@Janik.cz>
7863
7864 * make-dist: Do not distribute lock/ directory.
7865
78662002-04-30 Andrew Choi <akochoi@shaw.ca>
7867
7868 * configure.in: Provide documentation string when defining
7869 variable HAVE_CARBON. Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
7870 and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
7871
1a71cb28 78722002-04-29 Colin Walters <walters@verbum.org>
067d23c9
KY
7873
7874 * configure.in: Delete configure check for access to the game user.
7875
78762002-04-29 Pavel Janík <Pavel@Janik.cz>
7877
7878 * make-dist: lwlib/Imakefile is removed.
7879
78802002-04-26 Andrew Choi <akochoi@shaw.ca>
7881
7882 * configure.in: Add support for powerpc-apple-darwin*.
7883 (HAVE_CARBON): Add.
7884
7885 * make-dist: Create directories in mac/Emacs.app.
7886
78872002-04-25 Pavel Janík <Pavel@Janik.cz>
7888
7889 * make-dist: lwlib-Xol* are removed.
7890
78912002-04-23 Andreas Schwab <schwab@suse.de>
7892
7893 * Makefile.in (MAINT): New variable.
7894 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
7895 instead of configure.in, to avoid running autoconf and autoheader
7896 unless explicitly requested.
7897
78982002-04-16 Eli Zaretskii <eliz@gnu.org>
7899
7900 * config.bat: Update for msdos/sed2v2.inp.
7901
79022002-04-15 Andreas Schwab <schwab@suse.de>
7903
7904 * Makefile.in ($(srcdir)/src/config.in): Generate using autoheader.
7905 * configure.in: Add config header templates to all AC_DEFINE and
7906 AC_DEFINE_UNQUOTED symbols.
7907 * make-dist: Run autoheader if necessary.
7908
79092002-04-10 Colin Walters <walters@verbum.org>
7910
7911 * configure.in: Add --game-dir, --game-user. Test to see if we
7912 can use them.
7913
79142002-04-08 Pavel Janík <Pavel@Janik.cz>
7915
7916 * configure.in: Add --with-sound.
7917
79182002-03-18 Kim F. Storm <storm@cua.dk>
7919
7920 * configure.in: Test for sendto, recvfrom, getsockopt, setsockopt,
7921 and getsockname functions. Test for sys/un.h include file.
7922
79232002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
7924
7925 * configure.in: Support AIX 5.1.
7926
79272002-03-10 Jan Djärv <jan.h.d@swipnet.se>
7928
7929 * configure.in: Added test for X Session Management (HAVE_X_SM).
7930
79312002-03-03 Richard M. Stallman <rms@gnu.org>
7932
7933 * Makefile.in (install-arch-indep): Use umask 022 for DOC* and lisp/.
7934 Run chown $${LOGNAME} on files installed by tar xvf.
7935
79362002-03-03 Kim F. Storm <storm@cua.dk>
7937
7938 * configure.in: Test for getpeername.
7939
79402002-03-01 Richard M. Stallman <rms@gnu.org>
7941
7942 * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b.
7943 (HAVE_GIF): Don't use old libungif versions that crash.
7944
79452002-02-26 Richard M. Stallman <rms@gnu.org>
7946
7947 * configure.in <making srcdir absolute>: Verify that PWD is correct,
7948 not just well-formed and valid.
7949 (mips-compaq-nonstopux*): New configuration.
7950
79512002-02-18 Paul Eggert <eggert@twinsun.com>
7952
7953 * make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
7954 "sed q" is a portable equivalent to plain "head -1".
7955
79562002-02-13 Richard M. Stallman <rms@gnu.org>
7957
7958 * Makefile.in (maybe_bootstrap): Do `exit 1'.
7959 (all): Don't depend on maybe_bootstrap here.
7960 (${SUBDIR}): Depend on it here instead.
7961
79622002-02-08 Richard M. Stallman <rms@gnu.org>
7963
7964 * Makefile.in (maybe_bootstrap): Add an infinite sleep-loop.
7965
79662002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
7967
7968 * configure.in: Recognize BSD/OS 5.0.
7969
79702002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
7971
7972 * make-dist: Make version checking in emacs.texi consistent with
7973 how we set it there.
7974
79752001-12-29 Kim F. Storm <storm@cua.dk>
7976
7977 * INSTALL: <CONFIGURATION BY HAND> Now requires autoconf 2.51.
7978
79792001-12-28 Richard M. Stallman <rms@gnu.org>
7980
7981 * configure.in: Test for mbsinit.
7982
79832001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
7984
7985 These changes make Leim part of the standard distribution:
7986
7987 * README: Add info about the `leim' directory.
7988
7989 * INSTALL: Remove text that describes Leim as a separate package.
7990
7991 * noleim-Makefile.in: File removed.
7992
7993 * make-dist: Don't copy noleim-Makefile.in to the leim subdirectory.
7994 Link Leim files to ${tempdir}/leim, not to real-leim. Don't move
7995 Leim files out of the Emacs tree. Don't prepare a separate tarball
7996 for Leim.
7997
79982001-12-11 Richard M. Stallman <rms@gnu.org>
7999
8000 * configure.in (hppa*-*-linux-gnu*): New alternative.
8001
80022001-12-08 Pavel Janík <Pavel@Janik.cz>
8003
8004 * make-dist: Copy COPYING to leim/, lwlib/, mac/ and nt/ when
8005 creating distribution.
8006
80072001-12-06 Paul Eggert <eggert@twinsun.com>
8008
8009 * configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
8010 (AC_FUNC_VFORK): Remove.
8011 (AC_FUNC_FORK): Add.
8012 (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
8013 this is required by recent Autoconf versions.
8014
80152001-12-02 Pavel Janík <Pavel@Janik.cz>
8016
8017 * make-dist: Do not try to link removed files (aclocal.m4, _emacs,
8018 TODO, vms-pp.trans and others).
8019
80202001-11-29 Pavel Janík <Pavel@Janik.cz>
8021
8022 * make-dist: Use COPYING from the top-level directory.
8023
80242001-11-29 Gerd Moellmann <gerd@gnu.org>
8025
8026 * configure.in: Add support for FreeBSD/Alpha.
8027
80282001-11-29 Pavel Janík <Pavel@Janik.cz>
8029
8030 * make-dist: Add COPYING to the top-level directory of the
8031 distribution. Simplify the logic behind copying.
8032
8033 * Makefile.in (maybe_bootstrap): Fix previous change.
8034
80352001-11-28 Richard M. Stallman <rms@gnu.org>
8036
8037 * Makefile.in (maybe_bootstrap): Don't bootstrap, just suggest it.
8038
80392001-11-26 Richard M. Stallman <rms@gnu.org>
8040
8041 * Makefile.in: bootstrap should not delete dumped executables.
8042 (bootstrap-clean-before): New target.
8043 (bootstrap): Use bootstrap-clean-before instead of clean.
8044 (bootstrap-clean-after): Rename from bootstrap-clean. Calls changed.
8045
80462001-11-24 Eli Zaretskii <eliz@is.elta.co.il>
8047
8048 These changes add the Emacs Lisp Introduction manual to the
8049 distribution:
8050
8051 * Makefile.in (install-arch-indep, uninstall): Add ELisp Intro files.
8052
8053 * make-dist: Copy the files in lispintro directory.
8054
8055 * config.bat: Configure in the lispintro directory.
8056
8057 * configure.in (AC_OUTPUT): Add lispintro/Makefile.
8058
8059 * Makefile.in (SUBDIR_MAKEFILES): Add lispintro.
8060 (lispintro/Makefile): New target.
8061 (mostlyclean, clean, distclean, maintainer-clean): Add lispintro.
8062 (unlock, relock, info, dvi): Ditto.
8063
80642001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
8065
8066 * Makefile.in (uninstall, install-arch-indep): Don't install gfdl.1.
8067
8068 * make-dist (etc): Don't distribute gfdl.1.
8069
80702001-11-22 Colin Walters <walters@debian.org>
8071
8072 * Makefile.in (install-arch-indep): Install the calc .info files.
8073 (uninstall): Handle deletion of calc .info files (thanks Pavel Janík).
8074
80752001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
8076
8077 * make-dist (lispref): Add *.txt, *.el, permute-index, and
8078 tindex.pl to the list of those being put into the distribution.
8079
80802001-11-16 Eli Zaretskii <eliz@gnu.org>
8081
8082 * configure.in: Add coff.h to the list in AC_CHECK_HEADERS.
8083
80842001-11-15 Pavel Janík <Pavel@Janik.cz>
8085
8086 * Makefile.in (uninstall): Fix previous change.
8087
8088 * configure.in, Makefile.in: Add support for --program-prefix,
8089 --program-suffix and --program-transform-name options.
8090
80912001-11-13 Pavel Janík <Pavel@Janik.cz>
8092
8093 * Makefile.in (install-arch-indep): Use `${manext}' instead of `.1'.
8094 (install-arch-indep): Install emacsclient manual page.
8095 (uninstall): Uninstall emacsclient manual page.
8096
80972001-11-12 Eli Zaretskii <eliz@is.elta.co.il>
8098
8099 * make-dist: Add lispref/index.*perm files to the distribution.
8100 From Pavel Janík <Pavel@Janik.cz>.
8101
81022001-11-12 Pavel Janík <Pavel@Janik.cz>
8103
8104 * Makefile.in (uninstall): Remove gfdl.1 when uninstalling.
8105
81062001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
8107
8108 * configure.in: AC_OUTPUT lispref/Makefile.
8109
81102001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
8111
8112 The following changes add the ELisp reference manual to the
8113 distribution.
8114
8115 * make-dist: Add the lispref directory to the distribution.
8116
8117 * Makefile.in (install-arch-indep): Add elisp* to the list of
8118 installed Info files.
8119 (SUBDIR_MAKEFILES): Add lispref/Makefile.
8120 (lispref/Makefile): New target.
8121 (mostlyclean, clean, distclean, maintainer-clean, unlock, relock):
8122 Add commands for the lispref directory.
8123 (info, dvi): Ditto.
8124
8125 * config.bat: Configure in `lispref'.
8126
81272001-11-09 Richard M. Stallman <rms@gnu.org>
8128
8129 * Makefile.in (bootstrap-lisp): Don't suppress error messages.
8130
81312001-11-07 Eli Zaretskii <eliz@is.elta.co.il>
8132
8133 * make-dist (tempdir): Copy AUTHORS as well.
8134
81352001-11-06 Sam Steingold <sds@gnu.org>
8136
8137 * configure.in: Added a check for <nlist.h>.
8138
81392001-11-01 Pavel Janík <Pavel@Janik.cz>
8140
8141 * configure.in: Reindent --help output.
8142 From Per Starbäck (starback@ling.uu.se).
8143
81442001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
8145
8146 * configure.in: New entry for HP/UX-11.
8147
8148 * Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
8149 From Eric S. Raymond <esr@golux.thyrsus.com>.
8150
81512001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
8152
8153 * configure.in (s390-*-linux-gnu): New system. From Adam Thornton
8154 <athornton@sinenomine.net>.
8155
81562001-10-25 Gerd Moellmann <gerd@gnu.org>
8157
8158 * Makefile.in (maybe_bootstrap): New target.
8159 (all): Add to prerequisites to bootstrap if abbrev.elc doesn't exist.
8160
81612001-10-24 Ken Raeburn <raeburn@gnu.org>
8162
8163 * configure.in: If --with-hesiod is given, look for
8164 hes_getmailhost and res_send or __res_send; check hesiod and
8165 resolv libraries respectively if system libraries don't supply them.
8166
81672001-10-24 Gerd Moellmann <gerd@gnu.org>
8168
8169 * configure.in: Use $MAKE for `make' if set.
8170
81712001-10-22 Gerd Moellmann <gerd@gnu.org>
8172
8173 * Makefile.in (install-arch-indep): Add -h (follow symlinks)
8174 to tar options.
8175
81762001-10-20 Gerd Moellmann <gerd@gnu.org>
8177
8178 * (Version 21.1 released).
8179
81802001-10-20 Miles Bader <miles@gnu.org>
8181
8182 * configure.in (configuration): Set from `host' if `host_alias'
8183 isn't defined.
8184
81852001-10-19 Andreas Schwab <schwab@suse.de>
8186
8187 * configure.in: Make ready for autoconf 2.5x.
8188 (AC_PREREQ): Require autoconf 2.50.
8189 * aclocal.m4: Removed.
8190 * Makefile.in (${srcdir}/configure): Don't depend on aclocal.m4.
8191
81922001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
8193
8194 * README: Bump Emacs version to 21.1.50.
8195
81962001-10-05 Gerd Moellmann <gerd@gnu.org>
8197
8198 * Branch for 21.1.
8199
82002001-09-05 Gerd Moellmann <gerd@gnu.org>
8201
8202 * configure.in: Avoid `$@' which is handled specially in
8203 Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
8204
82052001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
8206
8207 * make-dist (nt): Add subdirs.el to the list of distributed files.
8208
82092001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
8210
8211 * configure.in (machine): Add an entry for
8212 hppa1.1-hitachi-hiuxwe2*.
8213
82142001-05-28 Gerd Moellmann <gerd@gnu.org>
8215
8216 * make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
8217 LC_MESSAGES and LANG. From Karl Eichwalder <keichwa@gmx.net>.
8218
82192001-05-14 Gerd Moellmann <gerd@gnu.org>
8220
8221 * make-dist: Copy texinfo.tex unconditionally.
8222
82232001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
8224
8225 * Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
8226 that are installed.
8227
82282001-04-06 Gerd Moellmann <gerd@gnu.org>
8229
8230 * make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
8231 Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
8232
8233 * make-dist: Handle leim/MISC-DIC. Only include
8234 `[a-zA-Z]*.{el,elc}' from leim/quail.
8235
82362001-04-05 Gerd Moellmann <gerd@gnu.org>
8237
8238 * Makefile.in (install-arch-indep): Remove .cvsignore files.
8239
82402001-03-30 Gerd Moellmann <gerd@gnu.org>
8241
8242 * Makefile.in (.PHONY): Add for bootstrap targets.
8243 (bootstrap-clean): New target.
8244 (bootstrap): Use it instead of `clean'.
8245
82462001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
8247
8248 * Makefile.in (SUBDIR): Remove leim.
8249 (all, .RECURSIVE, extraclean): Add leim explicitly.
8250 (leim): Provide separate rule which exports PARALLEL=0 into the
8251 environment.
8252
82532001-03-20 Gerd Moellmann <gerd@gnu.org>
8254
8255 * configure.in (HAVE_XPM): Don't print the result of the check for
8256 XpmReturnAllocPixels if we don't have an xpm.h.
8257
82582001-03-05 Gerd Moellmann <gerd@gnu.org>
8259
8260 * COPYING: New file.
8261
82622001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
8263
8264 * config.bat: Update the copyright.
8265
82662001-02-23 Kenichi Handa <handa@etl.go.jp>
8267
8268 * configure.in: Use AC_EGREP_CPP to check if the C preprocessor
8269 converts `..' to `. .'. If it converts, set CPP_NEED_TRADITIONAL
8270 to `yes'. Later in AC_OUTPUT, check this variable.
8271
82722001-02-09 Dave Love <fx@gnu.org>
8273
8274 * AUTHORS: Updated.
8275
82762001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
8277
8278 * info/dir (Ebrowse): Fix the entry (was missing a dot).
8279
82802001-02-02 Gerd Moellmann <gerd@gnu.org>
8281
8282 * mkinstalldirs (errstatus): Chmod a+rx directories we create.
8283
8284 * Makefile.in (uninstall): Ignore exit code of `rm'.
8285
90eacf99
SM
8286 * Makefile.in (uninstall): Remove more info files.
8287 Remove ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
067d23c9
KY
8288
82892001-01-31 Gerd Moellmann <gerd@gnu.org>
8290
8291 * noleim-Makefile.in (extraclean): Add.
8292
82932001-01-28 Gerd Moellmann <gerd@gnu.org>
8294
90eacf99 8295 * Makefile.in (extraclean): Add -f to -rm config-tmp-* to keep
067d23c9
KY
8296 it quiet.
8297
82982001-01-24 Colin Walters <walters@cis.ohio-state.edu>
8299
8300 * Makefile.in (tags): Fix typo.
8301
83022001-01-13 Kenichi Handa <handa@etl.go.jp>
8303
8304 * configure.in: Fix typo in the code setting x_search_path.
8305
83062001-01-10 Dave Love <fx@gnu.org>
8307
8308 * configure.in: Don't reset LIBS at end of -lXmu test. Test for
8309 -lXext.
8310 (HAVE_XKBGETKEYBOARD): Fix reporting of result.
8311 (HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
8312 (HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
8313 Don't frob CFLAGS. Remove extra X libs from AC_CHECK_LIB
8314 (now in $LIBS).
8315
83162001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
8317
8318 * config.bat: Run the preprocessor with -traditional.
8319
83202001-01-01 Eli Zaretskii <eliz@is.elta.co.il>
8321
8322 * INSTALL: Move copying conditions to end of file.
8323
83242000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
8325
8326 * INSTALL: Add basic installation procedure which assumes
8327 `configure' does its job. Elaborate on image support libraries.
8328 Add a pointer to Xaw3d library. Add advice about solving
8329 configure-time problems by looking in config.log and setting
8330 variables in the environment.
8331
83322000-12-27 Gerd Moellmann <gerd@gnu.org>
8333
8334 * Makefile.in (install-arch-indep): If tar fails, exit with
8335 exit code 1.
8336
83372000-12-19 Gerd Moellmann <gerd@gnu.org>
8338
8339 * configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
8340 source file includes XKBlib.h. On some broken Solaris systems,
8341 there is an XKBlib.h, reportedly, but header files included by
8342 XKBlib.h are missing.
8343
83442000-12-14 Gerd Moellmann <gerd@gnu.org>
8345
8346 * configure.in: AC_CHECK_FUNC XkbGetKeyboard.
8347
83482000-12-11 Dave Love <fx@gnu.org>
8349
8350 * configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
8351
83522000-12-11 Paul Eggert <eggert@twinsun.com>
8353
8354 * aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
8355 Merge fixes from latest GNU tar version. These macros no longer
8356 futz with _XOPEN_SOURCE, as that was not portable in practice.
8357 (AC_FUNC_FSEEKO): New macro.
8358
8359 * configure.in: Use it instead of invoking AC_CHECK_FUNCS on
8360 ftello.
8361
83622000-12-05 Dave Love <fx@gnu.org>
8363
8364 * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
8365
83662000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
8367
8368 * info/dir: Change the category to "Emacs".
8369
83702000-12-01 Gerd Moellmann <gerd@gnu.org>
8371
8372 * make-dist (tempdir): Remove epaths.h from the distribution
8373 instead of paths.h.
8374
83752000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
8376
8377 * config.bat: Check for existence of djecho.exe, and print an
8378 error message if it is not available.
8379
8380 * INSTALL: Describe possible problem with djecho.exe in old
8381 versions of DJGPP v2.x.
8382
83832000-11-23 Gerd Moellmann <gerd@gnu.org>
8384
8385 * configure.in: Initialize HAVE_LIBXP to no.
8386
83872000-11-22 Gerd Moellmann <gerd@gnu.org>
8388
8389 * configure.in: Use m/macppc.h instead of the non-existent
8390 m/powerpc.h.
8391
83922000-11-21 Gerd Moellmann <gerd@gnu.org>
8393
8394 * Makefile.in (install-arch-indep): Also install info/eshell*
8395 and info/speedbar*.
8396
8397 * configure.in (HAVE_PNG): Check for the presence of
8398 png_get_channels to rule out older PNG libs.
8399
8400 * configure.in (AC_OUTPUT): Arrange to emit definitions of
8401 GCC and NON_GNU_CPP into config.status.
8402
84032000-11-20 Dave Love <fx@gnu.org>
8404
8405 * configure.in: Fix last change.
8406
8407 * GETTING.GNU.SOFTWARE: Deleted.
8408 * FTP: New file to replace it.
8409 * make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
8410
84112000-11-20 Gerd Moellmann <gerd@gnu.org>
8412
8413 * configure.in: Use -traditional with GNU cpp.
8414
84152000-11-17 Gerd Moellmann <gerd@gnu.org>
8416
8417 * make-dist: Handle the Mac port. Distribute all makefile.w32-in.
8418 Distribute more files from the nt/ subdir. Distribute PBM
8419 image files from subdirs of lisp/. Distribute old change logs
8420 from subdirs of lisp/. Distribute play/5x5.el.
8421
84222000-11-11 Dave Love <fx@gnu.org>
8423
8424 * config.sub, config.guess: Updated from master source.
8425
84262000-11-07 Dave Love <fx@gnu.org>
8427
8428 * configure.in: Test for mkstemp.
8429
84302000-11-01 Eli Zaretskii <eliz@is.elta.co.il>
8431
8432 * info/dir (Top): Rearrange menu items more logically, and put
8433 them into a single category. Add menu items for RefTeX and
8434 Widget.
8435
84362000-10-29 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
8437
8438 * Makefile.in (install-arch-indep): Use --info-dir instead of
8439 --dir-file, and a simple argument instead of --info-file, so that
8440 the Debian version of install-info also works.
8441
84422000-10-19 Eric M. Ludlam <zappo@ultranet.com>
8443
8444 * info/dir (Speedbar): Add entry.
8445
84462000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
8447
8448 * INSTALL: Describe the new image-support options to the configure
8449 script. List URLs where image support libraries can be found.
8450
84512000-10-14 Eli Zaretskii <eliz@is.elta.co.il>
8452
8453 * info/dir (Top): Add an entry for Eshell.
8454
84552000-10-02 Dave Love <fx@gnu.org>
8456
8457 * configure.in: Check for gai_strerror.
8458
84592000-10-01 Andreas Schwab <schwab@suse.de>
8460
8461 * Makefile.in (install-arch-indep): Update list of installed info files.
8462
84632000-09-30 Gerd Moellmann <gerd@gnu.org>
8464
8465 * configure.in: Support `sparc*-*-netbsd*'.
8466
84672000-09-29 Eli Zaretskii <eliz@is.elta.co.il>
8468
8469 * info/dir (MIME): Add entry for emacs-mime.
8470
84712000-09-29 Dave Love <fx@gnu.org>
8472
8473 * configure.in: Fix alpha*-dec-osf4 using the osf5 config.
8474
84752000-09-26 Gerd Moellmann <gerd@gnu.org>
8476
8477 * make-dist: Adapt to the change of leim/Makefile which was
8478 necessary to ensure a reasonably working `make dist'.
8479
8480 * leim-Makefile.in: Moved to leim/Makefile.in..
8481
8482 * noleim-Makefile.in: New file, formerly leim/Makefile.in.
8483
84842000-09-21 Kenichi Handa <handa@etl.go.jp>
8485
8486 * leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
8487 (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
8488 (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
8489 files to .elc.
90eacf99 8490 (${TIT}): Adjust for the above change.
067d23c9
KY
8491 (clean mostlyclean): Likewise.
8492 (.el.elc): New target.
8493
84942000-09-19 Gerd Moellmann <gerd@gnu.org>
8495
8496 * make-dist: Include XPM and XBM files in lisp/ and subdirs
8497 in the distribution.
8498
84992000-09-18 Gerd Moellmann <gerd@gnu.org>
8500
8501 * make-dist (skk): Rename to `ja-dic' because the leim directory
8502 was renamed.
8503
85042000-09-14 Dave Love <fx@gnu.org>
8505
8506 * configure.in: Fix spurion in last change.
8507
85082000-09-14 Gerd Moellmann <gerd@gnu.org>
8509
8510 * configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
8511 configuration files instead of REL_ALLOC_MMAP. Set REL_ALLOC
8512 to `no' if defined. Change result report.
8513
85142000-09-08 Dave Love <fx@gnu.org>
8515
8516 * configure.in: Remove spurious `@'s.
8517
8518 * aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
8519 autoconf.
8520
85212000-09-06 Gerd Moellmann <gerd@gnu.org>
8522
8523 * configure.in (REL_ALLOC_MMAP): Recognize in system configuration
8524 file and print informational message.
8525
8526 * configure.in (AC_FUNC_MMAP): Add.
8527
85282000-09-01 Gerd Moellmann <gerd@gnu.org>
8529
8530 * configure.in: Add ``checking'' messages for
8531 XpmReturnAllocPixels.
8532
85332000-08-28 Gerd Moellmann <gerd@gnu.org>
8534
8535 * configure.in: Check <strings.h>; check `index' and `rindex'
8536 functions.
8537
85382000-08-26 Kenichi Handa <handa@etl.go.jp>
8539
8540 * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
8541 "case "${canonical}" in".
8542
85432000-08-25 Dave Love <fx@gnu.org>
8544
8545 * configure.in <osf>: Use NON_GNU_CPP='cpp' always.
8546
85472000-08-25 Kenichi Handa <handa@etl.go.jp>
8548
8549 * leim-Makefile.in: Rename skk to ja-dic throughout the file.
8550
85512000-08-24 Gerd Moellmann <gerd@gnu.org>
8552
8553 * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
8554 contains a relative path. Protect against unusable values of $PWD.
8555
85562000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
8557
8558 * info/dir (WoMan): Add entry.
8559
8560 * config.bat (maindir): Update src/_gdbinit even if it does
8561 already exist.
8562
85632000-08-07 Gerd Moellmann <gerd@gnu.org>
8564
8565 * Makefile.in (config.status): Prepend `$(srcdir)/' to `configure'.
8566
85672000-08-03 Gerd Moellmann <gerd@gnu.org>
8568
8569 * configure.in: Add support for ia64*-*-linux*.
8570
85712000-07-27 Gerd Moellmann <gerd@gnu.org>
8572
8573 * make-dist (aclocal.m4): Include in distribution.
8574
85752000-07-26 Dave Love <fx@gnu.org>
8576
90eacf99 8577 * configure.in (AC_SYS_LARGEFILE): Move earlier.
067d23c9
KY
8578
85792000-07-24 Dave Love <fx@gnu.org>
8580
8581 * configure.in: Add AC_SIZE_T.
8582
85832000-07-18 Dave Love <fx@gnu.org>
8584
8585 * configure.in: Reorder so that most tests are done after CPPFLAGS
8586 is set from the C_SWITCH_... definitions.
8587
85882000-07-10 Gerd Moellmann <gerd@gnu.org>
8589
8590 * configure.in (HAVE_XPM): Undo previous change. Check for
8591 preprocessor define XpmReturnAllocPixels.
8592
85932000-07-06 Gerd Moellmann <gerd@gnu.org>
8594
8595 * configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
8596 instead of XpmReadFileToPixmap.
8597
85982000-07-05 Ken Raeburn <raeburn@gnu.org>
8599
8600 * configure.in: Check for <soundcard.h>. Look for ossaudio
8601 library, and set LIBSOUND accordingly.
8602
86032000-07-05 Dave Love <fx@gnu.org>
8604
8605 * configure.in: Use AC_HEADER_SYS_WAIT.
8606
86072000-07-05 Gerd Moellmann <gerd@gnu.org>
8608
8609 * make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
8610 lisp/Makefile. Distribute lisp/Makefile.in instead of
8611 lisp/Makefile.
8612
86132000-06-30 Ken Raeburn <raeburn@gnu.org>
8614
8615 * configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
8616 while searching for image-handling libraries.
8617
86182000-06-26 Gerd Moellmann <gerd@gnu.org>
8619
8620 * configure.in (--with-xim): New option.
8621
86222000-06-23 Dave Love <fx@gnu.org>
8623
8624 * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
8625 for struct timezone and test how we can call gettimeofday.
8626 Check for OSF 5+. Check for term.h.
8627
8628 * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
8629 version.
8630
86312000-06-23 Gerd Moellmann <gerd@gnu.org>
8632
8633 * configure.in (HAVE_LIBXP): Change test for libXp.
8634
86352000-06-21 Dave Love <fx@gnu.org>
8636
8637 * configure.in: Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not
8638 simple test for getloadavg and substitute GETLOADAVG_LIBS.
8639 Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
8640
86412000-06-19 Dave Love <fx@gnu.org>
8642
8643 * configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
8644 _XOPEN_SOURCE is defined.
8645
86462000-06-16 Gerd Moellmann <gerd@gnu.org>
8647
8648 * Makefile.in (distclean): Also make distclean in lisp/.
8649
86502000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
8651
8652 * config.bat: Generate lisp/Makefile from lisp/Makefile.in.
8653
86542000-06-15 Gerd Moellmann <gerd@gnu.org>
8655
8656 * make-dist: Add --help and --snapshot options.
8657
86582000-06-14 Gerd Moellmann <gerd@gnu.org>
8659
8660 * configure.in: Generate lisp/Makefile.
8661
8662 * configure.in: Add support for `*-lynxos*'.
8663 Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
8664 recommended by <Karen.Dorhamer@compaq.com> to fix problems
8665 on Tru64 UNIX v5.0.
8666
86672000-06-13 Ken Raeburn <raeburn@gnu.org>
8668
8669 * Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
8670 it's on a continuation line.
8671
86722000-06-02 Dave Love <fx@gnu.org>
8673
8674 * Makefile.in (install-arch-indep): Add pcl-cvs to list of info
8675 files.
8676
8677 * configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
8678 Check for struct exception. Use AC_SYS_LARGEFILE and move ftello
8679 test.
8680
8681 * aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
8682 (AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
8683
86842000-05-26 Gerd Moellmann <gerd@gnu.org>
8685
8686 * configure.in: Add check for speed_t typedef.
8687
86882000-05-25 Ken Raeburn <raeburn@gnu.org>
8689
8690 * Makefile.in (install-arch-dep): Install fns-*.el only if it
8691 exists; it won't in the CANNOT_DUMP case.
8692
86932000-05-25 Gerd Moellmann <gerd@gnu.org>
8694
8695 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
8696 On FreeBSD, the exit status is 1 if CDPATH is not set.
8697 (install-arch-indep): Install ebrowse.info.
8698
86992000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
8700
8701 * configure.in: Check for grandpt and getpt.
8702
87032000-05-09 Dave Love <fx@gnu.org>
8704
8705 * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
8706
87072000-05-05 Gerd Moellmann <gerd@gnu.org>
8708
8709 * make-dist: Make a link for lib-src/grep-changelog.
8710 Copy install-sh.
8711
87122000-05-01 Eli Zaretskii <eliz@is.elta.co.il>
8713
8714 * config.bat: Identify the beginning of the cpp stuff in
8715 src/Makefile.in and lib-src/Makefile.in more accurately.
8716
87172000-04-27 Gerd Moellmann <gerd@gnu.org>
8718
8719 * configure.in: Add support for `powerpc*-*-linux-gnu*'.
8720
87212000-04-19 Gerd Moellmann <gerd@gnu.org>
8722
8723 * configure.in: Add support for `powerpc-*-netbsd*'.
8724
87252000-04-19 Dave Love <fx@gnu.org>
8726
8727 * configure.in: Don't use AC_FUNC_GETLOADAVG.
8728
8729 * aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
8730
87312000-04-16 Dave Love <fx@gnu.org>
8732
8733 * Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
8734
87352000-04-14 Dave Love <fx@gnu.org>
8736
8737 * configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
8738
8739 * aclocal.m4 (AC_FUNC_MKTIME): New.
8740
87412000-03-28 Ken Raeburn <raeburn@gnu.org>
8742
8743 * configure.in: Line up "--help" output a little better.
8744
87452000-03-26 Gerd Moellmann <gerd@gnu.org>
8746
8747 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
8748 New targets.
90eacf99
SM
8749 (bootstrap): Rewritten in terms of the new targets above.
8750 Make info files, too.
067d23c9
KY
8751
87522000-03-12 Gerd Moellmann <gerd@gnu.org>
8753
8754 * config.guess, config.sub: Use the versions of the files from
8755 subversions.
8756
87572000-03-08 Dave Love <fx@gnu.org>
8758
8759 * configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
8760 AC_C_VOLATILE. Define POINTER_TYPE.
8761
8762 * aclocal.m4: New file.
8763
87642000-03-02 Gerd Moellmann <gerd@gnu.org>
8765
8766 * configure.in (machine): Add `mipsel-*-netbsd*' and
8767 `arm-*-netbsd*'.
8768
87692000-03-01 Gerd Moellmann <gerd@gnu.org>
8770
8771 * configure.in (machine): Add support for `*-auspex-sunos*'.
8772
87732000-02-29 Gerd Moellmann <gerd@gnu.org>
8774
8775 * configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
8776
87772000-02-18 Dave Love <fx@gnu.org>
8778
8779 * configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
8780
87812000-02-18 Andreas Schwab <schwab@suse.de>
8782
8783 * Makefile.in (install-arch-indep): Add eudc to list of installed
8784 info files.
8785
87862000-02-17 Ken Raeburn <raeburn@gnu.org>
8787
8788 * configure.in: Include -lz and -ljpeg (if it's available) when
8789 testing for the tiff library.
8790
87912000-02-17 Gerd Moellmann <gerd@gnu.org>
8792
8793 * configure.in: Remove LISP_FLOAT_TYPE.
8794
87952000-02-12 Dave Love <fx@gnu.org>
8796
8797 * configure.in: Use AC_FUNC_VFORK.
8798
87992000-02-01 Gerd Moellmann <gerd@gnu.org>
8800
8801 * make-dist: Various fixes for new development tree.
8802
8803 * leim-Makefile.in: New file.
8804
88052000-01-31 Gerd Moellmann <gerd@gnu.org>
8806
8807 * Makefile.in (dist): Call ./make-dist.
8808
88092000-01-24 Dave Love <fx@gnu.org>
8810
8811 * configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
8812
88132000-01-18 Gerd Moellmann <gerd@gnu.org>
8814
8815 * configure.in (HAVE_GIF): Check for DGifOpen instead of
8816 DGifOpenFileName.
8817
88182000-01-11 Andreas Schwab <schwab@suse.de>
8819
8820 * Makefile.in (install-arch-indep): Update list of info files to
8821 be installed.
8822
88232000-01-05 Dave Love <fx@gnu.org>
8824
8825 * configure.in: Check for jerror.h as well as libjpeg.
8826
88272000-01-03 Andreas Schwab <schwab@suse.de>
8828
90eacf99
SM
8829 * Makefile.in (install-arch-indep): Install autotype*.
8830 Run install-info on autotype and emacs-faq.info.
067d23c9
KY
8831
88321999-12-04 Dave Love <fx@gnu.org>
8833
8834 * Makefile.in (install-arch-indep): Depend on `info'.
8835 (install-strip): Use `install' as sub-make target.
8836
88371999-11-23 Ken Raeburn <raeburn@gnu.org>
8838
8839 * configure.in: Restore Kerberos code deleted on 1999-05-29 that
8840 didn't need to be deleted. Check for the k5crypto library as well
8841 as the crypto library; MIT Kerberos 1.1 changed the name.
8842
88431999-11-18 Dave Love <fx@gnu.org>
8844
8845 * configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
8846
88471999-11-11 Erik Naggum <erik@naggum.no>
8848
8849 * configure.in (bitmapdir): Allow for both "bitmaps" directories.
8850
88511999-11-08 Dave Love <fx@gnu.org>
8852
8853 * configure.in: Fix change for --with-pop default.
8854
88551999-11-04 Dave Love <fx@gnu.org>
8856
8857 * configure.in: Default to --with-pop. Change sense of with-gcc
8858 and with-toolkit-scroll-bars messages to reflect the defaults.
8859
88601999-11-01 Gerd Moellmann <gerd@gnu.org>
8861
8862 * INSTALL: Mention the Emacs Lisp Reference.
8863
88641999-10-27 Noah Friedman <friedman@splode.com>
8865
8866 * configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
8867
88681999-10-23 Gerd Moellmann <gerd@gnu.org>
8869
8870 * Makefile.in (bootstrap): New target.
8871
88721999-10-19 Paul Eggert <eggert@twinsun.com>
8873
8874 Add support for large files. Merge glibc 2.1.2.
8875
8876 * configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
8877 (HAVE_TM_GMTOFF): New symbol.
8878 (AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
8879 mbrlen, strsignal.
8880 (LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
8881
88821999-10-09 Stefan Monnier <monnier@cs.yale.edu>
8883
8884 * make-dist (dontcompile): Look for the DONTCOMPILE variable rather
8885 than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
8886
88871999-10-09 Richard M. Stallman <rms@gnu.org>
8888
8889 * Makefile.in (uninstall, install-arch-indep, install-arch-dep):
8890 Unset CDPATH to prevent cd from generating output.
8891
88921999-10-08 Stefan Monnier <monnier@cs.yale.edu>
8893
8894 * update-subdirs: Also ignore CVS subdirs.
8895
88961999-10-07 Gerd Moellmann <gerd@gnu.org>
8897
8898 * Makefile.in (install-arch-indep): Add ada-mode.
8899
89001999-10-06 Dave Love <fx@gnu.org>
8901
8902 * Makefile.in: Add rules for config.status, configure.
8903
89041999-09-07 Gerd Moellmann <gerd@gnu.org>
8905
90eacf99 8906 * configure.in (--with-sound): Remove.
067d23c9
KY
8907
89081999-08-30 Gerd Moellmann <gerd@gnu.org>
8909
8910 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
8911 the test for Xaw3d.
8912 (HAVE_TIFF): Add -lm to library check.
8913
89141999-08-28 Richard Stallman <rms@gnu.org>
8915
8916 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
8917 -lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
8918 after the other X-related libraries.
8919
89201999-08-21 Dave Love <fx@gnu.org>
8921
8922 * configure.in: Don't check for jpeglib.h.
8923
89241999-08-20 Gerd Moellmann <gerd@gnu.org>
8925
8926 * configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
8927 (HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
8928
89291999-08-18 Dave Love <fx@gnu.org>
8930
8931 * configure.in: Check for termcap.h.
8932
89331999-08-15 Gerd Moellmann <gerd@gnu.org>
8934
8935 * configure.in: Add --with-toolkit-scroll-bars. If "no",
8936 use Emacs' scroll bars, even if configured for Motif or when
8937 Xaw3d is available.
8938
89391999-08-12 Wolfgang Rupprecht <wolfgang@wsrcc.com>
8940
8941 * configure.in: Check for getaddrinfo.
8942
89431999-08-04 Eli Zaretskii <eliz@gnu.org>
8944
8945 * config.bat: Make --no-debug work again by removing -gcoff.
8946
89471999-07-30 Dave Love <fx@gnu.org>
8948
8949 * configure.in: Check for stdlib.h.
8950
89511999-07-19 Dave Love <fx@gnu.org>
8952
8953 * configure.in: Grok sparc64-*-linux-gnu*.
8954
89551999-07-12 Richard Stallman <rms@gnu.org>
8956
8957 * Version 20.4 released.
8958
89591999-06-23 Karl Heuer <kwzh@gnu.org>
8960
8961 * make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
8962 Quote $EMACS, in case it's a program with args.
8963
89641999-06-15 Gerd Moellmann <gerd@gnu.org>
8965
8966 * configure.in (HAVE_GIF): Use libungif instead of libgif
8967 because the former doesn't contain patented compression code.
8968
89691999-05-29 Richard M. Stallman <rms@gnu.org>
8970
8971 * configure.in: Delete the Kerberos stuff.
8972
89731999-05-27 Greg Hudson <ghudson@mit.edu>
8974
8975 * configure.in: Prefer kerberos 5 names.
8976
89771999-04-26 Richard M. Stallman <rms@gnu.org>
8978
8979 * configure.in: Check for libXp.
8980
89811999-04-08 Richard Stallman <rms@gnu.org>
8982
8983 * make-dist: Include change logs in subdirs of `lisp'.
8984
89851999-04-05 Richard Stallman <rms@gnu.org>
8986
8987 * Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
8988 (install-arch-indep): Make ${datadir}/emacs world-readable.
8989
89901999-03-30 Eli Zaretskii <eliz@gnu.org>
8991
8992 * config.bat: Use epaths.* instead of paths.*.
8993
89941999-03-07 Eli Zaretskii <eliz@gnu.org>
8995
8996 * INSTALL: Add detailed instructions to unpack and install
8997 intlfonts on MS-DOS.
8998
89991999-02-26 Richard Stallman <rms@gnu.org>
9000
9001 * configure.in: Use epaths.h and epaths-force instead of paths...
9002
90eacf99 9003 * Makefile.in (epaths-force): Rename from paths-force;
067d23c9
KY
9004 operate on epaths.in and produce epaths.h.
9005
90061999-02-24 Richard Stallman <rms@gnu.org>
9007
9008 * make-dist: Fix nt/icons directory handling.
9009
90101999-02-22 Simon Josefsson <jas@pdc.kth.se>
9011
9012 * configure.in (f301-fujitsu-uxpv4.1): New target.
9013
90141999-02-20 Richard Stallman <rms@gnu.org>
9015
9016 * make-dist (tempparent): Fix command to update info files.
9017
90181999-02-09 Richard Stallman <rms@gnu.org>
9019
9020 * configure.in (powerpc-apple-netbsd*): New alternative.
9021
90221999-01-25 Geoff Voelker <voelker@cs.washington.edu>
9023
9024 * make-dist: Include the new directory nt/icons in distributions.
9025
90261999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
9027
9028 * configure.in: Change message about HAVE_XFREE386.
9029
90301999-01-07 Eli Zaretskii <eliz@gnu.org>
9031
9032 * config.bat: Support configuring with leim.
9033
90341998-12-16 Petri Kaurinkoski <Petri.Kaurinkoski@hut.fi>
9035
9036 * configure.in (mips-sgi-irix6.5): New target.
9037
90381998-12-16 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
9039
9040 * configure.in: Remove GSS-API support, since it has been removed
9041 from movemail.
9042
90431998-12-04 Markus Rost <rost@delysid.gnu.org>
9044
9045 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
9046
90471998-12-04 Andreas Schwab <schwab@delysid.gnu.org>
9048
9049 * Makefile.in: Don't install customize info file.
9050 Run install-info on viper info file.
9051
90521998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
9053
9054 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
9055
90561998-11-16 Kenichi Handa <handa@etl.go.jp>
9057
9058 * configure.in (*-*-bsdi4*): New target.
9059
90601998-11-13 Ehud Karni <ehud@unix.simonwiesel.co.il>
9061
9062 * configure.in: Fix previous change.
9063
90641998-11-11 Richard Stallman <rms@gnu.org>
9065
9066 * configure.in (aviion-intel): New machine.
9067
90681998-11-04 Kenichi Handa <handa@etl.go.jp>
9069
9070 * configure.in (mips-nec-sysv4*): New target.
9071
90721998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
9073
9074 * Makefile.in (install-arch-dep): Fix last change and use fns-*.el
9075 from lisp.
9076
90771998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
9078
9079 * make-dist: Don't include fns*.el in dist.
9080
90811998-10-30 Dave Love <fx@gnu.org>
9082
9083 * configure.in: Don't mkdir cpp.
9084
90851998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
9086
9087 * Makefile.in (install-arch-dep): Install src/fns-*.el in
9088 ${archlibdir}.
9089
90901998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
9091
9092 * Version 20.3 released.
9093
90941998-07-30 Paul Eggert <eggert@twinsun.com>
9095
9096 * Makefile.in (Makefile, src/Makefile, src/config.stamp)
9097 (lib-src/Makefile, man/Makefile, oldXMenu/Makefile)
9098 (lwlib/Makefile, leim/Makefile):
9099 Prepend $(srcdir)/ to rule dependencies outside this dir.
9100
91011998-06-30 Richard Stallman <rms@psilocin.ai.mit.edu>
9102
9103 * configure.in: Use unset CDPATH instead of making it empty.
9104
91051998-06-20 Karl Heuer <kwzh@gnu.org>
9106
9107 * configure.in: Assume unspecified Solaris is 2.5, not 2.4.
9108
91091998-06-07 Richard Stallman <rms@psilocin.ai.mit.edu>
9110
9111 * make-dist (MANIFEST): Include most subdirs, but exclude subdirs.el
9112 and default.el. Sort the results.
9113
91141998-05-31 Karl Heuer <kwzh@gnu.org>
9115
9116 * Makefile.in (install-arch-indep): Don't die if site-lisp/ isn't
9117 writable.
9118
91191998-05-14 Richard Stallman <rms@psilocin.ai.mit.edu>
9120
9121 * Makefile.in (install-arch-indep):
9122 Don't alter site-lisp/subdirs.el if it exists.
9123
91241998-05-12 Richard Stallman <rms@psilocin.ai.mit.edu>
9125
9126 * Makefile.in (install-arch-indep): Put `-' on commands to create
9127 subdirs.el in site-lisp dirs.
9128
91291998-05-07 Richard Stallman <rms@psilocin.gnu.org>
9130
9131 * Makefile.in (install-arch-indep): Fix typo in previous change.
9132
91331998-05-06 Richard Stallman <rms@psilocin.gnu.org>
9134
9135 * Makefile.in (install-arch-indep): Pass --dir-file to install-info.
9136
91371998-04-28 Richard Stallman <rms@psilocin.gnu.org>
9138
9139 * Makefile.in (mkdir): Create the site-lisp dirs.
9140 (install-arch-indep): Make site-lisp/subdirs files world-readable.
9141
91421998-04-26 Richard Stallman <rms@psilocin.gnu.org>
9143
9144 * Makefile.in (INSTALL_INFO): New variable.
9145 (install-arch-indep): Don't replace the dir file if it already exists.
9146 Use the install-info program, via INSTALL_INFO, to add entries.
9147 Make the `info' subdir and the Info files world-readable.
9148
91491998-04-16 Eli Zaretskii <eliz@delysid.gnu.org>
9150
9151 * config.bat: Make sure the environment is large enough to support
9152 all the "set foo=bar" commands. Update pointers to DJGPP FTP sites.
9153
91541998-04-10 Karl Heuer <kwzh@gnu.org>
9155
9156 * make-dist: Don't accept EMACS=t when testing for $EMACS set.
9157
91581998-04-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
9159
9160 * configure.in: Add --with-gssapi to specify GSS-API
9161 authentication support for movemail.
9162
91631998-04-02 Richard Stallman <rms@psilocin.ai.mit.edu>
9164
9165 * Makefile.in (install-arch-indep): Fix previous change.
9166
91671998-03-30 Richard Stallman <rms@psilocin.ai.mit.edu>
9168
9169 * Makefile.in (info): Run man in build dir, not srcdir.
9170
91711998-03-28 Richard Stallman <rms@psilocin.ai.mit.edu>
9172
9173 * Makefile.in (install-arch-indep): Fix previous change.
9174
91751998-03-23 Kenichi Handa <handa@etl.go.jp>
9176
9177 * Makefile.in (top_distclean): Check the existence of `lock' subdir.
9178
91791998-03-22 Richard Stallman <rms@gnu.org>
9180
9181 * Makefile.in (install-arch-indep): Put special subdirs.el files
9182 in site-lisp dirs. Use normal-top-level-add-subdirs-to-load-path.
9183
91841998-03-21 Richard Stallman <rms@psilocin.gnu.org>
9185
9186 * make-dist: Fix shell syntax in check for missing .el or .elc files.
9187
91881998-03-09 Richard Stallman <rms@psilocin.gnu.org>
9189
9190 * configure.in (hppa-hp-hpux1[0-9]*): Handle versions 1X like 10.
9191 (m68*-hp-hpux*): Handle versions 1X like 10.
9192
91931998-03-07 Richard Stallman <rms@psilocin.gnu.org>
9194
9195 * make-dist: PROBLEMS is now in etc, not top level dir.
9196
9197 * Makefile.in (SOURCES): Delete PROBLEMS.
9198
91991998-02-25 Richard Stallman <rms@gnu.org>
9200
9201 * configure.in (hppa*-hp-hpux*): Use hpux10 by default.
9202
9203 * Makefile.in (install-arch-indep): Do chmod a+x on subdirs.
9204
92051998-01-17 Richard Stallman <rms@gnu.org>
9206
9207 * Makefile.in (install-arch-indep): Add semicolon before `else'.
9208
92091998-01-02 Richard Stallman <rms@psilocin.gnu.org>
9210
9211 * make-dist (tempparent): New option --no-check.
9212
9213 * make-dist: Don't do anything with cpp directory.
9214
92151997-12-20 Richard Stallman <rms@psilocin.gnu.org>
9216
9217 * configure.in (sparc-fujitsu-sysv4*): New target.
9218
92191997-12-17 Andreas Schwab <schwab@gnu.org>
9220
9221 * configure.in: Cache more tests. Add missing quotes around
9222 message with embedded comma.
9223
92241997-12-04 Karl Heuer <kwzh@gnu.org>
9225
9226 * Makefile.in (unlock, relock): Don't reference cpp/ directory.
9227
92281997-11-26 Joel N. Weber II <devnull@gnu.org>
9229
9230 * make-dist: Changed the comment about `umask 0' to say `Don't
9231 restrict access to any files.'; previously it said `Don't protect
9232 any files', which may have implied that we think fascism is good.
9233
92341997-11-24 Paul Eggert <eggert@twinsun.com>
9235
9236 * configure.in (AC_CHECK_FUNCS): Add strftime. The new GNU C library
9237 strftime needs the underlying host's strftime for locale dependent
9238 formats.
9239
92401997-11-20 Abraham Nahum <miko@uxsrvc.tti.co.il>
9241
9242 * configure.in (i586-dg-dguxR4.*): New name in case branch.
9243
92441997-11-20 Eli Zaretskii <eliz@is.elta.co.il>
9245
9246 * config.bat: Configure the man subdirectory.
9247
92481997-11-07 Paul Eggert <eggert@twinsun.com>
9249
9250 * configure.in (AC_CHECK_LIB): Add -lintl.
9251
92521997-11-07 Karl Heuer <kwzh@gnu.org>
9253
9254 * make-dist (check for .elc files): Avoid bash-specific syntax.
9255 (check for overflow 14-char limit): Simplify.
9256
92571997-11-07 Richard Stallman <rms@gnu.org>
9258
9259 * Makefile.in (install): Move blessmail last.
9260
92611997-10-02 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9262
9263 * configure.in (gettimeofday, one arg or two):
9264 Clarify messages by avoiding double negative.
9265
92661997-09-30 Karl Eichwalder <ke@suse.de>
9267
9268 * Makefile.in (install-arch-indep): Install the widget info file.
9269
92701997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
9271
9272 * configure.in (with-pop, with-kerberos): Need to check Kerberos
9273 libraries in reverse order, so that libraries will appear in the
9274 correct dependency order on the link line (and so that the
9275 configure checks themselves will work properly when early
9276 libraries depend on later ones).
9277
92781997-09-21 Erik Naggum <erik@naggum.no>
9279
9280 * make-dist (making links to `src'): Keep timestamp on copied files.
9281
9282 * make-delta: New script to produce delta distributions.
9283
92841997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9285
9286 * Version 20.2 released.
9287
92881997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9289
9290 * Version 20.1 released.
9291
9292 * Makefile.in (install-leim): Depend on mkdir.
9293 (leim): Depend on src.
9294
92951997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9296
9297 * configure.in: Recognize alpha* instead of just alpha.
9298
92991997-09-12 Paul Eggert <eggert@twinsun.com>
9300
9301 * leim-Makefile.in (mostlyclean, maintainer-clean): New targets.
9302
93031997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9304
9305 * update-subdirs: Use rm -f.
9306
93071997-09-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9308
9309 * update-subdirs: Delete subdirs.el if this dir has no subdirs.
9310 Ignore subdirs named Old.
9311
93121997-08-04 Kenneth Stailey <kstailey@elbereth.disclosure.com>
9313
9314 * configure.in: Add OpenBSD clause to set $machine.
9315
93161997-09-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9317
9318 * make-dist: Recompile everything after updating various Lisp files.
9319 Recompile in leim as well as lisp.
9320 Check in leim as well as lisp for mismatched files and too-long names.
9321
93221997-09-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9323
9324 * Makefile.in (TAGS tags): Simply refer this to the src subdir.
9325
93261997-08-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9327
9328 * Makefile.in (install-arch-indep): Verify ./lisp has simple.el in it
9329 before trying to copy anything from it.
9330
93311997-08-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9332
9333 * Makefile.in (man/Makefile): New target.
9334 (tags): Define env var EMACS and run Makefile from build dir.
9335
93361997-08-27 Eli Zaretskii <eliz@psilocin.gnu.ai.mit.edu>
9337
9338 * config.bat: If src/_gdbinit doesn't exist, try using
9339 src/.gdbinit to create it (for building on Windows 95).
9340
93411997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9342
9343 * Makefile.in (install-arch-indep):
9344 Discard extra data in tar | tar pipes.
9345
93461997-08-24 NIIBE Yutaka <gniibe@mri.co.jp>
9347
90eacf99
SM
9348 * configure.in (x_default_search_path):
9349 Corrected '${x_library}' to '${x_library}/X11'.
067d23c9
KY
9350
93511997-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9352
9353 * configure.in (HAVE_MOTIF_2_1): Test for Motif 2.1.
9354
93551997-08-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
9356
9357 * configure.in: Support auto-configuration of both Kerberos V4 and
9358 Kerberos V5 for movemail, including detection of V4 and V5 header
9359 files and libraries.
9360
93611997-08-16 NIIBE Yutaka <gniibe@etl.go.jp>
9362
9363 * configure.in: Compute x_default_search_path
9364 and substitute into makefiles.
9365
9366 * Makefile.in (paths-force): Store PATH_X_DEFAULTS in paths.h.
9367
93681997-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9369
9370 * Makefile.in (install-arch-indep): Run list-load-path-shadows.
9371
93721997-08-07 Erik Naggum <erik@naggum.no>
9373
9374 * configure.in: Remove lockdir, it is no longer needed.
9375 * Makefile.in (mkdir): Don't create lockdir.
9376 (lockdir): Variable deleted.
9377 (paths-force): Don't operate on PATH_LOCK.
9378
93791997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9380
9381 * leim-Makefile.in (clean, distclean): New targets.
9382
9383 * make-dist: Include leim/ChangeLog in leim distribution.
9384
93851997-08-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9386
9387 * configure.in (i*86-*-sysv4.2uw*): Set NON_GNU_CPP.
9388
93891997-07-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9390
9391 * Makefile.in (CPPFLAGS): Get this from configure, like CFLAGS.
9392
93931997-07-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9394
9395 * Makefile.in (LDFLAGS): Get this from configure, like CFLAGS.
9396
93971997-07-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9398
9399 * make-dist: Update leim/leim-list.el.
9400 Pass along value of $EMACS when updating lisp dir.
9401
94021997-07-25 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
9403
9404 * configure.in (doug_lea_malloc): Make __after_morecore_hook a
9405 prerequisite to the use of Doug Lea's malloc.
9406
94071997-07-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9408
9409 * Makefile.in (top_distclean): Use -f to delete contents of lock dir.
9410
9411 * make-dist: Use name leim/SKK-DIC, not leim/SKK.
9412
94131997-07-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9414
9415 * make-dist: Arrange for the leim tar file to unpack in emacs-M.N/leim.
9416
94171997-07-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9418
9419 * configure.in (mips-sony-newsos6*): File news-risc.h renamed
9420 to news-r6.h.
9421
94221997-07-10 Eli Zaretskii <eliz@is.elta.co.il>
9423
9424 * config.bat: Use `sed' instead of `cp', which might not be
9425 installed.
9426
94271997-07-09 Kenichi Handa <handa@etl.go.jp>
9428
9429 * Makefile.in (mostlyclean): Add cleaning leim directory.
9430 (clean, distclean, maintainer-clean): Likewise.
9431
94321997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9433
9434 * make-dist (bogosities): Check subdirs of `lisp' also.
9435
94361997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9437
9438 * make-dist (etc): Really avoid symlinks now.
9439 (lisp): Don't delete from subdirs the things we never copy.
9440
94411997-07-07 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
9442
9443 * Makefile.in (install-arch-indep): Correct the target name.
9444 The first letter `i' was dropped by the previous change of mine.
9445
94461997-07-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9447
9448 * configure.in (leim/Makefile): Generate this.
9449 (*-sysv4.2uw*): Recognize new alternative.
9450
9451 * leim-Makefile.in: Renamed from leim-Makefile.
9452
9453 * make-dist: Set up real-leim subdirectory,
9454 with the real contents of leim; then move it to
9455 a separate top-level directory.
9456
9457 * make-dist: Don't mention site-lisp, site-init, site-start
9458 or default, when listing files hat are not compiled and should be.
9459
9460 * configure.in: Create src/config.stamp at the end.
9461
94621997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9463
9464 * Makefile.in (install-leim): Correct previous change.
9465
94661997-07-02 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
9467
9468 * Makefile.in (install-leim): New target.
9469 (install): Depend on install-leim.
9470
94711997-07-01 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
9472
9473 * Makefile.in (SUBDIR): Add leim.
9474 (SUBDIR_MAKEFILES): Add leim/Makefile.
9475 (leim/Makefile): New target.
9476
94771997-07-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9478
9479 * leim-Makefile: New file.
9480 * make-dist: Initialize a `leim' subdirectory with that makefile.
9481
94821997-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9483
9484 * configure.in (GNU_MALLOC_reason): Fix message text.
9485
94861997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9487
9488 * make-dist (lisp): Don't process subdirs that start with =.
9489 (etc): Copy symlinks, as in src.
9490
94911997-06-26 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9492
9493 * configure.in (i*86-*-unixware*): New alternative.
9494
94951997-06-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9496
9497 * Makefile.in (src/config.stamp): Target renamed from src/config.h
9498 and touch it explicitly.
9499
9500 * configure.in (mips-sony-newsos6*): New alternative.
9501 (mips-*-linux-gnu*): New alternative.
9502 (*-*-bsdi*): New alternative.
9503 (i*86-*-bsd386, i*86-*-bsdi...): Delete old alternatives.
9504
95051997-06-22 Dave Love <d.love@dl.ac.uk>
9506
9507 * Makefile.in (lib-src): Depend on src/config.h (e.g. for movemail.o).
9508 (src/config.h): New target to re-configure if src/config.in is patched.
9509
95101997-06-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9511
9512 * configure.in (shutdown): Check for `shutdown' function.
9513
95141997-06-18 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
9515
9516 * update-subdirs: Include the directory "language" in subdirs.
9517
95181997-06-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9519
9520 * configure.in (m88k-dg-dgux4*): New alternative.
9521 (alpha-*-netbsd*): New alternative.
9522 (powerpcle-*-solaris2*): New alternative.
9523
95241997-05-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9525
9526 * make-dist: Warn about .el files that are not compiled.
9527
95281997-05-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9529
9530 * Makefile.in (dist): Don't run update-subdirs here,
9531 since make-dist now gets that done.
9532
9533 * make-dist: Use the new `updates' target in lisp/Makefile.
9534
9535 * make-dist: Use new non-file targets in lisp/Makefile.
9536
95371997-04-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9538
9539 * make-dist: Handle all subdirs of `lisp' uniformly.
9540 Don't handle `term' and `language' specially.
9541 Clear out umask at the beginning.
9542
95431997-04-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9544
9545 * make-dist: Use Make to update finder-inf.el and autoloads.
9546 Also update cus-load.el.
9547
95481997-04-09 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
9549
9550 * configure.in (doug_lea_malloc): First check for SYSTEM_MALLOC,
9551 in case it is desirable to disable the GNU malloc features with glibc.
9552
95531997-04-08 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
9554
9555 * configure.in (DOUG_LEA_MALLOC):
9556 Define if malloc_{get,set}_state exist.
9557
95581997-03-05 Kenichi Handa <handa@etl.go.jp>
9559
9560 * make-dist: Make links for files under lisp/language.
9561
95621997-02-20 Kenichi Handa <handa@etl.go.jp>
9563
9564 * update-subdirs: Exclude the directory "language" from subdirs.
9565
95661997-01-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
9567
9568 * configure.in: Check for rint and cbrt.
9569
95701997-01-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9571
9572 * make-dist: Use $EMACS to say where to run Emacs.
9573 Add --no-update option.
9574
95751996-12-30 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9576
9577 * configure.in (hppa1.1-hitachi-hiuxmpp): New configuration.
9578
95791996-12-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9580
9581 * make-dist (copying src): Check thoroughly for symlinks
9582 and copy them in all cases. Regularize the linking of *.in
9583 and *.opt and ChangeLog files.
9584 (copying lib-src): Likewise.
9585 Don't rm getdate.c or y.tab.*--they don't exist any more.
9586
95871996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
9588
9589 * configure.in: Check for libmail, maillock.h and
9590 touchlock (for movemail).
9591
95921996-12-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9593
9594 * configure.in (limits.h): Check for this file.
9595
95961996-12-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9597
9598 * configure.in (rs6000-ibm-aix4.2): New alternative.
9599 (rs6000-ibm-aix4.0): New alternative.
9600 (rs6000-ibm-aix4*): Assume aix 4.1 by default.
9601
96021996-11-22 Ben Harris <bjh21@cam.ac.uk>
9603
9604 * configure.in: Recognize vax-*-netbsd*.
9605
96061996-11-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9607
9608 * configure.in (locallisppath): Add leim directory.
9609
96101996-10-31 Eli Zaretskii <eliz@is.elta.co.il>
9611
9612 * config.bat: Make sure `mv' supports forward slashes and -f.
9613
96141996-10-28 Christian Limpach <chris@nice.ch>
9615
9616 * configure.in (hppa*-next-nextstep*): * added after hppa
9617 to accept hppa1.0 and hppa1.1.
9618
96191996-10-05 Marcus G. Daniels <marcus@coulee.tdb.com>
9620
9621 * configure.in: Provide an empty default for LD_SWITCH_X_SITE_AUX.
9622 * configure.in (ld_switch_machine): Fix typo.
9623
96241996-09-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9625
9626 * configure.in: Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
9627 from config.h and use them in $ac_link.
9628
96291996-09-28 Erik Naggum <erik@psilocin.gnu.ai.mit.edu>
9630
9631 * configure.in: Create a subdir named `lisp'.
9632
96331996-09-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9634
9635 * configure.in: Check for getcwd.
9636
96371996-09-04 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9638
9639 * configure.in: Check for termios.h. Check for setpgid.
9640
96411996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9642
9643 * configure.in: Check for setrlimit.
9644
96451996-08-31 Paul Eggert <eggert@twinsun.com>
9646
9647 * configure.in: Check for sys/systeminfo.h, getdomainname, sysinfo.
9648
96491996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9650
9651 * configure.in: Check for utimes.
9652
9653 * configure.in: Check for com_err library, but only
9654 if --with-kerberos was used. Check for krb and des
9655 only if --with-kerberos.
9656
96571996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9658
9659 * Makefile.in (INSTALL_STRIP): New variable.
9660 (install-strip): Set INSTALL_STRIP, not INSTALL_PROGRAM.
9661 (install-arch-dep): Use INSTALL_STRIP, and pass it to lib-src.
9662
96631996-08-25 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9664
9665 * configure.in: Check for krb and des libraries.
9666
96671996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
9668
9669 * configure.in (*-sunos4.1.[3-9]*noshare):
9670 Use sunos413, not sunos4-1-3.
9671 (m88k-dg-dgux5.4R3*): Use dgux5-4-3, not dgux5-4r3.
9672 (arm-acorn-riscix1.2*): Use riscix12, not riscix1-2.
9673
96741996-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9675
9676 * Makefile.in (src/paths.h): Target deleted.
9677 (paths-force): Delete all dependencies on this target
9678 but don't delete the target.
9679 (install): Depend on `all'.
9680 (paths-force): Don't print a message.
9681
9682 * configure.in: Generate src/paths.h here.
9683
96841996-08-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9685
9686 * configure.in (NON_GCC_LINK_TEST_OPTIONS, GCC_LINK_TEST_OPTIONS):
9687 New variables that affect linking only.
9688 (alpha-dec-osf*): Use those instead of previous change.
9689
96901996-08-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9691
9692 * Makefile.in (install-arch-indep): Install info/messages.
9693
96941996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9695
9696 * Version 19.33 released.
9697
96981996-08-10 Marcus G. Daniels <marcus@sayre.sysc.pdx.edu>
9699
9700 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
9701 Fix previous change.
9702
97031996-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9704
9705 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
9706 New alternative.
9707
97081996-08-07 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9709
9710 * configure.in (alpha-dec-osf*): Specify GCC_TEST_OPTIONS
9711 and NON_GCC_TEST_OPTIONS.
9712
97131996-08-06 Paul Eggert <eggert@twinsun.com>
9714
9715 * configure.in (LOCALTIME_CACHE): Don't put a string literal
9716 "TZ=..." in environ.
9717
97181996-08-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9719
9720 * make-dist (msdos): Add is_exec.c, sigaction.c to distribution.
9721
97221996-08-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9723
9724 * configure.in (*-sunos4.1.[3-9]*noshare): Move this before
9725 the more general *-sunos4.1.[3-9]* clause.
9726
97271996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9728
9729 * Version 19.32 released.
9730
9731 * configure.in (*-sco3.2v5*):
9732 Set OVERRIDE_CPPFLAG to a string of one space.
9733 Fix the code that uses OVERRIDE_CPPFLAG.
9734
97351996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
9736
9737 * configure.in: Undo previous change.
9738
97391996-07-16 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9740
9741 * config.sub: Use `pc', not `unknown', when canonicalizing
9742 the vendor for ...86.
9743
97441996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
9745
9746 * configure.in: Check for termios.h header.
9747
97481996-07-11 Bill Mann <dvmann@dvncr.praxisint.com>
9749
9750 * configure.in: Use s/usg5-4-3.h for ncr-i[3456]86-sysv4.3.
9751
97521996-07-07 Karl Heuer <kwzh@gnu.ai.mit.edu>
9753
9754 * configure.in: Split bsdos2 and bsdos2-1.
9755
97561996-07-06 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9757
9758 * config.sub: If last two words are not a recognized
9759 KERNEL-OS pair, use just the last word as OS, as in 19.31.
9760 Make conversion of gnu/linux to linux-gnu really work.
9761
9762 * config.sub: If vendor unspecified with i386, use `pc' not `unknown'.
9763
97641996-06-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9765
9766 * configure.in (check for using Lucid widgets by default):
9767 Eliminate indentation that confuses some compilers.
9768
97691996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9770
9771 * config.sub: Convert linux and gnu/linux to linux-gnu.
9772
9773 * make-dist: Don't update getdate.c.
9774 Ignore =... files when checking for too-long Lisp file names.
9775
97761996-06-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9777
9778 * configure.in (euidaccess): Check for that, not for eaccess.
9779
97801996-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9781
9782 * configure.in (sunos4.1.[3-9]*noshare): Eliminate dash from
9783 before `noshare'.
9784 (mips-sgi-irix6*): Specify NON_GCC_TEST_OPTIONS.
9785
97861996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9787
9788 * configure.in: Rename lignux to linux-gnu in configuration names.
9789 Use gnu-linux as the opsys value (s/ file name).
9790 Allow i686 just like i386, i486, i586.
9791
97921996-06-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9793
9794 * configure.in (i*86-*-sco3.2v5): New alternative.
9795 (OVERRIDE_CPPFLAG): New variable.
9796 (CPPFLAGS): If OVERRIDE_CPPFLAG is set, use that.
9797
9798 * configure.in: Specify vpath for .texi files.
9799
98001996-06-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9801
9802 * configure.in: Always check for HAVE_X11R5.
9803 Separately decide whether to use a toolkit by default.
9804
98051996-06-04 Bill Mann <dvmann@dvhpux1.praxisint.com>
9806
9807 * configure.in: If X11R5 is missing the Xaw headers,
9808 default to --with-x-toolkit=no.
9809
98101996-05-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9811
9812 * configure.in (powerpc-*-solaris2*): Use ibmrs6000, not rs6000.
9813
98141996-05-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
9815
9816 * Makefile.in (install-arch-indep): If cd etc makes output,
9817 don't treat that as part of the tar data.
9818 Check that ./lisp actually exists.
9819
98201996-05-29 Karl Heuer <kwzh@gnu.ai.mit.edu>
9821
9822 * make-dist: Check for long file names.
9823
98241996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
9825
9826 * Version 19.31 released.
9827
98281996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
9829
9830 * configure.in: Recognize sparc-*-lignux.
9831
98321996-05-03 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
9833
9834 * make-dist: Include nt/inc/arpa and nt/inc/netinet in the dist.
9835 Don't include config.w95.
9836
98371996-04-21 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
9838
9839 * make-dist: Replace --no-clean-up and --no-tar options
9840 with --clean-up and --tar, so that the default is useful.
9841
98421996-04-15 Eli Zaretskii <eliz@is.elta.co.il>
9843
9844 * config.bat: Make sure the GDB init file is called src/_gdbinit;
9845 if not, tell the user to rename it and abort.
9846
98471996-04-14 Eli Zaretskii <eliz@is.elta.co.il>
9848
9849 * config.bat: With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE
9850 test program.
9851
98521996-04-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9853
9854 * config.bat (djgpp_ver): Variable renamed from djgpp-ver.
9855
9856 * make-dist (MANIFEST): Fix previous change.
9857 (msdos): Put mainmake.v2 into the dist.
9858
98591996-04-10 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
9860
9861 * make-dist: Exit if autoconf fails.
9862
98631996-04-10 Eli Zaretskii <eliz@is.elta.co.il>
9864
9865 * config.bat: Set djgpp-ver, and unset it at the end.
9866 Add a number of conditionals for DJGPP version 2.
9867 Rename label libsrc2 to libsrc3.
9868 Substitute for LDFLAGS in src/Makefile.
9869 Substitute for ALL_CFLAGS in lib-src/Makefile.
9870
98711996-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9872
9873 * configure.in (ncurses): Check this after checking fns like strerror.
9874
98751996-04-08 Erik Naggum <erik@naggum.no>
9876
9877 * make-dist (MANIFEST): Don't include lines from =files.
9878
98791996-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9880
9881 * make-dist: Don't put lisp/dired.todo in the dist.
9882
98831996-04-05 Richard Stallman <rms@lucy.gnu.ai.mit.edu>
9884
9885 * configure.in (HAVE_NCURSES): Look for library named ncurses.
9886
9887 * configure.in (setlocale): Check for it.
9888
9889 * configure.in (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp.
9890
98911996-03-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9892
9893 * configure.in: Use lignux instead of linux as value of opsys.
9894
98951996-03-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9896
9897 * Makefile.in (install-strip): Fix whitespace.
9898 Get rid of continuation.
9899
9900 * config.sub: Convert linux or gnu/linux to lignux.
9901
99021996-03-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9903
9904 * configure.in: Accept lignux in configuration name.
9905
99061996-03-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9907
9908 * Makefile.in (install-strip): New target.
9909
99101996-03-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9911
9912 * Makefile.in (top_distclean): Use `|| true' to ignore error in rm.
9913 -f failed to do the job on Suns.
9914
99151996-03-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
9916
9917 * Makefile.in (install-arch-dep): Don't depend on install-arch-indep.
9918
9919 * configure.in (linux/version.h): Check for this header.
9920
99211996-03-12 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
9922
9923 * configure.in: Remove -fno-builtin hackery from -lm check.
9924
99251996-03-08 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
9926
9927 * configure.in (-lm check): If $GCC, append -fno-builtin to $CC for
9928 just this test.
9929
9930 * configure.in (AC_PREREQ): Require version 2.8 of Autoconf.
9931
99321996-03-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9933
9934 * configure.in: Check for ncurses.
9935
99361996-02-28 Paul Eggert <eggert@twinsun.com>
9937
9938 * configure.in (LOCALTIME_CACHE):
9939 Also define if localtime mishandles unsetting TZ.
9940 This works around a localtime bug in mips-dec-ultrix.
9941
99421996-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9943
9944 * make-dist (finder-inf.el): Use finder-compile-keywords-make-dist.
9945
9946 * configure.in: Improve messages about X versions.
9947
99481996-02-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9949
9950 * configure.in (LOCALTIME_CACHE): Cope if $ac_cv_func_tzset is null.
9951
99521996-02-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9953
9954 * configure.in (HAVE_X11XTR6): Set it as a shell variable.
9955 (HAVE_LIBXMU): If HAVE_X11XTR6, use -lSM and -lICE.
9956
9957 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
9958 (install): Put install-arch-indep before install-arch-dep.
9959
99601996-02-20 Dave Love <d.love@dl.ac.uk>
9961
9962 * INSTALL: Clarify info about MS-DOS path handling.
9963
99641996-02-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9965
9966 * Makefile.in (install-arch-indep): Install info/ccmode*.
9967 In previous change, protect against /bin/pwd returning null string.
9968
99691996-02-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9970
9971 * Makefile.in (install-arch-indep): Copy build-dir's lisp subdir
9972 to lispdir.
9973
99741996-02-01 Paul Eggert <eggert@twinsun.com>
9975
9976 * configure.in (LD_RUN_PATH): Prepend x_libraries to this envvar.
9977
99781996-01-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9979
9980 * configure.in (HAVE_TIMEVAL): Set explicitly to `no' if test fails.
9981
99821996-01-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9983
9984 * Makefile.in (extraclean): Use ${top_distclean} to ensure
9985 we delete everything distclean deletes.
9986
99871996-01-23 Karl Heuer <kwzh@gnu.ai.mit.edu>
9988
9989 * make-dist (lwlib): Don't distribute lwlib-Xol* files.
9990
99911996-01-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9992
9993 * configure.in (HAVE_X11): Merge $LD_SWITCH_X_SITE
9994 into LDFLAGS instead of into LIBS.
9995
99961996-01-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
9997
9998 * configure.in (HAVE_XMU): Fix typo in previous change.
9999
100001996-01-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10001
10002 * configure.in [Solaris]: Don't let $CC make us use /usr/ucb/cc.
10003
100041996-01-10 Erik Naggum <erik@naggum.no>
10005
10006 * configure.in (USE_X_TOOLKIT = maybe): Delete redundant `fi'.
10007
100081996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
10009
10010 * Makefile.in (install-arch-indep): Ignore error if no chmod -R.
10011
100121996-01-10 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
10013
10014 * configure.in (HAVE_XMU): Check for libXmu.a only if using toolkit
10015 and use -lXt to link it.
10016
100171996-01-08 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
10018
10019 * configure.in (locallisppath): Put version-specific dir first.
10020
100211996-01-07 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
10022
10023 * configure.in (hppa-*-nextstep*): New alternative.
10024 (USE_X_TOOLKIT): By default, set this to "maybe";
10025 and change that later to LUCID or "no" according to X11 version.
10026
10027 * make-dist: Recompile outdated .elc files and update all autoloads.
10028
100291996-01-05 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
10030
10031 * configure.in (locallisppath): Fix typo in last change: " -> '.
10032
100331996-01-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10034
10035 * configure.in (locallisppath): Add ../emacs/VERSION/site-lisp.
10036
100371995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10038
10039 * Makefile.in (install-arch-indep): Give all files read permission.
10040
100411995-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10042
10043 * configure.in (hppa*-hp-hpux9shr*, hppa*-hp-hpux9*, hppa*-hp-hpux*):
10044 If it is hpux 9, check for /usr/include/X11R5 and /usr/lib/x11R5.
10045
100461995-12-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10047
10048 * configure.in: Determine HAVE_X11R6.
90eacf99 10049 (HAVE_MENUS): Rename from HAVE_X_MENU.
067d23c9
KY
10050
100511995-12-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
10052
10053 * configure.in: Just "solaris" now defaults to version 2.4.
10054 Add sunos4.1.n-noshare as alternative.
10055
100561995-12-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10057
10058 * configure.in (mips-sgi-irix6*): Set NON_GNU_CPP.
10059
100601995-11-29 Erik Naggum <erik@naggum.no>
10061
10062 * Makefile.in (install-arch-indep): Add missing backslash.
10063
100641995-11-29 Karl Eichwalder <ke@ke.Central.DE>
10065
10066 * Makefile.in (install-arch-indep): Don't install
10067 lispdir/[Mm]akefile*, lispdir/ChangeLog, lispdir/dired.todo.
10068
100691995-11-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10070
10071 * Makefile.in (install-arch-indep): Fix previous change.
10072
10073 * configure.in (mips-sni-sysv*): New alias for mips-siemens-sysv*.
10074
100751995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10076
10077 * Version 19.30 released.
10078
10079 * make-dist (lisp): Exclude subdirs.el.
10080
100811995-11-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10082
10083 * make-dist (etc): Delete *.orig and *.rej.
10084
100851995-11-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10086
10087 * Makefile.in (install-arch-indep): Rename old info/dir only if exists.
10088
100891995-11-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10090
10091 * configure.in (hppa*-hp-hpux10*): Use s/hpux10.h.
10092
100931995-11-14 Geoff Voelker <voelker@cs.washington.edu>
10094
10095 * make-dist (nt): Rename install, readme, and todo to
10096 INSTALL, README, and TODO.
10097
100981995-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10099
10100 * make-dist (lisp): Don't distribute site-start.
10101
101021995-11-06 Karl Heuer <kwzh@gnu.ai.mit.edu>
10103
10104 * make-dist: Break the hard link on alloca.c.
10105
101061995-11-04 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
10107
10108 * configure.in (LIBS): Add libsrc_libs and keep the old LIBS.
10109
101101995-11-02 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10111
10112 * make-dist (src, lib-src): Don't distribute Makefile.c.
10113 (etc/e): Do cleanup in $tempdir/etc/e, not $tempdir/etc.
10114
101151995-10-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10116
10117 * Makefile.in (mkdir): Create man1dir, not mandir.
10118 (uninstall): Use man1dir, not mandir.
10119
101201995-10-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10121
10122 * Makefile.in (man1dir): New variable.
10123 (install-arch-indep): Use man1dir.
10124
10125 * configure.in (sparc-*-nextstep*): Remove incorrect .h's.
10126
10127 * make-dist: Create lisp/MANIFEST.
10128
101291995-10-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
10130
10131 * configure.in (m68k-*-linux*): New alternative.
10132
101331995-10-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10134
10135 * make-dist: Use new names config.in, paths.in, and
10136 {src,lib-src}/Makefile.in.
10137
101381995-10-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10139
10140 * configure.in: Don't bother checking for drem.
10141
101421995-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10143
10144 * Makefile.in (distclean): Delete line with just a tab in it.
10145 (install-arch-indep): Delete spaces that precede tabs.
10146 Delete spurious `fi' left from previous change.
10147 (install): Supply `true' as command, to avoid null command.
10148
101491995-10-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10150
10151 * configure.in (--with-x-toolkit)): Add `athen' as alias for `athena'.
10152
101531995-09-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10154
ed9265fc 10155 * configure.in (powerpc-*-solaris2): New alternative.
067d23c9
KY
10156
101571995-09-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
10158
10159 * Makefile.in (src/paths.h, paths-force): Use paths.h.$$ instead
10160 of paths.h.tmp$$, to avoid going beyond 14 characters.
10161
101621995-09-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10163
10164 * configure.in: Improve error msg for invalid --with-x-toolkit value.
10165
101661995-09-06 Paul Eggert <eggert@twinsun.com>
10167
10168 * configure.in (LOCALTIME_CACHE): Define if tzset exists and
10169 if localtime caches TZ. Check for tzset.
10170
101711995-09-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10172
10173 * config.bat: Simplify using new names file names src/makefile.in,
10174 config.in, paths.in. Change Echo commands not to use `.
10175
101761995-08-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10177
10178 * Makefile.in (install-arch-indep): Always install the new dir file;
10179 rename the previous dir file to dir.bak or dir.old.
10180
101811995-08-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10182
10183 * configure.in (RANLIB): Substitute this into makefiles.
10184 Set it specially on solaris; set it by default on other systems.
10185
10186 * configure.in: Fix previous Alpha change.
10187
101881995-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10189
10190 * configure.in (i*386-*-isc4.*): Set GCC_TEST_OPTIONS and
10191 NON_GCC_TEST_OPTIONS.
10192
101931995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10194
10195 * configure.in (CFLAGS): When computing CFLAGS and REAL_CFLAGS
10196 from config.h, use SPECIFIED_CFLAGS to get what the user specified.
10197
10198 * configure.in (alpha-*-linux*): New configuration.
10199
102001995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10201
10202 * configure.in (m68*-next-*): Use m68k.h and nextstep.h.
10203 (m68k-next-nextstep*): New alias for that.
10204 (i*86-*-nextstep*): Use nextstep.h.
10205 (sparc-*-nextstep*): New configuration.
10206
102071995-08-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10208
10209 * configure.in (CPP): Save original CFLAGS value in SPECIFIED_CFLAGS.
10210 And get CFLAGS from config.h if SPECIFIED_CFLAGS is null.
10211
102121995-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10213
10214 * configure.in: Handle sunos4shr by sharing; not like sunos4*.
10215 Determine GETTIMEOFDAY_ONE_ARGUMENT by experiment.
10216
102171995-07-18 Mike Long <mike.long@analog.com>
10218
10219 * make-dist: Fix update of finder-inf.el, and byte-compile it.
10220
102211995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10222
10223 * Makefile.in (src/paths.h, paths-force):
10224 Rename src/paths.h.in to src/paths.in.
10225 (Makefile): Depend on src/Makefile.in, not src/Makefile.in.in.
10226
10227 * configure.in: Rename {src,lib-src}/Makefile.in.in to Makefile.in.
10228 Use Makefile.c for intermediate file.
10229 Rename src/config.h.in to src/config.in.
10230
102311995-07-17 Richard Stallman <rms@gnu.ai.mit.edu>
10232
10233 * configure.in (mips-dec-ultrix*): Assume version 4.3.
10234 (mips-dec-ultrix4.[12]): New alternative for old versions.
10235
102361995-07-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10237
10238 * make-dist: Don't break intra-tree links.
10239
102401995-07-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
10241
90eacf99
SM
10242 * configure.in: Put back archlibdir initialization.
10243 Require autoconf 2.4.1 or later.
067d23c9
KY
10244
102451995-07-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10246
10247 * configure.in: Use sunos4shr normally for Sunos 4.1.[3-9].
10248 (mips-mips-riscos5*): New alternative.
10249
102501995-06-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10251
10252 * Makefile.in (uninstall, install-arch-indep): Install info/ediff*.
10253
102541995-06-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10255
10256 * configure.in (bindir, datadir, sharedstatedir, libexecdir)
10257 (mandir, infodir, archlibdir): Initializations deleted.
10258
10259 * configure.in: On hpux9, use hpux9-x11r4.h if we have X11R4.
10260 On hpux9shr, use hpux9shxr4.h.
10261
102621995-06-24 Morten Welinder <terra+@cs.cmu.edu>
10263
10264 * configure.in: Added target mips-dec-mach_bsd4.3.
10265 * config.guess: Guess mips-dec-mach_bsd4.3.
10266
102671995-06-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10268
10269 * Makefile.in (mkdir): Use symbolic chmod.
10270
102711995-06-22 Paul Eggert <eggert@twinsun.com>
10272
10273 * configure.in: Treat SunOS 4.1.4 like SunOS 4.1.3. (Likewise for
10274 SunOS 4.1.5 through 4.1.9, should they ever exist.)
10275
102761995-06-22 Paul Eggert <eggert@twinsun.com>
10277
10278 * Makefile.in (SUBDIR_MAKEFILES):
10279 Add man/Makefile, so `make distclean' removes it.
10280 (top_distclean): Add config.log to the list of files to be removed.
10281
102821995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10283
10284 * Version 19.29 released.
10285
102861995-06-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10287
10288 * configure.in: Fix the previous change to verify that the -b
10289 option really solves the problem.
10290
10291 * make-dist (nt): Explicitly include makefile.nt and makefile.def only.
10292
102931995-06-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10294
10295 * configure.in: Test whether XFree86 needs -b i486-linuxaout to link.
10296
102971995-06-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10298
10299 * configure.in: Report more clearly when there is no special
10300 dir to search for X includes or libraries.
10301
103021995-06-13 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10303
10304 * configure.in: Check for -lpthreads, not -lpthread.
10305
103061995-06-09 Geoff Voelker <voelker@cs.washington.edu>
10307
10308 * make-dist: Copy new files nt/addpm.c and nt/emacs.bat.in.
10309
103101995-06-08 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10311
10312 * configure.in: Check for -lpthread.
10313
103141995-06-05 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10315
10316 * Makefile.in (install-arch-indep): Install info files for mh-e.
10317 (uninstall): Uninstall info files for dired-x, gnus, mh-e, and sc.
10318
103191995-06-01 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10320
10321 * configure.in (*-solaris2.5): New configuration.
10322
10323 * make-dist: Copy new files config.nt and config.w95.
10324
103251995-05-30 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10326
10327 * configure.in: Use x_includes, not x_libraries, for -I.
10328 Make bitmapdir a colon-separated list.
10329
103301995-05-27 Richard Stallman <rms@gnu.ai.mit.edu>
10331
10332 * configure.in (hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
10333
10334 * configure.in: Allow x_libraries and x_includes to be paths.
10335
103361995-05-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10337
10338 * configure.in: Fix typo.
10339
103401995-05-24 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10341
10342 * INSTALL: Clarify use of site-init.el.
10343
103441995-05-22 enami tsugutomo <enami@sys.ptg.sony.co.jp>
10345
10346 * configure.in: Pass arg to sqrt.
10347
103481995-05-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10349
10350 * make-dist: Fix May 6 change.
10351
103521995-05-17 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10353
10354 * vpath.sed: Delete reference to ymakefile.
10355
103561995-05-09 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
10357
10358 * configure.in: Use sqrt (more portable) instead of fmod in -lm check.
10359
103601995-05-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10361
10362 * make-dist: Put nt/emacs.ico and nt/emacs.rc in dist.
10363
10364 * update-subdirs: Specify /bin/sh to run the script.
10365
103661995-05-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10367
10368 * make-dist: Put src/makefile.nt in dist.
10369
10370 * configure.in (i[345]86-*-bsdi2*): New configuration.
90eacf99 10371 (vax-dec-bsd386*): Delete.
067d23c9
KY
10372
103731995-05-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
10374
10375 * configure.in: Make sure CDPATH doesn't mess up PWD check.
10376 Check whether X bitmaps are in X11/bitmaps instead of bitmaps.
10377 Use fmod instead of logb in -lm check.
10378
103791995-05-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10380
90eacf99 10381 * configure.in (m68*-apollo-*): Rename from m68*-apollo*.
067d23c9
KY
10382 Use bsd4-3. Don't set NON_GNU_CPP.
10383
10384 * make-dist: Don't copy in src/s/*.inp. Don't copy nt/src.
10385 In nt, copy various different things, but not *.cmd.
10386 Fix the ln commands for the subdirs of nt.
10387
103881995-04-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10389
10390 * configure.in (*-sun-sunos4.1.3*): Use sunos4shr.h.
10391
103921995-04-27 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10393
10394 * configure.in (*-sun-sunos4.1.3*): Use shared libraries,
10395 since that's what the header file expects.
10396
103971995-04-24 Francesco Potortì (pot@cnuce.cnr.it)
10398
10399 * configure.in (m68k-motorola-sysv*): Distinguish between 68030
10400 and 68040 based machines when choosing options for gnucc.
10401
104021995-04-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10403
10404 * Makefile.in (top_distclean): Delete config.cache.
10405
104061995-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10407
10408 * Makefile.in (install-arch-indep): Delete .#* when copying subdirs.
10409
10410 * configure.in: Use m/ncr386.h.
10411
104121995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10413
10414 * Makefile.in (install-arch-indep): Undo Sep 23 change.
10415
104161995-04-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10417
10418 * make-dist (lib-src): Don't copy *.lex; it doesn't exist anymore.
10419 (man): Don't copy texindex.c and getopt.c; they're deleted.
10420 (etc): Omit `e'; it's a subdirectory.
10421 (etc/e): Use `../..', not `..', to reference top level.
10422
104231995-04-06 Simon Leinen <simon@lia.di.epfl.ch>
10424
10425 * Makefile.in (install-arch-indep, dist):
10426 Look for `update-subdir' in $(srcdir).
10427
104281995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10429
10430 * make-dist: Include mkinstalldirs in distribution.
10431
104321995-04-05 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10433
10434 * make-dist: Add missing close backquote.
10435
104361995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10437
10438 * make-dist: Don't distribute shortnames directory.
10439
104401995-03-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10441
10442 * Makefile.in (blessmail): Pass archlibdir to the sub-make.
10443
104441995-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10445
10446 * configure.in (m88k-motorola-sysv4*): Use usg5-4-2.
10447
104481995-02-23 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10449
10450 * configure.in (EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
10451
104521995-02-13 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
10453
10454 * configure.in (mips-sgi-irix6): New configuration.
10455
104561995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
10457
90eacf99 10458 * Makefile.in (maintainer-clean): Rename from realclean.
067d23c9
KY
10459
104601995-02-02 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
10461
10462 * configure.in: Create a .gdbinit that sources the real one,
10463 if using a different build directory.
10464
104651995-01-23 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10466
10467 * configure.in: Check for sys/select.h.
10468
104691995-01-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10470
10471 * configure.in: On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
10472
104731994-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10474
10475 * configure.in: Handle isc 4.1 operating system.
10476
104771994-12-10 Richard Stallman <rms@kepa>
10478
10479 * configure.in (rs6000-ibm-aix4.1*): New alternative.
10480 (rs6000-ibm-aix4*): New alternative.
10481
104821994-12-06 Richard Stallman <rms@kepa>
10483
10484 * configure.in: For SVR4.2, set NON_GNU_CPP if not already set.
10485
104861994-11-30 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
10487
10488 * configure.in: Don't try to make directories that are guaranteed
10489 to already exist.
10490
104911994-11-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10492
10493 * configure.in: Generate man/Makefile from man/Makefile.in.
10494 Create the man subdir.
10495
10496 * Makefile.in (dvi): Run Make in our man subdir.
10497
10498 * make-dist: Create subdir etc/e.
10499 Make links to it.
10500 Put man/Makefile.in in dist, instead of man/Makefile.
10501
105021994-11-21 David J. MacKenzie (djm@mole.gnu.ai.mit.edu)
10503
10504 * configure.in: Add --with-pop, --with-kerberos, and
10505 --with-hesiod for movemail.
10506
105071994-11-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10508
10509 * configure.in (m68*-apollo*): Use s/domain.h.
10510
105111994-11-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10512
10513 * configure.in (m68*-apollo*): Set NON_GNU_CPP.
10514
105151994-11-14 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
10516
10517 * configure.in: Don't add -I, -L, -R options for cc if their
10518 arguments would be empty.
10519
105201994-11-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10521
10522 * configure.in (i860-intel-osf1*): New alternative.
10523 (mips-sgi-irix5.[01]*): Distinguish from irix5*.
10524 (mips-sgi-irix*): Now an alias for mips-sgi-irix5*.
10525
105261994-11-09 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
10527
10528 * configure.in: Make h_errno check not use nested functions.
10529
105301994-11-09 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
10531
10532 * Makefile.in (install-arch-indep): Delete *.orig in copied dirs.
10533
105341994-11-08 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
10535
10536 * Makefile.in (install-arch-indep): Avoid continued comment
10537 swallowing target line.
10538
105391994-11-08 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
10540
10541 * configure.in: Protect a character class with `changequote'.
10542
105431994-11-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
10544
10545 * configure.in: Accept `news' as a synonym for `newsos'.
10546
105471994-11-03 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10548
10549 * Makefile.in: Don't rm files if cd fails.
10550
105511994-11-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10552
10553 * make-dist: Put nt subdir and its subdirs in the dist.
10554 (lib-src): Put makefile.nt in the dist.
10555 (lisp): Put makefile.nt in the dist.
10556
105571994-10-29 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
10558
10559 * configure.in: Change a stray `[' to `test'.
10560
105611994-10-28 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
10562
10563 * configure.in: Adapt for Autoconf v2. Use the standard argument
10564 parser, host type canonicalizer, X11 finder, and message
10565 printing macros. Use the new macro names. Use `test' instead of `['.
10566
105671994-10-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10568
10569 * configure.in: Check for getpagesize.
10570
105711994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10572
10573 * make-dist (msdos): Put sed* in the distribution.
10574
105751994-10-17 Morten Welinder <terra@mole.gnu.ai.mit.edu>
10576
10577 * config.bat: New option, `--with-x', for configuring Emacs
10578 for use with the X11 system DesqView/X.
10579 New option, `--no-debug', for compiling Emacs without debug
10580 information thus saving disk space.
10581 (src/config.h, src/paths.h): Use `update' (which is like
10582 `move-if-changed') to change the file.
10583 (src/config.h): When configuring for X11 perform extra changes.
10584 (src/makefile): When configuring for X11 perform extra changes.
10585 (lib-src): Remove temporary files.
10586 (): Check that `sed', `rm', `mv', and `gcc' are available.
10587
105881994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10589
10590 * Makefile.in (sharedstatedir): Substitute sharedstatedir properly.
10591
10592 * configure.in (bitmapdirs): Default to /usr/include/X11/bitmaps.
10593
105941994-10-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10595
10596 * configure.in (EMACS_CONFIGURATION): Use $canonical as value.
10597
10598 * configure.in (canonical): Substitute var into makefiles.
10599 (bitmapdir): Likewise.
10600
10601 * Makefile.in (bitmapdir): New variable.
10602 (src/paths.h, paths-force): Edit PATH_BITMAPS.
10603
106041994-10-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10605
10606 * make-dist: Put update-subdirs and lisp/subdirs.el in the dist.
10607
10608 * Makefile.in (dist, install-arch-indep): Run update-subdirs.
10609 * update-subdirs: New shell script.
10610
106111994-10-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10612
10613 * Makefile.in (top_distclean): Don't rm build-install.
10614 (SOURCES): Delete build-install.in.
10615
10616 * make-dist: Don't distribute build-ins.in.
10617 * build-ins.in: File deleted.
10618
106191994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
10620
10621 * Makefile.in (mkdir): Use mkinstalldirs instead of make-path.
10622
106231994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10624
10625 * Makefile.in: Use libexecdir and sharedstatedir as appropriate.
10626
90eacf99
SM
10627 * configure.in (libexecdir): Rename from libdir. New default.
10628 (sharedstatedir): Rename from statedir. New default.
067d23c9
KY
10629 (datadir): New default.
10630
10631 * make-dist: Don't distribute subdirs.el.
10632
106331994-10-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10634
10635 * configure.in (eaccess): Check for it.
10636
106371994-10-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10638
10639 * configure.in (mktime): Check for it.
10640
106411994-10-02 Paul Reilly <pmr@geech.gnu.ai.mit.edu>
10642
10643 * configure.in (motif): Add support for usage and option checking.
10644
106451994-09-24 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
10646
10647 * configure.in (utimes): Check for it.
10648
106491994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
10650
10651 * Makefile.in (install-arch-indep): Don't do mkdir here.
10652
106531994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10654
10655 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
10656 riscix.h renamed to acorn.h.
10657
106581994-09-21 Michael Ben-Gershon (mybg@cs.huji.ac.il)
10659
10660 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
10661 New configurations.
10662
106631994-09-21 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
10664
10665 * configure.in: Remove trailing slashes from srcdir.
10666
106671994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10668
090bd7cb 10669 * configure.in (i[345]86-sequent-ptx*): Handle.
067d23c9
KY
10670
106711994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10672
ed9265fc 10673 * Makefile.in (paths-force): Depend on src/paths.h.
067d23c9
KY
10674
106751994-09-19 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10676
10677 * configure.in (config_options): Save all arguments, not just some.
10678
106791994-09-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
10680
090bd7cb 10681 * Makefile.in (install-arch-indep): Copy DOC-*, not DOC*.
067d23c9
KY
10682
10683 * configure.in: Add AC_AIX.
10684 Add checks to set HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL, HAVE_SELECT.
10685
106861994-09-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10687
10688 * configure.in (parsing options): Simplify sed command to delete -'s.
10689
106901994-09-16 Karl Heuer <kwzh@churchy.gnu.ai.mit.edu>
10691
10692 * configure.in (config_options): New shell variable.
10693 Pass its value to C code in EMACS_CONFIG_OPTIONS.
10694
106951994-09-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10696
10697 * configure.in (alpha-dec-osf*): New target.
10698
10699 * Makefile.in: Use just one FRC target.
10700
107011994-09-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10702
10703 * Makefile.in (removenullpaths, paths-force):
10704 Use name paths.h.tmp$$, which depends on the pid.
10705
107061994-09-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10707
10708 * Makefile.in (removenullpaths, paths-force):
10709 Put paths.h.tmp in top-level dir, not in src.
10710
107111994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10712
10713 * Version 19.27 released.
10714
107151994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10716
10717 * Version 19.26 released.
10718
107191994-09-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10720
10721 * configure.in: Check for lrand48, not rand48.
10722
107231994-09-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10724
10725 * configure.in (powerpc-ibm-aix3.1*, powerpc-ibm-aix3.2.5)
10726 (powerpc-ibm-aix*): New aliases.
10727
107281994-08-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10729
10730 * make-dist (src/m, src/s): Put *.inp in distribution.
10731
107321994-08-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10733
10734 * configure.in: Accept i586 and i486 along with i386.
10735
107361994-08-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10737
10738 * configure.in: Do compute unexec, LIBX, system_malloc, etc
10739 even if CPP env var was set by the user.
10740
10741 * configure.in (i[34]86-*-*): For SCO 3.2v4, fix NON_GNU_CPP value.
10742
107431994-08-14 Jonathan I. Kamens (jik@gza-client1.aktis.com)
10744
10745 * Makefile.in: Uninstall "$(EMACS)", not "emacs".
10746
107471994-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10748
10749 * configure.in (i[34]86-*-*): For SCO 3.2v4, set NON_GNU_CPP.
10750
107511994-08-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10752
10753 * configure.in: Check more specifically for i*86-sun-sunos.
10754
107551994-08-03 Caveh Jalali (caveh@eng.sun.com)
10756
10757 * configure.in: Handle solaris 2.4.
10758
107591994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10760
10761 * configure.in (rand48): Check for it.
10762
107631994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10764
10765 * make-dist: Update the info files.
10766
107671994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10768
10769 * configure.in: Make "checking..." messages' style consistent.
10770 (HAVE_H_ERRNO): New test.
10771
107721994-07-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
10773
10774 * configure.in (i860-*-sysv4*): Set NON_GNU_CC and NON_GNU_CPP.
10775
107761994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10777
10778 * configure.in (CFLAGS): If the envvar was specified, use that.
10779 And set REAL_CFLAGS from it too.
10780
107811994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10782
10783 * make-dist: Update finder-inf.el.
10784
107851994-07-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10786
10787 * make-dist (msdos): Include sed4.inp in dist.
10788
10789 * Makefile.in (libsrc_libs): Var deleted.
10790
107911994-07-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10792
10793 * Makefile.in (mkdir, removenullpaths): Put g in sed replace commands.
10794
107951994-06-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10796
10797 * configure.in (mips-sony-newsos4*): New alias.
10798
107991994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10800
10801 * configure.in (*-convex-bsd*): Set NON_GNU_CPP.
10802 (*-convex-convexos*): Accept this as alias.
10803
108041994-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10805
10806 * configure.in: Get CFLAGS both with and without THIS_IS_CONFIGURE,
10807 for two different uses.
10808
108091994-06-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10810
10811 * configure.in: Define THIS_IS_CONFIGURE when extracting CFLAGS etc.
10812
108131994-06-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10814
10815 * make-dist: Put ./BUGS into the distrib.
10816
108171994-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10818
10819 * configure.in: Handle 386 running Solaris 2.
10820
108211994-06-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10822
10823 * configure.in (mips-siemens-sysv*): Use cpp, not cc -E.
10824
108251994-06-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10826
10827 * configure.in (mips-sony-newsos*): Use news-risc.h.
10828
10829 * configure.in: Accept bsdi as opsys, like bsd386.
10830
108311994-06-01 Morten Welinder (terra@diku.dk)
10832
10833 * config.bat (src/paths.h): Use sed script msdos/sed4.inp.
10834
108351994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10836
10837 * Version 19.25 released.
10838
10839 * make-dist (shortversion): Don't assume another period follows.
10840
108411994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10842
10843 * Makefile.in (install-arch-indep): Use /bin/pwd uniformly, not pwd.
10844 (uninstall): Use /bin/pwd.
10845
10846 * Makefile.in (blessmail): Depend on src.
10847 (all): Don't depend on blessmail.
10848
10849 * Makefile.in (src/paths.h): Don't force recomputation.
10850 (paths-force): New target; force recomputation of paths.h.
10851 (all): Depend on paths-force.
10852 (src, lib-src): Depend on src/paths.h.
10853
10854 * configure.in (*-sun-sunos4*): Set GCC_TEST_OPTIONS,
10855 NON_GCC_TEST_OPTIONS.
10856
108571994-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10858
10859 * configure.in: Don't insist on subversions for irix.
10860
108611994-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10862
10863 * configure.in (hppa*-hp-hpux9shr): Move alternative up.
10864
10865 * configure.in (i[34]86-next-*): New alternative.
10866
108671994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10868
10869 * Version 19.24 released.
10870
10871 * configure.in: New config hppa*-hp-hpux9shr*.
10872
108731994-05-22 Morten Welinder (terra@tyr.diku.dk)
10874
10875 * config.bat: Doc fix.
10876
108771994-05-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10878
10879 * Makefile.in (mostlyclean, clean, distclean, realclean)
10880 (extraclean): Don't act on man subdir if it doesn't exist.
10881
108821994-05-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10883
10884 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS): New vars.
10885 Use them to set up CC.
10886 (*-sun-sunos4.1.3): Set them.
10887
108881994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10889
10890 * Makefile.in (lib-src): Don't depend on src/paths.h.
10891
108921994-05-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10893
10894 * build-ins.in (copydests): Get rid of spurious `-'s.
10895
10896 * configure.in: Define EMACS_CONFIGURATION instead of CONFIGURATION.
10897
108981994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10899
10900 * Version 19.23 released.
10901
10902 * configure.in [HAVE_X11]: Merge $C_SWITCH_X_SITE into CFLAGS
10903 for the Xlib and Xt checks; then restore old CFLAGS.
10904
109051994-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10906
10907 * configure.in (HAVE_X11XTR6): Add newline before #if.
10908 Add newline after #endif.
10909
109101994-05-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10911
10912 * configure.in (HAVE_X11XTR6): Arrange to define it.
10913
109141994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10915
10916 * Makefile.in (install): Depend on blessmail.
10917
109181994-05-12 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
10919
10920 * configure.in (mips-siemens-sysv*): Put quotes around value
10921 containing blanks.
10922
109231994-05-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10924
10925 * Makefile.in (TAGS): Use the makefile in src subdir.
10926
109271994-05-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
10928
10929 * configure.in (opsys): Recognize `gnu'.
10930
109311994-05-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10932
10933 * configure.in (using NON_GNU_CPP): Fix test for CPP already set.
10934
109351994-05-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
10936
10937 * configure.in: Remove AC_LANG_C call. Not needed with Autoconf
10938 version > 1.8.
10939
109401994-05-08 Morten Welinder (terra@diku.dk)
10941
10942 * config.bat: Forcibly remove "# " style comments from makefiles.
10943
109441994-05-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10945
10946 * Makefile.in (uninstall): When processing lispdir and etcdir,
10947 do nothing unless it exists and is a directory.
10948
109491994-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10950
10951 * Makefile.in (install-arch-indep): Do install info/dired-x*.
10952 Merge code in from install-doc.
10953 (install-doc): Merge code back into install-arch-indep.
10954 (install-arch-dep): Don't depend on install-doc.
10955
10956 * configure.in (run_in_place): Don't use pwd for archlibdir and docdir.
10957
109581994-05-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10959
10960 * configure.in (making src/Makefile and lib-src/Makefile):
10961 Split off the autoconf substitutions and don't pass them thru cpp.
10962 (undefs): Use $canonical as well as $configuration.
10963
10964 * make-dist: Distribute lisp/Makefile.
10965
10966 * configure.in: Recognize m88k-dg-dgux5.4.3* and m88k-dg-dgux5.4.2*.
10967 Use lower case names for the s files.
10968
109691994-05-03 Morten Welinder (terra@diku.dk)
10970
10971 * config.bat: Added possibility for different file name
10972 transcriptions in lib-src.
10973
109741994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10975
10976 * Makefile.in (lib-src): Undo previous change.
10977 (blessmail): New target to run maybe-blessmail in lib-src.
10978 (all): Depend on blessmail.
10979
10980 * Makefile.in (lib-src): Depend on src.
10981
109821994-04-30 Paul Reilly (pmr@churchy.gnu.ai.mit.edu)
10983
10984 * configure.in (m88k-dg-dgux5.4R3): Use dgux5-4R3.
10985 (m88k-dg-dgux5.4R2): dgux5.4R2.
10986
109871994-04-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10988
10989 * configure.in (window_system): Restore accidentally deleted code
10990 that uses AC_FIND_X.
10991
10992 * make-dist: Distribute config.bat.
10993
109941994-04-29 Morten Welinder (terra@diku.dk)
10995
10996 * config.bat: Corrected the configuration of lib-src
10997 to keep up with configure. Add note about dos version 3
10998 or better needed (djgpp needs that). Add note explaining
10999 that either install in c:/emacs or edit the script.
11000 Don't change to c:/emacs, but assume we're there (to minimize
11001 the number of places to change).
11002
11003 * config.bat: Build-in the first step towards X11 support with
11004 the X11 emulator that exists. At this time it won't work,
11005 and several files are missing.
11006
110071994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11008
11009 * configure.in: Use m/hp800.h in place of m/hp9000s800.h.
11010 Don't look for -lresolv.
11011
11012 * Makefile.in (lib-src): Depend on src/paths.h.
11013
110141994-04-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11015
11016 * configure.in: Restore deleted AC_SUBST of `configuration'.
11017 Improve error message for bad --with-x-toolkit value.
11018
11019 * configure.in: Define CONFIGURATION in src/config.h
11020 rather than substituting in src/Makefile.in.
11021
110221994-04-26 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11023
11024 * Makefile.in (install-doc): New target.
11025 (install-arch-dep): Depend on install-doc.
11026 (mkdir): Create docdir.
11027
110281994-04-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11029
11030 * configure.in: Test for libresolv.a.
11031 Substitute machfile and opsysfile.
11032
110331994-04-22 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11034
11035 * Makefile.in (.PHONY, install): Kill reference to obsolete do-install.
11036 (install-arch-dep): Install under the name $(EMACS).
11037
110381994-04-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11039
11040 * configure.in (version): Use entire value of emacs-version.
11041 (mips-siemens-sysv*): New alternative.
11042
110431994-04-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11044
11045 * Makefile.in (install-arch-indep): Don't install dired-x*.
11046
110471994-04-18 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11048
11049 * configure.in (src/Makefile, lib-src/Makefile): Delete ^L.
11050 Fix definition of $undefs.
11051
110521994-04-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11053
11054 * configure.in (window_system): Obey --with-x11=no and --with-x10=no.
11055
11056 * configure.in (lib-src/Makefile.in): Use src, not lib-src, in -I.
11057
110581994-04-16 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
11059
11060 * configure.in: Call AC_LANG_C, if it's defined, after AC_PREPARE.
11061
110621994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11063
11064 * configure.in (lib-src/Makefile.in): Make this from Makefile.in.in
11065 and run it thru cpp, as with src/Makefile.in.
11066
11067 * configure.in: Use AC_SET_MAKE.
11068
110691994-04-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11070
11071 * configure.in (i[34]86-ncr-sysv*): Use usg5-4-2.
11072
110731994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11074
11075 * Makefile.in (MAKE): Don't just assign it--use @SET_MAKE@.
11076
11077 * configure.in (CFLAGS): Exclude ${CFLAGS} from singlequotes.
11078 (printing the choices): Make the toolkit message unconditional.
11079 (USE_X_TOOLKIT): Use `none', not `no', if none.
11080 (include libsrc_libs): Include config.h, and specify -I for srcdir.
11081 Get rid of temp file foofoo1.
11082
110831994-04-13 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11084
11085 * configure.in (CFLAGS): Use shell syntax, not Makefile.
11086
110871994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11088
11089 * configure.in (window_system): If no X, set USE_X_TOOLKIT=no.
11090 (printing the choices): State choice of toolkit.
11091 (libsrc_libs): Recalculate after writing config.h;
11092 then update lib-src/Makefile.
11093
110941994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11095
11096 * configure.in: Add sunos4shr as alternative for suns.
11097 Conditionals testing for null $CC were backwards.
11098
110991994-04-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11100
11101 * make-dist (msdos): Don't link patch1. Link sed*.inp, not sed.in*.
11102
111031994-04-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11104
11105 * configure.in: Handle -isc4.0*.
11106
111071994-03-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11108
11109 * configure.in (esix5): Set NON_GNU_CPP.
11110
111111994-03-24 Roland McGrath (roland@mole.gnu.ai.mit.edu)
11112
11113 * Makefile.in (thisdir): Nonsensical variable removed.
11114 (install-arch-indep): Set shell var thisdir=`pwd` before cd and cd
11115 back to $thisdir, rather than the directory `this_dir'.
11116
111171994-03-17 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11118
11119 * Makefile.in (install-arch-indep): Add missing backslash after a
11120 `then'.
11121
111221994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11123
11124 * Makefile.in (thisdir): New variable.
11125 (install-arch-indep): Go back to thisdir to run INSTALL_DATA.
11126
111271994-03-08 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11128
11129 * configure.in: Add freebsd.
11130
111311994-03-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11132
11133 * configure.in: Check for fpathconf.
11134
111351994-03-02 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11136
11137 * configure.in (with_x_toolkit): Fix typo in previous change.
11138
111391994-03-01 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11140
11141 * configure.in: New s-file for rs60000-ibm-aix3.2.5.
11142
111431994-02-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11144
11145 * configure.in (with_x_toolkit): Don't allow motif or open-look.
11146
111471994-02-24 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
11148
11149 * configure.in: Fix value of docdir.
11150 * Makefile.in (install-arch-indep): Install DOC* in docdir.
11151
111521994-02-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11153
11154 * configure.in (*-sysv4.1): Set NON_GNU_CPP.
11155
111561994-02-22 Karl Heuer (kwzh@geech.gnu.ai.mit.edu)
11157
11158 * configure.in: New variable docdir to control where the docstring
11159 file goes.
11160 Makefile.in: Use it to initialize PATH_DOC in paths.h.
11161
111621994-02-22 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
11163
11164 * configure.in: When --run-in-place, don't inherit archlibdir.
11165
111661994-02-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11167
11168 * Makefile.in (install-arch-dep, install-arch-indep):
11169 New targets split up former do-install rule.
11170 (do-install): Target deleted.
11171
111721994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11173
11174 * configure.in (mips-sony-newsos*): New configuration.
11175
111761994-02-14 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
11177
90eacf99 11178 * configure.in (rs6000-bull-bosx*): Add support for BULL dpx20.
067d23c9
KY
11179
111801994-02-11 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
11181
11182 * configure.in: Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
11183
111841994-02-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11185
11186 * configure.in: Don't initialize CC.
11187
111881994-02-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11189
11190 * configure.in (creating src/Makefile): Also generate -U switches
11191 for symbols in the $configuration value.
11192
11193 * configure.in: Check for sys_siglist being declared in system header.
11194
111951994-02-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11196
11197 * configure.in (creating src/Makefile): Delete blank lines
11198 along with lines of whitespace.
11199 (m68k-motorola-sysv*, m68000-motorola-sysv*): Compute proper CC value.
11200
112011994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11202
11203 * configure.in: Get, use, and substitute C_SWITCH_MACHINE
11204 like C_SWITCH_SYSTEM.
11205 (m68*-motorola-sysv*): Set CC. Require cpu type to be m68k or m68000.
11206
112071994-02-04 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
11208
11209 * configure.in (drem): Check for this function.
11210
112111994-02-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11212
11213 * configure.in (Using NON_GNU_CPP): Don't lose if it has spaces.
11214 If CPP was inherited from environment, don't use NON_GNU_CPP.
11215 (NON_GNU_CC): Likewise.
11216 (handling with_gcc): Use explicit if in the `no' case.
11217 (cc_specified): New variable; if set, don't use NON_GNU_CC.
11218
112191994-02-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11220
11221 * configure.in (mips-mips-riscos4*): Set NON_GNU_CPP.
11222
112231994-02-01 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
11224
11225 * configure.in: Check whether fmod exists.
11226
112271994-01-31 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11228
11229 * make-dist: Distribute {src,lisp}/ChangeLog.? instead of
11230 {src,lisp}/OChangeLog.
11231
112321994-01-22 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11233
11234 * configure.in: Restore Jan 8 and Jan 16 changes. The -U hack is
11235 necessary for proper operation. This code works with the current
11236 released version of Autoconf.
11237
112381994-01-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11239
11240 * configure.in (with_x_toolkit): Treat values athena and lucid alike.
11241 (USE_X_TOOLKIT): Define it for all values except `no'.
11242
11243 * configure.in: Undo first Jan 8 change and Jan 16 change.
11244
112451994-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11246
11247 * configure.in: Handle --with-x-toolkit. Produce lwlib/Makefile.
11248 Substitute USE_X_TOOLKIT as both C macro and Make variable.
11249
11250 * Makefile.in (lwlib/Makefile): New target.
11251 (SUBDIR_MAKEFILES): Depend on lwlib/Makefile.
11252 (clean, mostlyclean, distclean, realclean): Handle lwlib subdir.
11253 (unlock, relock): Handle lwlib subdir.
11254
11255 * Makefile.in: Add some .PHONY targets.
11256
11257 * make-dist: Handle lwlib subdir like oldXMenu subdir.
11258
11259 * lwlib: New subdirectory.
11260
112611994-01-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11262
11263 * configure.in: If CPP has a value that is a directory,
11264 discard the value.
11265
112661994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11267
11268 * configure.in (srcdir_undefs): Add g flag to sed substitution to
11269 remove -U[0-9]*.
11270
112711994-01-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11272
11273 * Makefile.in (do-install): Install the dired-x info files.
11274
11275 * configure.in: Provide for variable LD_SWITCH_X_SITE_AUX.
11276 (See src/s/sol2.h.)
11277
112781994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11279
11280 * configure.in (m68k-harris-cxux*, m88k-harris-cxux*): New configs.
11281
112821994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11283
11284 * configure.in (creating src/Makefile): Put code inside 2nd arg to
c80e3b4a 11285 AC_OUTPUT as it should be; hopefully no one will again see fit to
067d23c9
KY
11286 gratuitously break this and not make a change log entry.
11287 Optimized sed processing of Makefile.in and cpp output; now
11288 preserves comments previously removed from the cpp input.
11289 Eliminated temp file for cpp output. Generate -U switches to
11290 undefine all identifiers that appear in the directory name
11291 ${srcdir}; pass these to cpp.
11292
11293 * configure.in (version): Fix sed regexp to match two-elt version
11294 number.
11295
11296 * configure.in: Check for strerror.
11297
112981994-01-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11299
11300 * configure.in: Test for bcmp.
11301
113021994-01-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11303
11304 * make-dist (tempdir): Put subdir msdos into the distribution.
11305
113061993-01-07 Morten Welinder (terra@diku.dk)
11307
11308 * config.bat: New file.
11309
113101994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11311
11312 * Makefile.in (${SUBDIR} target): Pass down LDFLAGS and CPPFLAGS.
11313
113141994-01-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11315
11316 * configure.in (m68*-next-*): Don't care about which os is specified.
11317 (i[34]86-*-*): Check for *-nextstop*.
11318
113191993-12-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11320
11321 * configure.in: Check for setsid.
11322
113231993-12-17 Richard Stallman (rms@srarc2)
11324
11325 * configure.in (*-sun-solaris*): Add special case for Solaris 2.3.
11326
113271993-12-15 Richard Stallman (rms@srarc2)
11328
11329 * Makefile.in (mkdir): Make only the lockdir writable.
11330
90eacf99 11331 * configure.in (i860-*-sysv4): Rename from i860-*-sysvr4.
067d23c9
KY
11332
113331993-12-11 Richard Stallman (rms@srarc2)
11334
11335 * Makefile.in (libdir): Use @libdir@.
11336
113371993-12-08 Richard Stallman (rms@srarc2)
11338
11339 * Makefile.in (install): Add empty command.
11340
113411993-12-04 Richard Stallman (rms@srarc2)
11342
11343 * make-dist: Put man/getopt.c in the dist.
11344
11345 * configure.in (LIBS): Add test for existence of XSetWMProtocols.
11346
11347 * Makefile.in (install): Depend on ${SUBDIR}, not `all'.
11348
113491993-12-03 Richard Stallman (rms@srarc2)
11350
11351 * configure.in (solaris): Set NON_GNU_CPP instead of CPP.
11352 Set it for all solaris versions.
11353 (mips-mips-riscos4*): Set NON_GNU_CC, not CC.
11354 (after checking for GCC): If not GCC, and NON_GNU_CPP is set, set CPP.
11355 Likewise for NON_GNU_CC and CC.
11356
113571993-12-01 Richard Stallman (rms@srarc2)
11358
11359 * configure.in (mips-mips-riscos4*): Assign variable CC.
11360 (checking ${with_gcc}): If "no", don't override CC if already set.
11361 (CC): Initialize it as empty.
11362
113631993-11-30 Richard Stallman (rms@srarc2)
11364
11365 * configure.in (Suns): Set CPP if *-solaris2.3*.
11366
113671993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11368
11369 * Version 19.22 released.
11370
11371 * Makefile.in (do-install): Use umask 022 in copying etc and lisp dirs.
11372
113731993-11-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11374
11375 * make-dist: When breaking links, use cp -p.
11376 Copy install.sh into distribution.
11377 Move the temp dir up into the parent dir;
11378 don't leave the staging dir make-dist.tmp... in existence.
11379 * install.sh: New file.
11380
113811993-11-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11382
11383 * configure.in (i[34]86-ncr-sysv*): New specific alternative.
11384
113851993-11-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11386
11387 * configure.in (version): When --run-in-place, exclude
11388 ${datadir}/emacs/site-lisp from locallisppath.
11389
113901993-11-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11391
11392 * configure.in: Delete jumk.c before writing it.
11393
113941993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11395
11396 * Version 19.21 released.
11397
11398 * Makefile.in (mkdir): Ignore error from chmod.
11399
114001993-11-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11401
11402 * make-dist: Don't put lisp/forms.README in the distribution.
11403
114041993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11405
11406 * configure.in (creating src/Makefile): Before running cpp,
11407 discard all lines that start with `# Generated' or /**/#.
11408
114091993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11410
11411 * Version 19.20 released.
11412
11413 * make-dist: Use build-ins.in, not build-install.in.
11414 Don't bother updating TAGS since it's not included.
11415
11416 * build-ins.in: Renamed from build-install.in.
11417
114181993-11-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11419
11420 * make-dist: Don't try to link *.texinfo--there are none now.
11421 When running make in lib-src, specify YACC var value.
11422
114231993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11424
11425 * configure.in (extrasub): Add vpath patterns for %.[yls].
11426
11427 * configure.in: Don't do seddery on config.status after AC_OUTPUT.
11428 Instead just include the commands to make src/Makefile as the
11429 second arg to AC_OUTPUT.
11430
11431 * configure.in: Use : instead of dnl for comment inside
11432 $makefile_command.
11433
11434 * configure.in: No longer use vpath_sed. Instead, when we notice
11435 srcdir already configured, set extrasub to hack vpath in the
11436 makefiles.
11437
11438 * configure.in: In cmds to make src/Makefile, chmod Makefile.new
11439 before moving it.
11440 * Makefile.in (VPATH): Define to @srcdir@.
11441
114421993-09-28 Brian J. Fox (bfox@cubit)
11443
11444 * configure.in: Don't copy ${srcdir}/src/Makefile.in; that file
90eacf99
SM
11445 doesn't exist. Just copy src/Makefile.in instead.
11446 Touch all of the Makefiles after editing config.status.
067d23c9
KY
11447
11448 * INSTALL: Update documentation to match new configuration
11449 mechanism.
11450
114511993-09-27 Brian J. Fox (bfox@ai.mit.edu)
11452
11453 * configure.in: Allow any of the path or directory Makefile
11454 variables to be set with flags to configure. Create all Makefiles
11455 at configure time. Edit special commands into config.status after
11456 src/Makefile.in is built from src/Makefile.
11457
11458 * Makefile.in (src/Makefile, lib-src/Makefile, oldXMenu/Makefile):
11459 If these files are out of date, simply have config.status
11460 rebuild them; don't rebuild them explicitly.
11461
114621993-09-25 Brian J. Fox (bfox@ai.mit.edu)
11463
11464 * build-install.in: Change src/xemacs to src/emacs. We no longer
11465 create src/xemacs, so the file wouldn't be found.
11466
11467 * make-dist: Remove `src/ymakefile', add `src/Makefile.in.in'.
11468
114691993-09-24 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
11470
11471 * configure.in: Avoid forcing the search of /usr/include before
11472 fixed include files by resetting C_SWITCH_X_SITE if it is
11473 "-I/usr/include".
11474
114751993-09-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11476
11477 * Makefile.in (@rip_paths@locallisppath):
11478 Delete ${datadir}/emacs/site-lisp.
11479
114801993-09-15 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11481
11482 * configure.in:
11483 Use AC_QUOTE_SQUOTE twice to properly quote vpath_sed value.
11484 Remove ${extra_output} from AC_OUTPUT call.
11485
114861993-09-17 Brian J. Fox (bfox@inferno)
11487
11488 * make-dist: Quote backquotes found in strings to be echoed.
11489
11490 * configure.in: Use "sh -c pwd" when we want to avoid having the
11491 shell fix up the value of $PWD.
11492
114931993-09-13 Brian J. Fox (bfox@inferno)
11494
11495 * Makefile.in (do-install): Don't abort if ln or chmod at the end
11496 of the installation fail. Suggested by Karl Berry.
11497
114981993-08-30 Brian J. Fox (bfox@inferno)
11499
11500 * Makefile.in (*clean): Use "$(MAKE) $(MAKEFLAGS)" wherever "make"
11501 was used. Set MAKEFLAGS from MFLAGS.
11502
115031993-09-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11504
11505 * configure.in: Test for res_init in libc.
11506
115071993-09-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11508
11509 * configure.in: In the file ${tempcname}, use configure___
11510 instead of @configure@.
11511
115121993-09-12 Roland McGrath (roland@sugar-bombs.gnu.ai.mit.edu)
11513
ed9265fc 11514 * make-dist: Dist vpath.sed.
067d23c9
KY
11515
11516 * Makefile.in (lib-src/Makefile, src/Makefile, oldXMenu/Makefile):
11517 Depend on vpath.sed.
6e81c819 11518 Replace sed command for VPATH with @vpath_sed@.
067d23c9
KY
11519
11520 * configure.in: Substitute variable `vpath_sed'.
11521 If not in $srcdir and $srcdir is configured,
11522 issue warning that GNU make is required,
11523 and set vpath_sed to use vpath.sed script.
11524
115251993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11526
90eacf99
SM
11527 * configure.in: Remove check for $srcdir being configured.
11528 This pretty much works now.
067d23c9
KY
11529 Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
11530 Check for XFree86 (/usr/X386/include) independent of whether
11531 -lXbsd exists.
11532
11533 * Makefile.in (info, dvi, clean, mostlyclean, distclean,
11534 realclean, unlock, relock): Use `$(MAKE)' in place of plain
11535 `make'.
11536
115371993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11538
11539 * Version 19.19 released.
11540
11541 * configure.in (i386-*-sunos4): Assume Sunos 4.0.
11542
115431993-08-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11544
11545 * configure.in: Check for XScreenNumberOfScreen.
11546
115471993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11548
11549 * configure.in: Add * to end of all configuration alternatives.
11550 (m68*-sony-newsos3*): New alternative.
11551
115521993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11553
11554 * make-dist: Include getdate.c in distribution.
11555
11556 * configure.in: For --help, use $PAGER if it is set.
11557 (LIB_X11_LIB): Default to -lX11.
11558 (mips-sgi-irix5.*): New alternative.
11559
11560 * Makefile.in (do-install): Install info/gnus* and info/sc*.
11561
11562 * configure.in (m68*-hp-hpux*, hppa*-hp-hpux*):
11563 Recognize *.B8.* as hpux version 8.
11564 (m68*-tektronix-bsd*): Fix typo in tek4300.
11565 (AC_HAVE_FUNCS): Add ftime.
11566
115671993-08-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11568
90eacf99 11569 * configure.in (m88k-tektronix-sysv3*): Add the missing *.
067d23c9
KY
11570 Use tekxd88, not tekXD88.
11571
115721993-08-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
11573
11574 * configure.in: Check for -lm. Then can check for frexp and logb.
11575
115761993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11577
11578 * Version 19.18 released.
11579
11580 * make-dist (src): Don't put gnu-hp300 in dist.
11581 (src, lisp): Include OChangeLog in dist.
11582
115831993-08-08 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11584
11585 * configure.in: Test for presence of logb and frexp functions.
11586
115871993-08-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11588
11589 * configure.in (machine): Add i370-ibm-aix*.
11590
115911993-08-03 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11592
11593 * configure.in (function checks): Test for mkdir and rmdir.
11594
11595 * configure.in (function checks): Don't test for random and bcopy
11596 only when we're building with X; look for them all the time.
11597
115981993-07-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11599
11600 * configure.in: Test for availability of bcopy functions, searching
11601 the X libraries if we're using X.
11602
11603 * configure.in: Test for the presence of/usr/lpp/X11/bin/smt.exp,
11604 and #define HAVE_AIX_SMT_EXP if we do. This is present in some
11605 versions of AIX, and needs to be passed to the loader.
11606
11607 * configure.in: Test for the availability of the
11608 XScreenResourceString function.
11609
116101993-07-30 David J. MacKenzie (djm@frob.eng.umd.edu)
11611
11612 * configure.in: If we found X on our own, set C_SWITCH_X_SITE and
11613 LD_SWITCH_X_SITE and assume --with-x11.
11614 Only look for X11 files if we weren't told about a window system
11615 or if we were told to use X11 but not told where.
11616 Search the libraries from the s and/or m files when checking for
11617 functions.
11618
11619 * configure.in: Remove any trailing slashes in prefix and exec_prefix.
11620
116211993-07-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11622
11623 * make-dist: Include lisp/dired.todo in the distribution.
11624
116251993-07-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11626
11627 * configure.in: Add code to set HAVE_INET_SOCKETS.
11628
116291993-07-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11630
11631 * configure.in: If we do find x_includes and x_libraries
11632 via AC_FIND_X, set C_SWITCH_X_SITE and LD_SWITCH_X_SITE.
11633
116341993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11635
11636 * make-dist: Include src/gnu-hp300 in the dist.
11637
11638 * configure.in (canonical): New variable holds the canonicalized
11639 configuration. Don't alter `configuration'. Use `configuration'
11640 for Makefile.in for file naming.
11641 (testing x_includes and x_libraries): Use =, not ==.
11642
116431993-07-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11644
11645 * Version 19.17 released.
11646
11647 * Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
11648 directory's makefile. This allows the invocation of CPP which
11649 builds xmakefile to receive these switches. The SunSoft C
11650 preprocessor inserts spaces between tokens if it doesn't get the
11651 -Xs flag requested in src/s/sol2.h.
11652
116531993-07-12 Frederic Pierresteguy (F.Pierresteguy@frcl.bull.fr)
11654
11655 * configure.in (m68k-bull-sysv3): New config.
11656
116571993-07-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11658
11659 * configure.in: Use the autoconf AC_FIND_X macro to try to find
11660 the X Windows libraries.
11661
116621993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11663
11664 * make-dist (tempdir): Don't create lisp/forms-mode directory in
11665 the distribution. Those files aren't kept in their own
11666 subdirectory any more.
11667
116681993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11669
11670 * Version 19.16 released.
11671
116721993-06-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11673
11674 * configure.in: Add --verbose flag.
11675
116761993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11677
11678 * version 19.15 released.
11679
116801993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11681
11682 * Makefile.in (top_distclean): Use -f switch when cleaning out
11683 lock dir; it might be empty.
11684
11685 * configure.in: Only check for -lXbsd once.
11686
116871993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11688
11689 * Version 19.14 released.
11690
116911993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11692
11693 * make-dist: If using gzip, create distribution with '.gz' extension.
11694
11695 * make-dist (lisp/term): This doesn't have a ChangeLog anymore.
11696 (lisp/forms-mode): This doesn't exist anymore.
11697
11698 * configure.in: Look for the closedir function.
11699
117001993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11701
11702 * configure.in (CPP): Autoconf sets this to a shell variable
11703 reference, which doesn't work when it's edited into a makefile.
11704 Expand that variable reference.
11705
11706 * Makefile.in (CPP): New variable.
11707 (src/Makefile): Edit CPP into src/Makefile.
11708
11709 * Makefile.in (src/Makefile): Don't bother exiting single quotes
11710 and entering double quotes to get the values of LD_SWITCH_X_SITE
11711 and the other make variables; make substitutes them in anyway.
11712
11713 * Makefile.in (uninstall): Don't remove the lisp and etc
11714 directories if they're in the source tree.
11715
11716 Bring mumbleclean targets into conformance with GNU coding standards.
11717 * Makefile.in (mostlyclean, clean): Separate these two; just have
11718 them pass the request to the subdirectory makefiles.
11719 (distclean): Pass the request down, and then get rid of the
11720 files configure built, and get rid of the Makefiles.
11721 (realclean): Pass the request down, and then do the same things
11722 distclean does.
11723 (uninstall, info, dvi): New targets.
11724
11725 * configure.in: Move clause for PC-compatible i386 box to the end
11726 of the case statement, to avoid masking configurations below.
11727
11728 * configure.in: Add case for m88k-motorola-sysv4.
11729
11730 * configure.in: Add support for HP/UX versions 7, 8, and 9 on
11731 the HP 68000 machines.
11732
11733 * configure.in: Put the arguments to LD_SWITCH_X_SITE's and
11734 C_SWITCH_X_SITE's -L and -I switches in quotes, so the
11735 preprocessor won't fiddle with them.
11736
117371993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11738
11739 * Makefile.in (TAGS): cd to src to run etags.
11740
117411993-06-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11742
11743 * configure.in (version): Check the X libraries for XrmSetDatabase
11744 and random, and see if we have -lXbsd.
11745
117461993-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11747
11748 * configure.in: Pass "-Isrc" to the CPP we run to examine the
11749 s/*.h and m/*.h files. Martin Tomes
11750 <mt00@controls.eurotherm.co.uk> says ISC Unix 3.0.1 needs it.
11751
117521993-06-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11753
11754 * configure.in: Move i386-prime-sysv* and i386-sequent-bsd*
11755 above the general i386 alternative.
11756
117571993-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11758
11759 * configure.in: Recognize configuration name for Data General
11760 AViiON machines.
11761
11762 * configure.in: Use AC_LONG_FILE_NAMES.
11763
117641993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11765
11766 * configure.in: Test for bison.
11767 * Makefile.in (YACC): New variable.
11768 (lib-src/Makefile.in): Edit YACC into the makefile.
11769
117701993-06-08 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11771
11772 * Version 19.13 released.
11773
11774 * configure.in (CFLAGS): Don't set this according to the value of
11775 the GCC shell variable. Instead, consult the machine and system
11776 files for the values of C_OPTIMIZE_SWITCH and C_DEBUG_SWITCH, and
11777 test __GNUC__ while we're at it.
11778
11779 * configure.in: Remove extra ;; from hpux cases.
11780
117811993-06-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
11782
11783 * configure.in: Check to see if the system has -ldnet.
11784
117851993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11786
11787 * make-dist: Add clauses to distribute lisp/forms-mode.
11788
117891993-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11790
11791 * configure.in (machine): Fix the versions in hpux version number test.
11792 Do not guess based on cpu type. Do check for explicit system version.
11793
117941993-06-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11795
11796 * configure.in: Do NOT look for `unknown' as company name.
11797
117981993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11799
11800 * configure.in: Fix typo in message.
11801
118021993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11803
11804 * Version 19.12 released.
11805
11806 * Makefile.in (do-install): Correct previous etc-copying change.
11807 Partially rewrite using `if'.
11808 (src/Makefile): Insert --x-libraries option into LD_SWITCH_X_SITE.
11809
11810 * Version 19.11 released.
11811
11812 * configure.in: Handle 386bsd.
11813
118141993-05-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11815
11816 * make-dist: Update getdate.c.
11817
11818 * configure.in: Handle bsd386.
11819
11820 * Makefile.in (do-install): Use `-' in tar options.
11821
11822 * configure.in: Change ! "${...}" to x"${...}" = x.
11823
11824 * Makefile.in (do-install): Copy the DOC-* files from the build
11825 etc directory, as well as lots of things from ${srcdir}/etc.
11826
11827 * make-dist: Copy config.guess.
11828
11829 * configure.in: Handle AIX versions 1.2, 1.3.
11830
118311993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11832
11833 * configure.in: Use s/bsd4-3.h for mips-mips-riscos4, and add
11834 the configuration name mips-mips-usg* to represent USG systems.
11835
11836 * configure.in: Fix logic to detect if srcdir is already configured.
11837
11838 * Makefile.in: Pass in LD_SWITCH_X_SITE.
11839
11840 * Makefile.in (mkdir, clean, mostlyclean, do-install): Use `(cd
11841 foo && pwd)` instead of `(cd foo ; pwd)` to get the canonical name
11842 of a directory; cd might fail, and have pwd print out the current
11843 directory.
11844
118451993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11846
11847 * configure.in: When looking for sources, use '.', not `.`. Also '..'.
11848
118491993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11850
11851 * configure.in: Complain if srcdir points at an already-configured
11852 tree.
11853
118541993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11855
11856 * Version 19.10 released.
11857
118581993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11859
11860 * Makefile.in: Use Makefile comments, not C comments.
11861
11862 * configure.in: Add case for the Tektronix XD88.
11863
118641993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11865
11866 * configure.in: Handle sysv4.2 and sysvr4.2.
11867
118681993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11869
11870 * configure.in: Traverse the argument list without destroying it;
11871 don't use shift. It turns out that "set - ${saved_arguments}"
11872 doesn't work portably.
11873
11874 * configure.in: Add missing "fi".
11875
11876 * make-dist: Rebuild configure if configure.in is newer.
11877
11878 * Makefile.in (src:, lib-src:, FRC:): Force the src and lib-src
11879 targets to be executed even if make remembers that it has already
11880 satisfied FRC.
11881
118821993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11883
11884 * Makefile.in (do-install): Delete redundant code to copy etc twice.
11885
11886 * configure.in (romp): Handle various version numbers with aos and bsd.
11887
118881993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11889
11890 * configure.in: Fix message text.
11891
118921993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11893
11894 * make-dist: Make a `site-lisp' directory in the distribution,
11895 instead of a `local-lisp' directory, which hasn't been the
11896 appropriate name for a long time.
11897 * Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
11898 from the distribution first, then /usr/local/lib/emacs/site-lisp.
11899
11900 * Makefile.in (do-install): Correctly detect if ./etc and
11901 ${srcdir}/etc are the same.
11902
11903 * configure.in: Extract UNEXEC from the system configuration
11904 files, compute the name of the source file corresponding to the
11905 object file, and #define it as UNEXEC_SRC in config.h.
11906
11907 * configure.in: If srcdir is '.', then try using PWD to make it
11908 absolute.
11909
11910 * configure.in: Include ${srcdir} in the printed report, to help
11911 people notice if it's an automounter path.
11912
119131993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11914
11915 * configure.in (prefix): Don't run pwd on srcdir unnecessarily.
11916
119171993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11918
11919 * Makefile.in (do-install): Delete the dest dir, not the source dir,
11920 when they are different. Add `shift' command.
11921 (COPYDESTS, COPYDIR): Delete external-lisp dir.
11922 (externallispdir): Var deleted.
11923
11924 * configure.in: Delete spurious paren outputting short_usage.
11925
119261993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
11927
11928 * Version 19.9 released.
11929
119301993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11931
11932 * Makefile.in (${SUBDIR}): Pass the value of the make variable to
11933 subdirectory makes.
11934
11935 * make-dist: Check for .elc files with no corresponding .el file.
11936
11937 * Makefile.in (mkdir): Make all the directories in locallisppath.
11938
11939 * config.guess: New file.
11940 * configure.in: Use it, tentatively.
11941 * INSTALL: Mention its usage.
11942
11943 * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;
90eacf99
SM
11944 the former gives you the operating system rev directly.
11945 Use s/hpux.h if we don't recognize what we got.
067d23c9
KY
11946
11947 * Makefile.in (do-install): Don't remove a destination directory
11948 if it's the same as the source. If ${srcdir}/info == ${infodir},
11949 don't try to copy the info files.
11950
11951 * Makefile.in (COPYDIR, COPYDESTS): Don't mention etc twice; this
11952 doesn't work if you're not using a separate source directory.
11953 (do-install): Copy the build tree's etc directory only after
11954 making sure it's not also the source tree's etc directory.
11955
119561993-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11957
11958 * configure.in: Handle sunos4.1.3 specially.
11959
119601993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
11961
11962 * Makefile.in (INSTALL): Add definition.
11963
11964 * configure.in: Fix some messages. Support -with-gnu-cc.
11965 At the end, use `set --', not `set -'.
11966 Delete spurious `.h' in hpux alternatives.
11967
119681993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11969
11970 * Version 19.8 released.
11971
119721993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11973
11974 * configure.in: When looking for source in the same directory as
11975 the configure script, make the path thus discovered absolute.
11976 If the user specifies the `--srcdir' switch, make that directory
11977 absolute too.
11978
11979 * Makefile.in (srcdir): Remove comment saying this doesn't work.
11980
11981 * Makefile.in (src/paths.h): Edit the `infodir' variable into this
11982 too, as the value of the PATH_INFO macro.
11983
11984 * configure.in: Check to see if the source lives in the same
11985 directory as the configure script.
11986
119871993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
11988
11989 * Makefile.in (install): Split this into `install' and
11990 `do-install', to give people more control over exactly what gets
11991 done.
90eacf99
SM
11992 (do-install): New target, containing the guts of `install'.
11993 Don't remove and recreate the directories inside the copying loop - do
067d23c9
KY
11994 it all before the copying loop. Pass more flags to the lib-src
11995 make.
11996 (mkdir): Create ${infodir}, ${mandir}, and ${sitelispdir} here, to
11997 avoid errors and warnings.
11998
11999 * configure.in: For generic IBM PC boxes, insist on "unknown" for
12000 the manufacturer - the more general case was blocking other i386
12001 configuration names below, and that's how the names are written in
12002 MACHINES anyway.
12003
12004 * make-dist: When breaking links, remove the link before moving
12005 the copy onto it, to avoid interactive behavior.
12006
12007 * Makefile.in: Doc fix.
12008
12009 * configure.in: Doc fix.
12010
12011 * INSTALL: Mention --exec-prefix option.
12012
12013 * configure.in: Add support for the `--exec-prefix' option.
12014 * Makefile.in: Accept that support.
12015
12016 * configure.in: Use the AC_PROG_INSTALL macro.
12017 * Makefile.in (INSTALL): Variable removed.
12018 (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
12019
12020 * configure.in: Distinguish between hp800's and hp700's by calling
12021 "uname -m".
12022
120231993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12024
12025 * configure.in: Recognize configuration names for i860 boxes
12026 running SYSV.
12027
120281993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12029
12030 * configure.in: Distinguish between hp800's and hp700's by the
12031 version of HP/UX they run, since that's something people are more
12032 likely to know - hp700's run 8.0.
12033 Add HP 700 configuration.
12034
12035 * configure.in: Test for the presence of the `rename' function.
12036
12037 * Makefile.in (C_SWITCH_X_SITE): New variable - get this from
12038 configure.in.
12039 (oldXMenu/Makefile): Edit C_SWITCH_X_SITE into this.
12040
12041 * make-dist: Break intra-tree links.
12042
12043 * configure.in: Explain that this is an autoconf script, and give
12044 instructions for rebuilding configure from it. Arrange to put
12045 comments in configure explaining this too.
12046
12047 * configure.in: Make the first line of the configure script be
12048 "#!/bin/sh". Leaving the first line blank didn't work.
12049
90eacf99 12050 * configure.in (long_usage): Remove; made short_usage describe
067d23c9
KY
12051 the options briefly.
12052
12053 * configure.in: Implement the --prefix option.
12054 * Makefile.in (prefix): Add support for it here.
12055 * INSTALL: Document it here.
12056
12057 * Makefile.in (install): Don't assume that the files in the `info'
12058 subdirectory match *.info. They don't have that prefix.
12059
120601993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12061
12062 * configure.in: Add case for version 5 of Esix.
12063
120641993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12065
12066 * Version 19.7 released.
12067
12068 * make-dist: There aren't any *.com files in lib-src anymore.
12069
12070 * make-dist: Copy texinfo.tex and texindex.c, rather than linking
12071 them; they're symlinks to other filesystems on the GNU machines.
12072
12073 * make-dist: Check that the manual reflects the same version of
12074 Emacs as stated in lisp/version.el. Edit that version number into
12075 the README file.
12076
120771993-05-21 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12078
12079 * configure.in: Remove the hack of AC_DEFINE; use
12080 AC_DEFINE_UNQUOTED.
12081
120821993-05-20 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12083
12084 * make-dist: Don't distribute precomp.com, compile.com, or
12085 link.com from ./src; they're in ./vms now.
12086
12087 Some time-handling patches from Paul Eggert:
12088 * configure.in: Add AC_TIMEZONE.
12089
120901993-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12091
12092 * configure.in: Recognize Linux as a valid operating system for
12093 the i386.
12094
120951993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12096
12097 * make-dist: Distribute some VMS files we got from Richard Levitte.
12098
12099 * Makefile.in (oldXMenu/Makefile): Take oldXMenu/Makefile.in as
12100 the source for the sed command, not oldXMenu/Makefile.
12101
121021993-05-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12103
12104 * INSTALL: Don't claim the srcdir option doesn't work.
12105
121061993-05-16 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12107
12108 * configure.in: Include remarks saying what order the autoconf
12109 tests should go in, and remind people to change config.h.in
12110 whenever they add autoconf tests which make #definitions.
12111
12112 * make-dist: Distribute oldXMenu/Makefile.in, not oldXMenu/Makefile.
12113
121141993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12115
12116 * Makefile.in (oldXMenu/Makefile): Make this depend on
12117 ${srcdir}/oldXMenu/Makefile.in, not itself.
12118
12119 * PROBLEMS: Some updates from David J. Mackenzie.
12120
12121 More changes from David J. Mackenzie.
90eacf99
SM
12122 * Makefile.in (install.sysv, install.xenix, install.aix):
12123 Targets removed; autoconf and config.h should specify all these
067d23c9
KY
12124 differences.
12125 (buildlisppath): Make this path depend on ${srcdir}.
90eacf99 12126 (INSTALLFLAGS): Remove.
067d23c9
KY
12127 (INSTALL): Include the -c flag.
12128 (install): Change the way we invoke install accordingly.
12129
12130 Install ${srcdir} changes from DJM.
12131 * Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this
12132 list.
12133 (COPYDIR, COPYDESTS): Install files from both the etc directory in
12134 the source tree and the etc directory in the object tree.
12135 (${SUBDIR}): Pass the prefix variable down to submakes.
12136 (everywhere): Use `sed', not `/bin/sed'. Not all systems have sed
12137 in /bin.
12138 (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in
12139 values for srcdir and VPATH.
12140 (install): Add `v' flag to tar command. Make sure that `dir'
12141 exists in ${srcdir}/info before copying it. Remember that the man
12142 pages come from the source tree, not the object tree.
12143 * configure.in: Remove remarks saying that the --srcdir option
12144 doesn't work.
12145 Create the etc directory in the object tree.
12146 Recognize configuration names of the form *-sun-solaris*.
12147 Recognize sunos5 and solaris as operating system names.
12148
12149 * configure.in: Use the AC_TIME_WITH_SYS_TIME macro, for
12150 lib-src/getdate.y and src/systime.h.
12151
121521993-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12153
12154 * make-dist: Make links in info subdir.
12155
121561993-05-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12157
12158 * configure.in: Call AC_STDC_HEADERS.
12159
121601993-05-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12161
12162 * configure.in: Sidestep autoconf's quoting of the second argument
12163 of AC_DEFINE, so we can specify the value to put there. It would
12164 be nice if autoconf provided some way to specify computed values
12165 for macros.
12166
121671993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12168
90eacf99 12169 * Makefile.in (DEFS): Delete; since we're using AC_CONFIG_HEADER,
067d23c9
KY
12170 this is always just -DHAVE_CONFIG_H.
12171
12172 The GNU coding standards specify that CFLAGS should be left for
12173 users to set.
12174 * Makefile.in (CFLAGS): Let configure determine the default value
90eacf99
SM
12175 for this.
12176 Don't have it default to DEFS.
067d23c9
KY
12177 (${SUBDIR}): Pass CFLAGS down to submakes, not DEFS.
12178 (lib-src/Makefile, src/Makefile): Edit the default value for
12179 CFLAGS into these files, not DEFS.
12180 * configure.in (CFLAGS): Choose a default value for this - "-g"
12181 normally, or "-g -O" if we're using GCC. Edit it into the
12182 top-level Makefile.
12183
12184 * configure.in: When scanning the machine and system description
12185 #include files, write their names to conftest.c properly.
12186
121871993-05-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12188
12189 * configure.in: In configuration name case for Apallos running
12190 Domainios, set opsys, not opsysfile.
12191
12192 * configure.in: Use the autoconf AC_CONFIG_HEADER macro to produce
12193 src/config.h, instead of AC_OUTPUT; the latter overwrites
12194 src/config.h even when it hasn't changed, puts a makefile-style
12195 comment at the top even though it's C code, and produces a
12196 config.status script which doesn't do the job right.
12197
12198 * configure.in: Add AC_LN_S test, so we can tell whether or not we
12199 can use a symbolic link to get the X Menu library into src.
12200 * Makefile.in (LN_S): New variable.
12201 (src/Makefile): Edit the value of LN_S into this makefile.
12202
122031993-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12204
12205 * configure.in: Support *-sco3.2v4* as opsystem.
12206
12207 * make-dist: Don't include calc directory.
12208 Exclude many files in the man directory; copy a few.
12209
122101993-05-04 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12211
12212 * configure.in: Use AC_HAVE_HEADERS to test for sys/time.h, and
12213 call AC_STRUCT_TM to see what's in time.h.
12214
12215 * configure.in: Employ quoting stupidity to get the value of CPP
12216 to expand properly.
12217
122181993-04-27 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12219
12220 * configure.in: Use the AC_PROG_CPP macro, and then use the CPP
12221 variable to scan the machine and system description files.
12222
12223 * configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
12224 so that getdate.y builds correctly.
12225
122261993-04-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12227
12228 * configure.in (tempcname): Change this to "conftest.c", so it will
12229 work properly on systems with short filenames; this is the name
12230 autoconf uses.
12231
12232 * configure.in: Also detect the availability of dup2 and
12233 gethostname.
12234
12235 * configure.in: Use the AC_ALLOCA test.
12236 * Makefile.in (ALLOCA): New variable, to be set by ./configure.
12237 (lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
12238
122391993-04-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12240
12241 * make-dist: Distribute configure, as well as configure.in.
12242 Oversight.
12243
122441993-04-23 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12245
12246 * Makefile.in (install): Print out the name of the directory we're
12247 copying, so people can have some idea of whether we're making
12248 progress.
12249
12250 * Makefile.in (install.aix, install.xenix, install.sysv, install):
12251 Don't forget to re-create the COPYDESTS directories after we clear
12252 them out.
12253
122541993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12255
12256 * Makefile.in: Add autoconf cookies so that the configure
12257 script can comment out sections of path variable definitions to
12258 choose between the installable configuration and the run-in-place
12259 configuration.
12260 * configure.in: Add new option `--run-in-place', to select the
12261 run-in-place path definitions.
12262
12263 * configure.in: Add a clause to the big configuration name case
12264 for the NeXT machine.
12265
122661993-04-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12267
12268 * Makefile.in (install, install.sysv, install.xenix, install.aix):
12269 Make sure that each source directory exists, and is different from
12270 the destination directory; then, delete the destination before
12271 copying over the source.
12272
12273 * make-dist: Distribute configure.in, instead of configure.
12274
122751993-04-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12276
12277 * configure.in: Don't set CC to "gcc -O" if the user specifies
12278 `--with-gcc'. Add -O to DEFS if GCC is set.
12279
122801993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12281
12282 * Makefile.in (clean mostlyclean): Missing right paren.
12283
12284 * configure.in: When checking for X windows, search for an X11
12285 subdirectory of ${x_includes}.
12286
12287 * configure.in: Check for gettimeofday function, for getdate.y.
12288
12289 Change `configure' to a mixture of custom code and autoconf stuff.
12290 autoconf can't derive all the information we need, but we'd really
12291 like to be able to take advantage of some of its tests, and its
12292 file-editing facilities.
12293 * configure.in: Renamed from configure.
12294 Quote the sections of shell script we want copied literally to
12295 the configure script.
12296 (compile): Initialize this to make the autoconf macros' code happy.
12297 Use AC_PROG_CC, AC_CONST, and AC_RETSIGTYPE instead of writing out
12298 code to do their jobs.
12299 Use autoconf to produce Makefile and src/config.h.
12300 Remove the Makefile-style comment that autoconf places at the top
12301 of src/config.h.
90eacf99
SM
12302 (config_h_opts): Remove - no longer necessary.
12303 * Makefile.in (configname): Rename to configuration.
12304 (CONFIG_CFLAGS): Rename to DEFS.
12305 (CC, DEFS, C_SWITCH_SYSTEM, version, configuration): Adjust to
067d23c9
KY
12306 get values via autoload @cookies@.
12307 (libsrc_libs): Get this from autoconf. We used to do nothing
12308 about this.
12309 (${SUBDIR}): Pass DEFS to submakes instead of CONFIG_CFLAGS.
12310
90eacf99
SM
12311 * Makefile.in (src/paths.h, lib-src/Makefile, src/Makefile):
12312 Don't echo the move-if-change command.
067d23c9
KY
12313
123141993-04-08 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
12315
12316 * make-dist: Distribute lib-src/rcs-checkin.
12317
12318 * make-dist: It's oldXMenu/compile.com, not oldXMenu/compile.mms.
12319 Don't try to make links to the RCS or Old subdirectories.
12320 Use the appropriate extension for the compression type in use.
12321 Create the tar file in the shell's initial default directory, not
12322 in ${tempparent}.
12323 Erase the whole ${tempparent} tree, not just ${tempdir}.
12324
123251993-03-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12326
12327 * Makefile.in (src/paths.h): Don't echo the huge sed command we
12328 use to build paths.h.
12329 (lib-src/Makefile, src/Makefile): Similarly.
12330
12331 * configure: Extend test for working `const' keyword to handle AIX
12332 3.2 cc.
12333
123341993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12335
12336 * make-dist: Distribute lisp/term/ChangeLog.
12337
12338 Arrange for C compilation throughout the tree to get
12339 C_SWITCH_SYSTEM from the configuration files.
12340 * configure: Extract C_SWITCH_SYSTEM from the machine and
12341 system-dependent files, and save it in the top-level Makefile.
12342 * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit.
12343 (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
12344
12345 * make-dist: Include the VMS support files in oldXMenu in the
12346 distribution.
12347
12348 * configure: Doc fix.
12349
12350 * configure: Fix corrupted config_h_opts.
12351
12352 * configure: Properly report option names in error messages.
12353
12354 * configure: Properly recognize --x-includes and --x-libraries
12355 options.
12356
12357 * configure: Fix syntax errors in code handling XFree386.
12358
123591993-03-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12360
12361 * configure: Add special code to detect XFree386, and tell
12362 config.h about it.
12363
12364 * configure: Properly handle extracting values of LIBS_MACHINE and
12365 LIBS_SYSTEM that contain spaces.
12366
90eacf99
SM
12367 * configure: Add `--x-includes' and `--x-libraries' options.
12368 I think these are dopey, but no less than three alpha testers, at
067d23c9
KY
12369 large sites, have said they have their X files installed in odd
12370 places. Implement them by setting C_SWITCH_X_SITE and
12371 LD_SWITCH_X_SITE in src/config.h.
12372
123731993-03-22 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
12374
12375 * make-dist: Don't distribute etc/Old files.
12376
12377 * GETTING.GNU.SOFTWARE, PROBLEMS: Registered into RCS with their
12378 backups.
12379
123801993-03-20 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12381
12382 * make-dist: Fix typo.
12383
123841993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
12385
12386 * make-dist: Corrected typo, fixed it to discard = and TAGS files
12387 in some cases where it should but didn't seen to.
12388
12389 * Makefile.in: Added unlock and relock productions.
12390
123911993-03-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12392
12393 * make-dist: Add a --compress option to force make-dist to use
12394 compress.
12395
12396 * make-dist: Use gzip, if we can find it.
12397
12398 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
12399 make rs6000-ibm-aix default to -aix32.
12400
124011993-03-17 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
12402
12403 * Makefile.in: Added `Developer's configuration' section.
12404
124051993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
12406
12407 * Makefile.in: Add commented-out variable settings for developer's
12408 configuration.
12409
124101993-03-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12411
12412 * make-dist: Distribute `src/bitmaps' too.
12413
124141993-03-14 Charles Hannum (mycroft@hal.gnu.ai.mit.edu)
12415
12416 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
12417 make rs6000-ibm-aix default to -aix32.
12418
124191993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12420
12421 * configure: Recognize strings like "sysvr0" or "sysvr1" as System V.
12422
12423 * Makefile.in (install.sysv): Add a second `$' in front of
12424 `${dest}', so that the shell will expand it, instead of Make.
12425
12426 * configure: When processing the name of the configure script,
12427 collapse `././' to `./', but leave a single `./' prefix alone.
12428
12429 * configure: Doc fix.
12430
124311993-03-04 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12432
12433 * configure: Handle isc3.0 correctly.
12434
124351993-02-25 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12436
12437 * make-dist: Don't try to copy the COPYING notice into
12438 external-lisp; we're not distributing that directory any more.
12439
124401993-02-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12441
12442 * Makefile.in (install, install.aix, install.xenix, install.sysv):
12443 Remove CVS subdirectories from the installed directory trees, as
12444 well as RCS directories.
12445
124461993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12447
12448 * make-dist: Only copy gmalloc.c if we couldn't link it.
12449 Don't try to copy man/{README,Makefile} unless they actually exist.
12450
12451 * Makefile.in (lisppath): Don't include externallispdir in this.
12452 We're not sure whether we're even going to distribute the
12453 directory yet.
12454
124551993-02-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12456
12457 * make-dist: Don't distribute the external-lisp directory anymore.
12458 * INSTALL: Remove all references to external-lisp.
12459
12460 * configure: Detect whether the compiler supports `const'
12461 properly, and edit src/config.h accordingly.
12462
12463 * configure: Tweak layout of final report.
12464
12465 * Makefile.in (${SUBDIR}): Pass CONFIG_CFLAGS to the submakes, not
12466 CFLAGS.
12467
12468 * Makefile.in (locallisppath): Make this default to
12469 ${datadir}/emacs/site-lisp, instead of
12470 ${datadir}/emacs/local-lisp. ${datadir} and ${statedir} are often
12471 the same thing, and local-lisp causes completion conflicts with
12472 lock.
12473 (lisppath): Add ${externallispdir} to this.
12474 * INSTALL: Adjust installation directions.
12475
12476 * Makefile.in (externallispdir): New variable, to say where to
12477 install the externally-maintained lisp files.
12478 (COPYDIR, COPYDESTS): Copy the external lisp directory just like
12479 the others.
12480 * INSTALL: Describe external-lisp and the new externallispdir
12481 variable.
12482
124831993-02-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12484
12485 * configure (progname): New option `--with-gcc'. Make it clearer
12486 how we are trying to guess whether or not we have GCC.
12487 * INSTALL: Document the `--with-gcc' option, and improve
12488 description of `--with-x' options.
12489
124901993-02-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12491
12492 * Makefile.in (COPYDIR, COPYDESTS): Remove ${srcdir}/info and
12493 ${infodir} from these variables; we have written out explicit code
12494 to install the info files.
12495
124961993-01-25 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
12497
12498 * make-dist: Don't distributed the RCS files in the etc directory.
12499
125001993-01-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12501
12502 * Makefile.in: Some makes can't handle comments in the middle of
12503 commands; move them to before the whole rule.
12504
125051993-01-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12506
12507 * README: Mention what Emacs is.
12508
125091993-01-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12510
12511 * make-dist: Include `./lisp/calc-2.02' in the distribution.
12512 Add `./cpp' and `./man' back into the distribution.
12513
125141993-01-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12515
12516 * Makefile.in: Define MAKE, and use where appropriate.
12517
125181993-01-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12519
12520 * make-dist: Remember that the authoritative COPYING notice is
12521 `etc/COPYING', not `../etc/COPYING'.
12522
125231992-12-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12524
12525 * make-dist: Make sure that the COPYING notices in each directory
12526 are copies, not symlinks.
12527
125281992-12-19 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12529
12530 * INSTALL: The build process produces an executable called `emacs'
12531 now. Change references.
12532 * Makefile.in: Adjust `install.mumble' targets to install
12533 `src/emacs', not `src/xemacs'.
12534
12535 * configure: Start with a blank line; this keeps some old CSH's
12536 from thinking it's a CSH script. Most systems will just use
12537 /bin/sh to run it, which is what we're expecting; the only other
12538 shells which might try to interpret it themselves are probably
12539 Bourne-compatible.
12540
125411992-12-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12542
12543 * INSTALL: Improvements suggested by David Mackenzie.
12544
125451992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12546
12547 * Makefile.in (install, install.sysv, install.xenix, install.aix):
12548 Don't try to copy the info files if there aren't any; the
12549 unexpanded globbing pattern disappoints `install'. Ignore the
12550 return status of that command.
12551
12552 * INSTALL: Updated for new configuration arrangement.
12553
12554 * configure: Don't make the top-level Makefile read-only - people
12555 may want to edit the values of the path variables.
12556
12557 * Makefile.in (install, install.sysv, install.xenix, install.aix):
12558 Install the info files in ${infodir}. Install the executable
12559 under both `emacs' and `emacs-VERSION'.
12560
12561 * Makefile.in: Doc fix.
12562
12563 * Makefile.in (exec_prefix): New variable, as per latest version
12564 of coding standards.
12565 (bindir, libdir): Use it, instead of `prefix'.
12566 (lib-src/Makefile): Edit value of exec_prefix into lib-src/Makefile.
12567
12568 * Makefile.in (mandir): Make the default value for this depend on
12569 $(prefix).
12570
12571 * Makefile.in (datadir, statedir, libdir): Make these all default
12572 to ${prefix}/lib.
90eacf99
SM
12573 (lispdir, locallisppath, etcdir, lockdir, archlibdir):
12574 Adjust to compensate.
067d23c9
KY
12575
12576 * Makefile.in (install, install.sysv, install.xenix, install.aix):
12577 Install the etags and ctags man pages too.
12578
12579 * Makefile.in (distclean): Don't delete backup files; that's the
12580 job of extraclean.
12581 (extraclean): Like distclean, but deletes backup and autosave files.
12582
125831992-12-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12584
12585 Make path specification conform to GNU coding standards.
12586 * configure (long_usage): Remove all traces of old arguments from
12587 usage messages, and document the options we do accept in more
12588 detail: -with-x... and --srcdir.
90eacf99 12589 (options, boolean_opts): Delete; we don't have enough options to
067d23c9
KY
12590 make this worthwhile.
12591 (prefix, bindir, lisppath, datadir, libdir, lockdir): Deleted,
12592 along with the code which supported them; these should be set as
12593 arguments to the top-level make.
12594 (config_h_opts): Since this no longer doubles as a list of option
12595 names, make them upper case; this simplifies the code which uses
12596 them to build the sed command to edit src/config.h. Change the
12597 code which sets them.
12598 (cc, g, O): Don't allow the user to set these using options; they
12599 should be specified using `CC=' and `CFLAGS=' arguments to the
12600 top-level make. Just choose reasonable default values for them,
12601 and edit them into Makefile.in's default CC and CONFIG_CFLAGS
12602 values.
12603 (gnu_malloc, rel_alloc): Don't allow the user to set these using
12604 options; use them whenever the configuration files say they're
12605 possible.
12606 Simplify the argument processing loop. Don't accept abbreviations
12607 for option names; these might conflict with other configuration
12608 options in the future.
12609 Add some support for the `--srcdir' option. Check for the sources
12610 in . and .. if `--srcdir' is omitted. If the directories we will
12611 compile in don't exist yet, create them under the current directory.
12612 Note that the rest of the build process doesn't really support
12613 this.
90eacf99
SM
12614 Edit only the top Makefile. That should edit the others.
12615 Edit into the makefile: `version', from lisp/version.el, `configname'
067d23c9
KY
12616 and `srcdir' from the configuration arguments, `CC' and
12617 `CONFIG_CFLAGS' as guessed from the presence or absence of GCC in
12618 the user's path, and LOADLIBES as gleaned from the system
12619 description files.
12620 Simplify the report generated; it doesn't need to include any
12621 description of paths now.
12622 Make `config.status' exec configure instead of just calling it, so
12623 there's no harm in overwriting `config.status'.
12624 * Makefile.in (version, configname): New variables, used to choose
12625 the default values for datadir and libdir.
12626 Path variables rearranged into two clearer groups:
12627 - In the first group are the variables specified by the GNU coding
12628 standards (prefix, bindir, datadir, statedir, libdir, mandir,
12629 manext, infodir, and srcdir).
12630 - In the second are the variables actually used for Emacs's paths
12631 (lispdir, locallisppath, lisppath, buildlisppath, etcdir, lockdir,
12632 archlibdir), which depend on the first category.
12633 datadir and libdir default to directories under
12634 ${prefix}/lib/emacs instead of ${prefix}/emacs, by popular
12635 demand.
12636 etcdir and lispdir default to subdirectories of datadir.
12637 archlibdir defaults to libdir.
12638 The new installation tree is a bit deeper than it used to be, so
12639 use the new make-path program in lib-src to build them all.
12640 Always build a new src/paths.h.tmp and then move-if-change it to
12641 src/paths.h, to avoid unnecessary rebuilds while responding to the
12642 right changes.
12643 Remove all mention of arch-lib. Run utility commands from
12644 lib-src, and let the executables be copied into archlibdir when
12645 Emacs is installed.
12646 Add targets for src/Makefile, lib-src/Makefile, and
12647 oldXMenu/Makefile, editing the values of the path variables into
12648 them.
12649 Let lib-src do its own installation.
12650 (datadir): Default to putting data files under
12651 ${prefix}/lib/emacs/${version}, not /usr/local/emacs.
12652 (emacsdir): Variable deleted; it would only be confusing to use.
12653 (lispdir, etcdir): Default to ${datadir}/lisp.
12654 (mkdir): Use make-path for this.
12655 (lockdir): Do this in mkdir.
12656 (Makefile): New target.
12657
12658 * configure (usage_message): Rename to long_usage.
12659
12660 * make-dist: Don't bother creating an arch-lib directory; that's
12661 only for installation now.
12662
126631992-11-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12664
12665 * configure: Use GCC-style configuration names, using config.sub.
12666 Change the usage and help messages.
12667
12668 * configure: Initialize window_system, not indow_system.
12669
12670 * configure: Report which window system, compiler, and signal
12671 handler return type we decide to use.
12672
12673 * make-dist: Explain what's going on if config.sub and gmalloc.c
12674 can't be linked. Place the code which copies them near the code
12675 which links the rest of the files around them.
12676
126771992-11-15 Jim Blandy (jimb@apple-gunkies.gnu.ai.mit.edu)
12678
12679 * make-dist: Don't bother to distribute src/*.com, or
12680 src/vmsbuild; those have all been moved to `../vms'.
12681
126821992-11-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12683
12684 * make-dist: Don't forget that the way to avoid filenames starting
12685 with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
12686 `[a-zA-Z0-9].h'. Add a new section for dealing with files that we
12687 couldn't make hard links to, since we have two already, and
12688 perhaps more to come.
12689
126901992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12691
12692 * configure: When editing parameters into lib-src/Makefile, change
12693 the definition of CONFIG_CFLAGS instead of CFLAGS itself; CFLAGS
12694 needs some other flags too.
12695
126961992-11-03 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12697
12698 * configure: Remove spurious echo of the configuration name.
12699
12700 * make-dist: Don't distribute files in src/m and src/s whose names
12701 begin with `='.
12702
127031992-10-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12704
12705 * configure: Update GNU_MALLOC and REL_ALLOC in config.h.
12706 Also LISP_FLOAT_TYPE.
12707
127081992-10-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12709
12710 * make-dist: Copy config.sub, since it's a symbolic link to a file
12711 on another file system.
12712
127131992-10-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12714
12715 * make-dist: Include lib-src/makedoc.com and emacs.csh in the
12716 distribution.
12717
12718 * config.sub: New file, to help us recognize configuration names.
12719 * make-dist: Include it in the distribution.
12720
127211992-09-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12722
12723 * configure: Convert `-' to `_' in specified option names.
12724 Accept options with --. Delete --highpri and --have-x-menu options.
12725 New options --with-x and --with-x10 replace -window-system.
12726 Don't mention options --gnu-malloc, --rel-alloc
12727 or --lisp-float-type in help message.
12728
127291992-09-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12730
12731 * make-dist: Include the `vms' subdirectory in the distribution.
12732
127331992-09-10 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12734
12735 * configure: Remove lines starting with "# DIST: " when building
12736 lib-src/Makefile and src/Makefile. This allows us to mark the
12737 "Makefile.in" files with explanatory comments which won't also get
12738 stuck in the Makefiles.
12739
127401992-09-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12741
12742 * make-dist: Don't use the '+' operator in the sed regular
12743 expression that extracts the version number from lisp/version.el;
12744 Ultrix sed doesn't seem support the operator. Just double the
12745 operand and use *.
12746
127471992-09-01 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12748
12749 * Makefile.in: Doc fix.
12750
127511992-08-31 Jim Blandy (jimb@totoro.cs.oberlin.edu)
12752
12753 * configure: Rewrite sed command to remove at most one ./ prefix;
12754 Ultrix's sed doesn't allow us to apply the * operator to a \( \)
12755 group.
12756
127571992-08-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
12758
12759 * Makefile.in (src/paths.h): Use sed, not /bin/sed.
12760
127611992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12762
12763 * make-dist: Go ahead and build a new TAGS file, unless the
12764 --newer option was specified. Don't try to delete a TAGS file
12765 from etc; it's not kept there, and shouldn't be deleted anyway.
12766
127671992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12768
12769 * make-dist: If the lisp directory contains a default.el, don't
12770 distribute it.
12771
12772 * configure: When searching signal.h for the type of a signal
12773 return handler, make a copy of it, not a symbolic link to it; that
12774 way, it will work on systems that don't have symbolic links.
12775
127761992-08-14 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
12777
12778 * make-dist: Taught it about vcdiff and rcs2log, added --newer
12779 option for generating incremental distributions. Stopped it from
12780 generating a TAGS file into the distribution; that sucker is
12781 *big*, and easily enough generated with the toplevel makefile.
12782
127831992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12784
12785 * configure: When writing config.status, don't prefix progname
12786 with a '.'; it might be absolute.
12787
127881992-08-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12789
12790 * configure: Choose to use X11 if either /usr/lib/libX11.a or
12791 /usr/include/X11 exist, not only if both exist.
12792
127931992-07-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12794
12795 * make-dist: Make the new external-lisp directory a duplicate of
12796 the external-lisp directory, not the lisp directory.
12797
127981992-07-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12799
12800 * Makefile.in (clean, mostlyclean): Don't bother trying to `make
12801 clean' in arch-lib; it doesn't even have a Makefile.
12802
12803 * Makefile.in (clean, mostlyclean): In the test which tries to
12804 distinguish between the build directory, which should be cleaned,
12805 and the installed directory, which shouldn't, cd to `${emacsdir}',
12806 not `${DESTDIR}${LIBDIR}'.
12807
128081992-06-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12809
12810 * make-dist: Be sure to delete the .c and .h files that YACC and
12811 BISON create from getdate.y.
12812
12813 * external-lisp: New directory; see `external-lisp/README'.
12814 * make-dist: Added support for the external-lisp subdirectory.
12815
12816 * make-dist: Changed message which complains that make-dist wasn't
12817 invoked in the right directory to indicate which files it was
12818 looking for.
12819
128201992-06-29 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12821
12822 * configure: Add comments explaining why we can't translate
12823 character ranges or control characters in `tr'.
12824
128251992-06-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12826
12827 * configure: When generating the configuration message, we used to
12828 build the message from the start so that each line began with "# "
12829 so that it would be a comment in `config.status'. However, this
12830 causes trouble if any of the variables we use in the message
12831 expand to more than one line of text - as gnu_malloc_reason
12832 sometimes does. So instead, we build the message as it should be
12833 printed to the user (i.e. without the "# " prefixes), and stick on
12834 the "# "s when we write it to `config.status'.
12835
12836 * Makefile.in (clean, mostlyclean): Don't neglect to clean out
12837 `lib-src' and `arch-lib'.
12838
12839 * configure: When generating report and `config.status' file, note
12840 that bindir only determines where `make install' and
12841 `build-install' will place the executables; this should make it
12842 clear that the ordinary build process will not try to install
12843 things.
12844
128451992-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
12846
12847 * make-dist: Change messages to say that we are 'making links to
12848 X', rather than 'copying X'. And put `' quotes around file names.
12849
12850 * make-dist: Include '.tmp' in the name of the staging directory.
12851
12852 * make-dist: Pass the `-f' option to rm when you're not sure that
12853 the files you're removing actually exist.
12854
12855 * make-dist: When setting up etc/COPYING, always nuke whatever is
12856 there, and then copy it in, to make sure we get a real file.
12857
90eacf99
SM
12858 * make-dist: Don't try to distribute *.defns files any more.
12859 The only such file was for simula.el, which has been superseded by a
067d23c9
KY
12860 version which doesn't have a separate .defns file.
12861
128621992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
12863
12864 * make-dist: Don't distribute configured versions of config.h.in,
12865 paths.h.in, Makefile.in in src.
12866
12867 * configure: Delete .tmp files before creating them; don't bother
cd1181db 12868 trying to make final targets writable first, since it won't
067d23c9
KY
12869 matter to move-if-change.
12870
128711992-05-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12872
12873 * Makefile.in (mkdir, lockdir): Don't put dashes in front of the
12874 mkdir and chmod in the center of all the conditionals. GNU Make
12875 will strip these out, but other makes won't.
12876
128771992-05-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12878
12879 * make-dist: Include move-if-change in list of files to distribute.
12880
128811992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12882
12883 * configure: Remove any "." elements from the program name.
12884
12885 * configure: Don't record the values of all the possible arguments
12886 in config.status; only record the options that the user specified.
12887
12888 * configure: Use move-if-change to move in the new src/config.h.
12889
128901992-04-29 Ken Raeburn (Raeburn@Cygnus.COM)
12891
12892 * move-if-change: New file, copied from gcc release.
12893 * Makefile.in (src/paths.h): Use it, and put the "sed" output into
12894 a temp file, so we don't update paths.h if an error occurs or if
12895 it doesn't need changing.
12896
128971992-04-28 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12898
12899 * Makefile.in (src/paths.h): Do not install a value for the
12900 PATH_SUPERLOCK value; that macro doesn't exist anymore.
12901 * build-install.in: Same thing.
12902
129031992-04-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12904
12905 * make-dist: Check the flag called "make_tar", not "make_dir"; the
12906 latter, being a typo, is always false, resulting in a program
12907 whose default behavior is to painstakingly build a copy of the
12908 source tree, and then delete it. Rah.
12909
12910 * Makefile.in: Add dist target, and comment for it.
12911
12912 * configure: When scanning <signal.h> for a declaration for
12913 signal, create a symbolic link with a name ending in .c, so the
12914 compiler won't complain that it's only been given .h files.
12915
12916 * configure: Check whether there are any arguments available
12917 before shifting to get the value of a non-boolean parameter.
12918
12919 * make-dist: Doc fix.
12920
129211992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12922
12923 * configure: Instead of grepping /usr/include/signal.h for a
12924 signal declaration, run /usr/include/signal.h or
12925 /usr/include/sys/signal.h through cpp and grep for the
12926 declaration.
12927
12928 * configure: Redirect the output of grep to /dev/null instead of
12929 using grep -s - that flag means different things on other systems.
12930
12931 * Makefile.in: Use 'buildlisppath' instead of 'dumplisppath',
12932 since the former is recognizable even if you don't know what
12933 'dumping' is.
12934 * configure: Accommodate that change.
12935
12936 * configure: Accept options for all of the directories you can
12937 change in the Makefile.
12938
12939 * configure: Accept "-OPTION VALUE" as well as "-OPTION=VALUE".
12940
12941 * INSTALL: Mention that you have to copy all the 'FOO.in' files to
12942 FOO before you can use them.
12943
12944 * build-install.in: Made the "Where To Install Things" section
12945 conform with the similar section from Makefile.in. Copied section
12946 which builds src/paths.h from src/paths.h.in from the Makefile.
12947
129481992-04-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12949
12950 * configure: Write config.status to pass its command-line
12951 arguments on to configure, so that people can use it to recreate
12952 an old configuration, with minor changes.
12953
129541992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12955
12956 * configure: Don't rely on option variables being unset if their
12957 values are the empty string. In particular, when producing the
12958 English report, don't assume that highpri will be unset when no
12959 increased priority has been requested; -highpri='' should be the
12960 same as omitting -highpri altogether.
12961
12962 * configure: Fix dumb bug: when running the system and machine
12963 description files through cpp, mark those lines that we want to
12964 evaluate with the string '@configure@', and then only evaluate
12965 them. This way if the files include anything that actually
12966 generates text (type definitions or external declarations, say),
12967 we won't try to eval it.
12968
129691992-04-11 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12970
12971 * make-dist: New shell script.
12972
12973 * configure: When creating foo from foo.in, make foo read-only to
12974 remind people to edit the .in file instead.
12975
12976 * INSTALL: Changed references to config.h-dist to config.h.in.
12977 The "BUILDING GNU EMACS BY HAND" section neglected to mention how
12978 to build src/paths.h from src/paths.h.in; added a paragraph to do
12979 this.
12980 * configure, Makefile, build-install: Changed filenames like
12981 FOO-dist to FOO.in.
12982
129831992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12984
12985 * Makefile, build-install: Renamed to Makefile.in and
12986 build-install.in; the configure script will edit these to produce
12987 the usable Makefile and build-install.
12988 * configure: Changed to produce ./Makefile, ./build-install,
12989 lib-src/Makefile, and src/Makefile from their *.in counterparts,
12990 instead of editing them in place.
12991
129921992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
12993
12994 * Makefile: Re-arranged so that the undumped Emacs will search
12995 ../lisp *after* the site's local elisp files.
12996 (locallisppath, dumplisppath): New variables.
12997 (lisppath): This variable's default value is now chosen based on
12998 $(locallisppath) and $(lispdir); while it used to be the
12999 customization point for adding site-local elisp directories to
13000 load-path, that job is now handled mostly by locallisppath.
13001 (src/paths.h): Edit the value of a new macro, PATH_DUMPLOADSEARCH.
13002 Check the values being assigned to the *LOADSEARCH macros for null
13003 path elements (like '::' in 'foo::bar').
13004
13005 * configure: When checking if the machine- and system-dependent
13006 files define a particular macro or not, actually run them through
13007 CPP and test the macros with #ifs, instead of just grepping for
13008 the macros' names. In particular, check for SYSTEM_MALLOC in this
13009 way.
13010
130111992-04-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
13012
13013 * Makefile (install): Don't use -s in install. (Keep the symbols.)
13014
130151992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13016
13017 * configure: Make the config.status file an executable shell
13018 script which will recreate the same configuration. Include the
13019 verbal description of the current configuration as a comment in
13020 the script.
13021 * INSTALL: Doc fix.
13022
13023 * Makefile: Brought the Makefile up to the GNU coding
13024 standards, as described in standards.text:
13025 (TAGS): New name for the target which rebuilds the tags table.
13026 (check): New target; doesn't do anything yet.
13027 (mostlyclean): New target, synonymous with clean.
13028 (realclean): New target. Currently, this just calls the
13029 subdirectories's makefiles and then deletes config.status.
90eacf99
SM
13030 (INSTALL, INSTALLFLAGS, INSTALL_PROGRAM, INSTALL_DATA):
13031 New variables.
067d23c9 13032 Installation directory variables changed to conform.
90eacf99 13033 (install, install.sysv, install.xenix, install.aix): Change the
067d23c9
KY
13034 code which copies the directories into their installed location to
13035 allow the installed locations to be in several different
13036 directories; the old version assumed that they would all be in
13037 $(emacsdir).
13038 (mkdir, lockdir): Allow the installed locations to be in several
13039 different directories.
13040 * INSTALL: Doc fix.
13041
13042 * build-install: Use the same variable names as the Makefile.
13043 Allow the installed locations to be in several different
13044 directories.
13045
130461992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13047
13048 * Makefile (src/paths.h): Instead of using a single sed command to
13049 edit both the PATH_LOCK and PATH_SUPERLOCK macros, edit the two
13050 separately, and don't forget to append "/!!!SuperLock!!!" to the
13051 value of the PATH_SUPERLOCK macro.
13052
13053 * config.emacs: Renamed to configure, for consistency with other
13054 GNU products. Internal references changed.
13055 INSTALL, Makefile: References changed.
13056
13057 * lock: New directory, which should always be empty. If this
13058 directory doesn't exist, Emacs won't complain; it just won't lock.
13059 Having this here means that people can just unpack Emacs, build
13060 it, and have locking work.
13061
13062 * share-lib: Re-renamed to etc, for the sake of tradition.
13063 * config.emacs: Changed default value for datadir to ../etc.
13064 * INSTALL, README: Adjusted.
13065
130661992-03-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13067
13068 * config.emacs: Guess the value for LOADLIBES in lib-src/Makefile
13069 by running CPP on the appropriate s/*.h and m/*.h files.
13070
130711992-03-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13072
13073 * config.emacs: Make sure to set the "exit on error" flag once
13074 we've removed config.status; errors should abort the configuration.
13075
130761992-02-15 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13077
13078 * config.emacs: Added -distribute option, so that the Makefile
13079 paths are in their proper form. I don't know why this matters.
13080
130811992-02-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13082
13083 * local-lisp: New directory, empty in the distribution, for people
13084 to put local elisp code in.
13085 * config.emacs: Include it in the default load path.
13086 * README: Document it.
13087
130881992-01-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13089
13090 * config.emacs: Guess the type of signal handling functions based
13091 on the contents of /usr/include/signal.h.
13092
13093 * config.emacs: Print out progress report messages.
13094
13095 * Makefile (src/paths.h): Don't generically replace
13096 /usr/local/lib/emacs with LIBROOT. This can hide bugs in the
13097 editing of the other entries, and each entry should be dealt with
13098 explicitly anyway.
13099
13100 * build-install: Converted from C-shell to Bourne shell.
13101 * config.emacs: Edit build-install properly.
13102
13103 * config.emacs: Doc fix.
13104
131051992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
13106
13107 * Makefile (install): Remove `B' from tar xf command.
13108
131091992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
13110
13111 * config.emacs: Removed support for the `maintain-environment'
13112 option; the only important difference between this and its absence
13113 has been removed.
13114 * INSTALL: Removed mention of `maintain-environment'.
13115
13116 * config.emacs: Fix arguments to sed when processing boolean
13117 arguments.
13118
131191991-12-05 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
13120
13121 * config.emacs: New file, to help automate the installation
13122 process.
13123
13124 * Makefile: Lots of changes to support the separation of etc into
13125 architecture-dependent and -independent files:
13126 (EMACSROOT): New variable, giving the directory under which all of
13127 Emacs's libraries should be installed. Changed rest of file to
13128 use it.
13129 (LIBDIR): Now denotes only architecture-dependent dir.
13130 (DATADIR): New variable, denoting architecture-independent dir.
13131 (LOCKDIR): New variable, for completeness.
13132 (SUBDIR): No more etc, new lib-src.
13133 (COPYDIR): No more etc, new arch-lib and share-lib.
13134 (src/paths.h): Set PATH_DATA and the LOCK macros too.
13135 (src): Now depends on lib-src, not etc.
13136 * build-install: Changes parallel to the above.
13137 * README: Describe the new arrangement.
13138
13139 * vms: New subdirectory for all the VMS stuff.
13140
131411991-12-03 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
13142
13143 * Makefile (LISPPATH): New variable.
13144 (src/paths.h): Define PATH_LOADSEARCH according to LISPPATH.
13145
131461990-09-28 Richard Stallman (rms@mole.ai.mit.edu)
13147
13148 * Makefile (install, install.sysv, install.xenix):
13149 Install wakeup instead of loadst. No need for setuid or setgid.
13150
131511990-08-07 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
13152
13153 * Makefile (clean): Clean etc if that's not the installation dir.
13154
131551990-04-26 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
13156
13157 * Makefile (paths.h): Make sed alter each name in the path.
13158
131591988-08-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
13160
13161 * Makefile (install.sysv): Use cpio, not tar.
13162
131631988-08-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
13164
13165 * Makefile (lockdir): Rename `lock' target.
13166 Depend on it from install*, not from `all'.
13167
131681988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
13169
13170 * Makefile: Changed LIBDIR and BINDIR back to /usr/local/{emacs,bin}
13171 to match build-install and paths.h.
13172
13173;; Local Variables:
13174;; coding: utf-8
067d23c9
KY
13175;; End:
13176
ab422c4d 13177 Copyright (C) 1993-1999, 2001-2013 Free Software Foundation, Inc.
067d23c9
KY
13178
13179 This file is part of GNU Emacs.
13180
13181 GNU Emacs is free software: you can redistribute it and/or modify
13182 it under the terms of the GNU General Public License as published by
13183 the Free Software Foundation, either version 3 of the License, or
13184 (at your option) any later version.
13185
13186 GNU Emacs is distributed in the hope that it will be useful,
13187 but WITHOUT ANY WARRANTY; without even the implied warranty of
13188 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13189 GNU General Public License for more details.
13190
13191 You should have received a copy of the GNU General Public License
13192 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.