Stop ns builds polluting the environment with EMACSDATA, EMACSDOC
[bpt/emacs.git] / ChangeLog
CommitLineData
c4444d16
PE
12012-07-09 Paul Eggert <eggert@cs.ucla.edu>
2
3 Rename configure.in to configure.ac (Bug#11603).
4 The name 'configure.in' has been obsolescent for quite some time,
5 and the next release of Autoconf will generate warnings for it.
61a11606
PE
6 See commit 'v2.69-4-g560f16b' of 2012-05-06, "general: deprecate
7 'configure.in' as autoconf input" in the Autoconf git repository.
c4444d16
PE
8 * configure.ac: Rename from configure.in.
9 * INSTALL, INSTALL.BZR, README, make-dist:
10 * Makefile.in (AUTOCONF_INPUTS):
11 * autogen.sh (autoconf_min):
12 * autogen/update_autogen (sources):
13 Adjust to reflect new name.
14
0ccb0b09
PE
152012-07-08 Paul Eggert <eggert@cs.ucla.edu>
16
17 Restore deprecation warnings, except for older libpng.
18 * configure.in (WARN_CFLAGS): Remove -Wno-deprecated-declarations.
19 (HAVE_LIBPNG_PNG_H): Don't bother checking for this if we have png.h.
20 (PNG_DEPRECATED): Define when compiling with older PNG versions.
21
4da41f1c
AS
222012-07-07 Andreas Schwab <schwab@linux-m68k.org>
23
24 * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
25
6045c4fd
PE
262012-07-07 Paul Eggert <eggert@cs.ucla.edu>
27
28 Improve static checking when configured --with-ns.
29 See Samuel Bronson's remarks in
30 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00146.html>.
31 * configure.in (WARN_CFLAGS): Omit -Wunreachable-code, as it's
32 a no-op with recent GCC and harmful in earlier ones.
33 Omit -Wsync-nand, as it's irrelevant to Emacs and provokes a
34 warning when compiling with ObjC. Always omit
35 -Wunsafe-loop-optimizations, as we don't mind when optimization is
36 being done correctly.
37
4516fbef
GM
382012-07-07 Glenn Morris <rgm@gnu.org>
39
41f9404e
GM
40 * configure.in (BROKEN_SA_RESTART): Doc fix.
41
4516fbef
GM
42 * configure.in: Rather than checking for things then undef'ing
43 them on some platforms, simply don't check for them.
44 (getwd): Don't check for it on unixware.
45 (random, rint): Don't check for these on hpux.
46 (res_init, libresolv): Don't check for these on darwin.
47
07adc2c6
JB
482012-07-07 Juanma Barranquero <lekktu@gmail.com>
49
50 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/c-ctype.$(O),
51 $(BLD)/c-strcasecmp.$(O) and $(BLD)/c-strncasecmp.$(O).
52 ($(BLD)/c-ctype.$(O), $(BLD)/c-strcasecmp.$(O))
53 ($(BLD)/c-strncasecmp.$(O)): New dependencies.
54
a69ca799
PE
552012-07-06 Paul Eggert <eggert@cs.ucla.edu>
56
f5c08e17
PE
57 * configure.in: Document --enable-gcc-warnings better.
58
fee5959d
PE
59 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
60 This is safer than strcasecmp, which has unspecified behavior
61 outside the POSIX locale and in practice sometimes does not work
62 in multibyte locales. Similarly for c_strncasecmp and strncasecmp.
63 * configure.in (strcasecmp, strncasecmp): Remove checks.
f5c08e17 64
fee5959d
PE
65 * lib/c-ctype.c, lib/c-ctype.h, lib/c-strcase.h, lib/c-strcasecmp.c:
66 * lib/c-strncasecmp.c: New files, taken from gnulib.
67 * lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
68
a69ca799
PE
69 Merge from gnulib, incorporating:
70 2012-07-06 timespec-sub: avoid duplicate include
71 Reported by Juanma Barranquero.
72
a02d99e7
GM
732012-07-06 Glenn Morris <rgm@gnu.org>
74
75 * make-dist [update]: Let autoreconf figure out what needs updating.
76 Use `make info-real'. leim/leim-list.el should always exist.
77 Check cd return value.
78
7dca65a4
PE
792012-07-06 Paul Eggert <eggert@cs.ucla.edu>
80
81 Merge from gnulib. This is for OpenBSD 5.1 amd64.
82 * m4/sys_time_h.m4: New version from gnulib, incorporating:
83 2012-07-05 sys_time: allow too-wide tv_sec
84
013aabf1
PE
852012-07-04 Paul Eggert <eggert@cs.ucla.edu>
86
87 Merge from gnulib.
88 * lib/alloca.in.h: New version from gnulib, incorporating:
89 2012-07-03 alloca: add support for HP NonStop TNS/E native
90
8ce70ed2
DA
912012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
92
93 * configure.in: If --enable-gcc-warnings, disable
94 -Wunsafe-loop-optimizations for -O1 optimization level.
95
ca26824c
GM
962012-06-30 Glenn Morris <rgm@gnu.org>
97
98 * configure.in (standardlisppath): New output variable.
99 (lisppath): Use standardlisppath.
100 * Makefile.in (standardlisppath): New, set by configure.
101 (epaths-force): Use standardlisppath and locallisppath rather than
102 lisppath.
103
94eb8e0a
DA
1042012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
105
106 * configure.in: Fix previous change. Remove --enable-asserts.
107 (CPPFLAGS): Remove conditional -DXASSERTS=1.
108 Add --enable-link-time-optimization.
109 * INSTALL: Mention this.
110
e509cfa6
DA
1112012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
112
113 * configure.in: Add glyphs category to --enable-checking option.
114 (GLYPH_DEBUG): Define if glyphs debugging is enabled.
115
a54e2c05
DA
1162012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
117
118 * configure.in (ENABLE_CHECKING): Update comment.
119
059e4fb5
PE
1202012-06-28 Paul Eggert <eggert@cs.ucla.edu>
121
15458df4
PE
122 * configure.in: Don't check for sys/select.h, sys/time.h, utime.h.
123 Emacs proper no longer uses these headers, and can rely on Gnulib
124 for these checks.
125
059e4fb5
PE
126 Merge from gnulib.
127 * m4/getopt.m4: Copy new version from gnulib, incorporating:
128 getopt-posix: No longer guarantee that option processing is resettable.
129
1ba6038a
GM
1302012-06-27 Glenn Morris <rgm@gnu.org>
131
0b6b25d5
GM
132 * configure.in: Only check for paxctl on gnu-linux. (Bug#11398#26)
133
1ba6038a
GM
134 * INSTALL: Remove references to paths.el.
135
cc06e7e7
EZ
1362012-06-26 Eli Zaretskii <eliz@gnu.org>
137
138 * lib/makefile.w32-in ($(GNULIBOBJS)): Depend on stamp_BLD. This
139 replaces separate dependency for each object file, which required
140 the same object file to be mentioned twice, causing failures in
141 parallel builds.
142
cf38a720
PE
1432012-06-26 Paul Eggert <eggert@cs.ucla.edu>
144
145 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
146 * lib/makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
147
3511c784
DA
1482012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
149
150 * configure.in (AC_CHECK_FUNCS): Detect library functions
151 strcasecmp and strncasecmp.
152
845ca893
PE
1532012-06-24 Paul Eggert <eggert@cs.ucla.edu>
154
155 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
156 We might as well use the spelling standardized by C11,
157 as in the long run that should simplify maintenance.
158 * configure.in (NO_RETURN): Remove. All uses replaced by _Noreturn.
159
696056c2
EZ
1602012-06-24 Eli Zaretskii <eliz@gnu.org>
161
162 * lib/makefile.w32-in ($(BLD)/dtotimespec.$(O)):
163 ($(BLD)/timespec-add.$(O)):
164 ($(BLD)/timespec-sub.$(O)): Don't depend on
165 $(EMACS_ROOT)/nt/inc/sys/time.h.
166
167 * lib/stat-time.h:
168 * lib/timespec.h:
169 * lib/utimens.h: Revert last change.
170
47d0c011
PE
1712012-06-23 Paul Eggert <eggert@cs.ucla.edu>
172
173 Merge from gnulib.
174 * m4/getopt.m4: Copy new version from gnulib, incorporating:
175 getopt-gnu: Handle suboptimal getopt_long's abbreviation handling.
176
388cdec0
EZ
1772012-06-23 Eli Zaretskii <eliz@gnu.org>
178
179 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
180 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/dtotimespec.$(O),
181 $(BLD)/gettime.$(O), $(BLD)/timespec-add.$(O), and
182 $(BLD)/timespec-sub.$(O).
183 ($(BLD)/dtotimespec.$(O)):
184 ($(BLD)/gettime.$(O)):
185 ($(BLD)/timespec-add.$(O)):
186 ($(BLD)/timespec-sub.$(O)): New dependencies.
187
188 * lib/stat-time.h:
189 * lib/timespec.h:
190 * lib/utimens.h: Include sys/time.h
191
54e8a418
AS
1922012-06-23 Andreas Schwab <schwab@linux-m68k.org>
193
194 * configure.in: Don't use AC_CHECK_FUNCS_ONCE, which doesn't use
195 the correct CFLAGS and LIBS.
196
d35af63c
PE
1972012-06-22 Paul Eggert <eggert@cs.ucla.edu>
198
199 Support higher-resolution time stamps (Bug#9000).
200 * configure.in (gl_ASSERT_NO_GNULIB_POSIXCHECK)
201 (gl_ASSERT_NO_GNULIB_TESTS, gl_INIT): Move these up earlier, so
202 that the new clock stuff doesn't clash with RSVG_LIBS.
203 (AC_CHECK_HEADERS): Don't check for sys/select.h, sys/time.h, utime.h,
204 as gnulib does that for us now.
205 (emacs_cv_struct_utimbuf, HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL)
206 (GETTIMEOFDAY_ONE_ARGUMENT): Remove; gnulib does these now.
207 (AC_CHECK_FUNCS): Remove utimes; no longer needed.
208 * lib/dtotimespec.c, lib/gettime.c, lib/gettimeofday.c, lib/pselect.c:
209 * lib/stat-time.h, lib/sys_select.in.h, lib/sys_time.in.h:
210 * lib/timespec-add.c, lib/timespec-sub.c, lib/timespec.h:
211 * lib/utimens.c, lib/utimens.h, m4/clock_time.m4, m4/gettime.m4:
212 * m4/gettimeofday.m4, m4/pselect.m4, m4/stat-time.m4:
213 * m4/sys_select_h.m4, m4/sys_socket_h.m4, m4/sys_time_h.m4:
214 * m4/timespec.m4, m4/utimbuf.m4, m4/utimens.m4, m4/utimes.m4:
215 New files, copied automatically from gnulib.
216 * lib/gnulib.mk, m4/gnulib-comp.m4: Merge from gnulib.
217
05730648
PE
2182012-06-22 Paul Eggert <eggert@cs.ucla.edu>
219
220 Merge from gnulib.
221 * lib/filemode.h, lib/signal.in.h, lib/stat.c, lib/stdint.in.h:
222 * lib/stdlib.in.h, lib/unistd.in.h, m4/extensions.m4, m4/getloadavg.m4:
223 * m4/getopt.m4, m4/gnulib-common.m4, m4/largefile.m4, m4/mktime.m4:
224 * m4/multiarch.m4, m4/nocrash.m4, m4/stdio_h.m4, m4/time_r.m4:
225 Copy new versions from gnulib, incorporating the following changes:
226 2012-06-22 time_r: fix typo that always overrode localtime_r decl
227 2012-06-22 Write "Mac OS X" instead of "MacOS X".
228 2012-06-21 mktime: fix integer overflow in 'configure'-time test
229 2012-06-21 nonblocking: Avoid compilation error on mingw64.
230 2012-06-19 stat, fstat: Avoid warnings on mingw64.
231 2012-06-19 getopt-gnu: Fix exit code overflow in autoconf test.
232
646b5f55
AS
2332012-06-13 Andreas Schwab <schwab@linux-m68k.org>
234
235 * configure.in: Rename --enable-use-lisp-union-type to
236 --enable-check-lisp-object-type and define CHECK_LISP_OBJECT_TYPE
237 instead of USE_LISP_UNION_TYPE.
238
8a07a8c6
GM
2392012-06-12 Glenn Morris <rgm@gnu.org>
240
b4492cba
GM
241 * configure.in (HAVE_PROCFS, _STRUCTURED_PROC): New AC_DEFINEs.
242 (opsysfile): Set specially for sol2-10.
243
8a07a8c6
GM
244 * configure.in (BROKEN_SA_RESTART, USG_SUBTTY_WORKS):
245 New AC_DEFINEs, for hpux11.
246 (opsysfile): Set specially for hpux11.
247
03043c1b
PE
2482012-06-12 Paul Eggert <eggert@cs.ucla.edu>
249
250 * configure.in: Coalesce some function checking.
251 This makes 'configure' a bit smaller.
252 Prefer AC_CHECK_FUNCS_ONCE for functions that we always check for.
253
ed846e5f
GM
2542012-06-12 Glenn Morris <rgm@gnu.org>
255
0d369729
GM
256 * configure.in (opsysfile): Set specially for gnu-kfreebsd, openbsd.
257
45fa9c0f
GM
258 * configure.in (NO_TERMIO, BROKEN_SIGIO): Move here from src/s.
259
ed846e5f
GM
260 * configure.in: Anticipate platforms with no src/s file.
261
0e25d334
CY
2622012-06-12 Chong Yidong <cyd@gnu.org>
263
264 * configure.in: Check for MagickMergeImageLayers (Bug#11678).
265
a9be7d2b
GM
2662012-06-11 Glenn Morris <rgm@gnu.org>
267
268 * configure.in (SYSTEM_TYPE): New AC_DEFINE.
269
e3a3e213
MA
2702012-06-09 Michael Albinus <michael.albinus@gmx.de>
271
272 * configure.in (dbus_type_is_valid): Check for library function.
273
276d5f5d
GM
2742012-06-06 Glenn Morris <rgm@gnu.org>
275
276 * INSTALL, make-dist: Remove vcdiff.
277
418cd726
GM
2782012-06-03 Glenn Morris <rgm@gnu.org>
279
280 * INSTALL, make-dist: Remove rcs-checkin.
281
c71232db
UM
2822012-06-03 Ulrich Müller <ulm@gentoo.org>
283
284 * configure.in (PAXCTL): Check for paxctl. (Bug#11398)
285
501390c5
PE
2862012-06-01 Paul Eggert <eggert@cs.ucla.edu>
287
288 Remove --disable-maintainer-mode option from 'configure'. (Bug#11555)
289 It is confusingly named and rarely useful. See, for example,
290 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00089.html>.
291 * INSTALL.BZR: Don't mention --disable-maintainer-mode.
292 * Makefile.in (MAINTAINER_MODE_FLAG): Remove; all uses removed.
293 * configure.in: Remove --disable-maintainer-mode.
294 (USE_MAINTAINER_MODE, MAINT): Remove.
295
0e7a053e
PE
2962012-05-28 Paul Eggert <eggert@cs.ucla.edu>
297
298 Make 'configure' a bit smaller and faster.
299 * configure.in (INSTALL_INFO): Set it with one call to
300 AC_PATH_PROG, not three.
301 (PKG_CONFIG): Hoist this out of PKG_CHECK_MODULES, since it's
302 so likely that it'll be needed.
303 (AC_CHECK_HEADERS_ONCE): Prefer to AC_CHECK_HEADERS where either works.
304 (AC_PROG_MAKE_SET): Remove; Automake does this.
305 (sysinfo): Do not check for this function, as it's never used.
306 (tzset): Check for this function just once.
307 * m4/manywarnings.m4: Sync from gnulib, incorporating the following:
308 2012-05-27 manywarnings: remove duplicate -Wmultichar entry
309
cd376509
EZ
3102012-05-27 Eli Zaretskii <eliz@gnu.org>
311
42a53d84
EZ
312 * config.bat (lib): Create/update lib/stdalign.in-h and
313 lib/sys_types.in-h.
314
0e7a053e
PE
315 * lib/makefile.w32-in ($(BLD)/md5.$(O)):
316 ($(BLD)/sha1.$(O)):
317 ($(BLD)/sha256.$(O)):
cd376509
EZ
318 ($(BLD)/sha512.$(O)): Depend on $(EMACS_ROOT)/nt/inc/stdalign.h.
319 Suggested by Christoph Scholtes <cschol2112@googlemail.com>.
320
321 * lib/getopt_.h: Regenerate.
322
50c4645e
PE
3232012-05-27 Paul Eggert <eggert@cs.ucla.edu>
324
325 Assume gnulib does largefile.
326 Gnulib does the largefile configuration anyway, so when configure.in
327 invokes AC_SYS_LARGEFILE, that bloats 'configure' unnecessarily.
328 * configure.in (AC_SYS_LARGEFILE): Remove.
329 * lib/gnulib.mk: Autoupdate.
330
caf8a9b2
PE
3312012-05-26 Paul Eggert <eggert@cs.ucla.edu>
332
333 Merge from gnulib. (Bug#11527)
334
335 The build procedure now creates <stdalign.h> and <sys/types.h> for
336 older hosts that lack a working <stdalign.h> or whose
337 <sys/types.h> does not define pid_t, size_t, ssize_t, mode_t. New
338 symbols such as WINDOWS_64_BIT_OFF_T may require attention in the
339 msdos and nt builds.
340
341 Here is a precis of gnulib changes that seem relevant; please see
342 the gnulib ChangeLog for details.
343
344 2012-05-18 crypto: fix bug in large buffer handling
345 2012-05-14 ignore-value.h: remove unused _GL_ATTRIBUTE_DEPRECATED
346 2012-05-10 _Noreturn: port config.h to gcc -Wundef
347 2012-05-08 warnings.m4: give a means to specify the program to compile
348 2012-05-07 stdint: be more consistent with glibc, SunOS libc
349 2012-04-21 Large File Support for native Windows platforms.
350 2012-04-14 stat: Bypass buggy override in mingw64.
351 2012-03-29 stdio: don't assume gets any more
352 2012-03-24 Enable common subexpression optimization in GCC.
353 2012-02-09 maint: replace FSF snail-mail addresses with URLs
354 2012-01-30 sys_stat: Fix support for mingw64 and MSVC.
355 2012-01-28 strtoimax: eliminate need for stdint.h, inttypes.h checks
356 2012-01-21 stdint: Add support for Android.
357 2012-01-15 Improve support for MSVC 9.
358 2012-01-08 mktime: Avoid compilation error on Solaris 11.
359 2012-01-05 Use ', not `, for quoting output.
360 2012-01-05 strtoimax: Don't replace systems where intmax_t is int.
361 2012-01-05 strtoimax: Work around AIX 5.1 bug.
362 2012-01-05 inttypes: Modernize.
363 2011-12-13 inttypes, stdint: add C++11 support
364 2011-11-26 Fix conflict between two instantiations of module 'unistd'.
365 2011-11-21 _Noreturn: Check that _MSC_VER is defined
366 2011-11-10 ptsname_r: Avoid compilation error on OSF/1 5.1.
367 2011-11-09 raise: fix mingw handling of SIGPIPE
368 2011-10-27 Add stdalign module and use it in other modules.
369
370 * lib/stdalign.in.h, lib/sys_types.in.h, m4/off_t.m4, m4/stdalign.m4:
371 * m4/sys_types_h.m4:
372 New files.
373 * build-aux/move-if-change, build-aux/snippet/_Noreturn.h:
374 * build-aux/snippet/arg-nonnull.h, build-aux/snippet/c++defs.h:
375 * build-aux/snippet/warn-on-use.h, doc/misc/texinfo.tex:
376 * lib/alloca.in.h, lib/allocator.h, lib/careadlinkat.c:
377 * lib/careadlinkat.h, lib/dosname.h, lib/dup2.c, lib/filemode.c:
378 * lib/filemode.h, lib/ftoastr.c, lib/ftoastr.h, lib/getloadavg.c:
379 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
380 * lib/gettext.h, lib/gnulib.mk, lib/ignore-value.h, lib/intprops.h:
381 * lib/inttypes.in.h, lib/lstat.c, lib/md5.c, lib/md5.h, lib/mktime.c:
382 * lib/pathmax.h, lib/pthread_sigmask.c, lib/readlink.c, lib/sha1.c:
383 * lib/sha1.h, lib/sha256.c, lib/sha256.h, lib/sha512.c, lib/sha512.h:
384 * lib/signal.in.h, lib/sigprocmask.c, lib/stat.c, lib/stdarg.in.h:
385 * lib/stdbool.in.h, lib/stddef.in.h, lib/stdint.in.h, lib/stdio.in.h:
386 * lib/stdlib.in.h, lib/strftime.c, lib/strftime.h, lib/strtoimax.c:
387 * lib/strtol.c, lib/strtoll.c, lib/strtoul.c, lib/strtoull.c:
388 * lib/symlink.c, lib/sys_stat.in.h, lib/time.in.h, lib/time_r.c:
389 * lib/u64.h, lib/unistd.in.h, lib/verify.h, m4/00gnulib.m4:
390 * m4/alloca.m4, m4/c-strtod.m4, m4/dup2.m4, m4/extensions.m4:
391 * m4/filemode.m4, m4/getloadavg.m4, m4/getopt.m4, m4/gl-comp.m4:
392 * m4/gnulib-common.m4, m4/gnulib-tool.m4, m4/include_next.m4:
393 * m4/inttypes.m4, m4/largefile.m4, m4/longlong.m4, m4/lstat.m4:
394 * m4/md5.m4, m4/mktime.m4, m4/multiarch.m4, m4/nocrash.m4:
395 * m4/pathmax.m4, m4/pthread_sigmask.m4, m4/readlink.m4, m4/sha1.m4:
396 * m4/sha256.m4, m4/sha512.m4, m4/signal_h.m4, m4/signalblocking.m4:
397 * m4/socklen.m4, m4/ssize_t.m4, m4/st_dm_mode.m4, m4/stat.m4:
398 * m4/stdarg.m4, m4/stdbool.m4, m4/stddef_h.m4, m4/stdint.m4:
399 * m4/stdio_h.m4, m4/stdlib_h.m4, m4/strftime.m4, m4/strtoimax.m4:
400 * m4/strtoll.m4, m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4:
401 * m4/sys_stat_h.m4, m4/time_h.m4, m4/time_r.m4, m4/tm_gmtoff.m4:
402 * m4/unistd_h.m4, m4/warnings.m4, m4/wchar_t.m4:
403 Update from gnulib.
404
34374650
PE
4052012-05-22 Paul Eggert <eggert@cs.ucla.edu>
406
407 Remove src/m/*.
408 * configure.in: Remove all mention of src/m/*.
409 (machine, machfile, M_FILE, config_machfile, and_machfile): Remove.
410 All uses removed.
411 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
412 (BITS_PER_LONG_LONG): Move to src/lisp.h.
413 * lib/makefile.w32-in: Remove dependencies on
414 $(EMACS_ROOT)/src/m/intel386.h.
415 * make-dist: Don't make links to src/m.
416
ec21c7f8
PE
4172012-05-22 Paul Eggert <eggert@cs.ucla.edu>
418
419 * Makefile.in (ACLOCAL_INPUTS): Fix up gnulib-comp.m4 name. (Bug#11529)
420 Without this further fix, aclocal was being invoked unnecessarily.
421
39078e4a
GM
4222012-05-22 Glenn Morris <rgm@gnu.org>
423
424 * Makefile.in (blessmail, install-arch-dep, uninstall):
425 Check cd lib-src works.
426 (install-arch-dep, uninstall): Remove unneeded subshells.
427
be17565b
GM
4282012-05-21 Glenn Morris <rgm@gnu.org>
429
ff0c3cfb
GM
430 * update-subdirs: Move to build-aux/.
431 * make-dist, Makefile.in (install-arch-indep): Update for this change.
432
d10cfddd
GM
433 * Makefile.in (leimdir): New, set by configure.
434 (COPYDIR, COPYDESTS): Add leim directories.
435 (install-leim): Remove.
436 (install-arch-indep): Handle leim installation directly.
437
be17565b
GM
438 * vpath.sed: Remove unused file.
439 * make-dist: No more vpath.sed.
440
9b4ee616
PE
4412012-05-21 Paul Eggert <eggert@cs.ucla.edu>
442
fb77d37e
PE
443 Use full name for m4/gnulib-comp.m4. (Bug#11529)
444 Previously the file was named m4/gl-comp.m4 due to DOS 8+3 restrictions,
445 even though the file's name in gnulib is m4/gnulib-comp.m4.
446 This had a problem when merging from gnulib, as the code temporarily
447 renamed it to the full name, causing problems when interrupted.
448 Now the file has its full name, with the idea that we will find
449 a solution for MS-DOS that does not affect the rest of Emacs.
450 * m4/gnulib-comp.m4: Rename from m4/gl-comp.m4.
451
261cb4bb
PE
452 Assume C89 or later.
453 * configure.in (AC_C_PROTOTYPES, AC_C_VOLATILE, AC_C_CONST)
454 (POINTER_TYPE, PROTOTYPES): Remove.
455
9b4ee616
PE
456 Make merging from gnulib a script, not a makefile action.
457 Putting it in a makefile has some problems with reflection, as
458 merging from gnulib updates 'configure', which can update the makefile.
459 Putting it in a standalone script breaks this loop.
460 * Makefile.in (gnulib_srcdir, $(gnulib_srcdir), DOS_gnulib_comp.m4)
461 (GNULIB_MODULES, GNULIB_TOOL_FLAGS, sync-from-gnulib):
462 Remove, moving the actions to the script admin/merge-gnulib.
463
261cb4bb
PE
4642012-05-21 Glenn Morris <rgm@gnu.org>
465
466 * configure.in (LEIM_INSTALLDIR):
467 Rename to leimdir, treat like lispdir.
468
b847032c
GM
4692012-05-21 Glenn Morris <rgm@gnu.org>
470
471 * Makefile.in (install-arch-indep, install-doc, install-info)
472 (uninstall): Scrap superfluous subshells.
473
af006ad5
UM
4742012-05-19 Ulrich Mueller <ulm@gentoo.org>
475
476 * Makefile.in (install-etc): Respect DESTDIR. (Bug#11518)
477
003fdae2
PE
4782012-05-19 Paul Eggert <eggert@cs.ucla.edu>
479
9232a6d9
PE
480 * configure.in (AC_CHECK_FUNCS): Remove XSetWMProtocols,
481 getdomainname, mblen (twice), mbrlen (twice), mbsinit, ualarm,
482 getsockopt, setsockopt, mremap, mempcpy.
483
003fdae2
PE
484 * configure.in (machine): Do not set to 'vax', since src/m/vax.h
485 is being removed.
486 (AC_CHECK_FUNCS): Remove ftime.
487
e7333757
GM
4882012-05-19 Glenn Morris <rgm@gnu.org>
489
e39b9806 490 * Makefile.in (install-arch-indep): Remove unneeded subshell.
e39b9806 491
42d5aa3e
GM
492 * Makefile.in (install-arch-indep): Remove unneeded chmod.
493 Set permissions of lisp/subdirs.el.
494
9192d37d
GM
495 * Makefile.in (SUBDIR): Add leim. Update users.
496
2e5d41e4
GM
497 * Makefile.in (lib, lib-src, lisp): Check cd return value.
498
e7333757
GM
499 * Makefile.in (leim): No need to set PARALLEL.
500
7606c360
GM
5012012-05-18 Glenn Morris <rgm@gnu.org>
502
6d1a623e
GM
503 * Makefile.in (install-arch-indep, install-info, install-man):
504 Simplify some one-sided ifs.
505
29473393
GM
506 * Makefile.in: Install only the relevant DOC file.
507 (install-arch-indep): Delete etc/DOC*.
508 (install-doc): No more need to delete etc/DOC.
509
660c8c1e
GM
510 * Makefile.in (install-arch-indep): Split into several rules.
511 (install-doc, innstall-info, install-man): New rules.
512
37f36bcb
GM
513 * configure.in (mandir): May as well include it in the NS app bundle.
514
0629a797
GM
515 * configure.in (INSTALL_ARCH_INDEP_EXTRA): New output variable.
516 * Makefile.in (INSTALL_ARCH_INDEP_EXTRA): New, set by configure.
517 (install-arch-indep): Don't install-etc for self-contained ns builds.
518
136c45ee
GM
519 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS) <darwin>:
520 No longer unconditonally add /sw directories. (Bug#2280)
521
ed0ba302
GM
522 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
523 (install-arch-indep): Depend on install-leim.
524 (install): Remove explicit install-leim dependence.
525
62061397
GM
526 * Makefile.in (install-arch-indep):
527 Move last element of mkdir rule here.
528 (mkdir): Remove rule.
529
37baa3c8
GM
530 * Makefile.in (install-arch-indep): Remove unneeded chmods.
531 INSTALL_DATA does this for us.
532
b533f05e
GM
533 * Makefile.in (install-arch-dep): Ensure bindir exists.
534 Drop mkdir dependency.
535 (install-arch-indep): Ensure docdir, infodir, mandir exist.
536 (install-leim): Drop mkdir dependency.
537 (mkdir): Remove most directories, now made in relevant rules.
538
7606c360
GM
539 * Makefile.in (install-arch-indep): Combine adjacent loops.
540
3a4155de
GM
5412012-05-17 Glenn Morris <rgm@gnu.org>
542
d9a1e2c2
GM
543 * Makefile.in (install-etc, mkdir):
544 Make relevant directories in install-etc rather than mkdir.
545
4c54abe1
GM
546 * Makefile.in (write_subdir): Create the directory if needed.
547 (install-arch-dep, mkdir): No need to make site-lisp directories.
548
9f1ea7dc 549 * Makefile.in (write_subdir): New.
05f3d308 550 (install-arch-indep, install-arch-dep): Use $write_subdir.
9f1ea7dc 551
40c117e7 552 * configure.in (docdir, etcdir, infodir, lispdir):
b42c720d 553 For a self-contained ns build, set these to the appropriate values.
40c117e7 554 * Makefile.in (install-arch-dep): No need to move info/ any more.
b42c720d 555
b4a36200
GM
556 * configure.in (ns_self_contained): New output variable.
557 * Makefile.in (ns_self_contained): New, set by configure.
558 (install-arch-dep): For a self-contained ns build,
96182ae6
GM
559 don't bother installing binaries then immediately deleting them.
560
3a4155de
GM
561 * Makefile.in (ns_appbindir, ns_appresdir):
562 Move them before things that may refer to them.
563 (install-arch-dep): No need to relocate self-contained ns libexec.
564
565 * configure.in (archlibdir): Set it for self-contained ns builds.
566 (libexecdir): Don't expand it now (this is mainly cosmetic).
567
f04940ae
PE
5682012-05-16 Paul Eggert <eggert@cs.ucla.edu>
569
570 * configure.in: Simplify by removing CPP etc.
571 (CPP_TEST_OPTIONS, NON_GNU_CPP, cc_specified, SPECIFIED_CFLAGS)
572 (SPECIFED_CPP, CPP, NON_GNU_CC, AC_PROG_CPP): Remove; not needed.
573 In particular we no longer need to fiddle with CPP, since we don't
574 use CPP specially any more.
575 (gl_EARLY): Invoke this after adjusting CC, so that it uses the
576 adjusted compiler.
577 (AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_RANLIB): Comment out,
578 since gl_EARLY and/or Autoconf already does these.
579
27cb7be2
GM
5802012-05-16 Glenn Morris <rgm@gnu.org>
581
582 * configure.in: Try to fix building with gcc >= 4.6 on Darwin.
583 (CPP): Do not unconditionally set it on Darwin.
584 Instead, try to test if -no-cpp-precomp is accepted.
585 (CPP_TEST_OPTIONS, SPECIFIED_CPP): New. (Bug#9755)
586
ec3ca9ec
GM
5872012-05-15 Glenn Morris <rgm@gnu.org>
588
4e7d487c 589 * Makefile.in (install-arch-dep): Replace use of MV_DIRS.
a3f7efb8 590
75a9f5f5
GM
591 * Makefile.in (install-arch-dep): Do not hard-code version number.
592
ec3ca9ec
GM
593 * Makefile.in (install-arch-dep): NS install no longer needs to
594 symlink libexec/* into bin/, since 2012-05-14 ns_init_paths change.
595
3fe7cdc8
GM
5962012-05-12 Glenn Morris <rgm@gnu.org>
597
9e6b06ed
GM
598 * configure.in (ns_appbindir): Remove trailing "/".
599
3fe7cdc8
GM
600 * configure.in (AC_PROG_MKDIR_P): Call it, to set MKDIR_P.
601 (MKDEPDIR): Use $MKDIR_P.
602 * Makefile.in (MKDIR_P): New, set by configure.
603 (mkdir): Use $MKDIR_P.
604
a873f274
GM
6052012-05-11 Glenn Morris <rgm@gnu.org>
606
607 * Makefile.in (install-arch-indep): There are no more Makefile.c files.
e6124927 608 Use INSTALL_DATA for the DOC file.
c8e32179 609 Remove dead code for ./lisp that never executes.
a873f274 610
ff57c2ec
GM
6112012-05-10 Glenn Morris <rgm@gnu.org>
612
613 * configure.in (LEIM_INSTALLDIR): New output variable.
614
49ed9c8e
SM
6152012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
616
617 * .dir-locals.el (log-edit-mode): Enable gnu-style checks.
618
5122804a
GM
6192012-05-08 Glenn Morris <rgm@gnu.org>
620
621 * make-dist: No more doc/lispref/*.el.
622
01319a4e
AS
6232012-05-05 Andreas Schwab <schwab@linux-m68k.org>
624
625 * configure.in: Fix quoting bugs.
626
8045b906
GM
6272012-05-04 Glenn Morris <rgm@gnu.org>
628
629 * configure.in (INFO_EXT, INFO_OPTS): New output variables.
630
9fa0e416
GM
6312012-05-02 Glenn Morris <rgm@gnu.org>
632
3c30e766
GM
633 * configure.in (LD_SWITCH_SYSTEM): Don't try to defeat
634 the choices made by FreeBSD and NetBSD. (Bug#10313)
635
9aa071df
GM
636 * Makefile.in (INFO_FILES): Remove variable.
637 (INFO_NONMISC): New variable.
638 (install-arch-indep, uninstall): Don't use $INFO_FILES.
639
cd3771a0
GM
640 * Makefile.in (uninstall): Remove useless-use-of-for; that for
641 some reason caused problems on an old Solaris.
642
a36e64d0
GM
643 * Makefile.in (install-arch-indep, uninstall):
644 Ensure that INSTALL-type commands are run from top-level.
645
9e7a4bcf
GM
646 * info/dir: Make some entries consistent with the source texi files.
647
9fa0e416
GM
648 * configure.in (LIBS_TERMCAP): Fix netbsd logic, broken 2012-03-04.
649
7adecb99
GM
6502012-05-02 Glenn Morris <rgm@gnu.org>
651
652 * Makefile.in (install-arch-indep):
653 Combine adjacent install-data and install-info loops.
654
4737362e
GM
6552012-05-01 Glenn Morris <rgm@gnu.org>
656
ab1121bd
GM
657 * Makefile.in (MAN_PAGES): Remove.
658 (install-arch-indep, uninstall): Don't use $MAN_PAGES.
659
a4a18b8b
GM
660 * configure.in: Try libtinfo for tputs.
661 (LIBS_TERMCAP) [gnu*]: Use libtinfo if it was found. (Bug#9741)
662
3ba0a545
GM
663 * configure.in: Combine adjacent $opsys case blocks.
664
e3da5b19
GM
665 * configure.in (LIBS_TERMCAP): Remove unreachable branch for sol2.
666
262f06da
GM
667 * configure.in: Invert the TERMINFO logic,
668 since "yes" is far more common than "no".
669
9311dcff
GM
670 * configure.in (HAVE_LIBNCURSES): Remove; it is required to be true.
671
4d5c6349
GM
672 * configure.in (LD_SWITCH_X_SITE_RPATH):
673 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
674
4737362e
GM
675 * configure.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
676
562e638f
GM
6772012-04-26 Glenn Morris <rgm@gnu.org>
678
679 * make-dist: No more doc/lispref/tindex.pl.
680
dcbf5805
MA
6812012-04-22 Michael Albinus <michael.albinus@gmx.de>
682
683 * configure.in (dbus_validate_bus_name, dbus_validate_path)
684 (dbus_validate_interface, dbus_validate_member): Check also for
e3a3e213 685 these library functions.
dcbf5805 686
4b5b5289
PE
6872012-04-22 Paul Eggert <eggert@cs.ucla.edu>
688
689 * configure.in (doug_lea_malloc): Check for __malloc_initialize_hook.
690 With glibc 2.14 or later, when compiled with GCC 4.7.0's
691 -Werror=deprecated-declarations flag, use of hooks like
692 __malloc_initialize_hook causes compilation to fail because these
693 hooks are deprecated. Modify 'configure' to check for these hooks too.
694 Simplify the 'configure' code to test for all the hooks at once.
695 (emacs_cv_var___after_morecore_hook): Remove, replacing with ...
696 (emacs_cv_var_doug_lea_malloc): ... this new var.
697
9ee7d8b9
PE
6982012-04-21 Paul Eggert <eggert@cs.ucla.edu>
699
700 Sync from gnulib version 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc
701 dated 2011-10-07. Regenerating from current gnulib would be a
702 pervasive change, and currently the trunk isn't open to such changes.
703 * configure.in (WARN_CFLAGS): Remove; no longer needed now
704 that gnulib does it.
705 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
706
5e6ab4e6
AS
7072012-04-21 Andreas Schwab <schwab@linux-m68k.org>
708
709 * m4/gl-comp.m4: Update. (Bug#11285)
710
c07a4c0b 7112012-04-20 Ludovic Courtès <ludo@gnu.org>
d666446d
LC
712
713 * configure.in: Don't use the -R option (Bug#11251).
714
6c94c34f 7152012-04-18 Paul Eggert <eggert@cs.ucla.edu>
b8df54ff 716
9f46df23 717 configure: new option --enable-gcc-warnings (Bug#11207)
b8df54ff
PE
718 I have been using this change for many months in my private copy
719 of Emacs, and have used it to find several bugs. It's mature
720 enough to publish now.
721 * Makefile.in (GNULIB_MODULES): Add warnings, manywarnings.
722 * configure.in: Support --enable-gcc-warnings, in the style of
723 other GNU packages such as coreutils.
724 (C_WARNINGS_SWITCH): Remove, replacing with...
725 (WARN_CFLAGS, GNULIB_WARN_CFLAGS): New variable.
726 (PKG_CHECK_MODULES, C_SWITCH_X_SITE): Use -isystem rather than -I,
727 when including system files with GCC.
728 * etc/NEWS: Mention --enable-gcc-warnings.
67546201 729 * INSTALL (DETAILED BUILDING AND INSTALLATION): Likewise.
b8df54ff
PE
730 * lib/Makefile.am (AM_CFLAGS): New macro.
731 * m4/manywarnings.m4, m4/warnings.m4: New files, from gnulib.
732
316411f0
DA
7332012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
734
735 * configure.in (AC_CHECK_FUNCS):
736 Add getpwent, endpwent, getgrent, endgrent. (Bug#7900)
737
9b9b2ef2
GM
7382012-04-16 Glenn Morris <rgm@gnu.org>
739
b1aa797c
GM
740 * configure.in (NS_HAVE_NSINTEGER): Remove unnecessary variable.
741
9b9b2ef2
GM
742 * configure.in: Remove X libs workaround for old autoconf.
743
badf86af
KB
7442012-04-12 Ken Brown <kbrown@cornell.edu>
745
746 * configure.in: Warn that Cygwin 1.5 is unsupported. (Bug#10398)
747
2f097256
GM
7482012-04-11 Glenn Morris <rgm@gnu.org>
749
750 * configure.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
751
a9f72fc1
GM
7522012-04-10 Glenn Morris <rgm@gnu.org>
753
754 * configure.in: Conditionally generate admin/unidata/Makefile.
755
6b4f4a2d
TZ
7562012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
757
a9f72fc1 758 * info/dir, Makefile.in (INFO_FILES): Add emacs-gnutls manual.
6b4f4a2d 759
23df914b
GM
7602012-04-09 Glenn Morris <rgm@gnu.org>
761
fd9d85c2
GM
762 * Makefile.in (leim): Check cd return value. Pass fewer variables.
763 (install-leim): Check cd return value. Pass $MFLAGS.
764 (install-strip): Pass $MFLAGS.
765
23df914b
GM
766 * configure.in: Require makeinfo >= 4.7. (Bug#10910)
767 Eg org.texi has been using 4.7 functions for some time.
768
bf6bba2b
PE
7692012-04-07 Paul Eggert <eggert@cs.ucla.edu>
770
771 Check pkg-config exit status when configuring (Bug#10626).
772 * configure.in (PKG_CHECK_MODULES): Do not assume that pkg-config
773 works; check its exit status. Problem reported by Jordi Gutiérrez
774 Hermoso in
775 <http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00787.html>.
776
f3774f20
GM
7772012-04-07 Glenn Morris <rgm@gnu.org>
778
779 * README, configure.in (AC_INIT): Bump version to 24.1.50.
780
d67a9a85
EZ
7812012-04-07 Eli Zaretskii <eliz@gnu.org>
782
783 * lib/makefile.w32-in (gnulib, all): Don't depend on stamp_BLD.
784
f20f95c6
PE
7852012-03-04 Paul Eggert <eggert@cs.ucla.edu>
786
787 configure: fix ncurses 'configure' issue on Solaris 10 (Bug#10677)
788 * configure.in (LIBS_TERMCAP): Default this to the result of
789 the tputs library search. Do a run-time test for the linkability
790 of tputs unless cross-compiling, as that's more reliable if the
791 link flags and libraries are messed up. Don't change LIBS as
792 a result of the test, as that may mess up later tests.
793
75197633
CS
7942012-02-05 Christoph Scholtes <cschol2112@googlemail.com>
795
533183f3 796 * make-dist (README.W32): Include file in source tarball. (Bug#9750)
3e44c782 797
75197633
CS
798 * lib/makefile.w32-in (PRAGMA_SYSTEM_HEADER): Move to platform
799 specific makefiles to support getopt_.h generation with MSVC.
800
7eb21b49
GM
8012012-02-04 Glenn Morris <rgm@gnu.org>
802
803 * Makefile.in (uninstall):
804 Handle compressed info files and man pages. (Bug#10718)
805
44f92739
GM
8062012-02-02 Glenn Morris <rgm@gnu.org>
807
808 * configure.in [HAVE_NS]:
809 Error if use --without-toolkit-scroll-bars. (Bug#10673)
810
6df37268
PE
8112012-02-01 Paul Eggert <eggert@cs.ucla.edu>
812
813 Port to older Solaris 10 versions (Bug#10677).
814 Bug reported by Chong Yidong for SunOS 5.10 Generic_127111-11 sparc.
815 I cannot reproduce it on SunOS 5.10 Generic_141444-09 sparc but
816 possibly this is because Sun fixed the 'stat' bug in my version.
817 * Makefile.in (GNULIB_TOOL_FLAGS): Do not avoid the pathmax module.
818 * lib/pathmax.h, m4/pathmax.m4: New files, from gnulib.
819 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
820 These changes are based on gnulib version
821 4f11d6bebc3098c64ffde27079ab0d0cecfd0cdc dated 2011-10-07 20:59:10,
822 because Emacs is in feature freeze and we do not want to merge any
823 more-recent changes from gnulib.
824
8d8939e8
GM
8252012-01-31 Glenn Morris <rgm@gnu.org>
826
e4070def
GM
827 * configure.in: Throw an explicit error if Motif toolkit was
828 requested but requirements could not be found.
829
8d8939e8
GM
830 * configure.in: Allow Emacs to actually be built with xaw scroll-bars.
831
5a26ec89
EZ
8322012-01-30 Eli Zaretskii <eliz@gnu.org>
833
834 * lib/makefile.w32-in ($(BLD)/sha1.$(O) $(BLD)/sha256.$(O)
835 $(BLD)/sha512.$(O)): Depend on stamp_BLD. Fixes a build failure
836 with "make -j3".
837
1b0880d5
JB
8382012-01-16 Juanma Barranquero <lekktu@gmail.com>
839
840 * .bzrignore: Ignore etc/__pycache__.
841
adee8a65
PE
8422011-12-17 Paul Eggert <eggert@cs.ucla.edu>
843
844 Port HAVE_PTHREAD configuration to MirBSD 10 (Bug#10201).
090bd7cb 845 * configure.in (HAVE_PTHREAD): Check for pthread_atfork if linking
adee8a65
PE
846 to gmalloc.c. This should prevent a MirBSD 10 build failure reported
847 by Nelson H. F. Beebe in
848 <http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00065.html>.
849
e152e577
JB
8502011-12-10 Juanma Barranquero <lekktu@gmail.com>
851
852 * update-subdirs: Don't set no-byte-compile twice (bug#10260).
853
46d14be7
JD
8542011-12-10 Jan Djärv <jan.h.d@swipnet.se>
855
856 * configure.in (HAVE_ALSA, HAVE_GSETTINGS): Save and restore LIBS
857 instead of LDFLAGS (Bug#10230).
858
6c269a38
PE
8592011-12-03 Paul Eggert <eggert@cs.ucla.edu>
860
4eec8d6f
PE
861 * INSTALL.BZR: Mention configure -C, --disable-maintainer-mode.
862
6c269a38 863 Propagate configure flags to sub-configures.
1350a3cc 864 * Makefile.in (cache_file, MAINTAINER_MODE_FLAG, CONFIGUREFLAGS):
6c269a38
PE
865 New macros.
866 (config.status, bootstrap): Use them to propagate configure flags
867 to sub-configures.
868 * configure.in (cache_file): AC_SUBST this, for Makefile.in.
869
63e94eb8
PE
8702011-12-03 Paul Eggert <eggert@cs.ucla.edu>
871
872 * .bzrignore: Add config.cache.
873
54e9e3bf
JD
8742011-11-27 Jan Djärv <jan.h.d@swipnet.se>
875
876 * configure.in: Check for gtk_window_set_has_resize_grip.
877
20db1522
JB
8782011-11-24 Juanma Barranquero <lekktu@gmail.com>
879
880 * configure.in (HAVE_XPM): Fix typo.
881
60bf278f
GM
8822011-11-22 Glenn Morris <rgm@gnu.org>
883
5f77c86c
GM
884 * configure.in (EMACSDATA, EMACSDOC): If set, print, since they can
885 have confusing effects on the build. (Bug#6401)
886
60bf278f
GM
887 * Makefile.in (install-arch-dep): Tweak previous change.
888
816be9f6
YD
8892011-11-22 Yavor Doganov <yavor@gnu.org>
890
891 Do not install arch-dependent files in the app bundle if
892 --disable-ns-self-contained is requested. (Bug#1335)
893 * configure.in (exec_prefix, libexecdir): Define relative to
894 `ns_appbindir' only if configured for a self-contained app.
895 * Makefile.in (install-arch-dep): Test for the existence of
896 libexec in the Emacs.app bundle before executing commands.
897
d5ff9cd0
AS
8982011-11-20 Andreas Schwab <schwab@linux-m68k.org>
899
900 * configure.in: Remove reference to src/m/ibms390.h.
901
1c889bf6
GM
9022011-11-13 Glenn Morris <rgm@gnu.org>
903
904 * INSTALL: Tiny updates for disk space used during installation.
905
a6fc3b5c
EZ
9062011-11-05 Eli Zaretskii <eliz@gnu.org>
907
908 * lib/makefile.w32-in (FRC): New dummy target.
909 (TAGS): Depend on FRC.
910
9f77899d
GM
9112011-11-04 Glenn Morris <rgm@gnu.org>
912
913 * configure.in: Increase minimum GnuTLS version to 2.6.6. (Bug#9929)
914 Do not include GnuTLS version info in final summary message.
915
0bd3cb7b
EZ
9162011-10-31 Eli Zaretskii <eliz@gnu.org>
917
07f3add9
EZ
918 * config.bat: Use config.in and Makefile.in from src/ and lib/, if
919 they exist there, else from autogen/.
920
921 * make-dist (msdos): Add depfiles.bat and inttypes.h.
0bd3cb7b 922
d2eaf3e4
NT
9232011-10-25 Nali Toja <nalitoja@gmail.com> (tiny change)
924
925 * configure.in (HAVE_GNU_MAKE): Respect MAKE env-var. (Bug#9868)
926
e782cfab
PE
9272011-10-24 Paul Eggert <eggert@cs.ucla.edu>
928
929 * configure.in (LIB_PTHREAD): Prepend -lpthread to LIBS (Bug#9852)
930 if the library is found. Otherwise, later configure-time tests,
931 such as the test for pthread_sigmask, generate the wrong results
932 on some platforms. Problem reported for FreeBSD by Nali Toja.
933
7da0b018
PE
9342011-10-20 Paul Eggert <eggert@cs.ucla.edu>
935
936 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
937 * configure.in (AC_STRUCT_TM, AC_STRUCT_TIMEZONE, HAVE_TM_GMTOFF):
938 Remove; no longer needed, now that we defer to strftime for time
939 zone names.
940
0ffe1065
JD
9412011-10-18 Jan Djärv <jan.h.d@swipnet.se>
942
943 * configure.in (GLIB_REQUIRED, GTK_REQUIRED): Set to 2.10 (Bug#9786).
944
23769e49
CY
9452011-10-18 Chong Yidong <cyd@gnu.org>
946
947 * make-dist: Remove Cocoa/Emacs.xcodeproj from distribution.
948
fd8dea03
GM
9492011-10-13 Glenn Morris <rgm@gnu.org>
950
951 * configure.in: Also look for tputs in libcurses. (Bug#9736)
952
f4cc5b54
PE
9532011-10-12 Paul Eggert <eggert@cs.ucla.edu>
954
955 * configure.in: Remove check for -lintl (Bug#9713).
f1bfb0db 956 The check could break 'configure' on GNU/Linux with a (broken) libintl.
f4cc5b54
PE
957 The check was helpful but not essential in Solaris 2.6 (1997),
958 and is no longer needed in Solaris 8 (2000). Solaris 2.6 is
959 obsolete -- Sun dropped support for it in 2006 -- and without
960 access to that Silurian platform we can't maintain the code anyway.
961
7c5ee88e
PE
9622011-10-07 Paul Eggert <eggert@cs.ucla.edu>
963
d47439a3
PE
964 Merge from gnulib, fixing some 'configure' typos (Bug#9696).
965 * lib/signal.in.h, lib/sigprocmask.c, m4/gl-comp.m4:
966 * m4/gnulib-common.m4: Merge from gnulib.
967 Without this, 'configure' would say "func_gl_gnulib_m4code_pathmax:
968 command not found" on powerpc-apple-darwin9.8.0.
969
7c5ee88e
PE
970 * configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
971 This is now done by src/alloc.c.
972
423dbf9b
RS
9732011-10-02 Richard Stallman <rms@gnu.org>
974
975 * configure.in: Rename xlinux_first_failure to xgnu_linux_first_failure
976 and xlinux_second_failure to xgnu_linux_second_failure.
977
31bed486
EZ
9782011-09-29 Eli Zaretskii <eliz@gnu.org>
979
5f91c1e5
EZ
980 * .bzrignore: Add ./GNUmakefile.unix, lib/SYS, lib/alloca.in-h,
981 lib/signal.in-h.
31bed486 982
e785f2ec 983 * config.bat: Rename GNUmakefile, so it is not run on MS-DOS.
31bed486
EZ
984 Rename signal.in.h and alloca.in.h.
985
e1504b9b
EZ
9862011-09-28 Eli Zaretskii <eliz@gnu.org>
987
988 * INSTALL: Mention that m17n libraries and libotf are needed for
989 Arabic shaping.
990
316f8af0
PE
9912011-09-26 Paul Eggert <eggert@cs.ucla.edu>
992
993 Merge from gnulib, improving some licensing wording.
994 This clarifies and fixes some licensing issues raised by Glenn Morris
995 <http://lists.gnu.org/archive/html/bug-gnulib/2011-09/msg00397.html>.
996 It also merges the latest version of texinfo.tex and has some
997 MSVC-related changes that don't affect Emacs.
998 * Makefile.in (GNULIB_TOOL_FLAGS): Avoid msvc-inval, msvc-nothrow,
999 pathmax, and raise, since these are needed only to address
1000 MSVC-related issues that Emacs doesn't have.
1001 * doc/misc/texinfo.tex, lib/dup2.c, lib/gnulib.mk, lib/signal.in.h:
1002 * lib/sigprocmask.c, lib/stat.c, lib/stdio.in.h, lib/sys_stat.in.h:
1003 * lib/unistd.in.h, m4/dup2.m4, m4/getloadavg.m4, m4/gl-comp.m4:
1004 * m4/include_next.m4, m4/signal_h.m4, m4/signalblocking.m4:
1005 * m4/stdint.m4, m4/stdio_h.m4, m4/sys_stat_h.m4, m4/time_h.m4:
1006 * m4/unistd_h.m4: Merge from gnulib.
1007
04d51ad4
AS
10082011-09-26 Andreas Schwab <schwab@linux-m68k.org>
1009
1010 * configure.in: Initialize HAVE_LIBXML2.
1011
6e99ef20
GM
10122011-09-26 Glenn Morris <rgm@gnu.org>
1013
1014 * make-dist: Add lib/makefile.w32-in.
1015
0538fab0
GM
10162011-09-24 Glenn Morris <rgm@gnu.org>
1017
1018 * configure.in (CRT_DIR): Fix netbsd/openbsd handling.
1019
c5b01d8c
LMI
10202011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
1021
1022 * .dir-locals.el: Change the debbugs regexp to allow having the
1023 bug number as the first thing on a line.
1024
0cc87afb
GM
10252011-09-15 Glenn Morris <rgm@gnu.org>
1026
1027 * configure.in: Make configure work with recent GNUsteps.
1028 (_NATIVE_OBJC_EXCEPTIONS): New AC_DEFINE.
1029 (GNU_OBJC_CFLAGS): Add -fobjc-exceptions when needed.
088f329c 1030 (C_SWITCH_X_SYSTEM): Enable GNUstep to find its headers.
0cc87afb 1031
3f44249e
PE
10322011-09-11 Paul Eggert <eggert@cs.ucla.edu>
1033
1034 Merge from gnulib, porting to Tru64.
1035 * lib/lstat.c, lib/stat.c, m4/include_next.m4, m4/nocrash.m4:
1036 * m4/signal_h.m4, m4/time_h.m4, m4/unistd_h.m4:
1037 Merge from gnulib. This fixes a compilation error on Tru64 UNIX
1038 aka OSF/1 5.1 DTK cc. There is also some mingw stuff here that
1039 doesn't affect Emacs.
1040
c8199d0f
PE
10412011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1042
1043 * configure.in (isnan): Remove now-unnecessary check.
1044
e39b275c 10452011-09-06 Paul Eggert <eggert@cs.ucla.edu>
24e0f6b1 1046
abec06ff 1047 Merge from gnulib, using build-aux to remove clutter (Bug#9169).
e39b275c
PE
1048 This is to fix the following problems:
1049 . On FreeBSD 6.4, HP-UX 11.31, and Solaris 9, and when Emacs is
1050 configured not to use gtk or any other thread-using library,
1051 signals aren't blocked correctly.
1052 . On IRIX 6.5 it fixes an unwanted clash between Emacs's
1053 and IRIX's signal handling.
1054 . On Cygwin 1.7.5 it works around an incompatibility with
1055 the system pthread_sigmask.
1056 . On MacOS X 10.5 (32-bit), files whose inode numbers
1057 exceed 2**31 cannot be read or manipulated.
1058 . pthread_sigmask: Actually use results of gl_THREADLIB.
1059 . strtoimax, strtoumax: Avoid link error on OSF/1 with DTK cc.
1060 . find 'ar' program that fits with --host argument.
1061 . Allow the user to override the choice of AR, ARFLAGS, RANLIB.
74b880cb
PE
1062 * autogen/README: Update destination list.
1063 * autogen/copy_autogen, autogen/update_autogen, .bzrignore:
1064 The autogenerated files compile, config.guess,
1065 config.sub, depcomp, install-sh, and missing are now in build-aux.
24e0f6b1
PE
1066 * m4/largefile.m4: New file, so that Emacs does not mess up when
1067 accessing files with large inode numbers in MacOS X 10.5 and later.
1068 * m4/nocrash.m4: New file, to avoid triggering background debugger
1069 and/or create core dumps during 'configure'.
1070 * build-aux/move-if-change: Renamed from move-if-change.
1071 * build-aux/snippet/arg-nonnull.h: Renamed from arg-nonnull.h.
1072 * build-aux/snippet/c++defs.h: Renamed from c++defs.h.
1073 * build-aux/snippet/warn-on-use.h: Renamed from warn-on-use.h.
1074 * build-aux/snippet/_Noreturn.h: New file, for draft C1X _Noreturn.
24e0f6b1
PE
1075 * Makefile.in (epaths-force, sync-from-gnulib):
1076 move-if-change is now in build-aux.
1077 (GNULIB_TOOL_FLAGS): Avoid threadlib; this is now a prerequisite
1078 of gnulib's pthread_sigmask module, but Emacs doesn't need it.
1079 (mkdir): install-sh is now in build-aux.
1080 * config.bat: c++defs.h is now in build-aux/snippets.
1081 * configure.in: Specify AC_CONFIG_AUX_DIR with build-aux (the
1082 usual parameter).
1083 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1084 * lib/makefile.w32-in (ARG_NONNULL_H): arg-nonnull.h moved
1085 to build-aux/snippet.
1086 * lib/pthread_sigmask.c, lib/stdlib.in.h, m4/extensions.m4:
1087 * m4/getopt.m4, m4/gnulib-common.m4, m4/pthread_sigmask.m4:
1088 Merge from gnuilib. This fixes porting bugs on Cygwin, Irix, and
1089 Solaris, enables MacOS extensions, and enables nocrash during
1090 'configure'.
1091 * make-dist: Adjust to new build-aux and build-aux/snippit dirs.
1092
86633eab 10932011-09-04 Paul Eggert <eggert@cs.ucla.edu>
55e5faa1
PE
1094
1095 * configure.in (snprintf): New check.
1096
015faae4
PE
10972011-08-30 Paul Eggert <eggert@cs.ucla.edu>
1098
695a3dc5 1099 * configure.in (opsys): Change pattern to *-*-linux*
015faae4 1100 to recognize powerpc-gnu-linux-uclibc (Bug#9403).
1f87634f
PE
1101 Remove unreachable pattern hppa*-*-linux-gnu*.
1102 Also, remove ia64*-hp-hpux1[1-9]*, as it also sets machine=hp800,
1103 and that can't possibly work now that src/m/hp800.h no longer exists.
015faae4 1104
52ec1feb
JD
11052011-08-26 Jan Djärv <jan.h.d@swipnet.se>
1106
1107 * configure.in: Add -MP to DEPFLAGS (Bug#9372).
1108
377538cb
JD
11092011-08-13 Jan Djärv <jan.h.d@swipnet.se>
1110
1111 * configure.in: Add header check: sys/socket.h (Bug#8477),
1112 ifaddrs.h, net/if_dl.h. Check for getifaddrs and freeifaddrs.
1113 Check for sa_len in struct ifreq.ifr_addr (Bug#8477).
1114
ae9e757a
JD
11152011-08-04 Jan Djärv <jan.h.d@swipnet.se>
1116
1117 * configure.in (HAVE_PTHREAD): Add check for -lpthread (Bug#9216).
1118 (HAVE_GTK_AND_PTHREAD): Remove.
1119
be8ec0b3
AA
11202011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
1121
1122 * configure.in (HAVE_RSVG): Allow use of -lrsvg-2 for any NextStep
1123 build, not just GNUstep (Bug#9177).
1124
2573a837 11252011-07-28 Paul Eggert <eggert@cs.ucla.edu>
0e926e56
PE
1126
1127 Assume freestanding C89 headers, string.h, stdlib.h.
1128 Again, this simplifies the code, and all current platforms have these.
1129 * configure.in (AC_CHECK_HEADERS): Don't check for limits.h.
1130 (AC_HEADER_STDC): Remove.
1131 (AC_CHECK_FUNCS): No need to check for strchr, strrchr.
1132 (strchr, strrchr): Remove fallback macros.
1133
9cfdb3ec
PE
1134 Assume support for memcmp, memcpy, memmove, memset.
1135 This simplifies the code a bit. All current platforms have these,
1136 as they are required for C89. If this turns into a problem we
1137 can add the gnulib modules for these (a 1-line change to Makefile.in).
1138 * configure.in: Don't check for memcmp, memcpy, memmove, memset.
1139
427c285b
PE
11402011-07-27 Paul Eggert <eggert@cs.ucla.edu>
1141
1142 * GNUmakefile: New file.
1143 This is for convenience, so that one can run GNU make in an
1144 unconfigured source tree, and get a default build.
1145
2ad77c9d
JD
11462011-07-13 Jan Djärv <jan.h.d@swipnet.se>
1147
1148 * configure.in (GSETTINGS): Check for gio-2.0 >= 2.26.
1149
c8618a06
YM
11502011-07-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1151
1152 * configure.in (LD_SWITCH_SYSTEM_TEMACS): Add -fno-pie on Darwin
1153 so as to suppress address randomization (Bug#8395).
1154
f6ce9b9a
PE
11552011-07-09 Paul Eggert <eggert@cs.ucla.edu>
1156
3fcf7a1c
PE
1157 * lib/stdint.in.h: Merge from gnulib (Bug#9025).
1158 This fixes a build problem on older Mac OS X hosts.
1159
d9706d9f
PE
1160 * m4/pthread_sigmask.m4 (gl_FUNC_PTHREAD_SIGMASK): Omit gl_THREADLIB
1161 test, which runs afoul of Automake installations where, for example,
1162 /usr/share/aclocal contains a copy of gl_THREADLIB.
1163 Problem reported by Sven Joachim in
1164 <http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00529.html>.
1165 This is just a quick temporary fix, specific to Emacs; I'll work
1166 with the other gnulib maintainers to get a more-permanent fix.
1167
af66a2d7 1168 Add gnulib's strtoimax module, needed on Solaris 8.
f6ce9b9a
PE
1169 * Makefile.in (GNULIB_MODULES): Add strtoimax.
1170 * lib/strtoll.c, m4/strtoimax.m4, m4/strtoll.m4: New files,
1171 automatically imported from gnulib.
1172 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1173
1692ae2d 11742011-07-08 Paul Eggert <eggert@cs.ucla.edu>
6db30f83 1175
8a6ebd58 1176 Add gnulib support for pthread_sigmask (Bug#9010).
6db30f83 1177 * Makefile.in (GNULIB_MODULES): Add pthread_sigmask.
2a84b02d
PE
1178 * configure.in (AC_TYPE_UID_T): New dummy macro.
1179 Configure gnulib after adjusting LIBS,
1180 so that gnulib can assume the libraries in LIBS.
6db30f83 1181 * lib/signal.in.h, m4/pthread_sigmask.m4, m4/signal_h.m4:
2a84b02d 1182 * lib/pthread_sigprocmask.c, lib/sigprocmask.c, m4/signalblocking.m4:
b29e7c21 1183 * lib/pthread_sigmask.c:
6db30f83
PE
1184 New files, automatically imported from gnulib.
1185 * lib/gnulib.mk, m4/gl-comp.m4: Automatically-imported update
1186 due to the above changes.
1187 * .bzrignore: Add lib/signal.h.
1188
4a621aae
PE
1189 * lib/getopt.c, lib/unistd.in.h, m4/getopt.m4: Merge from gnulib.
1190
5e94cadb
AS
11912011-07-07 Andreas Schwab <schwab@linux-m68k.org>
1192
1193 * configure.in (maintainer-mode): Reflect default in help string.
1194
76b397fb
DN
11952011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
1196
1197 * configure.in: Remove reference to iris4d.h.
1198
869795d6
JD
11992011-07-05 Jan Djärv <jan.h.d@swipnet.se>
1200
1201 * configure.in (HAVE_GCONF): Allow both HAVE_GCONF and HAVE_GSETTINGS.
1202
3279eb87
GM
12032011-07-01 Glenn Morris <rgm@gnu.org>
1204
1205 * configure.in (SETTINGS_CFLAGS, SETTINGS_LIBS) [HAVE_GCONF]: Fix typo.
1206
2e6e11eb
LMI
12072011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
1208
1209 * configure.in (HAVE_GSETTINGS): Fix syntax for GSETTINGS tests,
1210 which made ./configure infloop.
1211
9851bfc5
JD
12122011-06-30 Jan Djärv <jan.h.d@swipnet.se>
1213
1214 * configure.in (gsettings): New option and check for GSettings.
1215
adbc4ef4
GM
12162011-06-29 Glenn Morris <rgm@gnu.org>
1217
1218 * configure.in: Try to test for the required crt*.o files.
1219
1f773f32
BW
12202011-06-27 Bill Wohler <wohler@newt.com>
1221
1222 * .bzrignore: Add lisp/mh-e/mh-autoloads.el and lisp/mh-e/mh-cus-load.el.
1223
7a7ef429
PE
12242011-06-25 Paul Eggert <eggert@cs.ucla.edu>
1225
1226 Use gnulib's dup2 module instead of rolling our own.
1227 * Makefile.in (GNULIB_MODULES): Add dup2.
1228 * configure.in: Do not check for dup2; gnulib does that now.
1229 * lib/dup2.c, m4/dup2.m4: New files, from gnulib.
1230
6dd7e400
PE
12312011-06-23 Paul Eggert <eggert@cs.ucla.edu>
1232
1233 * lib/getopt.c, lib/stat.c, m4/gl-comp.m4: Merge from gnulib.
1234
94a807ac 12352011-06-22 Paul Eggert <eggert@cs.ucla.edu>
fa23e171
PE
1236
1237 Use gnulib's alloca-opt module.
1238 * .bzrignore: Add lib/alloca.h.
1239 * Makefile.in (GNULIB_MODULES): Add alloca-opt.
1240 * configure.in (AC_FUNC_ALLOCA): Remove almost all the alloca stuff,
e92b6c88
PE
1241 as gnulib now does that for us. Put alloca check in config.h.
1242 Include <alloca.h> before any other include file, for AIX 3.
fa23e171
PE
1243 * lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1244 * lib/alloca.in.h, m4/alloca.m4: New files, from gnulib.
1245
3ce9d0d4
LL
12462011-06-21 Leo Liu <sdl.web@gmail.com>
1247
1248 * m4/sha256.m4:
1249 * m4/sha512.m4:
1250 * m4/gl-comp.m4:
1251 * lib/u64.h:
1252 * lib/sha256.c:
1253 * lib/sha256.h:
1254 * lib/sha512.c:
1255 * lib/sha512.h:
1256 * lib/makefile.w32-in (GNULIBOBJS):
1257 * lib/gnulib.mk:
1258 * Makefile.in (GNULIB_MODULES): Add crypto/sha256 and
1259 crypto/sha512 modules from gnulib.
1260
add3f049
PE
12612011-06-19 Paul Eggert <eggert@cs.ucla.edu>
1262
1263 * lib/unistd.in.h, m4/getloadavg.m4: Merge from gnulib.
1264
3a4725e1
GM
12652011-06-17 Glenn Morris <rgm@gnu.org>
1266
1267 * configure.in: Restore the behavior of checking crt-dir only
1268 when the user specified it (not all platforms use it).
1269
bf4846e7
PE
12702011-06-16 Paul Eggert <eggert@cs.ucla.edu>
1271
1272 * m4/lstat.m4: Merge from gnulib (Bug#8878).
1273
4d61f28d 12742011-06-16 Miles Bader <miles@gnu.org>
0cca0a78
MB
1275
1276 * configure.in: Try to determine CRT_DIR automatically when
1277 using gcc.
1278
8c9b2106
PE
12792011-06-15 Paul Eggert <eggert@cs.ucla.edu>
1280
8aeb5be9
PE
1281 * lib/ftoastr.c, lib/stdio.in.h, lib/verify.h:
1282 * lib/gnulib.mk, m4/c-strtod.m4, m4/filemode.m4, m4/getloadavg.m4:
1283 * m4/getopt.m4, m4/gl-comp.m4, m4/lstat.m4, m4/md5.m4, m4/mktime.m4:
1284 * m4/readlink.m4, m4/sha1.m4, m4/stat.m4, m4/strftime.m4:
1285 * m4/strtoull.m4, m4/strtoumax.m4, m4/symlink.m4, m4/time_r.m4:
1286 Merge from gnulib.
8c9b2106 1287
c195f2de
JD
12882011-06-14 Jan Djärv <jan.h.d@swipnet.se>
1289
1290 * configure.in: Add emacsgtkfixed.o to GTK_OBJ if HAVE_GTK3.
1291
7e2aa385
PE
12922011-06-08 Paul Eggert <eggert@cs.ucla.edu>
1293
1294 * lib/gnulib.mk, m4/gnulib-common.m4: Merge from gnulib.
1295
81eafe29
PE
12962011-06-07 Paul Eggert <eggert@cs.ucla.edu>
1297
1298 * configure.in: Add --with-wide-int.
1299 * INSTALL: Mention this.
1300
9afafefb
PE
13012011-06-06 Paul Eggert <eggert@cs.ucla.edu>
1302
1303 Merge from gnulib.
1304 * lib/careadlinkat.c, lib/careadlinkat.h, m4/gnulib-common.m4: Merge.
1305
f797625a
PE
13062011-06-02 Paul Eggert <eggert@cs.ucla.edu>
1307
1308 * lib/allocator.h, lib/careadlinkat.c: Merge from gnulib.
1309
90856fe0 13102011-05-30 Paul Eggert <eggert@cs.ucla.edu>
55d4c1b2
PE
1311
1312 Use 'inline', not 'INLINE'.
eefc9486 1313 * configure.in (INLINE): Remove.
55d4c1b2 1314
6a3e57bb
PE
13152011-05-29 Paul Eggert <eggert@cs.ucla.edu>
1316
1317 Adjust to recent gnulib change for @GUARD_PREFIX@.
1318 * lib/makefile.w32-in (getopt_h): Substitute @GUARD_PREFIX@, too.
1319 All uses of _GL_ for guard prefixes in lib/*.h replaced with
1320 _@GUARD_PREFIX@_.
1321
842b28a0
PE
13222011-05-27 Paul Eggert <eggert@cs.ucla.edu>
1323
e61923c8 1324 * lib/getopt.c, lib/intprops.h: Merge from gnulib.
842b28a0 1325
70716b1d
GM
13262011-05-24 Glenn Morris <rgm@gnu.org>
1327
a22d9d2c
GM
1328 * Makefile.in (check): Just give a message if no test/ directory.
1329
bdd556a2
GM
1330 * configure.in: Avoid using variables inside AC_CONFIG_FILES.
1331
70716b1d
GM
1332 * configure.in (OPT_MAKEFILES_IN): Remove.
1333 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
1334 (SUBDIR_MAKEFILES_IN): New output variable.
1335 * Makefile.in (OPT_MAKEFILES_IN): Remove.
1336 (SUBDIR_MAKEFILES_IN): Let configure set it.
1337
13c3daa4
LL
13382011-05-24 Leo Liu <sdl.web@gmail.com>
1339
1340 * m4/sha1.m4:
1341 * m4/gl-comp.m4:
1342 * lib/sha1.h:
1343 * lib/sha1.c:
1344 * lib/makefile.w32-in (GNULIBOBJS):
1345 * lib/gnulib.mk:
1346 * Makefile.in (GNULIB_MODULES): Add crypto/sha1 module.
1347
e09e38a8
GM
13482011-05-24 Glenn Morris <rgm@gnu.org>
1349
4ba4c54a
GM
1350 * configure.in: Remove test for already configured source directory.
1351 AM_INIT_AUTOMAKE has already done a more stringent test. (Bug#953)
1352
5a95c002
GM
1353 * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
1354
fa5d79db
GM
13552011-05-24 Glenn Morris <rgm@gnu.org>
1356
6c7e099d
GM
1357 * make-dist: Don't distribute test/. (Bug#8107)
1358 * configure.in (OPT_MAKEFILES_IN): New output variable.
1359 (AC_CONFIG_FILES): Conditionally include test/automated/Makefile.
1360 * Makefile.in (OPT_MAKEFILES_IN): New, set by configure.
1361 (SUBDIR_MAKEFILES_IN): Use $OPT_MAKEFILES_IN.
1362 (check): Give an explicit error if test/ is not present.
1363
fa5d79db
GM
1364 * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
1365 (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
1366 (Makefile): Use $SUBDIR_MAKEFILES_IN.
1367
2df215b5
PE
13682011-05-23 Paul Eggert <eggert@cs.ucla.edu>
1369
1370 * lib/verify.h: Merge from gnulib.
1371
f518ae90
PE
13722011-05-22 Paul Eggert <eggert@cs.ucla.edu>
1373
1374 * lib/intprops.h, lib/stdint.in.h, m4/mktime.m4, m4/readlink.m4:
1375 Merge from gnulib.
1376
16b71f3a
AS
13772011-05-21 Andreas Schwab <schwab@linux-m68k.org>
1378
1379 * Makefile.in (AUTOMAKE_INPUTS): Add $(srcdir)/lib/gnulib.mk.
1380
7285dc67
EZ
13812011-05-20 Eli Zaretskii <eliz@gnu.org>
1382
6a45b46f
EZ
1383 * .bzrignore: Add lib/stdio.in-h, lib/stdbool.h, and lib/stdint.h.
1384
7285dc67
EZ
1385 * config.bat: Concatenate lisp.mk onto the end of src/Makefile.
1386
b9704ad9
GM
13872011-05-20 Glenn Morris <rgm@gnu.org>
1388
1389 * configure.in (lisp_frag): New output file.
1390
4a720484
GM
13912011-05-19 Glenn Morris <rgm@gnu.org>
1392
1393 * configure.in (NS_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
1394 (WINDOW_SUPPORT): Remove output variables that are no longer used.
1395
a3c92bc1
EZ
13962011-05-17 Paul Eggert <eggert@cs.ucla.edu>
1397
8f906c40
EZ
1398 * lib/gnulib.mk:
1399 * lib/intprops.h:
1400 * lib/unistd.in.h:
1401 * m4/inttypes.m4:
1402 * m4/stdint.m4:
1403 * m4/unistd_h.m4: Sync from gnulib.
a3c92bc1 1404
d681f183
GM
14052011-05-14 Glenn Morris <rgm@gnu.org>
1406
1407 * configure.in: Treat failure to find an X toolkit the same way we treat
1408 failure to find X and image support.
1409
4f8c52a9
GM
14102011-05-12 Glenn Morris <rgm@gnu.org>
1411
1412 * Makefile.in (src, install-arch-indep, bootstrap-clean)
1413 (check-declare): Shell portability fixes. (Bug#8642)
1414
5a7f0a30
TZ
14152011-05-09 Teodor Zlatanov <tzz@lifelogs.com>
1416
1417 * configure.in: Require GnuTLS 2.6.x or higher.
1418
b08a63cc 14192011-05-06 Paul Eggert <eggert@cs.ucla.edu>
19548d08 1420
c378da0b
PE
1421 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
1422 * Makefile.in (GNULIB_MODULES): Add stdarg, for va_copy.
1423 * lib/stdarg.in.h, m4/stdarg.m4: New files, from gnulib.
1424
19548d08
PE
1425 * Makefile.in (GNULIB_TOOL_FLAG): Add --conditional-dependencies.
1426 This new gnulib-tool option saves 'configure' the trouble of
1427 checking for strtoull when strtoumax exists.
1428
d1a2ac5c
PE
1429 * configure.in (BITS_PER_LONG_LONG): New macro.
1430
773233f8
GM
14312011-05-05 Glenn Morris <rgm@gnu.org>
1432
1433 * Makefile.in (bootstrap-clean): Save config.log. (Bug#765)
1434 (top_distclean): Delete config.log~.
1435
40697cd9
BK
14362011-04-27 Ben Key <bkey76@gmail.com>
1437
1438 * configure.in: Fixed a bug that caused configure with
1439 --enable-checking=stringoverrun to have no effect.
1440
671875da 14412011-04-26 Paul Eggert <eggert@cs.ucla.edu>
c1e127f9
PE
1442
1443 * configure.in: Suppress unnecessary checks for size_t.
1444 (AC_TYPE_SIZE_T): Define an empty macro, to suppress obsolescent test.
1445 (size_t): Do not check for this, and do not typedef. This code
1446 is never exercised now.
1447
a8a2bb29
PE
1448 * Makefile.in (GNULIB_MODULES): Add strtoumax.
1449 This is needed for the new integer-reading code in lread.c.
1450 It automatically pulls in the following gnulib files, which
1451 are used on old-fashioned platforms that don't have strtoumax:
aaa93559
PE
1452 lib/inttypes.in.h, lib/strtoimax.c, lib/strtol.c, lib/strtoul.c,
1453 lib/strtoull.c, lib/strtoumax.c, lib/verify.h, m4/inttypes.m4,
1454 m4/strtoull.m4, m4/strtoumax.m4.
ce1b6817 1455 * .bzrignore: Add lib/inttypes.h.
a8a2bb29 1456
33630d51
TZ
14572011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
1458
1459 * configure.in: Check for GnuTLS certificate verify callbacks.
1460
bfab7d85
SM
14612011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1462
1463 * Makefile.in (config.status): Don't erase in case of error.
1464 In case it disappeared, rebuild it with `configure'.
1465
fe0e7ad7
KB
14662011-04-20 Ken Brown <kbrown@cornell.edu>
1467
1468 * configure.in (use_mmap_for_buffers): Set to yes on Cygwin.
1469
f5b06c35
GM
14702011-04-12 Glenn Morris <rgm@gnu.org>
1471
1472 * configure.in: Require ImageMagick >= 6.2.8. (Bug#7955)
1473
762f8d96 14742011-04-09 Paul Eggert <eggert@cs.ucla.edu>
7ec98caf
PE
1475
1476 * lib/allocator.c: New file, automatically generated by gnulib.
1477
5fac7083
GM
14782011-04-07 Glenn Morris <rgm@gnu.org>
1479
1480 * autogen/update_autogen: Ignore comment diffs in ldefs-boot.el.
1481
973f782d
EZ
14822011-04-06 Eli Zaretskii <eliz@gnu.org>
1483
1484 * lib/makefile.w32-in ($(BLD)/careadlinkat.$(O), GNULIBOBJS):
1485 Revert last change.
1486
f1f81baa
JB
14872011-04-06 Juanma Barranquero <lekktu@gmail.com>
1488
1489 * lib/makefile.w32-in (GNULIBOBJS): Add careadlinkat.$(O).
1490 ($(BLD)/careadlinkat.$(O)): New target.
1491 ($(BLD)/dtoastr.$(O), $(BLD)/getopt.$(O), $(BLD)/getopt1.$(O))
1492 ($(BLD)/strftime.$(O), $(BLD)/time_r.$(O), $(BLD)/md5.$(O)):
1493 Update dependencies.
1494
b70d23ff 14952011-04-06 Paul Eggert <eggert@cs.ucla.edu>
aa181334 1496
41cf7d1a
PE
1497 Fix more problems found by GCC 4.6.0's static checks.
1498
aa181334
PE
1499 * configure.in (ATTRIBUTE_FORMAT, ATTRIBUTE_FORMAT_PRINTF): New macros.
1500
1f7196bf 1501 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
d1fdcab7
PE
1502 * Makefile.in (GNULIB_MODULES): Add careadlinkat.
1503 * lib/allocator.h, lib/careadlinkat.c, lib/careadlinkat.h:
1504 * m4/ssize_t.m4: New files, automatically generated from gnulib.
1505
c0274801
GM
15062011-04-06 Glenn Morris <rgm@gnu.org>
1507
1508 * autogen/update_autogen: Handle loaddefs-like files as well.
1509 (usage): Add -l, -C.
1510 (clean, ldefs_flag, ldefs_in, ldefs_out): New variables.
1511 With -l, check status of lisp/ as well.
1512 With -C, clean before building.
1513 (autoreconf): Only pass -f in the `clean' case.
1514 (commit): New function.
1515
42e85a8f
GM
15162011-03-28 Glenn Morris <rgm@gnu.org>
1517
39f31873
GM
1518 * autogen/update_autogen: Pass -f to autoreconf.
1519
42e85a8f
GM
1520 * autogen.sh (get_version): Discard "not found" lines.
1521 (check_version): Respect $AUTOCONF etc environment variables.
1522
9af30bdf
GM
15232011-03-27 Glenn Morris <rgm@gnu.org>
1524
1525 * configure.in (AC_TYPE_SIGNAL): Remove obsolete macro.
1526 (AH_BOTTOM): Do not define SIGTYPE.
1527
181855e6
GM
15282011-03-26 Glenn Morris <rgm@gnu.org>
1529
1530 * configure.in: Replace obsolete macros AC_TRY_COMPILE, AC_TRY_LINK,
1531 AC_TRY_RUN with AC_COMPILE_IFELSE, AC_LINK_IFELSE, AC_RUN_IFELSE.
1532
9ee0d174
AS
15332011-03-25 Andreas Schwab <schwab@linux-m68k.org>
1534
1535 * autogen/update_autogen: Remove useless function keyword.
1536
07da4b3c
EZ
15372011-03-25 Eli Zaretskii <eliz@gnu.org>
1538
1539 * config.bat: Generate src/config.h and lib/Makefile from
1540 autogen/config.in and autogen/Makefile.in.
1541
f6ca84c0
GM
15422011-03-25 Glenn Morris <rgm@gnu.org>
1543
1544 * compile, config.guess, config.sub, depcomp, install-sh, missing:
1545 Remove; autoreconf can supply them.
1546 * Makefile.in (sync-from-gnulib): Don't sync config.sub,
1547 config.guess, install-sh. Pass -i to autoreconf.
1548 * autogen/update_autogen (genfiles): Add compile, config.guess,
1549 config.sub, depcomp, install-sh, missing. Pass -i to autoreconf.
1550 Discard non-error output from autoreconf in -q case.
1551 * autogen/compile, autogen/config.guess, autogen/config.sub:
1552 * autogen/depcomp, autogen/install-sh, autogen/missing: New.
1553 * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp,
1554 install-sh, missing.
1555
8cc1d519
GM
15562011-03-23 Glenn Morris <rgm@gnu.org>
1557
9bb73912 1558 * autogen/update_autogen: Fix typo.
904a432c 1559 (msg): Remove function; use `exec' instead.
9bb73912 1560
8cc1d519
GM
1561 * Makefile.in (mkdir): Use `install-sh -d' instead of mkinstalldirs.
1562 (sync-from-gnulib): Don't sync mkinstalldirs.
1563 * make-dist: Don't distribute mkinstalldirs.
1564
c9c49752 15652011-03-23 Paul Eggert <eggert@cs.ucla.edu>
401bf9b4 1566
c9c49752 1567 Fix more problems found by GCC 4.5.2's static checks.
401bf9b4
PE
1568 * Makefile.in (GNULIB_MODULES): Add socklen.
1569 * configure.in: Do not check for sys/socket.h, since socklen does that.
1570 * m4/socklen.m4: New automatically-generated file, from gnulib.
1571
d5cad867
PE
1572 fakemail: Remove dependency on ignore-value.
1573 * Makefile.in (GNULIB_MODULES): Add stdio.
1574 * lib/stdio.in.h, m4/stdio_h.m4: New files, automatically
1575 imported from gnulib.
cbd350f1 1576 * .bzrignore: Add lib/stdio.h.
c9c49752 1577
34cb1cc6
GM
15782011-03-22 Glenn Morris <rgm@gnu.org>
1579
1580 * autogen/copy_autogen: Work from ./ or ../.
1581 Fix time-stamps.
1582 * autogen.sh: Doc fix.
1583
66b87493
GM
15842011-03-20 Glenn Morris <rgm@gnu.org>
1585
1586 * autogen/: New directory, to be excluded from releases.
1587 * autogen/copy_autogen, autogen/update_autogen: New scripts.
1588 * autogen/README: New file.
1589 * autogen/aclocal.m4, autogen/config.in, autogen/configure:
1590 * autogen/Makefile.in: Add auto-updated generated files.
1591 * autogen.sh: No longer a no-op, now it tests for autotools
1592 and runs them as necessary.
cd1181db 1593 * configure.in: Default maintainer-mode to on.
66b87493
GM
1594 * aclocal.m4, configure, lib/Makefile.in: Remove files.
1595
1ef6de05
PE
15962011-03-13 Paul Eggert <eggert@cs.ucla.edu>
1597
1598 Update for gnulib.
1599 * Makefile.in (GNULIB_MODULES): Add intprops, as Emacs now
1600 includes <intprops.h> directly.
1601 * lib/sys_stat.in.h: New version from Gnulib, which fixes a bug
1602 when building Emacs on Solaris 9 and running it on Solaris 10.
1603
0afb4571
J
16042011-03-08 Jan Djärv <jan.h.d@swipnet.se>
1605
1606 * configure.in: Require 3.0 for --with-gtk3. Add HAVE_GTK3.
1607
33383987
JB
16082011-03-07 Chong Yidong <cyd@stupidchicken.com>
1609
1610 * Version 23.3 released.
1611
870d9cf6
GM
16122011-03-06 Glenn Morris <rgm@gnu.org>
1613
1614 * configure.in (FREETYPE_LIBS): Actually set it to something.
1615
6c0dea8a
PE
16162011-03-02 Paul Eggert <eggert@cs.ucla.edu>
1617
1618 Work around some portability problems with symlinks.
1619
1620 * Makefile.in (GNULIB_MODULES): Add lstat, readlink, symlink.
1621 * configure.in (lstat, HAVE_LSTAT): Remove special hack.
1622 * lib/dosname.h, lib/lstat.c, lib/readlink.c, lib/stat.c:
1623 * lib/symlink.c, m4/lstat.m4, m4/readlink.m4, m4/stat.m4:
1624 * m4/symlink.m4:
1625 New files, automatically generated from gnulib.
1626 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
1627 * m4/gl-comp.m4, src/config.in, config.sub: Regenerate.
1628
945d8b44
EZ
16292011-02-26 Eli Zaretskii <eliz@gnu.org>
1630
03382788
EZ
1631 * .bzrignore: Ignore new lib/*.in-h files.
1632
945d8b44
EZ
1633 * config.bat: Rename stdint.in.h and sys_stat.in.h. Call
1634 depfiles.bat even if lib/deps already exist.
1635
9411886d
PE
16362011-02-25 Paul Eggert <eggert@cs.ucla.edu>
1637
1638 * configure, lib/Makefile.in, lib/getopt_int.h, lib/gnulib.mk:
d3af8a57
PE
1639 * lib/stdlib.in.h, m4/stdlib_h.m4: Regenerate to incorporate
1640 recent changes to configure.in and to gnulib.
9411886d 1641
1e8dbdc6
GM
16422011-02-24 Glenn Morris <rgm@gnu.org>
1643
1644 * configure.in: Replace obsolete AC_OUTPUT() with AC_CONFIG_FILES(),
1645 AC_CONFIG_COMMANDS(), and AC_OUTPUT sans arguments.
1646
f68c809d
PE
16472011-02-22 Paul Eggert <eggert@cs.ucla.edu>
1648
1649 Assume S_ISLNK etc. work, since gnulib supports this.
1650 * Makefile.in (GNULIB_MODULES): Add sys_stat.
1651 * configure.in: Check for lstat and set HAVE_LSTAT=0 if not.
1652 Pretend to be using the gnulib lstat module for benefit of sys/stat.h.
1653 * configure, lib/Makefile.in, lib/gnulib.mk: Regenerate.
1654
ba01e9d7
PE
16552011-02-21 Paul Eggert <eggert@cs.ucla.edu>
1656
1657 * lib/min-max.h: New file, for "min" and "max".
1658
9f8370e6
CS
16592011-02-21 Christoph Scholtes <cschol2112@gmail.com>
1660
0a19a6f8 1661 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Added dependency on
9f8370e6
CS
1662 $(EMACS_ROOT)/nt/inc/stdint.h.
1663
25c51af3
EZ
16642011-02-21 Eli Zaretskii <eliz@gnu.org>
1665
1666 * lib/makefile.w32-in ($(BLD)/filemode.$(O)): Move from
1667 src/makefile.w32-in and adapt. Depend on stamp_BLD.
1668 (GNULIBOBJS): Add $(BLD)/filemode.$(O).
1669
5fa4ac76
PE
16702011-02-20 Paul Eggert <eggert@cs.ucla.edu>
1671
1672 Import filemode module from gnulib.
1673 * .bzrignore: Add lib/sys/.
1674 * Makefile.in (GNULIB_MODULES): Add filemode.
1675 * lib/Makefile.am (MOSTLYCLEANDIRS): New macro.
1676 * lib/filemode.c: Renamed from src/filemode.c and regenerated
1677 from gnulib. This adds support for some more file types, e.g.,
1678 Cray DMF migrated files.
1679 * lisp/emacs-lisp/find-gc.el (find-gc-source-files): Remove filemode.c.
1680 * lib/filemode.h, lib/sys_stat.in.h, m4/filemode.m4, m4/st_dm_mode.m4:
1681 * m4/sys_stat_h.m4: New files, generated from gnulib.
1682 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
1683 Regenerate.
1684
e1e6b4fb
EZ
16852011-02-20 Eli Zaretskii <eliz@gnu.org>
1686
1687 * lib/makefile.w32-in ($(BLD)/md5.$(O)): Don't depend on
1688 $(EMACS_ROOT)/nt/inc/sys/stat.h.
1689
6cac9cb1
PE
16902011-02-20 Paul Eggert <eggert@cs.ucla.edu>
1691
1692 * configure.in (C_WARNINGS_SWITCH): Do not prepend -Wno-pointer-sign.
1693 This undoes the 2006-01-02 change. The -Wno-pointer-sign option
1694 is no longer needed, due to the recent SSDATA and related changes.
1695 Perhaps -Wno-pointer-sign should also be removed from
1696 nextstep/Cocoa/Emacs.xcodeproj/project.pbxproj but I have no easy
1697 way to test this so I left it alone.
1698 * configure: Regenerate.
1699
0a19a6f8 17002011-02-20 Christoph Scholtes <cschol2112@gmail.com>
32159fc3
CS
1701
1702 * lib/makefile.w32-in ($(BLD)/md5.$(O)): New recipe, moved from
1703 src/makefile.w32-in.
1704
61353ac8 17052011-02-20 Paul Eggert <eggert@cs.ucla.edu>
5f90be1b 1706
61353ac8 1707 Import crypto/md5 and stdint modules from gnulib.
5f90be1b 1708 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
61353ac8
PE
1709 Regenerate.
1710 * lib/md5.c, lib/md5.h: Rename from src/md5.h and lib/md5.h.
1711 Import the new versions from gnulib; they assume a C99-style
1712 <stdint.h>, supplied by the stdint module.
1713 * lib/stdint.in.h, m4/longlong.m4, m4/stdint.m4, m4/md5.m4: New files,
1714 imported from gnulib.
942f733f
PE
1715 * Makefile.in (MAKEFILE_MODULES): Add crypto/md5.
1716 * admin/notes/copyright: Remove src/md5.c and src/md5.h as
1717 special cases.
61353ac8 1718
9d9d12cd
EZ
17192011-02-19 Eli Zaretskii <eliz@gnu.org>
1720
152be435 1721 * .bzrignore: Ignore cxxdefs.h and lib/*.in-h files.
219463da 1722 Add lib/deps/.
152be435 1723
9d9d12cd 1724 * config.bat: Configure in `lib'.
219463da 1725 Generate *.Po files in lib/deps.
9d9d12cd 1726
7d315eb6
PE
17272011-02-18 Paul Eggert <eggert@cs.ucla.edu>
1728
1729 Import IRIX 6.5 getloadavg fixes from gnulib.
1730 * configure, lib/getloadavg.c, m4/getloadavg.m4: Regenerate.
1731
1f5d53eb
PE
17322011-02-16 Paul Eggert <eggert@cs.ucla.edu>
1733
1734 Import getloadavg module from gnulib.
1735 * .bzrignore: Add lib/stdlib.h.
1736 * Makefile.in (GNULIB_MODULES): Add getloadavg.
1737 * admin/notes/copyright: Remove src/getloadavg.c as a special case.
1738 * configure.in (LIBS_SYSTEM): Omit -lkstat on sol2*; gnulib does this.
1739 (AC_CONFIG_LIBOBJ_DIR, AC_FUNC_GETLOADAVG, GETLOADAVG_FILES):
1740 Remove; gnulib does this now.
1741 * lib/getloadavg.c: Rename from src/getloadavg.c, and sync
1742 from gnulib. This adds support for several other systems, such
1743 as Tru64 4.0D, QNX, AIX perfstat, etc. It also fixes a potential
1744 buffer overrun on Linux hosts under very high load, and on hosts
1745 that maintain a channel to the load average file it makes sure
1746 the file descriptor is close-on-exec (on hosts that support this)
1747 and is not stdin, stdout, or stderr.
1748 * lib/stdlib.in.h, m4/getloadavg.m4, m4/stdlib_h.m4: New files,
1749 from gnulib.
1750 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
1751 * src/config.in: Regenerate.
1752
bb55f713
PE
17532011-02-15 Paul Eggert <eggert@cs.ucla.edu>
1754
1755 Merge from gnulib.
1756
7127b760
PE
1757 * install-sh: Update to scriptversion 2011-01-19.21.
1758
bb55f713
PE
1759 2011-02-13 Bruno Haible <bruno@clisp.org>
1760
1761 Consistent macro naming for macros that use GCC __attribute__.
1762 * lib/ignore-value.h (_GL_ATTRIBUTE_DEPRECATED): Renamed from
1763 ATTRIBUTE_DEPRECATED.
1764
1765 2011-02-12 Bruno Haible <bruno@clisp.org>
1766
1767 setlocale: Prefer gnulib's override over libintl's override.
1768 * lib/gettext.h (setlocale): Redefine to rpl_setlocale if
1769 GNULIB_defined_setlocale is set.
1770
57e96f8e
GM
17712011-02-13 Glenn Morris <rgm@gnu.org>
1772
1773 * make-dist: Exclude generated file src/globals.h.
1774
988c07df
PE
17752011-02-10 Paul Eggert <eggert@cs.ucla.edu>
1776
1777 * arg-nonnull.h, c++defs.h, warn-on-use.h: Fix licenses.
1778 Sync from gnulib, which has been patched to fix the problem
1779 with the license notices. Problem reported by Glenn Morris in
1780 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00403.html>.
1781
ccded26c
SM
17822011-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
1783
1784 * .bzrignore: Ignore globals.h and related stamp.
1785
6ffb2c0c
PE
17862011-02-09 Paul Eggert <eggert@cs.ucla.edu>
1787
1788 * lib/Makefile.in, lib/gnulib.mk: Regenerate.
1789 This merges the following fix from gnulib:
1790
1791 2011-02-08 Bruno Haible <bruno@clisp.org>
1792
1793 Split large sed scripts, for HP-UX sed.
1794
00b3c7ac
TT
17952011-02-08 Tom Tromey <tromey@redhat.com>
1796
1797 * configure: Rebuild.
1798 * configure.in (NS_OBJC_OBJ): New subst.
1799
91ccade4
PE
18002011-02-06 Paul Eggert <eggert@cs.ucla.edu>
1801
6ffb2c0c
PE
1802 gnulib: allow multiple gnulib generated replacements to coexist
1803 This defines a few preprocessor symbols that should not affect Emacs.
1804 * lib/getopt.in.h, lib/time.in.h, lib/unistd.in.h: Regenerate
1805 via "make sync-from-gnulib".
1806
e765a388
PE
1807 gnulib: undo previous change
1808 The upstream _HEADERS change was backed out of gnulib (see the
1809 same thread). Stay in sync with gnulib.
1810
91ccade4 1811 gnulib: adjust to upstream _HEADERS change
6ffb2c0c
PE
1812 * lib/Makefile.am (EXTRA_HEADERS, nodist_pkginclude_HEADERS):
1813 New empty macros, to accommodate recent changes to gnulib. See
1814 <http://lists.gnu.org/archive/html/bug-gnulib/2011-02/msg00068.html>.
1815 * c++defs.h, lib/Makefile.in, lib/ftoastr.h, lib/getopt.in.h:
1816 * lib/gnulib.mk, lib/ignore-value.h, lib/stdbool.in.h, lib/stddef.in.h:
1817 * lib/time.in.h, lib/unistd.in.h:
1818 Regenerate.
91ccade4 1819
d67985d3
PE
18202011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1821
1822 sync from gnulib to remove HAVE_STDBOOL_H
1823 * m4/stdbool.m4 (AC_CHECK_HEADER_STDBOOL): Renamed from
1824 AC_HEADER_STDBOOL. All uses changed. Do not define
1825 HAVE_STDBOOL_H, as gnulib does not need this. This change is
1826 imported from the latest Autoconf git. It was motivated by Emacs,
1827 which uses gnulib but does not need HAVE_STDBOOL_H.
1828 * configure, src/config.in: Regenerate.
1829 * config.guess, config.sub: Sync to 2011-02-02 versions (whitespace)
1830
67342916
PE
18312011-02-03 Paul Eggert <eggert@cs.ucla.edu>
1832
1833 allow C code to suppress warnings about ignored return values
1834 * Makefile.in (GNULIB_MODULES): Add ignore-value.
6ffb2c0c
PE
1835 * configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4: Regenerate.
1836 * lib/ignore-value.h: New file.
67342916 1837
14beddf4 18382011-01-31 Chong Yidong <cyd@stupidchicken.com>
37f7b784
CY
1839
1840 * configure.in: Test existence of xaw3d library, not just the
1841 header (Bug#7642).
1842
6ffb2c0c
PE
18432011-01-31 Eli Zaretskii <eliz@gnu.org>
1844
1845 * lib/makefile.w32-in (GNULIBOBJS): Add $(BLD)/strftime.$(O) and
1846 $(BLD)/time_r.$(O).
1847 ($(BLD)/dtoastr.$(O)): Depend on $(EMACS_ROOT)/src/s/ms-w32.h and
1848 $(EMACS_ROOT)/src/m/intel386.h.
1849 ($(BLD)/strftime.$(O)):
1850 ($(BLD)/time_r.$(O)): Define prerequisites.
1851
16fab143
PE
18522011-01-31 Paul Eggert <eggert@cs.ucla.edu>
1853
1854 src/emacs.c now gets version number from configure.in
1855 * configure.in (version): Set this from $PACKAGE_VERSION,
1856 which is set from AC_INIT, rather than scouting through src/emacs.c.
1857 * configure: Regenerate.
1858 * make-dist (version): Get it from configure.in, not src/emacs.c.
1859
16c3e636
PE
18602011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1861
1862 strftime: import from gnulib
1863 * Makefile.in (GNULIB_MODULES): Add strftime.
1864 * configure.in (AC_FUNC_STRFTIME, my_strftime): Remove; no longer
1865 needed.
6ffb2c0c 1866 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk, m4/gl-comp.m4:
16c3e636 1867 Regenerate.
6ffb2c0c
PE
1868 * lib/strftime.c, lib/strftime.h, lib/stdbool.in.h: New files,
1869 imported from gnulib.
16c3e636
PE
1870 * m4/strftime.m4, m4/stdbool.m4, m4/tm_gmtoff.m4: Likewise.
1871 This incorporates many changes from gnulib, including simpler
1872 handling of multibyte formats, porting to mingw32 and other
1873 platforms, and support for higher-resolution time stamps.
1874 Emacs does not yet use the higher-resolution interface.
1875
3de84ad9
PE
18762011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1877
1878 gnulib: import mktime and move-if-change fixes from gnulib
1879
1880 * configure: Regenerate from the following.
1881
6ffb2c0c
PE
1882 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1883
1884 mktime: clarify long_int width checking
1885 * lib/mktime.c (long_int_is_wide_enough): Move this assertion to
1886 the top level, to make it clearer that the assumption about
1887 long_int width is being checked. See
1888 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00554.html>.
1889
3de84ad9
PE
1890 2011-01-29 Paul Eggert <eggert@cs.ucla.edu>
1891
1892 TYPE_MAXIMUM: avoid theoretically undefined behavior
6ffb2c0c 1893 * lib/intprops.h (TYPE_MINIMUM, TYPE_MAXIMUM): Do not shift a
3de84ad9
PE
1894 negative number, which the C Standard says has undefined behavior.
1895 In practice this is not a problem, but might as well do it by the book.
1896 Reported by Rich Felker and Eric Blake; see
1897 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00493.html>.
6ffb2c0c
PE
1898 * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
1899 * lib/mktime.c (TYPE_MAXIMUM): Redo slightly to match the others.
1900
1901 mktime: #undef mktime before #defining it
1902 * lib/mktime.c (mktime) [DEBUG]: #undef mktime before #defining it.
1903
1904 mktime: systematically normalize tm_isdst comparisons
1905 * lib/mktime.c (isdst_differ): New function.
1906 (__mktime_internal): Use it systematically for all isdst comparisons.
1907 This completes the fix for libc BZ #6723, and removes the need for
1908 normalizing tm_isdst. See
1909 <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>
1910 (not_equal_tm) [DEBUG]: Use isdst_differ here, too.
1911
1912 mktime: fix some integer overflow issues and sidestep the rest
1913
1914 This was prompted by a bug report by Benjamin Lindner for MinGW
1915 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00472.html>.
1916 His bug is due to signed integer overflow (0 - INT_MIN), and I
1917 I scanned through mktime.c looking for other integer overflow
1918 problems, fixing all the bugs I found.
1919
1920 Although the C Standard says the resulting code is still not safe
1921 in the presence of integer overflow, in practice it should be good
1922 enough for all real-world two's-complement implementations, except
1923 for debugging environments that deliberately trap on integer
1924 overflow (e.g., gcc -ftrapv).
1925
1926 * lib/mktime.c (WRAPV): New macro.
1927 (SHR): Also check that long_int and time_t shift right in the
1928 usual way, before using the fast-but-unportable method.
1929 (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove, no longer
1930 used. The code already assumed two's complement, so there's
1931 no need to test for alternatives. All uses removed.
1932 (TYPE_MAXIMUM): Don't rely here on overflow behavior not defined by
1933 the C standard. Problem reported by Rich Felker in
1934 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00488.html>.
1935 (twos_complement_arithmetic): Also check long_int and time_t.
1936 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New functions.
1937 (guess_time_tm, ranged_convert, __mktime_internal): Use them.
1938 (__mktime_internal): Avoid integer overflow with unary subtraction
1939 in two instances where -1 - X is an adequate replacement for -X,
1940 since the calculations are approximate.
3de84ad9
PE
1941
1942 2011-01-29 Eric Blake <eblake@redhat.com>
1943
1944 mktime: avoid infinite loop
1945 * m4/mktime.m4 (AC_FUNC_MKTIME): Avoid overflow on possibly-signed
1946 type; behavior is still undefined but portable to all known targets.
1947 Reported by Rich Felker.
1948
6ffb2c0c
PE
1949 2011-01-28 Paul Eggert <eggert@cs.ucla.edu>
1950
1951 mktime: avoid problems on NetBSD 5 / i386
1952 * lib/mktime.c (long_int): New type. This works around a problem
1953 on NetBSD 5 / i386, where 'long int' and 'int' are both 32 bits
1954 but time_t is 64 bits, and where I expect the existing code is
1955 wrong in some cases.
1956 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it.
1957 (ydhms_diff): Bring back the compile-time check for wide-enough
1958 year and yday.
1959
1960 mktime: fix misspelling in comment
1961 * lib/mktime.c (__mktime_internal): Fix misspelling in comment.
1962 This merges all recent glibc changes of importance.
1963
3de84ad9
PE
1964 2011-01-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1965
1966 move-if-change: cope with concurrent mv of identical file.
1967 * move-if-change (CMPPROG): Accept environment
1968 variable as an override for `cmp'.
1969 (usage): Document CMPPROG.
1970 Adjust comparison to drop stdout. Cope with failure of mv if
1971 the target file exists and is identical to the source, for
1972 parallel builds.
1973 Report from H.J. Lu against binutils in PR binutils/12283.
1974
6ffb2c0c
PE
19752011-01-29 Eli Zaretskii <eliz@gnu.org>
1976
1977 * lib/makefile.w32-in:
1978 * lib/getopt_.h: New files.
1979
c7e95b91
PE
19802011-01-28 Paul Eggert <eggert@cs.ucla.edu>
1981
1982 improve fix for MS-DOS file name clash
1983 * Makefile.in (DOS_gnulib_comp.m4): Renamed from DOS-gnulib-comp.m4,
1984 for portability to POSIX make. Reported by Bruno Haible.
1985 (sync-from-gnulib): Copy gl-comp.m4 (if present) back to
1986 gnulib-comp.m4 before running gnulib-tool, to prevent old gnulib
1987 files from accumulating as garbage. Also reported by Bruno Haible.
1988
125c3718
PE
19892011-01-27 Paul Eggert <eggert@cs.ucla.edu>
1990
1991 fix two m4/gnulib-*.m4 file names that clashed under MS-DOS
1992 * Makefile.in (DOS-gnulib-comp.m4): New macro.
1993 (sync-from-gnulib): Rename m4/gnulib-comp.m4 to m4/gl-comp.m4 to avoid
1994 problems with MS-DOS 8+3 file name restrictions.
1995 Remove m4/gnulib-cache.m4, as we can live without it. If we kept
1996 it, it would also cause problems when extracting Emacs distribution
1997 tarballs on MS-DOS hosts.
1998 (ACLOCAL_INPUTS): Adjust to file renaming.
6ffb2c0c 1999 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
125c3718
PE
2000 * config.guess, config.sub: Sync from gnulib.
2001 * m4/gnulib-cache.m4: Remove from repository.
2002 * m4/gl-comp.m4: Rename from m4/gnulib-comp.m4.
2003
4004ef46
GM
20042011-01-25 Glenn Morris <rgm@gnu.org>
2005
0b5c5d82
GM
2006 * README: Add a note about ranges in copyright years.
2007
4004ef46
GM
2008 * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
2009
06d8ace5 20102011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
6de1218f
PG
2011
2012 * configure.in: Add HP-UX on IA64 (Bug#6811).
2013
d6974efa
PE
20142011-01-24 Paul Eggert <eggert@cs.ucla.edu>
2015
2016 Remove HAVE_RAW_DECL_CHOWN etc. from config.h
2017 * Makefile.in (sync-from-gnulib): Remove m4/warn-on-use.m4,
2018 as it is no longer needed.
6ffb2c0c 2019 * aclocal.m4, configure, lib/Makefile.in, src/config.in: Regenerate.
d6974efa
PE
2020 * configure.in: Invoke the new gnulib macro
2021 gl_ASSERT_NO_GNULIB_POSIXCHECK, which removes the need for
2022 warn-on-use.m4 and for the HAVE_RAW_DECL_* symbols in config.h.
2023 * m4/getopt.m4: Sync from gnulib; this removes the need for
2024 HAVE_DECL_OPTRESET and HAVE_DECL_GETOPT_CLIP from config.h.
2025 * m4/gnulib-common.m4 (gl_ASSERT_NO_GNULIB_POSIXCHECK):
2026 New macro, synced from gnulib.
2027 * m4/warn-on-use.m4: Remove.
2028
e02ea74b
PE
20292011-01-22 Paul Eggert <eggert@cs.ucla.edu>
2030
2031 aclocal.m4: put this file back into repository
2032 This way, we don't have to assume that the maintainer has
2033 the automake package installed. See
2034 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00746.html>.
2035 * .bzrignore: Remove aclocal.m4, undoing the previous change.
2036 * Makefile.in (top_maintainer_clean): Do not remove aclocal.m4,
2037 undoing the previous change.
2038 * aclocal.m4: New file (actually, resurrected).
2039
48dcd482
MB
20402011-01-22 Miles Bader <miles@gnu.org>
2041
2042 * configure.in: Don't zero-out FONTCONFIG_CFLAGS and
2043 FONTCONFIG_LIBS when building with XFT (doing so is incorrect, as
2044 Emacs directly uses fontconfig, and breaks building when using a
2045 strict linker).
2046
925e561d
PE
20472011-01-21 Paul Eggert <eggert@cs.ucla.edu>
2048
b06b1098
PE
2049 src/config.in: shrink slightly
2050 * configure.in: Invoke the new gnulib macro gl_ASSERT_NO_GNULIB_TESTS.
2051 This makes src/config.in a bit smaller, by removing identifiers
2052 like GNULIB_TEST_MKTIME that Emacs does not need.
2053 * m4/getopt.m4, m4/gnulib-common.m4, m4/include_next.m4:
2054 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/unistd_h.m4:
2055 Sync from gnulib. This removes a few more unnecessary symbols from
2056 src/config.in, such as AA_APPLE_UNIVERSAL_BUILD and HAVE_STDDEF_H.
2057 * configure, src/config.in: Regenerate.
2058
925e561d
PE
2059 aclocal.m4: tweaks to regenerate more conveniently
2060 This attempts to act better when the source is in a weird state. See
2061 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00734.html>.
2062 * Makefile.in (am--refresh): Add aclocal.m4, configure, config.in.
2063 * .bzrignore: Add aclocal.m4.
2064
942be821
PE
20652011-01-20 Paul Eggert <eggert@cs.ucla.edu>
2066
2067 aclocal.m4: omit auto-generated file from repository
2068 * Makefile.in (top_maintainer_clean): Remove aclocal.m4; this undoes
2069 the most recent change here.
2070 * aclocal.m4: Remove from bzr repository. This file is
2071 auto-generated and isn't needed to run 'configure'. See
2072 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00698.html>.
2073
0813c96e
PE
20742011-01-19 Paul Eggert <eggert@cs.ucla.edu>
2075
2076 Minor Makefile.in tweaks to build from gnulib better.
2077 <http://lists.gnu.org/archive/html/emacs-devel/2011-01/msg00673.html>
2078 * Makefile.in (sync-from-gnulib): Also run autoreconf -I m4.
2079 (top_maintainer_clean): Don't remove aclocal.m4.
2080
7cae64b4
PE
20812011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2082
53911e8f
PE
2083 Minor cleanups for 'bzr status'
2084 * .bzrignore: Add emacs-*/, the output of make-dist, and stamp-h1,
2085 the output of config.guess.
2086 * Makefile.in (top_distclean): Remove stamp-h1 too.
2087
7cae64b4
PE
2088 * configure.in (HAVE_ATTRIBUTE_ALIGNED): Arrange for this to be
2089 defined if the compiler supports GCC-style __attribute__
2090 ((__aligned__ ...)). IBM AIX and Oracle Solaris Studio support
2091 this syntax.
2092
a3e44e79 20932011-01-17 Paul Eggert <eggert@cs.ucla.edu>
ecbfcc83 2094
3cbecb8f
PE
2095 Makefile.in: tidy up the building of lib
2096 * Makefile.in (am--refresh): Mark as .PHONY.
2097 (top_maintainer_clean): Don't remove lib/gnulib.mk m4/gnulib-cache.m4,
2098 as they're not rebuilt unless you do a "make sync-from-gnulib"
2099 and the former is needed for "configure".
2100 (maintainer-clean): Don't recurse into lib, as "make bootstrap-clean"
2101 has already removed lib/Makefile.
2102
ecbfcc83
PE
2103 * Makefile.in (GNULIB_MODULES): Change ftoastr to dtoastr.
2104 This avoids building ftoastr and ldtoastr, which aren't needed. See
2105 <http://lists.gnu.org/archive/html/bug-gnulib/2011-01/msg00199.html>.
fa2c4f56 2106
803059b9
PE
2107 * .bzrignore: Add .h files that are host-dependent.
2108 Add lib/.deps/, lib/arg-nonnull.h, lib/c++defs.h, lib/getopt.h,
2109 lib/time.h, lib/unistd.h, lib/warn-on-use.h. These are
2110 host-dependent and are built as part of an ordinary 'make', and
2111 should not be checked in.
2112
6ffb2c0c
PE
2113 * lib/Makefile.in: Regenerate.
2114 * lib/COPYING: New file, a copy of COPYING.
2115
2a78afcc 2116 * configure: Regenerate.
37564543
PE
2117 * configure.in (AC_USE_SYSTEM_EXTENSIONS): Remove: gnulib does this.
2118
e275c824 2119 Regenerate.
6ffb2c0c
PE
2120 * lib/getopt.c, lib/getopt.in.h, lib/getopt1.c, lib/getopt_int.h:
2121 * lib/gettext.h, lib/unistd.in.h, m4/unistd_h.m4:
2122 New files, copied from gnulib by gnulib-tool.
2123 * aclocal.m4, configure, lib/Makefile.in, m4/getopt.m4:
e275c824
PE
2124 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2125 Regenerate.
ecbfcc83 2126
84bbb1ad
PE
2127 Use gnulib's getopt-gnu module.
2128 * Makefile.in (GNULIB_MODULES): Add getopt-gnu.
2129 (AUTOCONF_INPUTS): Remove getopt.m4; aclocal.m4 is a good-enough
2130 representative of the dependencies.
2131 * configure.in: Do not configure getopt, as gnulib does that now.
2132 * make-dist: Do not worry about lib-src/getopt.h, as gnulib handles
2133 getopt now, in lib.
ecbfcc83 2134
1fd182f0 2135 Regenerate.
6ffb2c0c
PE
2136 * arg-nonnull.h, c++defs.h, lib/mktime-internal.h, lib/mktime.c:
2137 * lib/stddef.in.h, lib/time.h, lib/time.in.h, lib/time_r.c:
1fd182f0
PE
2138 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4:
2139 * m4/multiarch.m4, m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4:
2140 * m4/extensions.m4, m4/include_next.m4, m4/mktime.m4, m4/multiarch.m4:
2141 * m4/stddef_h.m4, m4/time_h.m4, m4/time_r.m4, m4/warn-on-use.m4:
2142 * m4/wchar_t.m4, warn-on-use.h:
2143 New files, copied from gnulib by gnulib-tool.
6ffb2c0c 2144 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
1fd182f0
PE
2145 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2146 Regenerate.
2147
1e11dbe3
PE
2148 Use gnulib's mktime module.
2149 * Makefile.in (GNULIB_MODULES): Add mktime.
2150 * configure.in: Remove code no longer needed, as gnulib now does it.
2151 (AC_CHECK_FUNCS): Remove mktime.
2152 (AC_FUNC_MKTIME, BROKEN_MKTIME): Remove.
2153 (__restrict): Remove, as this now gets in the way of the C99
2154 support for 'restrict' pulled in by the gnulib mktime module.
2155 Code should now use 'restrict' and not '__restrict".
2156 (mktime): Remove.
2157 * make-dist: Put gnulib-generated files arg-nonnull.h, c++defs.h,
2158 and warn-on-use.h into the distribution.
1fd182f0
PE
2159
2160 Regenerate.
6ffb2c0c
PE
2161 * lib/dtoastr.c, lib/ftoastr.c, lib/ftoastr.h, lib/intprops.h:
2162 * lib/ldtoastr.c, m4/c-strtod.m4:
1fd182f0 2163 New files, copied from gnulib by gnulib-tool.
6ffb2c0c
PE
2164 * lib/dummy.c: Remove.
2165 * aclocal.m4, configure, lib/Makefile.in, lib/gnulib.mk:
1fd182f0
PE
2166 * m4/gnulib-cache.m4, m4/gnulib-comp.m4, src/config.in:
2167 Regenerate.
ecbfcc83 2168
1e11dbe3 2169 Use gnulib's ftoastr module.
fa2c4f56
PE
2170 * Makefile.in (GNULIB_MODULES): Add ftoastr. Remove dummy.
2171
743c80a7 2172 Regenerate.
6ffb2c0c
PE
2173 * aclocal.m4, compile, depcomp, lib/Makefile.in, lib/dummy.c:
2174 * lib/gnulib.mk, m4/00gnulib.m4, m4/gnulib-cache.m4:
743c80a7
PE
2175 * m4/gnulib-common.m4, m4/gnulib-comp.m4, m4/gnulib-tool.m4, missing:
2176 New files, generated automatically, with 'make sync-from-gnulib'
2177 followed by 'make'.
2178 * configure, lisp/dired.el, src/config.in: Regenerate.
2179
9a514d4a
PE
2180 Automate syncing from gnulib.
2181 * INSTALL, README: Document new subdirectory 'lib'.
2182 * Makefile.in (SUBDIR): Add lib.
2183 (SUBDIR_MAKEFILES): Add lib/Makefile.
2184 (lib-src, src, TAGS, tags): Depend on lib.
2185 (gnulib_srcdir, GNULIB_MODULES, GNULIB_TOOL_FLAGS): New macros.
2186 ($(gnulib_srcdir)): New rule.
2187 (sync-from-gnulib): New rule, which is .PHONY.
2188 (lib): New rule, which is like lib-src.
2189 (Makefile): Depend on lib/Makefile.in.
2190 (AUTOCONF_INPUTS): Depend on aclocal.m4.
2191 (ACLOCAL_INPUTS, AUTOMAKE_INPUTS): New macros.
2192 ($(srcdir)/aclocal.m4, $(srcdir)/lib/Makefile.in): New rules.
2193 (am--refresh): New rule, to pacify Automake.
2194 (mostlyclean, clean, distclean, bootstrap-clean, maintainer-clean):
2195 Clean lib, too.
2196 (top_maintainer_clean): New macro, to remove gnulib-tool and Automake
2197 droppings.
2198 (maintainer-clean, extraclean): Use it.
2199 * configure.in: Initialize for automake and gnulib, by invoking
2200 AM_INIT_AUTOMAKE, AM_PROG_CC_C_O, gl_EARLY, and gl_INIT. Output
2201 lib/Makefile, too. Use automake to build gnulib, as gnulib works
2202 more conveniently with automake.
6ffb2c0c 2203 * lib/Makefile.am: New file.
9a514d4a
PE
2204 * make-dist: Also put into the distribution aclocal.m4,
2205 compile, depcomp, missing, and the files under lib/.
2206
dc3e3e7b
GM
22072011-01-15 Glenn Morris <rgm@gnu.org>
2208
2209 * Makefile.in (epaths-force): No more arch-tag to edit.
2210
dab73760
CY
22112011-01-15 Chong Yidong <cyd@stupidchicken.com>
2212
2213 * configure.in: Bump min libxml2 version to 2.6.17 (Bug#7603).
2214
9f4b8b47
PE
22152011-01-14 Paul Eggert <eggert@cs.ucla.edu>
2216
2217 * make-dist: Distribute test/ files too.
2218 Distribute every file under test/ that is under version control,
2219 using patterns like *.el to capture files that are added later.
2220 Without this change, "configure" would fail, because it would
2221 attempt to build from a Makefile.in that was not distributed.
2222
d221e780
CO
22232011-01-13 Christian Ohler <ohler@gnu.org>
2224
2225 * Makefile.in (INFO_FILES): Add ERT.
2226
2227 * Makefile.in (check): Run tests in test/automated.
2228
2229 * Makefile.in:
2230 * configure.in: Add test/automated/Makefile.
2231
bc5585d1
PE
22322011-01-07 Paul Eggert <eggert@cs.ucla.edu>
2233
2b3f5bc8
PE
2234 * install-sh, mkinstalldirs, move-if-change: Update from master
2235 source in gnulib.
2236
bc5585d1
PE
2237 * config.guess, config.sub: Updated from master source.
2238
2018939f
AS
22392011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2240
2241 * configure.in: Check for __builtin_unwind_init.
2242
e5365138
GM
22432011-01-05 Glenn Morris <rgm@gnu.org>
2244
2245 * configure.in (HAVE_MAKEINFO): New output variable.
2246 (MAKEINFO): Reset to "makeinfo" if not found.
2247 * Makefile.in (install-arch-indep, info):
2248 Replace MAKEINFO = off with HAVE_MAKEINFO = no.
2249
4fc5868a
UM
22502010-12-29 Ulrich Mueller <ulm@gentoo.org>
2251
2252 * configure.in: Make gameuser configurable (Bug#7717).
2253
68251e16
GM
22542010-12-15 Glenn Morris <rgm@gnu.org>
2255
2256 * Makefile.in (install-arch-dep, uninstall): Remove code relating to the
2257 long absent lib-src/fns-*.el.
2258
838db889
GM
22592010-12-11 Glenn Morris <rgm@gnu.org>
2260
2261 * make-dist: Exclude etc/*.pyc.
2262
fe646d2c
AS
22632010-12-10 Andreas Schwab <schwab@linux-m68k.org>
2264
2265 * configure.in: Don't double machfile in final message.
2266
d96c83fa
CY
22672010-12-04 Chong Yidong <cyd@stupidchicken.com>
2268
2269 * configure.in: Fix last change.
2270
d6a003a8
AS
22712010-12-04 Andreas Schwab <schwab@linux-m68k.org>
2272
2273 * configure.in: Remove reference to removed machine description
2274 files and allow $machine and $machfile to be empty. Substitute
2275 M_FILE/S_FILE instead of machfile/opsysfile.
2276
067d23c9
KY
22772010-12-03 Glenn Morris <rgm@gnu.org>
2278
2279 * make-dist: Remove EMACS_UNIBYTE unsetting; it does nothing.
2280
22812010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
2282
2283 * configure.in <AC_CHECK_HEADERS>: Remove sys/ioctl.h.
2284 (EXTERNALLY_VISIBLE): New definition.
2285
22862010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2287
2288 * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
2289
22902010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
2291
2292 * configure.in: Do not check for unconditionally included headers.
2293
22942010-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
2295
2296 * .dir-locals.el (log-edit-mode): Set log-edit-rewrite-fixes.
2297
22982010-11-09 Michael Albinus <michael.albinus@gmx.de>
2299
2300 * configure.in: Don't write a warning for D-Bus anymore.
2301
23022010-11-06 Andreas Schwab <schwab@linux-m68k.org>
2303
2304 * configure.in: Fix indentation.
2305
23062010-10-31 Ken Brown <kbrown@cornell.edu>
2307
2308 * configure.in (checking whether localtime caches TZ): Use
2309 unsetenv instead of modifying environment directly.
2310
23112010-10-25 Andreas Schwab <schwab@linux-m68k.org>
2312
2313 * configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
2314 to avoid warning.
2315
23162010-10-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
2317
e9fce1ac 2318 * configure.in: Remove the BROKEN annotation from GnuTLS.
067d23c9
KY
2319
23202010-10-22 Glenn Morris <rgm@gnu.org>
2321
2322 * make-dist: Avoid listing .el files twice. Don't try to run
2323 autoconf if --no-update.
2324
23252010-10-20 Glenn Morris <rgm@gnu.org>
2326
2327 * make-dist: No longer create lisp/MANIFEST.
2328
23292010-10-14 Glenn Morris <rgm@gnu.org>
2330
2331 * BUGS, INSTALL.BZR, README: Updates.
2332
23332010-10-13 Glenn Morris <rgm@gnu.org>
2334
2335 * make-dist: Remove --compress. Check for the appropriate
2336 gzip-like executable, and if not found, don't compress.
2337 Check version number in README, don't change it.
2338 Use find for nt/inc/*.h.
2339
23402010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
2341
2342 * configure (ns_appdir, OLDXMENU, TOOLTIP_SUPPORT): Remove
2343 trailing / from directory names.
2344
23452010-10-12 Glenn Morris <rgm@gnu.org>
2346
2347 * make-dist: Update and simplify.
2348
23492010-10-12 Eli Zaretskii <eliz@gnu.org>
2350
2351 * make-dist: Don't distribute src/buildobj.h. (Bug#7167)
2352
23532010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
2354
2355 * configure.in (PROFILING_LDFLAGS): Do not define, remove all uses.
2356
23572010-10-09 Glenn Morris <rgm@gnu.org>
2358
2359 * make-dist: No more doc/emacs/*.texi.in.
2360
2361 * configure.in (AC_OUTPUT): Remove doc/emacs/emacsver.texi.
2362
23632010-10-09 Glenn Morris <rgm@gnu.org>
2364
2365 * configure.in: Combine some conditionals.
2366
2367 * configure.in (AC_OUTPUT): Add doc/emacs/emacsver.texi.
2368 * make-dist: Include doc/emacs/*.texi.in.
2369
2370 * INSTALL, make-dist: Remove references to b2m.
2371 * Makefile.in (MAN_PAGES): Remove b2m.1.
2372
23732010-10-05 Glenn Morris <rgm@gnu.org>
2374
2375 * .dir-locals.el: The Emacs convention is sentence-end-double-space.
2376
23772010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2378
2379 * configure.in (NO_INLINE, noinline): Move here from src/xterm.c.
2380
23812010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
2382
2383 * configure.in: Include stdlib.h and string.h unconditionally.
2384
23852010-09-29 Romain Francoise <romain@orebokech.com>
2386
2387 * configure.in: Don't enable ImageMagick unless HAVE_X11.
2388
23892010-09-28 Glenn Morris <rgm@gnu.org>
2390
2391 * configure.in (HAVE_GNUTLS): Add a description to make autoheader
2392 happy.
2393
23942010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2395
2396 * configure.in: Enable imagemagick by default.
2397
23982010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
2399
2400 * configure.in (HAVE_GNUTLS): Don't break if we don't have the
e9fce1ac 2401 GnuTLS libraries.
067d23c9
KY
2402
24032010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
2404
2405 * configure.in: Set up GnuTLS.
2406
24072010-09-22 Chong Yidong <cyd@stupidchicken.com>
2408
2409 * configure.in: Announce whether libxml2 is linked to.
2410
24112010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
2412
2413 * configure.in (LINKER): Rename to LD_FIRSTFLAG, do not include $(CC).
2414
24152010-09-18 Eli Zaretskii <eliz@gnu.org>
2416
2417 * config.bat: Detect that libxml2 is installed and if so, build
2418 with it.
2419
24202010-09-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
2421
2422 * configure.in (HAVE_LIBXML2): Check that the libxml2 we found can
2423 be used. This fixes a conf problem on Mac OS X.
2424
24252010-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2426
2427 * configure.in: Check for libxml2.
2428
24292010-09-09 Glenn Morris <rgm@gnu.org>
2430
2431 * make-dist: No more TODO files under lisp/.
2432
24332010-09-04 Eli Zaretskii <eliz@gnu.org>
2434
2435 * config.bat: Produce lisp/gnus/_dir-locals.el from
2436 lisp/gnus/.dir-locals.el.
2437
24382010-08-23 Andreas Schwab <schwab@linux-m68k.org>
2439
2440 * configure.in: Fix check for librsvg, imagemagick and
2441 MagickExportImagePixels.
2442
24432010-08-18 Joakim Verona <joakim@verona.se>
2444
2445 * Makefile.in, configure.in: Checks for ImageMagick.
2446
24472010-08-10 Dan Nicolaescu <dann@ics.uci.edu>
2448
2449 * configure.in (AC_PREREQ): Require autoconf 2.65.
2450
24512010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
2452
2453 * configure.in (AC_PREREQ): Require autoconf 2.66 to stop version churn.
2454
24552010-08-09 Andreas Schwab <schwab@linux-m68k.org>
2456
2457 * configure.in: Add AC_C_BIGENDIAN.
2458
24592010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
2460
2461 * configure.in (ORDINARY_LINK): Use on hpux* too.
2462
24632010-08-06 Jan Djärv <jan.h.d@swipnet.se>
2464
2465 * configure.in: Check for util.h.
2466 Use -Wimplicit-function-declaration if compiler supports it.
2467
24682010-08-05 Eli Zaretskii <eliz@gnu.org>
2469
2470 * configure.in (UNEXEC_OBJ): Rename unexec.o => unexcoff.o.
2471
24722010-08-04 Andreas Schwab <schwab@linux-m68k.org>
2473
2474 * configure.in: Restore accidentally removed use of
2475 GCC_TEST_OPTIONS/NON_GCC_TEST_OPTIONS.
2476
24772010-07-29 Chad Brown <yandros@mit.edu>
2478
2479 * configure.in: Check for dirent.h.
2480
24812010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
2482
2483 * configure.in: Remove reference to usg5-4, unused.
2484
24852010-07-25 Andreas Schwab <schwab@linux-m68k.org>
2486
2487 * configure.in: Check for __executable_start.
2488
24892010-07-24 Ken Brown <kbrown@cornell.edu>
2490
2491 * configure.in (LINKER, LIB_GCC): Remove cygwin special cases (Bug#6715)
2492
24932010-07-24 Juanma Barranquero <lekktu@gmail.com>
2494
2495 * .bzrignore, .gitignore: Ignore README.W32 on the root directory.
2496
24972010-07-24 Ken Brown <kbrown@cornell.edu> (tiny change)
2498
2499 * configure.in (START_FILES) [cygwin]: Set to pre-crt0.o (Bug#6715).
2500
25012010-07-12 Andreas Schwab <schwab@linux-m68k.org>
2502
2503 * configure.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
2504 (PROFILING_LDFLAGS): Substitute, don't add them to CFLAGS/LDFLAGS.
2505 (C_OPTIMIZE_SWITCH): Remove.
2506 (TEMACS_LDFLAGS2): Add ${PROFILING_LDFLAGS}.
2507
25082010-07-11 Andreas Schwab <schwab@linux-m68k.org>
2509
2510 * configure.in: Don't check for index and rindex, check for strchr
2511 and strrchr. Define strchr and strrchr as index and rindex,
2512 resp., in src/config.h if not available.
2513
25142010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
2515
2516 * configure.in: Use -Wold-style-definition if available.
2517 This helps with the transition to standard C code, it can be
2518 removed when done.
2519
2520 * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
2521
2522 * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS
2523 and MSWindows.
2524
25252010-07-07 Andreas Schwab <schwab@linux-m68k.org>
2526
2527 * configure.in: Don't check for bcopy, bcmp, bzero. Don't include
2528 <strings.h> and don't define bcopy, bzero, BCMP in config.h.
2529
25302010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
2531
2532 * configure.in (getenv): Remove K&R declaration.
2533
25342010-07-02 Jan Djärv <jan.h.d@swipnet.se>
2535
2536 * configure.in: Remove define __P.
2537
25382010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
2539
2540 * configure.in (--enable-use-lisp-union-type): New flag.
2541
25422010-06-30 Dan Nicolaescu <dann@ics.uci.edu>
2543
2544 Fix CFLAGS for non-GCC compilers.
2545 * configure.in (CFLAGS): Always use -g like it was done before the
2546 2010-03-30 change.
2547 (REAL_CFLAGS): Use CFLAGS for non-GCC to get optimization flags.
2548 (Bug#6538)
2549
25502010-06-30 Glenn Morris <rgm@gnu.org>
2551
2552 * configure.in (HAVE_SOUND, HAVE_X_I18N, HAVE_X11R6_XIM):
2553 Set with AC_DEFINE rather than AH_BOTTOM.
2554
2555 * configure.in (C_OPTIMIZE_SWITCH, CANNOT_DUMP, SYSTEM_MALLOC):
2556 (USE_MMAP_FOR_BUFFERS, C_WARNING_SWITCH, CFLAGS, REAL_CFLAGS):
2557 Set with shell, not cpp.
2558 (LIBX): Remove, just use -lX11 in the one place this was used.
2559 (cannot_dump): Replace with CANNOT_DUMP.
2560
25612010-06-28 Jan Djärv <jan.h.d@swipnet.se>
2562
0a19a6f8 2563 * configure.in: Add --with-x-toolkit=gtk3. Remove HAVE_GTK_MULTIDISPLAY,
067d23c9
KY
2564 check for gtk_file_chooser_dialog_new, and HAVE_GTK_FILE_BOTH (implied
2565 by minimum required Gtk+ 2.6). Add checks for functions introduced
2566 in Gtk+ 2.14 or newer (bug#6505).
2567
25682010-06-26 Eli Zaretskii <eliz@gnu.org>
2569
2570 * config.bat: Remove white space around "+" in COPY commands.
2571
25722010-06-23 Glenn Morris <rgm@gnu.org>
2573
2574 * info/dir: Start descriptions in column 32, per Texinfo convention.
2575
25762010-06-16 Chong Yidong <cyd@stupidchicken.com>
2577
2578 * INSTALL: Update font information (Bug#6389).
2579
25802010-06-16 Glenn Morris <rgm@gnu.org>
2581
2582 * INSTALL: General update.
2583
25842010-06-12 Glenn Morris <rgm@gnu.org>
2585
2586 * Makefile.in (install-arch-indep): Delete any old info .gz files first.
2587
25882010-06-11 Glenn Morris <rgm@gnu.org>
2589
2590 * configure.in (--without-compress-info): New option.
2591 (GZIP_INFO): New output variable.
2592
2593 * Makefile.in (GZIP_INFO): New, set by configure.
2594 (install-arch-indep): Don't gzip info pages if GZIP_INFO is nil.
2595 Handle man pages in the same way.
2596
25972010-06-10 Glenn Morris <rgm@gnu.org>
2598
2599 * Makefile.in (install-arch-indep): Gzip the info files too.
2600
2601 * make-dist: Remove references to non-existent directories and files.
2602
26032010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
2604
2605 * configure.in: Include <strings.h> and <string.h> instead of
2606 "strings.h" and "string.h".
2607
26082010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
2609
2610 * configure.in: Remove code dealing with BSTRING.
2611
26122010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
2613
2614 * configure.in (AC_PREREQ): Require autoconf 2.65.
2615
2616 * configure.in (unxec): Do not define and substitute.
2617 (UNEXEC_OBJ): New output variable, replaces cpp UNEXEC.
2618
26192010-06-03 Glenn Morris <rgm@gnu.org>
2620
2621 * configure.in (AH_BOTTOM): Remove NOT_C_CODE test, it is always true.
2622
26232010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
2624
2625 Fix alloca definition when using gcc on non-gnu systems.
2626 * configure.in: Use the code sequence indicated by "info autoconf"
2627 for alloca (bug#6170).
2628
26292010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2630
2631 * .bzrignore: Ignore new files from trunk, which appear if you use
2632 colocated branches (i.e. "bzr switch").
2633
26342010-05-28 Glenn Morris <rgm@gnu.org>
2635
2636 * configure.in: Simplify some of the $canonical tests.
2637
26382010-05-27 Glenn Morris <rgm@gnu.org>
2639
2640 * config.bat: Do not preprocess src/Makefile.in.
2641
2642 * configure.in: Do not preprocess src/Makefile.in.
2643 (cpp_undefs, CPP_NEED_TRADITIONAL): Remove.
2644 (AC_EGREP_CPP): Test no longer needed.
2645
2646 * make-dist: No more Makefile.c files.
2647
26482010-05-26 Glenn Morris <rgm@gnu.org>
2649
2650 * configure.in (YMF_PASS_LDFLAGS): Remove.
2651 (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): New output variables.
2652
2653 * configure.in (CPPFLAGS, CFLAGS, REAL_CFLAGS):
2654 Add $GNUSTEP_LOCAL_HEADERS.
2655 (LDFLAGS, LD_SWITCH_SYSTEM_TEMACS): Add $GNUSTEP_LOCAL_LIBRARIES.
2656
2657 * configure.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS)
2658 (GNUSTEP_MAKEFILES): Remove.
2659 (LD_SWITCH_SYSTEM_TEMACS): Move NS_IMPL_GNUSTEP_TEMACS_LDFLAGS
2660 stuff to here.
2661
26622010-05-25 Glenn Morris <rgm@gnu.org>
2663
2664 * configure.in (LD_SWITCH_SYSTEM): Move some gnu-linux stuff...
2665 (LD_SWITCH_SYSTEM_TEMACS): ... to here.
2666
2667 * configure.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
2668 (LD_SWITCH_SYSTEM_TEMACS): Put darwin stuff from LD_SWITCH_SYSTEM_EXTRA
2669 here instead.
2670
26712010-05-24 Romain Francoise <romain@orebokech.com>
2672
2673 * make-dist: Look for version in src/emacs.c.
2674 Use lisp/subr.el rather than lisp/version.el for location check.
2675
26762010-05-21 Glenn Morris <rgm@gnu.org>
2677
2678 * configure.in (MKDEPDIR): Parallel build tweak.
2679
2680 * configure.in (ns_frag): New output file.
2681
2682 * configure.in (OLDXMENU): Set to "nothing" if !HAVE_X11 || USE_GTK.
2683 (OLDXMENU_TARGET): Set to empty if USE_GTK.
2684
2685 * configure.in (cannot_dump): New output variable.
2686
26872010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
2688
2689 * configure.in: On NetBSD, if terminfo is found, use it in
2690 preference to termcap. (Bug#6190)
2691
26922010-05-20 Glenn Morris <rgm@gnu.org>
2693
2694 * make-dist (src): Include *.mk.
2695 * config.bat: Concatenate deps.mk onto the end of src/Makefile.
2696 * configure.in (DEPFLAGS, MKDEPDIR): New output variables.
2697 (deps_frag): New output file.
2698 (AUTO_DEPEND): Remove this definition.
2699
2700 * configure.in (--with-gtk, --with-gcc): Remove option stubs.
2701
27022010-05-19 Glenn Morris <rgm@gnu.org>
2703
2704 * configure.in (LINKER, YMF_PASS_LDFLAGS): New output variables.
2705 (ORDINARY_LINK): New AC_DEFINE.
2706 (LIB_GCC): No need to set if ORDINARY_LINK.
2707
27082010-05-18 Glenn Morris <rgm@gnu.org>
2709
2710 * configure.in (POST_ALLOC_OBJ) [cygwin]: Omit vm-limit.o.
2711 (POST_ALLOC_OBJ) [!cygwin]: Set to empty.
2712
2713 * config.bat (RALLOC_OBJ): Edit to empty if sys_malloc.
2714 * configure.in (REL_ALLOC): Unset on gnu, gnu-linux if DOUG_LEA_MALLOC.
2715 (RALLOC_OBJ): New output variable.
2716
2717 * config.bat (GMALLOC_OBJ, VMLIMIT_OBJ): Edit to empty if sys_malloc.
2718 * configure.in (GMALLOC_OBJ, VMLIMIT_OBJ): New output variables.
2719
27202010-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2721
2722 * Makefile.in (src): Provide the name of the VCS file that witnesses
2723 a pull.
2724 ($(srcdir)/src/config.in): Handle accidental removal of src/config.in.
2725
27262010-05-17 Glenn Morris <rgm@gnu.org>
2727
2728 * configure.in (OLDXMENU_DEPS): New output variable.
2729
27302010-05-16 Glenn Morris <rgm@gnu.org>
2731
2732 * configure.in (ns_appbindir, ns_appresdir): Set using $ns_appdir.
2733
2734 * configure.in (ns_appdir, ns_appbindir): Add trailing "/" to value.
2735 * Makefile.in (install-arch-dep): Update for above change.
2736
2737 * Makefile.in (ns_appdir): Remove.
2738 (install-arch-dep): Test $ns_appresdir instead of $ns_appdir.
2739
2740 * configure.in (TEMACS_LDFLAGS2): New output variable.
2741
2742 * configure.in (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New output variable.
2743 (START_FILES): Set to empty if NS_IMPL_GNUSTEP.
2744 (GNUSTEP_SYSTEM_HEADERS, GNUSTEP_SYSTEM_LIBRARIES): Do not output,
2745 nothing uses.
2746
27472010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
2748
2749 * configure.in: Remove references to usg5-4 and bsd-common, $opsys
2750 does not use them.
2751 (X11R5_INHIBIT_I18N): Remove, unused.
2752
27532010-05-15 Glenn Morris <rgm@gnu.org>
2754
2755 * configure.in (LIBXMENU): Set to empty if !HAVE_X_WINDOWS.
2756
2757 * configure.in (FONT_OBJ): Set to empty if !HAVE_X_WINDOWS.
2758
27592010-05-15 Ken Raeburn <raeburn@raeburn.org>
2760
2761 * configure.in: Look for version string in its new location.
2762
27632010-05-15 Eli Zaretskii <eliz@gnu.org>
2764
2765 * config.bat: Remove support for DJGPP v1.x.
2766
27672010-05-15 Glenn Morris <rgm@gnu.org>
2768
2769 * configure.in (OLDXMENU_TARGET): New output variable.
2770
2771 * Makefile.in (install-arch-dep): Update odd NS rule for Emacs version.
2772
2773 * Makefile.in (install-arch-indep): Remove references to RCS, CVS,
2774 and other files that no longer exist.
2775
27762010-05-14 Glenn Morris <rgm@gnu.org>
2777
2778 * configure.in (cpp_undefs): Add mktime, register, X11.
2779
2780 * configure.in (GPM_MOUSE_SUPPORT): Remove.
2781 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): New output variables.
2782 (HAVE_WINDOW_SYSTEM, HAVE_MOUSE): Move out of AC_BOTTOM.
2783
2784 * configure.in (NS_IMPL_GNUSTEP_INC): New output variable.
2785 (GNUSTEP_MAKEFILES): Do not output.
2786
27872010-05-13 Glenn Morris <rgm@gnu.org>
2788
2789 * configure.in: Fix some paren typos.
2790
2791 * configure.in (OLDXMENU, LIBXMENU): Set to empty if !HAVE_MENUS.
2792
2793 * configure.in (LD_SWITCH_X_SITE, C_SWITCH_X_SITE): Do not define.
2794
27952010-05-12 Glenn Morris <rgm@gnu.org>
2796
2797 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): Remove, unused.
2798
2799 * configure.in (LIB_GCC): New output variable.
2800
28012010-05-11 Glenn Morris <rgm@gnu.org>
2802
2803 * make-dist (msdos): No more mainmake.
2804
2805 * configure.in: Generate lib-src/Makefile directly, do not run cpp.
2806 * config.bat: Do not run cpp on lib-src/Makefile.in.
2807
2808 * config.bat [HAVE_X11]: Run sed3x.inp on lib-src/Makefile.
2809
28102010-05-10 Glenn Morris <rgm@gnu.org>
2811
2812 * configure.in (LIBS_SYSTEM): New output variable, replacing cpp.
2813
2814 * configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
2815 (BLESSMAIL_TARGET): New output variable.
2816
28172010-05-08 Štěpán Němec <stepnem@gmail.com> (tiny change)
2818
2819 * INSTALL: Fix typos.
2820
28212010-05-08 Chong Yidong <cyd@stupidchicken.com>
2822
2823 * configure.in: Add check for buggy version of GCC (Bug#6031).
2824
28252010-05-08 Glenn Morris <rgm@gnu.org>
2826
2827 * configure.in (HAVE_LIBNCURSES): New local variable.
2828 (TERMINFO, LIBS_TERMCAP, TERMCAP_OBJ): New output variables,
2829 replacing cpp in src/s/*.h and src/Makefile.in.
2830
28312010-05-07 Chong Yidong <cyd@stupidchicken.com>
2832
2833 * Version 23.2 released.
2834
28352010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2836
2837 * configure.in: Add tests for `isnan' and `copysign'.
2838
28392010-05-07 Eli Zaretskii <eliz@gnu.org>
2840
2841 * config.bat: Allow for 2 leading `#'s in comments in
2842 src/Makefile.in.
2843
28442010-05-07 Glenn Morris <rgm@gnu.org>
2845
2846 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
2847 Merges logic from src/s/* and src/Makefile.in.
2848 (LD_SWITCH_SYSTEM_TEMACS): New output variable.
2849
28502010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
2851
2852 Define START_FILES and LIB_STANDARD using autoconf.
2853 * configure.in (START_FILES, LIB_STANDARD): New definitions, moved
2854 here from src/s/*.h.
2855 (HAVE_CRTIN): Remove, inline logic in the netbsd
2856 START_FILES/LIB_STANDARD computation.
2857
28582010-05-06 Glenn Morris <rgm@gnu.org>
2859
2860 * configure.in (AC_PROG_LN_S): Remove test, nothing uses @LN_S@.
2861
2862 * Makefile.in (CPP, C_SWITCH_SYSTEM, ALLOCA, LN_S, C_SWITCH_X_SITE)
2863 (LD_SWITCH_X_SITE): Remove unused variables.
2864
28652010-05-04 Glenn Morris <rgm@gnu.org>
2866
2867 * configure.in (LD_SWITCH_X_SITE_AUX): Use AC_SUBST only, not AC_DEFINE
2868 as well.
2869 (LD_SWITCH_X_SITE_AUX_RPATH): New output variable.
2870
2871 * configure.in (LD_SWITCH_SYSTEM_TEMACS): New output variable.
2872
2873 * configure.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM): New output
2874 variables, replacing c_switch_machine, c_switch_system.
2875 * Makefile.in (C_SWITCH_SYSTEM): Use @C_SWITCH_SYSTEM@ rather than
2876 @c_switch_system@.
2877
28782010-05-03 Glenn Morris <rgm@gnu.org>
2879
2880 * configure.in (LIBXT_OTHER, LIBX_OTHER): New output variables.
2881
2882 * make-dist: There are no more src/m/*.inp files.
2883
28842010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
2885
2886 * configure.in (LD_SWITCH_MACHINE, ld_switch_machine): Remove, unused.
2887 (ac_link): Do not use ld_switch_machine.
2888
28892010-05-01 Glenn Morris <rgm@gnu.org>
2890
2891 * configure.in (OTHER_OBJ): Remove.
2892 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables.
2893
28942010-04-30 Glenn Morris <rgm@gnu.org>
2895
2896 * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin.
2897 Elsewhere, maybe include it.
2898
2899 * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS.
2900 (OLDXMENU, LIBXMENU): New output variables.
2901
2902 * configure.in (OTHER_OBJ): New output variable.
2903
29042010-04-28 Glenn Morris <rgm@gnu.org>
2905
2906 * configure.in (CYGWIN_OBJ): New output variable.
2907
2908 * configure.in (GPM_MOUSE_SUPPORT): New output variable.
2909
2910 * configure.in (FONT_OBJ): New output variable.
2911
2912 * configure.in (LIBXMU): New output variable.
2913
2914 * configure.in (NS_OBJ, NS_SUPPORT): New output variables.
2915
2916 * configure.in (machine, canonical): On amdx86-64, check for a 32-bit
2917 userland and maybe change values to i386 (move test from s/amdx86-64.h).
2918
29192010-04-27 Glenn Morris <rgm@gnu.org>
2920
2921 * configure.in (LIBXTR6): New output variable. Move unixware special
2922 case here from src/s/unixware.h.
2923
2924 * configure.in (LUCID_LIBW, MOTIF_LIBW): No longer substitute
2925 in Makefiles.
2926 (TOOLKIT_LIBW): New output variable, replacing LUCID_LIBW/MOTIF_LIBW.
2927
2928 * configure.in (HAVE_MOTIF_2_1): Remove unused variable.
2929 (LIBXP): No longer substitute in Makefiles.
2930 (MOTIF_LIBW): New output variable. Move system-specific settings here
2931 from src/s files.
2932
29332010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
2934
2935 Reduce CPP usage.
2936 * configure.in (LIB_X11_LIB): Remove, inline in the only user.
2937 (unexec): Define unconditionally, all platforms define
2938 UNEXEC. AC_SUBST it.
2939 (UNEXEC_SRC): Remove, unused.
2940 (C_SWITCH_X_SYSTEM): Define using autoconf, not cpp.
2941
29422010-04-27 Glenn Morris <rgm@gnu.org>
2943
2944 * configure.in (HAVE_MOTIF_2_1, HAVE_LIBXP): Remove unused AC_DEFINEs,
2945 replaced by LIBXP.
2946
2947 * configure.in (--with-crt-dir): Doc fix (now valid for all platforms).
2948 (CRT_DIR): On (powerpc64|sparc64)-*-linux-gnu*, default to /usr/lib64.
2949 On hpux10-20, default to /lib.
2950
2951 * configure.in (LUCID_LIBW, LIBXP, WIDGET_OBJ): New output variables.
2952
29532010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
2954
2955 * configure.in (LIBS_MACHINE): Remove, unused.
2956
2957 * configure.in (LIB_MATH): New output variable. Set it for some systems.
2958
29592010-04-24 Glenn Morris <rgm@gnu.org>
2960
2961 * configure.in (CRT_DIR): New output variable.
2962 (--with-crt-dir): New option. (Bug#5655)
2963 (HAVE_LIB64_DIR): Remove.
2964
29652010-04-22 Dan Nicolaescu <dann@ics.uci.edu>
2966
2967 * configure.in (REAL_CFLAGS, CFLAGS): Restore -g for gcc.
2968
29692010-04-22 Miles Bader <miles@gnu.org>
2970
2971 * configure.in: Get rid of "unix" pre-defined macro when
2972 preprocessing Makefile. (Bug#5857)
2973
29742010-04-21 Andreas Schwab <schwab@linux-m68k.org>
2975
2976 Avoid non-portable shell command negation
2977 * configure.in: Revert last change.
2978
29792010-04-21 Jan Djärv <jan.h.d@swipnet.se>
2980
2981 * configure.in: Change "if test ! -f" to "if ! test -f".
2982
29832010-04-21 Glenn Morris <rgm@gnu.org>
2984
2985 * configure.in (LIBSELINUX_LIBS): Always substitute in Makefiles.
2986 (GTK_OBJ, DBUS_OBJ, LIBXSM, XMENU_OBJ, XOBJ): New output variables.
2987
29882010-04-21 Karel Klíč <kklic@redhat.com>
2989
2990 * configure.in: New option: --with(out)-selinux, on by default.
2991 Set HAVE_LIBSELINUX if we find libselinux, and substitute
2992 LIBSELINUX_LIBS in Makefiles.
2993
29942010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
2995
2996 * configure.in: Remove all references to LIBX11_SYSTEM.
2997
29982010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
2999
3000 * configure.in: Remove all references to C_DEBUG_SWITCH.
3001
30022010-03-27 Eli Zaretskii <eliz@gnu.org>
3003
3004 * config.bat <lib-src>: Edit out lines that begin with several #
3005 characters.
3006
30072010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3008
3009 * configure.in: Remove support for old UNIX System V systems and
3010 for Unixware on non-x86 machines.
3011
3012 * configure.in: Remove support for Solaris on PPC and for old versions.
3013
3014 * configure.in: Remove non-working lynxos port.
3015
30162010-03-19 Dan Nicolaescu <dann@ics.uci.edu>
3017
3018 * .dir-locals.el (c-mode): Turn on whitespace-mode for diff-mode.
3019
30202010-03-19 Glenn Morris <rgm@gnu.org>
3021
3022 * configure.in (HAVE_LIBNCURSES): Add a description to make autoheader
3023 happy.
3024
30252010-03-18 Jan Djärv <jan.h.d@swipnet.se>
3026
3027 * configure.in: Check for tputs and friends, abort if not
3028 found (bug#5735).
3029
30302010-03-18 Glenn Morris <rgm@gnu.org>
3031
3032 * configure.in (--with-x-toolkit): In the help text, say which options
3033 are synonyms.
3034
3035 * configure.in (--with-mmdf, --with-mail-unlink):
3036 New options, off by default.
3037 (--with-mailhost): New option to set default POP host.
3038 (LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF, LIBGPM, LIBS_MAIL)
3039 (LIBHESIOD, LIBRESOLV, COM_ERRLIB, CRYPTOLIB, KRB5LIB, DESLIB, KRB4LIB):
3040 New variables, substituted in Makefiles.
3041 (try_libungif, ac_gif_lib_name): Replace with HAVE_GIF=maybe, LIBGIF.
3042 (LIBGIF): Use AC_SUBST rather than AC_DEFINE.
3043 (HAVE_LIBMAIL, HAVE_LIBLOCKFILE, HAVE_LIBCOM_ERR, HAVE_LIBCRYPTO)
3044 (HAVE_LIBK5CRYPTO, HAVE_LIBKRB5, HAVE_LIBDES425, HAVE_LIBDES)
3045 (HAVE_LIBKRB4, HAVE_LIBKRB): New AC_DEFINEs.
3046
30472010-03-18 Tetsurou Okazaki <okazaki@be.to> (tiny change)
3048
3049 * Makefile.in (uninstall): Handle the case where archlibdir does not
3050 exist. (Bug#5720)
3051
30522010-03-12 Eli Zaretskii <eliz@gnu.org>
3053
75f1671a 3054 These changes remove termcap.c from the build on POSIX platforms.
067d23c9
KY
3055 * configure.in <AC_CHECK_HEADERS>: Remove termcap.h.
3056
3057 * configure: Regenerated.
3058
30592010-03-10 Chong Yidong <cyd@stupidchicken.com>
3060
3061 * Branch for 23.2.
3062
30632010-01-31 Juri Linkov <juri@jurta.org>
3064
3065 * .bzrignore: Add TAGS-LISP.
3066
30672010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
3068
3069 * configure.in: Check for utmp.h availability (FreeBSD 9.x lacks
3070 this header file).
3071
30722010-01-12 Juanma Barranquero <lekktu@gmail.com>
3073
3074 * .bzrignore: Ignore all .exe, instead of individual files.
3075
30762010-01-12 Chong Yidong <cyd@stupidchicken.com>
3077
3078 * configure.in: Explicitly check for and link to -lXrender.
3079
30802010-01-12 Glenn Morris <rgm@gnu.org>
3081
3082 * INSTALL.BZR, README: Use bug-gnu-emacs rather than emacs-pretest-bug
3083 for bug reports for development versions.
3084
30852010-01-02 Eli Zaretskii <eliz@gnu.org>
3086
3087 * .bzrignore: Add more ignored patterns, including for the MS-DOS
3088 build.
3089
30902009-12-27 Karl Fogel <kfogel@red-bean>
3091
3092 * INSTALL.BZR: Rename from INSTALL.CVS; edit to talk about Bazaar.
3093 * INSTALL, autogen.sh, configure.in, configure: Adjust accordingly.
3094
30952009-12-17 Glenn Morris <rgm@gnu.org>
3096
3097 * .dir-locals.el (bug-reference-url-format): Change to debbugs.gnu.org.
3098
30992009-12-15 Glenn Morris <rgm@gnu.org>
3100
3101 * info/dir: Add EDT entry.
3102 * Makefile.in (INFO_FILES): Add edt.
3103
31042009-12-10 Jan Djärv <jan.h.d@swipnet.se>
3105
1154d12e 3106 * configure.in: Check for RSVG if GNUstep is used.
067d23c9
KY
3107
31082009-12-09 Jan Djärv <jan.h.d@swipnet.se>
3109
3110 * configure.in: Don't check for RSVG or GConf unless X11 is used.
3111
31122009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
3113
3114 * configure.in: Allow compiling Emacs with GTK on Cygwin.
3115
31162009-12-01 Glenn Morris <rgm@gnu.org>
3117
3118 * make-dist: Add etc/images/mpc directory.
3119
31202009-11-21 Jan Djärv <jan.h.d@swipnet.se>
3121
3122 * configure.in: Don't check for GConf unless X is used.
3123
31242009-11-20 Dan Nicolaescu <dann@ics.uci.edu>
3125
3126 * configure.in: Use -Wdeclaration-after-statement if available.
3127
31282009-11-17 Jan Djärv <jan.h.d@swipnet.se>
3129
3130 * configure.in: New option: --with(out)-gconf.
3131 Set HAVE_GCONF if we find gconf.
3132
31332009-11-17 Glenn Morris <rgm@gnu.org>
3134
3135 * Makefile.in (INFO_FILES): Add semantic.
3136
31372009-11-16 Chong Yidong <cyd@stupidchicken.com>
3138
3139 * info/dir: Add Semantic.
3140
31412009-11-16 Glenn Morris <rgm@gnu.org>
3142
3143 * Makefile.in (install-arch-indep): Use a more restrictive Makefile
3144 pattern, so as not to exclude makefile*.el. (Bug#4912)
3145
31462009-11-14 Jan Djärv <jan.h.d@swipnet.se>
3147
3148 * configure.in: --enable-autodepend is new. Check for GNU Make
3149 and that gcc supports -MMD -MF. Define AUTO_DEPEND if we can use
3150 gcc and GNU make to generate dependencies.
3151
31522009-10-27 Glenn Morris <rgm@gnu.org>
3153
3154 * make-dist: Make links to doc/lispintro/*.pdf.
3155
31562009-10-23 Jim Meyering <meyering@redhat.com>
3157
3158 * configure.in: Invoke $CPP with -P when creating Makefile and
3159 src/Makefile. Without this, gcc 4.4.2 converts each
3160 backslash-newline pair in the input to a bare newline, yielding
3161 invalid Makefiles.
3162
3163 * configure: Regenerate.
3164
31652009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
3166
3167 * configure.in (vax-dec-vms): Remove, not supported anymore.
3168
31692009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3170
3171 * configure.in (NS_HAVE_NSINTEGER): Back out previous change.
3172 (*-apple-darwin*): Add x86_64 architecture.
3173
31742009-10-14 Dan Nicolaescu <dann@ics.uci.edu>
3175
3176 * config.guess, config.sub: Updated from master source.
3177
31782009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
3179
3180 * configure.in (NS_HAVE_NSINTEGER): Remove this test and define.
3181
31822009-10-07 Edward Trumbo <etrumbo@comcast.net> (tiny change)
3183
3184 * Makefile.in (INFO_FILES): Add EDE and EIEIO.
3185
31862009-09-29 Glenn Morris <rgm@gnu.org>
3187
3188 * make-dist (check): Update for two new levels of subdirectory in lisp/.
3189
31902009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
3191
3192 * config.guess, config.sub: Updated from master source.
3193
3194 * configure.in (OTHER_FILES): Define using autoconf not cpp.
3195
31962009-09-14 Dan Nicolaescu <dann@ics.uci.edu>
3197
3198 * .dir-locals.el (change-log-mode): Restore bug-reference-mode.
3199
32002009-09-13 Chong Yidong <cyd@stupidchicken.com>
3201
3202 * INSTALL: Update URL for GNU FreeFont.
3203
32042009-09-09 Glenn Morris <rgm@gnu.org>
3205
3206 * Makefile.in (install-arch-indep): Don't recursively change perms of
3207 site-lisp and infodir. There may be non-Emacs files in here, and the
3208 files supplied by Emacs are all handled explicitly already. (Bug#3800)
3209 (mkdir): Set umask to world-readable before creating directories.
3210 mkinstalldirs already checks if dirs exist, don't duplicate this test.
3211
32122009-08-29 Glenn Morris <rgm@gnu.org>
3213
3214 * Makefile.in (info-real): Don't ignore errors from doc Makefiles.
3215 (info): Don't give an error in the absence of makeinfo - let the doc
3216 Makefiles do that, if the info files need rebuilding. (Bug#3982)
3217
32182009-08-23 Ken Raeburn <raeburn@raeburn.org>
3219
3220 * Makefile.in (install-arch-indep): If the versioned DOC-####
3221 generated during loadup+dump isn't found, install the plain DOC
3222 file that always gets generated, in case CANNOT_DUMP is set.
3223
3224 * configure.in: Warn if package version specified here doesn't
3225 match the version in version.el.
3226 * configure: Regenerate.
3227
32282009-08-22 Michael Albinus <michael.albinus@gmx.de>
3229
3230 * configure.in: AC_CHECK_FUNCS dbus_watch_get_unix_fd.
3231
3232 * configure: Regenerate.
3233
32342009-08-19 Glenn Morris <rgm@gnu.org>
3235
3236 * INSTALL: Remove reference to cvtmail.
3237
32382009-08-15 CHENG Gao <chenggao@gmail.com>
3239
3240 * Makefile.in (install-arch-indep): Remove .DS_Store files (MacOSX).
3241
32422009-08-02 Kevin Ryde <user42@zip.com.au>
3243
3244 * INSTALL: Fix free fonts URL.
3245
32462009-07-22 Glenn Morris <rgm@gnu.org>
3247
3248 * configure.in (AC_PREREQ): Require autoconf 2.62.
3249
32502009-07-04 Andreas Schwab <schwab@linux-m68k.org>
3251
3252 * configure.in (--enable-checking, --enable-profiling):
3253 Use AS_HELP_STRING.
3254
32552009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
3256
3257 * configure.in (--enable-profiling): New option.
3258 (mips-*-netbsd*, mipsel-*-netbsd*, mipseb-*-netbsd*): Use machine=mips.
3259
32602009-06-27 Glenn Morris <rgm@gnu.org>
3261
3262 * configure.in: Restore netbsd on mips, mipsel, mipseb.
3263
32642009-06-26 Dan Nicolaescu <dann@ics.uci.edu>
3265
3266 * configure.in (--enable-checking): New option.
3267
32682009-06-24 Glenn Morris <rgm@gnu.org>
3269
3270 * make-dist: Warn if subdir does not exist in source.
3271 (nextstep/Cocoa/Emacs.base/Contents/Resources/preferences.nib)
3272 (nextstep/GNUstep/Emacs.base/Resources/preferences.gorm):
3273 No longer make links.
3274
32752009-06-24 Yavor Doganov <yavor@gnu.org>
3276
3277 * make-dist (tempdir): Don't create directories preferences.gorm
3278 and preferences.nib, they are no longer required.
3279
32802009-06-21 Chong Yidong <cyd@stupidchicken.com>
3281
3282 * Branch for 23.1.
3283
32842009-06-12 Chong Yidong <cyd@stupidchicken.com>
3285
3286 * configure.in: Delete mac-fix-env target, which has been
3287 removed (Bug#3531).
3288
32892009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3290
1154d12e 3291 * configure.in: Don't define CANNOT_DUMP for GNUstep any more.
067d23c9
KY
3292
32932009-05-05 Per Starbäck <per@starback.se> (tiny change)
3294
3295 * BUGS: Use new binding of view-emacs-problems.
3296
c7015153 32972009-05-04 Simon Leinen <simon.leinen@switch.ch> (tiny change)
067d23c9
KY
3298
3299 * Makefile.in (install-arch-dep): Avoid using $$(..) construct,
3300 for Solaris compatibility.
3301
33022009-04-25 Chong Yidong <cyd@stupidchicken.com>
3303
3304 * configure: Regenerate.
3305
3306 * configure.in: Disable use of FreeType without libXft.
3307
33082009-04-19 Jan Djärv <jan.h.d@swipnet.se>
3309
3310 * configure.in (HAVE_GTK_FILE_SELECTION, HAVE_GTK_FILE_CHOOSER):
3311 Check if it is declared in gtk.h.
3312
33132009-04-12 Andreas Schwab <schwab@linux-m68k.org>
3314
3315 * Makefile.in (install-arch-indep): Remove .gitignore files.
3316
33172009-04-03 Kenichi Handa <handa@m17n.org>
3318
3319 * INSTALL: Make the section "Complex Text Layout support
3320 libraries" the first of "ADDITIONAL DISTRIBUTION FILES".
3321
33222009-03-06 Dan Nicolaescu <dann@ics.uci.edu>
3323
3324 * configure.in (rs6000-ibm-aix6*): Fix typo.
3325
33262009-03-04 Glenn Morris <rgm@gnu.org>
3327
3328 * Makefile.in (INFO_FILES): Add auth.
3329
33302009-03-03 Glenn Morris <rgm@gnu.org>
3331
3332 * info/dir: Add Auth-source.
3333
33342009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3335
3336 * Makefile.in (src): Fix last change so the first `cd' doesn't affect
3337 the second.
3338
33392009-02-28 Eli Zaretskii <eliz@gnu.org>
3340
3341 * config.bat: Copy .dbxinit to _dbxinit.
3342
3343 * make-dist (Making links to `info'): Remove .gitignore.
3344
33452009-02-28 Stefan Monnier <monnier@iro.umontreal.ca>
3346
3347 * Makefile.in (lib-src, lisp): Use simpler rule.
3348 (src): Be more specific to avoid recompiling all the .elc files just
3349 because the bootstrap-emacs is missing.
3350
33512009-02-26 Chong Yidong <cyd@stupidchicken.com>
3352
3353 * configure.in: Require librsvg >= 2.11.
3354
33552009-02-23 Adrian Robert <Adrian.B.Robert@gmail.com>
3356
3357 * configure.in (HAVE_XFT, HAVE_FREETYPE, HAVE_LIBOTF)
3358 (HAVE_M17N_FLT): Don't check for these unless HAVE_X11.
3359
33602009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3361
3362 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Drop.
3363
33642009-02-03 Glenn Morris <rgm@gnu.org>
3365
3366 * make-dist: Add some missing files, remove some that are no longer
3367 present.
3368
33692009-02-02 Glenn Morris <rgm@gnu.org>
3370
3371 * make-dist: Add some missing nextstep/ files.
3372
33732009-01-22 Yavor Doganov <yavor@gnu.org> (tiny change)
3374
3375 * configure.in (HAVE_RSVG): Use librsvg under HAVE_NS also. (Bug#616)
3376
33772009-01-22 Dan Nicolaescu <dann@ics.uci.edu>
3378
3379 * configure.in: Add support for m68k-*-netbsd.
3380
33812009-01-14 Juri Linkov <juri@jurta.org>
3382
3383 * .dir-locals.el (change-log-mode): Remove bug-reference-mode.
3384
3385 * .dir-locals.el (change-log-mode): Add bug-reference-url-format
3386 and bug-reference-mode.
3387
33882009-01-11 Juri Linkov <juri@jurta.org>
3389
3390 * INSTALL.CVS: Move configuration explicitly to the first step.
3391
33922009-01-09 Glenn Morris <rgm@gnu.org>
3393
3394 * .dir-locals.el: Don't set indent-tabs-mode.
3395
33962008-12-30 Kenichi Handa <handa@m17n.org>
3397
3398 * configure.in: Define HAVE_OTF_GET_VARIATION_GLYPHS if libotf has
3399 the function OTF_get_variation_glyphs.
3400
34012008-12-30 Jan Djärv <jan.h.d@swipnet.se>
3402
3403 * Makefile.in (install-arch-dep): Remove old directories in
3404 ns_app* before moving new directories there.
3405
34062008-12-27 Dan Nicolaescu <dann@ics.uci.edu>
3407
3408 * .dir-locals.el: Remove non-working entry for pmail.
3409 (fill-column): Fix typo.
3410 (change-log-mode): Add fill column.
3411
34122008-12-26 Eli Zaretskii <eliz@gnu.org>
3413
3414 * config.bat: Produce _dir-locals.el from .dir-locals.el.
3415
34162008-12-23 Dan Nicolaescu <dann@ics.uci.edu>
3417
3418 * make-dist (tempdir): Distribute .dir-locals.el.
3419
3420 * .dir-locals.el: New file.
3421
34222008-12-19 Eli Zaretskii <eliz@gnu.org>
3423
3424 * config.bat (--with-system-malloc): New option; see msdos/INSTALL
3425 for rationale.
3426
34272008-12-13 Glenn Morris <rgm@gnu.org>
3428
3429 * Makefile.in (install-arch-indep): Add new man-pages.
3430 (manext): Remove variable.
3431 (MAN_PAGES): New variable.
3432 (install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
3433 and remove.
3434 (uninstall): Remove desktop file and icons, game scores if empty.
3435
34362008-12-11 Dan Nicolaescu <dann@ics.uci.edu>
3437
3438 * config.guess, config.sub: Updated from master source.
3439
34402008-12-10 Dan Nicolaescu <dann@ics.uci.edu>
3441
3442 * Makefile.in (install-arch-indep): Install ebrowse.1.
3443
34442008-12-09 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
3445
3446 * configure.in: Add Solaris on x86_64.
3447
34482008-12-09 Dan Nicolaescu <dann@ics.uci.edu>
3449
3450 * config.guess, config.sub: Updated from master source.
3451
34522008-12-08 Eli Zaretskii <eliz@gnu.org>
3453
3454 * info/dir: Fix last change.
3455
34562008-12-07 Eli Zaretskii <eliz@gnu.org>
3457
3458 * info/dir: Untabify.
3459
34602008-11-28 Ulrich Mueller <ulm@gentoo.org>
3461
3462 * configure.in: Fix last change.
3463
34642008-11-28 Richard M Stallman <rms@gnu.org>
3465
3466 * configure.in (mips64-*-linux-gnu*, mips64el-*-linux-gnu*):
3467 New configurations.
3468
34692008-11-20 Josh Elsasser <josh@elsasser.org> (tiny change)
3470
3471 * configure.in: Add hppa-*-openbsd* with machine hp800; mistakenly
3472 removed while misclassified as now unsupported hp9000s300. (Bug#1365)
3473
34742008-11-15 Eli Zaretskii <eliz@gnu.org>
3475
3476 * Makefile.in (INFO_FILES): Remove ns-emacs.
3477
3478 * info/dir (NS-Emacs): Remove entry.
3479
34802008-11-08 Eli Zaretskii <eliz@gnu.org>
3481
3482 * INSTALL: Move MS-DOS specific instructions to msdos/INSTALL.
3483
34842008-11-07 Glenn Morris <rgm@gnu.org>
3485
3486 * configure.in (HAVE_LIB64_DIR): Check for crtn.o. (Bug#1287)
3487
34882008-10-31 Eli Zaretskii <eliz@gnu.org>
3489
3490 * config.bat: Tell user to expect one "File not found" message
3491 while the `doc' directory is being configured.
3492
34932008-10-30 Chong Yidong <cyd@stupidchicken.com>
3494
3495 * update-subdirs: Put obsolete directory last.
3496
34972008-10-30 Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
3498
3499 * configure.in: Check fontconfig always.
3500
35012008-10-30 Dan Nicolaescu <dann@ics.uci.edu>
3502
3503 * configure (*-solaris2.[7-9]*): Fix typo.
3504
35052008-10-24 Glenn Morris <rgm@gnu.org>
3506
3507 * configure.in (--without-sync-input, --with-pkg-config-prog):
3508 Help strings start with lower case.
3509 (--with-gnustep-conf): New option.
3510 (GNUSTEP_CONFIG_FILE): Use, instead of fixed /etc/GNUstep/GNUstep.conf.
3511
35122008-10-24 Yavor Doganov <yavor@gnu.org> (tiny change)
3513
3514 * configure.in: Use `.' instead of `source' to source GNUstep.conf.
3515 Exit with an error if `--with-ns' was specified but <AppKit/AppKit.h>
3516 is not found. (Bug#1230)
3517
35182008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
3519
3520 * configure (*-sunos5*, *-solaris*): Use the new file sol2-10.h.
3521 Use sol2-6.h for Solaris 7-9.
3522
35232008-10-18 Ulrich Mueller <ulm@gentoo.org>
3524
3525 * configure.in: Add support for GNU/Linux on SuperH.
3526
35272008-10-12 Andreas Schwab <schwab@suse.de>
3528
3529 * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
3530
1a71cb28 35312008-10-03 Adrian Robert <Adrian.B.Robert@gmail.com>
067d23c9
KY
3532
3533 * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
3534 "X") to avoid confusion.
3535
3536 * configure: Regenerate.
3537
35382008-09-07 Romain Francoise <romain@orebokech.com>
3539
3540 * make-dist: Distribute doc/man/ChangeLog.
3541
35422008-08-28 Chong Yidong <cyd@stupidchicken.com>
3543
3544 * configure.in: Disable XFT and Freetype when without X.
3545
3546 * configure: Regenerate.
3547
35482008-08-24 Dan Nicolaescu <dann@ics.uci.edu>
3549
3550 * configure.in (NS_IMPL_GNUSTEP): Increase pure size.
3551
35522008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
3553
3554 * configure.in (GNUSTEP_SYSTEM_HEADERS): Define
3555 GNUSTEP_SYSTEM_HEADERS and GNUSTEP_SYSTEM_LIBRARIES.
3556
3557 * configure: Regenerate.
3558
35592008-08-20 Eli Zaretskii <eliz@gnu.org>
3560
3561 * configure.in: Move "#define subprocesses" before
3562 config_opsysfile is included.
3563
35642008-08-19 Kenichi Handa <handa@m17n.org>
3565
3566 * INSTALL (Extra fonts): Mention local fonts, don't mention
3567 mule-unicode.
3568
35692008-08-16 Chong Yidong <cyd@stupidchicken.com>
3570
3571 * make-dist: Omit info/.arch-inventory.
3572
35732008-08-16 Jason Rumney <jasonr@gnu.org>
3574
3575 * make-dist (tempdir/nt): Link emacsclient.rc.
3576
35772008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
3578
3579 * configure.in (LIB_SRC_EXTRA_INSTALLABLES): New variable.
3580 AC_SUBST it.
3581 (GNU_OBJC_CFLAGS): Define as a shell variable instead of #define.
3582 AC_SUBST it.
3583 (OTHER_FILES): Always define for HAVE_NS.
3584 (C_SWITCH_X_SYSTEM): Don't define as empty for NS_IMPL_COCOA.
3585 * configure: Regenerate.
3586
35872008-08-07 Andreas Schwab <schwab@suse.de>
3588
3589 * configure.in: Correctly handle
3590 --enable-cocoa-experimental-ctrl-g=no and
3591 --enable-ns-self-contained=yes.
3592
35932008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
3594
3595 * configure.in (NS_HAVE_INTEGER): Rename to NS_HAVE_NSINTEGER.
3596 (C_SWITCH_X_SYSTEM): Drop -MMD -MP under NS_IMPL_GNUstep. Don't
3597 bother undef'ing since won't have desired effect.
3598
35992008-08-06 Andreas Schwab <schwab@suse.de>
3600
3601 * configure.in: Fix quoting.
3602
36032008-08-06 Chong Yidong <cyd@stupidchicken.com>
3604
3605 * configure.in (COCOA_EXPERIMENTAL_CTRL_G): Fix 2008-08-04 change.
3606
36072008-08-05 Ulrich Mueller <ulm@gentoo.org>
3608
3609 * configure.in: Add checks for krb5_error.text and
3610 krb5_error.e_text struct members.
3611
36122008-08-04 Chong Yidong <cyd@stupidchicken.com>
3613
3614 * configure.in: Test for existence of NSInteger.
3615 Suggested by Yavor Doganov.
3616
36172008-08-02 Romain Francoise <romain@orebokech.com>
3618
3619 * Makefile.in (INFO_FILES): Add mairix-el.
3620
36212008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
3622
3623 * make-dist:
3624 * README: Remove VMS support.
3625 * vms: Remove directory.
3626
36272008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
3628
3629 * configure.in (MULTI_KBOARD): Remove.
3630
36312008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
3632
3633 * configure.in (DO_BLOCK_INPUT): Remove, unused.
3634
36352008-07-29 Chong Yidong <cyd@stupidchicken.com>
3636
3637 * info/dir (File): Add mairix-el.
3638
36392008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
3640
3641 Remove support for Mac Carbon.
3642 * mac: Remove directory.
3643 * make-dist:
3644 * configure.in:
3645 * README:
3646 * Makefile.in:
3647 * INSTALL: Remove code for Carbon.
3648 * configure: Regenerate.
3649
36502008-07-26 Adrian Robert <Adrian.B.Robert@gmail.com>
3651
3652 * Makefile.in (install-arch-dep): Fix typo in NS installation commands.
3653
36542008-07-25 Chong Yidong <cyd@stupidchicken.com>
3655
3656 * configure.in: Check for getrlimit.
3657
3658 * configure: Regenerate.
3659
36602008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
3661
3662 * configure.in (LD_SWITCH_SITE): Remove, set the values directly
3663 in src/Makefile.in.
3664 (static): Remove, autoconf would always comment it out anyway.
3665 (subprocesses): Define unconditionally.
3666
36672008-07-19 Yavor Doganov <yavor@gnu.org> (tiny change)
3668
3669 * configure.in: Fix typo in GNUSTEP_MAKEFILES setting for HAVE_NS
3670 compilation under GNUstep.
3671
36722008-07-18 Kenichi Handa <handa@m17n.org>
3673
3674 * INSTALL (Complex Text Layout support libraries): Delete the
3675 paragraph about --enable-font-backend.
3676
36772008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
3678
3679 * configure.in: Print out some info to user for NeXTstep builds.
3680 (ns-app): Remove enable option.
3681 (ns-self-contained): Add enable option.
3682 (ns_appbindir, ns_appresdir, ns_appsrc): Set them based on Cocoa or
3683 GNUstep, use to set install prefixes, and substitute in Makefiles.
3684 * configure: Regenerate.
3685 * Makefile.in (install-arch-dep): Perform post-install cleanup inside
3686 NS app bundle.
3687
36882008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
3689
3690 * configure.in: Extract and substitute GNUSTEP_MAKEFILES.
3691
36922008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
3693
3694 * configure.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
3695 NS_IMPL_COCOA.
3696
36972008-07-16 Glenn Morris <rgm@gnu.org>
3698
3699 * configure.in (with_kerberos, with_kerberos5, with_hesiod):
3700 Fix tests for OPTION_DEFAULT_OFF (variables never unset).
3701 (with_carbon, with_ns): Remove dead code, since OPTION_DEFAULT_OFF means
3702 never unset.
3703
3704 * make-dist: Add nextstep/ directories.
3705 (src, lib-src): Add .m files.
3706
37072008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
3708
3709 * configure.in (freebsd, kfreebsd): Undo part of previous change.
3710 (USER_FULL_NAME): Remove, not used anymore.
3711 * configure: Regenerate.
3712
37132008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3714
3715 Changes and additions for NeXTstep windowing system (Cocoa and
3716 GNUstep) support.
3717
3718 * configure.in: Add support for NS window system: --with-ns (default
3719 off), --enable-ns-app, --enable-cocoa-experimental-ctrl-g; improve add
3720 sparc detection for FreeBSD variants, checks for Cocoa and GNUstep,
3721 disable font backend if window system is "none", not if !HAVE_X11.
3722 * Makefile.in: Add ns-emacs to INFO_FILES, add ns_appdir variable.
3723 (install-arch-dep): Add commands to assemble NS .app package.
3724
37252008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
3726
3727 * configure.in: Use macppc for Darwin. Remove references to
3728 desupported systems.
3729 * configure: Regenerate.
3730
37312008-07-05 Glenn Morris <rgm@gnu.org>
3732
3733 * make-dist (EMACS): Doc fix.
3734 (lisp): There are no *.dat or image files here any more.
3735 (src): There are no *.s files here any more.
3736 (etc/images, etc/images/*): Link to most regular files.
3737
37382008-07-04 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
3739
3740 * configure.in: Remove reference to deleted $USE_FONT_BACKEND.
3741
37422008-07-01 Glenn Morris <rgm@gnu.org>
3743
3744 * configure.in (cpp_undefs): Rename from `undefs', update uses.
3745 Use $srcdir rather than $top_srcdir. Set before calling AC_OUTPUT,
3746 and explicitly export there. (Bug#507.)
3747
37482008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
3749
3750 * configure.in:
3751 * configure: Remove references to obsolete systems.
3752
37532008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
3754
3755 * Makefile.in (Makefile): Use it for its timestamp value as well, and
3756 make it depend on all other */.in files.
3757 (src/Makefile, src/config.stamp, lib-src/Makefile)
3758 (doc/emacs/Makefile, doc/misc/Makefile, doc/lispref/Makefile)
3759 (doc/lispintro/Makefile, oldXMenu/Makefile, lwlib/Makefile)
3760 (leim/Makefile, lisp/Makefile): Remove those overlapping targets.
3761 (leim, ${SUBDIR}, blessmail): Only depend on Makefile now.
3762
3763 * configure.in: Don't create src/config.stamp any more.
3764
37652008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
3766
3767 * Makefile.in (${SUBDIR}): Pass additional BOOTSTRAPEMACS argument.
3768
37692008-06-22 Glenn Morris <rgm@gnu.org>
3770
3771 * Makefile.in (top_bootclean): Remove obsolete references to lock/.
3772
37732008-06-21 Romain Francoise <romain@orebokech.com>
3774
3775 * Makefile.in (INFO_FILES): Add sasl.
3776
37772008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
3778
3779 * Makefile.in (maybe_bootstrap, src/bootstrap-emacs${EXEEXT})
3780 (bootstrap-build): Remove.
3781 (top_bootclean): New var.
3782 (top_distclean, bootstrap-clean): Use it.
3783 (bootstrap): Don't recheck config. Make normally.
3784
37852008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
3786
3787 * Makefile.in (SUBDIR): Include `lisp'.
3788 (lisp): Depend on `src'.
3789 (top_distclean): Don't remove config.status.
3790 (bootstrap-clean): New target.
3791 (maintainer-clean): Use it.
3792 (bootstrap): Use bootstrap-clean. Re-run config.status.
3793 (src/bootstrap-emacs${EXEEXT}): New target.
3794 (bootstrap-build): Use it. Don't use bootstrap-prepare because
3795 src/Makefile now takes care of it.
3796 (bootfast, bootstrap-clean-before, bootstrap-clean-before-fast): Remove.
3797
37982008-06-15 Glenn Morris <rgm@gnu.org>
3799
3800 * info/dir: Add sasl.
3801
38022008-06-09 Alan Mackenzie <acm@muc.de>
3803
3804 * INSTALL.CVS: Clarify why `make bootstrap' sometimes fails.
3805
38062008-06-08 Eric S. Raymond <esr@snark.thyrsus.com>
3807
3808 * INSTALL.CVS: Indicate when "cvs update -d" may be needed.
3809
38102008-06-07 Glenn Morris <rgm@gnu.org>
3811
3812 * Makefile.in (bootstrap-build): Remove mostlyclean, since it seems to
3813 serve no purpose.
3814
38152008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
3816
3817 * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
3818 * configure: Regenerate.
3819
38202008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3821
3822 * update-subdirs: Don't touch subdirs.el if it is unchanged.
3823
38242008-05-14 Kenichi Handa <handa@m17n.org>
3825
3826 * configure: Regenerate.
3827
3828 * configure.in: Don't handle --disable-font-backend. Don't print
3829 a message about a font backend.
3830
38312008-05-09 Glenn Morris <rgm@gnu.org>
3832
3833 * configure.in: Make absence of makeinfo a fatal error only if the info
3834 files don't exist.
3835 * Makefile.in (install-arch-indep, info): Handle MAKEINFO == off.
3836
38372008-05-07 Eli Zaretskii <eliz@gnu.org>
3838
3839 * config.bat: Fix last change: don't use < and > in "rem" lines,
3840 they are interpreted as redirection by DOS shells.
3841
38422008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3843
3844 * configure.in: Check availability of AvailabilityMacros.h
3845 if HAVE_CARBON.
3846
3847 * configure: Regenerate.
3848
38492008-05-03 Glenn Morris <rgm@gnu.org>
3850
3851 * configure.in (x_libraries): Remove standard 64-bit directories -
3852 experimental workaround for minor autoconf bug.
3853
3854 * configure.in (--without-makeinfo): New option. If set,
3855 absence of suitable makeinfo is not a fatal error.
3856 * Makefile.in (MAKEINFO): New, set by configure.
3857 (install-arch-indep): Without makeinfo, ignore any missing manuals.
3858 (info-real): New target.
3859 (info): Without makeinfo, do nothing, else call `info-real'.
3860
38612008-04-23 Dan Nicolaescu <dann@ics.uci.edu>
3862
3863 * configure.in: Remove hpux10.20 from the desupported list.
3864
38652008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
3866
3867 * configure.in: Define USE_LUCID/USE_MOTIF in config.h.
3868
38692008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
3870
3871 * configure.in (SYNC_INPUT): Use OPTION_DEFAULT_ON and AC_DEFINE
3872 rather than change CPPFLAGS.
3873 (HAVE_GTK): Rename to USE_GTK.
3874
38752008-04-16 Yavor Doganov <yavor@gnu.org> (tiny change)
3876
3877 * configure.in: Replace the obsolete macros AC_AIX and
3878 AC_GNU_SOURCE with AC_USE_SYSTEM_EXTENSIONS.
3879
38802008-04-05 Andreas Schwab <schwab@suse.de>
3881
3882 * configure.in: No longer create admin/unidata/Makefile.
3883
38842008-03-28 Andreas Schwab <schwab@suse.de>
3885
3886 * Makefile.in (SUBDIR_MAKEFILES): Add lisp/Makefile.
3887 (lisp/Makefile): New rule.
3888
38892008-03-13 Glenn Morris <rgm@gnu.org>
3890
3891 * configure.in (AC_INIT): Fix version number.
3892 (sync-input): Reword the option, since it's on by default.
3893
38942008-03-11 Jan Djärv <jan.h.d@swipnet.se>
3895
3896 * configure.in: Add --enable-sync-input, default yes.
3897
38982008-03-11 Glenn Morris <rgm@gnu.org>
3899
3900 * Makefile.in (install-etc, mkdir): Handle directory
3901 etc/images/icons/hicolor/*/mimetypes/.
3902
3903 * make-dist: Handle icons/hicolor/scalable directory.
3904
39052008-03-05 Glenn Morris <rgm@gnu.org>
3906
3907 * configure.in: Enable font-backend by default.
3908 (USE_FONT_BACKEND): Set to "no" in absence of X.
3909 (PKG_CONFIG): Don't set multiple times, once is enough.
3910 (HAVE_FREETYPE, HAVE_LIBOTF, HAVE_M17N_FLT): Tweak config.in text.
3911
39122008-03-03 Glenn Morris <rgm@gnu.org>
3913
3914 * Makefile.in (iconsrcdir): New variable.
3915 (install-etc, mkdir): Use $iconsrcdir. Handle the `scalable' icon
3916 directory.
3917
39182008-02-29 Glenn Morris <rgm@gnu.org>
3919
3920 * test/: New directory.
3921
39222008-02-27 Jan Djärv <jan.h.d@swipnet.se>
3923
3924 * configure.in (HAVE_GTK): Print a warning if gtk version is < 2.10.
3925
39262008-02-25 Dan Nicolaescu <dann@ics.uci.edu>
3927
3928 * configure.in: Print an error for systems that we think are obsolete
3929 and are proposed to be removed. Remove some more unused systems.
3930 Add support for powerpc-ibm-aix6*.
3931
39322008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
3933
3934 * configure.in: Remove references to obsolete variables and systems.
3935
39362008-02-21 Glenn Morris <rgm@gnu.org>
3937
3938 * Makefile.in (set_installuser): New.
3939 (install-arch-indep): Use set_installuser to avoid duplicate code.
3940
3941 * README.unicode: Split into admin/notes/unicode,font-backend and
3942 remove.
3943
39442008-02-10 Matthew Luckie <mjl@luckie.org.nz> (tiny change)
3945
3946 * configure.in (arm*-*-freebsd*): Add.
3947
39482008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
3949
3950 * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
3951 dealing with obsolete variables.
3952
39532008-02-08 Glenn Morris <rgm@gnu.org>
3954
3955 * Makefile.in (check-info-dir): New target.
3956
39572008-02-08 Michael Olson <mwolson@gnu.org>
3958
3959 * Makefile.in (INFO_FILES): Add epa.
3960
3961 * info/dir: Add EasyPG Assistant manual to the "Emacs misc
3962 features" section.
3963
39642008-02-06 Glenn Morris <rgm@gnu.org>
3965
3966 * configure.in (--with-gcc): Give an error saying this option has
3967 been removed.
3968 (--with-gtk): Remove this option.
3969
39702008-02-06 Tom Tromey <tromey@redhat.com>
3971
3972 * configure.in (--with-gcc): Remove.
3973 * INSTALL (DETAILED BUILDING AND INSTALLATION): Remove --with-gcc.
3974
39752008-02-05 Ulrich Mueller <ulm@gentoo.org>
3976
3977 * INSTALL: Recommend giflib, not libungif.
3978
39792008-02-05 Tom Tromey <tromey@redhat.com>
3980
3981 * configure.in (--with-dbus): Default to enabled.
3982
39832008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
3984
3985 * INSTALL (Complex Text Layout support libraries): New section.
3986
39872008-02-04 Dan Nicolaescu <dann@ics.uci.edu>
3988
3989 * make-dist: Remove references to files in mac/ that have been
3990 deleted.
3991
39922008-02-02 Thien-Thi Nguyen <ttn@gnuvola.org>
3993
3994 * configure.in: For libotf and m17n-flt checks, set shell vars
3995 HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and
3996 pkg_check_m17n_flt, respectively, for the sake of the summary output.
3997 Reported by Ulrich Mueller.
3998
39992008-02-02 Eli Zaretskii <eliz@gnu.org>
4000
4001 * configure.in: If admin/unidata/UnicodeData.txt is present, copy
4002 admin/unidata/Makefile.in to Makefile.
4003
40042008-02-02 Glenn Morris <rgm@gnu.org>
4005
4006 * configure.in (HAVE_XFT): Ensure it is either "yes" or "no".
4007 (USE_FONT_BACKEND, HAVE_FREETYPE, HAVE_M17N_FLT, HAVE_LIBOTF)
4008 (HAVE_XFT): Add "Does Emacs use..." messages at end.
4009
40102008-02-01 Miles Bader <miles@gnu.org>
4011
4012 * configure.in: Use OPTION_DEFAULT_ON for [freetype], [xft],
4013 [libotf], and [m17n-flt] options.
4014
40152008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
4016
4017 * configure.in: Add EMACS_ARG_N([libotf]...), and
4018 EMACS_ARG_N([m17n-flt]. Set back OLD_CPPFLAGS to CPPFLAGS (not
4019 CFLAGS) in XFT checking part. Don't alter C_SWITCH_X_SITE,
4020 CFLAGS, and LIBS in checking of m17n-flt.
4021
40222008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
4023
4024 * configure.in: Check the availability of m17n-flt library.
4025
40262008-02-01 Kenichi Handa <handa@m17n.org>
4027
4028 * configure.in: Don't define HAVE_LIBOTF if OTF_get_features is
4029 not available.
4030
40312008-02-01 Kenichi Handa <handa@m17n.org>
4032
4033 * configure.in: New args --enable-font-backend, --with-xft,
4034 --with-freetyp. New AC_DEFINEs USE_FONT_BACKEND, HAVE_XFT,
4035 HAVE_FREETYPE, HAVE_LIBOTF. New AC_SUBSTs XFT_LIBS,
4036 FREETYPE_CFLAGS, FREETYPE_LIBS, FONTCONFIG_CFLAGS,
4037 FONTCONFIG_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS.
4038
40392008-02-01 Kenichi Handa <handa@m17n.org>
4040
4041 * make-dist: Include etc/charsets in tarball.
4042
40432008-02-01 Kenichi Handa <handa@m17n.org>
4044
4045 * configure.in: While running cpp on junk.c, include
4046 -DHAVE_UNIDATA in CPPFLAGS if admin/unidata/UnicodeData.txt
4047 exists.
4048
40492008-01-29 Dan Nicolaescu <dann@ics.uci.edu>
4050
4051 * configure.in (xtensa): Match more configurations.
4052
40532008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
4054
4055 * configure.in: Update comment.
4056
40572008-01-26 Glenn Morris <rgm@gnu.org>
4058
4059 * configure.in (--without-gcc): By default, neither off nor on.
4060 (--with-carbon): Tone down rhetoric in help text.
4061
40622008-01-25 Glenn Morris <rgm@gnu.org>
4063
4064 * configure.in: Correct usage of OPTION_DEFAULT_ON,
4065 OPTION_DEFAULT_OFF so that the defaults are as they used to be.
4066 Default `Carbon' to off (it's unsupported).
4067
40682008-01-24 Glenn Morris <rgm@gnu.org>
4069
4070 * configure.in: Standardize dbus-related messages.
4071
40722008-01-23 Michael Olson <mwolson@gnu.org>
4073
4074 * configure.in (pkg-config-prog): Remove initial whitespace.
4075
40762008-01-23 Tom Tromey <tromey@redhat.com>
4077
4078 * configure.in (OPTION_DEFAULT_ON, OPTION_DEFAULT_OFF): New macros.
4079 (EMACS_ARG_Y, EMACS_ARG_N): Remove.
4080 Update all users.
4081
40822008-01-21 Dan Nicolaescu <dann@ics.uci.edu>
4083
4084 * config.guess, config.sub: Updated from master source.
4085
40862008-01-17 Andreas Schwab <schwab@suse.de>
4087
4088 * configure.in (HAVE_LIB64_DIR): Rename from HAVE_X86_64_LIB64_DIR.
4089
40902008-01-17 Glenn Morris <rgm@gnu.org>
4091
4092 * configure.in (HAVE_X86_64_LIB64_DIR): Also set on s390x systems.
4093
40942008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
4095
4096 * configure.in: Remove more references to unsupported systems.
4097
40982008-01-16 Sven Joachim <svenjoac@gmx.de>
4099
4100 * make-dist: Add --lzma.
4101
41022008-01-16 Glenn Morris <rgm@gnu.org>
4103
4104 * Makefile.in (maybe_bootstrap): Remove texinfo message, since
4105 configure checks for this.
4106
41072008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
4108
4109 * configure.in: Remove more references to unsupported systems.
4110
41112008-01-06 Romain Francoise <romain@orebokech.com>
4112
4113 * configure.in: Delete extra semicolons.
4114
41152008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
4116
4117 * configure.in: Remove references to unsupported systems.
4118
41192008-01-05 Romain Francoise <romain@orebokech.com>
4120
4121 * make-dist: Add --bzip2. Update copyright.
4122
41232008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
4124
4125 * configure.in: Remove support for Masscomp.
4126
41272008-01-05 Glenn Morris <rgm@gnu.org>
4128
4129 * Makefile.in (desktopdir, icondir): New variables.
4130 (install-arch-indep): Also depend on `install-etc'.
4131 (install-etc): New target.
4132 (mkdir): Also create the `applications' and `icons' directories.
4133
41342008-01-04 Glenn Morris <rgm@gnu.org>
4135
4136 * make-dist: Update for new etc/images/icons/hicolor directory.
4137
41382007-12-09 Andreas Schwab <schwab@suse.de>
4139
4140 * configure.in: D-Bus is not enabled by default.
4141
41422007-12-06 Jan Djärv <jan.h.d@swipnet.se>
4143
4144 * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous
4145 change.
4146
41472007-12-04 Jan Djärv <jan.h.d@swipnet.se>
4148
4149 * configure.in: Give package name and version to AC_INIT.
4150
41512007-12-03 Magnus Henoch <mange@freemail.hu>
4152
4153 * configure.in: Use PKG_CHECK_MODULES to check for D-Bus.
4154
41552007-12-03 Michael Albinus <michael.albinus@gmx.de>
4156
4157 * configure.in: No need for DBUS_INFO anymore.
4158
4159 * Makefile.in (INFO_FILES): Use dbus unconditionally.
4160
41612007-12-02 Michael Albinus <michael.albinus@gmx.de>
4162
4163 * configure.in: Add D-Bus checks. D-Bus is disabled by default.
4164
4165 * Makefile.in (INFO_FILES): Add dbus.
4166
41672007-12-02 Romain Francoise <romain@orebokech.com>
4168
4169 * make-dist: Fix last change.
4170
41712007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
4172
4173 * configure.in: Add support for gnu-kfreebsd.
4174
41752007-11-28 Glenn Morris <rgm@gnu.org>
4176
4177 * make-dist: Add etc/nxml.
4178
41792007-11-24 Romain Francoise <romain@orebokech.com>
4180
4181 * Makefile.in (INFO_FILES): Add nxml-mode.
4182
41832007-11-23 Romain Francoise <romain@orebokech.com>
4184
4185 * make-dist: Include nXML. Don't try to copy FTP, it was removed on
4186 2007/10/17. Don't special-case alloca.c which is no longer in CVS.
4187
41882007-11-20 Andreas Schwab <schwab@suse.de>
4189
4190 * configure.in: Always include <resolv.h> when checking for res_init.
4191
41922007-11-17 Andreas Schwab <schwab@suse.de>
4193
4194 * update-subdirs: Atomically update subdirs.el.
4195
41962007-11-17 Glenn Morris <rgm@gnu.org>
4197
4198 * Makefile.in (check-declare): New target.
4199
42002007-11-07 Glenn Morris <rgm@gnu.org>
4201
4202 * configure.in: Deprecate Mac Carbon port.
4203
42042007-11-01 Jan Djärv <jan.h.d@swipnet.se>
4205
4206 * configure.in: Remove HAVE_X11R5 check.
4207
42082007-10-31 Glenn Morris <rgm@gnu.org>
4209
4210 * Makefile.in (install-arch-indep): Fallback to $USER and `id -un'
4211 when changing ownership of installed files.
4212
42132007-10-30 Glenn Morris <rgm@gnu.org>
4214
4215 * make-dist: Add new directory etc/gnus.
4216
42172007-10-30 Michael Olson <mwolson@gnu.org>
4218
4219 * Makefile.in (INFO_FILES): Alphabetize. Add remember.
4220
42212007-10-29 Glenn Morris <rgm@gnu.org>
4222
4223 * make-dist: Add new directories etc/images/smilies/grayscale,medium.
4224
42252007-10-23 Glenn Morris <rgm@gnu.org>
4226
4227 * MAINTAINERS: Move to admin/.
4228
42292007-10-17 Chong Yidong <cyd@stupidchicken.com>
4230
4231 * configure.in (HAVE_RES_INIT): Define if res_init() exists.
4232 (HAVE_LIBRESOLV): Also define if we are using res_init().
4233
42342007-10-17 Glenn Morris <rgm@gnu.org>
4235
4236 * FTP: Remove file, since it's just a duplicate of one in etc/.
4237
42382007-10-05 Eli Zaretskii <eliz@gnu.org>
4239
4240 * config.bat: Fix configuring `doc' due to changes in the
4241 directory structure.
4242
42432007-09-16 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
4244
4245 * configure.in: Don't use -lpthread on HP-UX.
4246
42472007-09-16 Glenn Morris <rgm@gnu.org>
4248
4249 * make-dist: File gfdl.1 has been removed.
4250
42512007-09-15 Glenn Morris <rgm@gnu.org>
4252
4253 * configure.in: Fix makeinfo version regexp.
4254
42552007-09-12 Glenn Morris <rgm@gnu.org>
4256
4257 * configure.in (AC_FUNC_ALLOCA): Throw an error if a system
4258 implementation of alloca is not found.
4259
4260 * Makefile.in (SOURCES, unlock, relock): Delete.
4261 (install-arch-indep): Do not exclude the etc/ Makefiles.
4262
42632007-09-09 Juri Linkov <juri@jurta.org>
4264
4265 * make-dist: Remove AUTHORS and CONTRIBUTE (moved to etc).
4266
4267 * README: Add doc/ to documentation directories.
4268
42692007-09-08 Michael Olson <mwolson@gnu.org>
4270
4271 * MAINTAINERS: Add myself for ERC and tq.el.
4272 Update for new doc/ directory layout.
4273
42742007-09-06 Romain Francoise <romain@orebokech.com>
4275
4276 * make-dist: Update for new doc/ directory layout.
4277
42782007-09-06 Glenn Morris <rgm@gnu.org>
4279
4280 * Makefile.in (mansrcdir): New variable.
4281 (SUBDIR_MAKEFILES): Update for new doc/ directory layout.
4282 (man/Makefile, lispref/Makefile, lispintro/Makefile): Rename and
4283 update these targets for new doc/ directory layout.
4284 (doc/misc/Makefile): New target.
4285 (install-arch-indep): Use mansrcdir for new location of manpages.
4286 (mostlyclean, clean, distclean, maintainer-clean, unlock)
4287 (relock, info, dvi): Update targets for new doc/ directory layout.
4288
4289 * configure.in (AC_OUTPUT): Update names of generated Makefiles
4290 for new doc/ directory layout.
4291
42922007-09-02 Andreas Schwab <schwab@suse.de>
4293
4294 * configure.in: Use AS_HELP_STRING throughout.
4295 * configure: Regenerate.
4296
42972007-09-02 Jan Djärv <jan.h.d@swipnet.se>
4298
4299 * configure.in: Require Gtk/Glib 2.6.
4300
43012007-09-02 Thien-Thi Nguyen <ttn@gnuvola.org>
4302
4303 * configure.in (EMACS_ARG_Y, EMACS_ARG_N): New AC_DEFUNs.
4304 Use them throughout in place of AC_ARG_WITH calls.
4305 * configure: Regenerate.
4306
43072007-09-01 Andreas Schwab <schwab@suse.de>
4308
4309 * configure.in: Put quotes around nested macro calls.
4310
43112007-08-31 Ulrich Mueller <ulm@gentoo.org> (tiny change)
4312
4313 * configure.in: Fix typo.
4314 * configure: Regenerate.
4315
43162007-08-30 Glenn Morris <rgm@gnu.org>
4317
4318 * configure.in (AH_BOTTOM): Copy some manual changes made to
4319 src/config.in here so they are not lost when it regenerates.
4320
4321 * README.multi-tty: Move to admin/notes/multi-tty, with some edits.
4322
43232007-08-29 Károly Lőrentey <karoly@lorentey.hu>
4324
4325 * README.multi-tty: New file.
4326
43272007-08-29 Glenn Morris <rgm@gnu.org>
4328
4329 * README: Increase version to 23.0.50.
4330
43312007-08-29 Jan Djärv <jan.h.d@swipnet.se>
4332
4333 * configure.in: New option: --without-xaw3d.
4334
43352007-08-24 Glenn Morris <rgm@gnu.org>
4336
4337 * configure.in: Check for a suitably recent makeinfo.
4338
43392007-08-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
4340
4341 * configure.in (Check for required libraries): Typo.
4342
43432007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4344
4345 * configure.in: Check librsvg2 also for Mac Carbon.
4346
43472007-08-22 Romain Francoise <romain@orebokech.com>
4348
4349 * make-dist: Follow reorganization of files in etc/.
4350
43512007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
4352
4353 * configure.in: Add support for SVG images through librsvg2.
4354
43552007-07-28 Eli Zaretskii <eliz@gnu.org>
4356
4357 * Makefile.in (install-arch-indep): Use "rm -f" for removing DOC,
4358 to avoid an error message if there is no DOC there.
4359
43602007-07-25 Glenn Morris <rgm@gnu.org>
4361
4362 * Relicense all FSF files to GPLv3 or later.
4363
4364 * COPYING, info/COPYING: Switch to GPLv3.
4365
43662007-06-20 Jan Djärv <jan.h.d@swipnet.se>
4367
4368 * configure.in: Complain if X seems to be installed but no
4369 development files were found.
4370
43712007-06-20 Glenn Morris <rgm@gnu.org>
4372
4373 * configure.in: Prefer libgif over libungif.
4374
43752007-06-14 Jan Djärv <jan.h.d@swipnet.se>
4376
4377 * configure.in: Check for all image libraries before exiting.
4378
43792007-06-13 Jan Djärv <jan.h.d@swipnet.se>
4380
4381 * configure.in: Exit with error if image libraries aren't found.
4382
43832007-06-13 Chong Yidong <cyd@stupidchicken.com>
4384
4385 * configure.in: Merge xaw3d and libXaw checks. Check xaw3d even
4386 when compiling without scrollbars.
4387
43882007-06-12 Glenn Morris <rgm@gnu.org>
4389
4390 * configure.in (HAVE_GIF): If -lungif fails, try -lgif.
4391
43922007-06-11 Jan Djärv <jan.h.d@swipnet.se>
4393
4394 * configure.in: Change wording about yes/gtk and lucid/athena
4395 being synonyms.
4396
43972007-06-08 Glenn Morris <rgm@gnu.org>
4398
4399 * configure.in: Make gtk the default toolkit.
4400
44012007-06-07 Glenn Morris <rgm@gnu.org>
4402
4403 * configure.in (NON_GNU_CPP): On Solaris, set using a proper check
4404 for a Sun C compiler.
4405
4406 * Makefile.in (install-arch-indep): Install only the DOC- file
4407 specific to the build, if possible, rather than DOC-*.
4408
44092007-06-02 Chong Yidong <cyd@stupidchicken.com>
4410
4411 * Version 22.1 released.
4412
44132007-05-25 Chong Yidong <cyd@stupidchicken.com>
4414
4415 * mkinstalldirs: Sync to version in automake CVS.
4416
44172007-05-22 Andreas Schwab <schwab@suse.de>
4418
4419 * configure.in: Prefer build_alias over host when host_alias is not set.
4420 * configure: Regenerate.
4421
44222007-05-20 Andreas Schwab <schwab@suse.de>
4423
4424 * configure.in: Remove empty AC_SUBST.
4425 * configure: Regenerate.
4426
44272007-05-20 Nick Roberts <nickrob@snap.net.nz>
4428
4429 * configure.in: Use HAVE_GPM instead of HAVE_GPM_H and implement
4430 it like others.
4431 * configure: Regenerate.
4432
44332007-05-20 Nick Roberts <nickrob@snap.net.nz>
4434
4435 * configure.in (AC_CHECK_HEADERS): Add gpm.h.
4436 (AC_CHECK_LIB): Add -lgpm.
4437 * configure: Regenerate.
4438
44392007-05-03 Glenn Morris <rgm@gnu.org>
4440
4441 * configure: Tweak message about the absence of shell functions.
4442
44432007-04-27 Andreas Schwab <schwab@suse.de>
4444
4445 * Makefile.in (config.status): Depend on ${srcdir}/lisp/version.el.
4446
44472007-04-26 Glenn Morris <rgm@gnu.org>
4448
4449 * README: Increase version to 22.1.50.
4450
44512007-04-24 Juanma Barranquero <lekktu@gmail.com>
4452
4453 * INSTALL (DETAILED BUILDING AND INSTALLATION): Fix typo.
4454
44552007-04-19 Glenn Morris <rgm@gnu.org>
4456
4457 * configure.in: Signal error if Xaw libs are missing in a Lucid build.
4458
44592007-04-18 Glenn Morris <rgm@gnu.org>
4460
4461 * INSTALL: Mention CPP.
4462
44632007-04-15 Glenn Morris <rgm@gnu.org>
4464
4465 * FTP: Replace with a pointer to the web version.
4466
44672007-04-13 Glenn Morris <rgm@gnu.org>
4468
4469 * INSTALL: In lib-src, timer, wakeup, yow are removed.
4470
44712007-04-04 Glenn Morris <rgm@gnu.org>
4472
4473 * configure.in (NON_GNU_CPP): Use associated preprocessor when
4474 compiling with Sun Studio on Solaris.
4475
44762007-03-23 Glenn Morris <rgm@gnu.org>
4477
4478 * configure.in: Restore support for hp800 (removed 2007-01-27)
4479 following clarification of legal status.
4480
44812007-03-22 Joe Buehler <jbuehler@spirentcom.com> (tiny change)
4482
4483 * configure.in: Add support for AIX4.3 on IBM RS6000.
4484
4485 * configure: Regenerate.
4486
44872007-03-20 Richard Stallman <rms@gnu.org>
4488
4489 * configure.in: Fix previous change.
4490
44912007-03-19 Deanna Phillips <deanna@sixbit.org> (tiny change)
4492
4493 * configure.in (arm-*-openbsd*, hppa-*-openbsd*)
4494 (m88k-*-openbsd*, mips64-*-openbsd*, sh-*-openbsd*): Added.
4495 (ns32k-*-openbsd*, ns32k-*-openbsd*): Deleted.
4496
44972007-03-19 Chong Yidong <cyd@stupidchicken.com>
4498
4499 * configure.in: Don't define KERBEROS, KERBEROS5, or HESIOD if the
4500 user specifies "without".
4501
4502 * configure: Regenerate.
4503
45042007-03-18 Jan Djärv <jan.h.d@swipnet.se>
4505
4506 * configure.in: Warning for Gtk+ and Cygwin added.
4507 (HAVE_XFT): OLD_CFLAGS changed to OLD_CPPFLAGS.
4508
45092007-02-27 Glenn Morris <rgm@gnu.org>
4510
4511 * make-dist (oldXMenu): Remove Imakefile.
4512 (etc/images): Add README.
4513
45142007-02-25 Dan Nicolaescu <dann@ics.uci.edu>
4515
4516 * configure.in (xtensa-*-linux-gnu*): New configuration.
4517
4518 * configure: Regenerate.
4519
45202007-02-22 Dan Nicolaescu <dann@ics.uci.edu>
4521
4522 * config.guess, config.sub: Updated from master source.
4523
45242007-01-31 Sascha Wilde <wilde@sha-bang.de> (tiny change)
4525
4526 * configure.in (PKG_CHECK_MODULES): Change ///* to / in cflags and libs.
4527
45282007-01-29 Chong Yidong <cyd@stupidchicken.com>
4529
4530 * configure.in: Restore support for hp800's not running HP-UX.
4531
4532 * configure: Regenerate.
4533
45342007-01-27 Chong Yidong <cyd@stupidchicken.com>
4535
4536 * configure.in: Remove support for hp800 and sr2k machine types.
4537
4538 * configure: Regenerate.
4539
45402007-01-26 Jan Djärv <jan.h.d@swipnet.se>
4541
4542 * configure.in: Add check for libXft.
4543
45442007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
4545
4546 * INSTALL: Info files moved to share/info.
4547
45482007-01-02 Stephen C. Gilardi <scgilardi@gmail.com> (tiny change)
4549
4550 * configure.in: Detect and use fink-installed in intel-based Mac
4551 builds; change Apple Darwin section to support both PowerPC and
4552 Intel-based Macs.
4553
45542006-12-26 Andreas Schwab <schwab@suse.de>
4555
4556 * Makefile.in (datarootdir): Define.
4557
45582006-12-24 Richard Stallman <rms@gnu.org>
4559
4560 * configure.in: Require Autoconf 2.61.
4561
45622006-12-22 Mark Davies <mark@mcs.vuw.ac.nz>
4563
4564 * configure.in: Add support for NetBSD on x86-64, hp800 and sh3el.
4565 Remove redundant entry for powerpc-apple-netbsd.
4566
4567 * configure: Regenerate.
4568
45692006-12-22 Chong Yidong <cyd@stupidchicken.com>
4570
4571 * configure: Regenerate with autoconf 2.61.
4572
45732006-12-20 Jan Djärv <jan.h.d@swipnet.se>
4574
4575 * configure.in: Detect alsa/asoundlib.h also.
4576 * configure: Regenerate.
4577
45782006-12-19 Jan Djärv <jan.h.d@swipnet.se>
4579
4580 * configure.in: Check if GTK+ compiles at all.
4581
45822006-12-10 Andreas Schwab <schwab@suse.de>
4583
4584 * configure.in: Remove check for struct timezone, its result is
4585 never used.
4586
45872006-12-08 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
4588
4589 * configure.in: Add support for Solaris 10 on x86-64.
4590
45912006-12-08 Jan Djärv <jan.h.d@swipnet.se>
4592
4593 * INSTALL (DETAILED BUILDING AND INSTALLATION): Document usage
4594 of PKG_CONFIG_PATH.
4595
45962006-12-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4597
4598 * configure.in (HAVE_SYNC): New test.
4599
46002006-12-03 Glenn Morris <rgm@gnu.org>
4601
4602 * Makefile.in: Fix Copyright format.
4603
4604 * configure.in (AH_TOP): Add missing Copyright year.
4605
4606 * update-subdirs: Add missing Copyright years.
4607
46082006-11-27 Chris Moore <christopher.ian.moore@gmail.com>
4609
4610 * Makefile.in: Touch only the parts of the share/emacs directory
4611 specific to this version.
4612
46132006-11-26 Chong Yidong <cyd@stupidchicken.com>
4614
4615 * configure.in (HAVE_X86_64_LIB64_DIR): New test.
4616
46172006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4618
4619 * configure.in (HAVE_CANCELMENUTRACKING): Remove test.
4620
46212006-11-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4622
4623 * configure.in: Prefer X11 to Carbon only when some X-specific
4624 option is specified (Thanks to Jan Djärv and Andreas Schwab).
4625
46262006-11-04 Romain Francoise <romain@orebokech.com>
4627
4628 * Makefile.in (bootstrap-clean-before): Fix typo.
4629 Use new target `bootstrap-clean' in the leim subdirectory.
4630
46312006-11-03 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4632
4633 * configure.in: Enable sparc64/ia64/powerpc FreeBSD builds.
4634
46352006-10-30 Chong Yidong <cyd@stupidchicken.com>
4636
4637 * make-dist: Add makefile.w32-in to the man, lispref and lispintro
4638 directories.
4639
46402006-10-29 Jeramey Crawford <jeramey@jeramey.com>
4641
4642 * configure.in: Enable x86-64 OpenBSD compilation.
4643
46442006-10-28 Glenn Morris <rgm@gnu.org>
4645
4646 * AUTHORS: Add cal-html.el author.
4647
46482006-10-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4649
4650 * make-dist: Make links to mac/make-package and
4651 mac/Emacs.app/Contents/Resources/Emacs.icns.
4652
46532006-10-27 Chong Yidong <cyd@stupidchicken.com>
4654
4655 * README: Bump version number to 22.0.90.
4656
46572006-10-23 Andreas Schwab <schwab@suse.de>
4658
4659 * configure.in: Make sure x_default_search_path is always set even
4660 when x_libraries is empty, and look in .../share as well for each
4661 library directory.
4662
46632006-09-28 Kenichi Handa <handa@m17n.org>
4664
4665 * configure.in (locallisppath): Don't include leim dir.
4666 (lisppath): Include leim dir.
4667
46682006-09-15 Jay Belanger <belanger@truman.edu>
4669
4670 * COPYING: Replace "Library Public License" by "Lesser Public
4671 License" throughout.
4672
46732006-09-11 Paul Eggert <eggert@cs.ucla.edu>
4674
4675 * make-dist (EMACS): Exit and fail if the EMACS environment
4676 variable is set to something other than an absolute file name.
4677
46782006-08-16 Andreas Schwab <schwab@suse.de>
4679
4680 * configure.in (PKG_CHECK_MODULES): Use AS_MESSAGE_LOG_FD instead
4681 of hardcoding it.
4682
46832006-08-16 Richard Stallman <rms@gnu.org>
4684
4685 * INSTALL.CVS: Clean up wording.
4686
46872006-07-14 Eli Zaretskii <eliz@gnu.org>
4688
4689 * configure.in (PKG_CHECK_MODULES): Redirect the output of
4690 $PKG_CONFIG --exists "$2" to config.log.
4691 * configure: Regenerate.
4692
1a71cb28 46932006-07-09 Richard Stallman <rms@gnu.org>
067d23c9
KY
4694
4695 * INSTALL (DETAILED BUILDING AND INSTALLATION): Minor corrections.
4696
46972006-07-09 Kim F. Storm <storm@cua.dk>
4698
4699 * CONTRIBUTE: Use outline format.
4700 Add section on copyright years (from admin/notes/years).
4701
47022006-07-08 Eli Zaretskii <eliz@gnu.org>
4703
4704 * configure.in (PKG_CHECK_MODULES): Redirect stderr of pkg-config
4705 to /dev/null, since we don't need the error message, just the
4706 exit status.
4707
47082006-07-07 Eli Zaretskii <eliz@gnu.org>
4709
4710 * CONTRIBUTE: Slight formatting changes and typo fixes.
4711 Add description of NEWS markings.
4712
47132006-07-07 Kim F. Storm <storm@cua.dk>
4714
4715 * CONTRIBUTE: Mention INSTALL.CVS.
4716
47172006-07-05 Romain Francoise <romain@orebokech.com>
4718
4719 * make-dist (top-level): Add CONTRIBUTE.
4720
47212006-07-04 Richard Stallman <rms@gnu.org>
4722
4723 * CONTRIBUTE: Much rewrite.
4724
47252006-07-04 Nick Roberts <nickrob@snap.net.nz>
4726
4727 * CONTRIBUTE: New file.
4728
47292006-06-24 Eli Zaretskii <eliz@gnu.org>
4730
4731 * INSTALL: Mention www.nongnu.org pages that list free Unicode fonts.
4732
47332006-05-18 Jan Djärv <jan.h.d@swipnet.se>
4734
4735 * configure.in: Add check for ALSA.
4736
47372006-05-06 Eli Zaretskii <eliz@gnu.org>
4738
4739 * Makefile.in (INFO_FILES): Remove emacs-xtra.
4740
4741 * info/dir: Remove the Emacs-Xtra entry.
4742
47432006-04-20 Ramprasad B <ramprasad_i82@yahoo.com>
4744
4745 Update copyright year(s) in many files.
4746
47472006-04-01 Eli Zaretskii <eliz@gnu.org>
4748
4749 * configure: Regenerated.
4750
47512006-04-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4752
4753 * configure.in (HAVE_XAW3D): Disable Xaw3d check if
4754 --without-toolkit-scroll-bars was specified.
4755
47562006-04-01 Christoph Bauer <Christoph.Bauer@lms-gmbh.de> (tiny change)
4757
4758 * configure.in (hppa*-hp-hpux1[1-9]*): Add -D_INCLUDE__STDC_A1_SOURCE
4759 to CFLAGS. Update Copyright years written to src/config.in.
4760
47612006-03-18 Claudio Fontana <claudio@gnu.org>
4762
4763 * Makefile.in (INFO_FILES): New variable, contains all Info file names.
4764 (install-arch-indep, uninstall): Use $(INFO_FILES) to specify files
4765 to be installed/uninstalled.
4766 (uninstall): Invoke "$(INSTALL_INFO) --remove" to remove references
4767 to Info files installed by Emacs.
4768
47692006-03-03 Claudio Fontana <claudio@gnu.org>
4770
4771 * Makefile.in (install, uninstall): Add DESTDIR variable to
4772 support staged installations.
4773
47742006-02-14 Richard M. Stallman <rms@gnu.org>
4775
4776 * configure.in (s390x-*-linux-gnu*): New configuration.
4777
47782006-01-31 Jan Djärv <jan.h.d@swipnet.se>
4779
4780 * configure.in: Require GTK 2.4 or newer.
4781
47822006-01-29 Michael Olson <mwolson@gnu.org>
4783
4784 * Makefile.in (install-arch-indep, uninstall): Add ERC.
4785 * info/dir (ERC): New entry.
4786
47872006-01-29 Eli Zaretskii <eliz@gnu.org>
4788
4789 * info/dir: Fix last change.
4790
47912006-01-28 Luc Teirlinck <teirllm@auburn.edu>
4792
4793 * Makefile.in (install-arch-indep, uninstall): Add rcirc.
4794
47952006-01-27 Eli Zaretskii <eliz@gnu.org>
4796
4797 * info/dir: Untabify the whole file.
4798 (Rcirc): New entry.
4799
48002006-01-12 Andreas Schwab <schwab@suse.de>
4801
4802 * configure.in: Move AC_AIX and AC_GNU_SOURCE before first compile
4803 check.
4804
48052006-01-02 Chong Yidong <cyd@stupidchicken.com>
4806
4807 * configure.in: Use -Wno-pointer-sign if available.
4808
48092005-12-29 Andreas Schwab <schwab@suse.de>
4810
4811 * config.guess, config.sub: Updated from master source.
4812
48132005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
4814
4815 * configure.in: Use amdx86-64 for freebsd on x86_64.
4816
48172005-11-22 Romain Francoise <romain@orebokech.com>
4818
4819 * make-dist: Add etc/images/icons.
4820
48212005-11-03 Andreas Schwab <schwab@suse.de>
4822
4823 * configure.in: Use GZIP_PROG instead of GZIP.
4824
4825 * Makefile.in (GZIP_PROG): Renamed from GZIP.
4826 (install-arch-indep): Adjust.
4827
48282005-11-01 Andreas Schwab <schwab@suse.de>
4829
4830 * Makefile.in (bootstrap): Fix dependencies for parallel build.
4831 (bootfast): Likewise.
4832
48332005-11-01 Romain Francoise <romain@orebokech.com>
4834
4835 * configure.in: Check for gzip.
4836
4837 * Makefile.in (install): Compress source files.
4838
48392005-10-24 Steven Tamm <steventamm@mac.com>
4840
4841 * configure.in: Fix darwin386 configuration issue.
4842
48432005-10-22 Eli Zaretskii <eliz@gnu.org>
4844
4845 * INSTALL.CVS: Add mh-autoloads to the partial rebuild procedure.
4846
48472005-10-17 Bill Wohler <wohler@newt.com>
4848
4849 * make-dist: Create and populate etc/images/low-color.
4850
48512005-10-15 Bill Wohler <wohler@newt.com>
4852
4853 * make-dist: Create and populate etc/images/gud.
4854
48552005-10-08 Richard M. Stallman <rms@gnu.org>
4856
4857 * make-dist (tempparent): Don't check for 14-char file name limit.
4858
48592005-10-07 Romain Francoise <romain@orebokech.com>
4860
4861 * make-dist: Add etc/images/ezimage and etc/images/mail
4862 directories. Install images in etc/images.
4863
48642005-10-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4865
4866 * configure.in: Prefer Carbon if --enable-carbon-app or
4867 --with-carbon is explicitly specified even when X11 is detected.
4868
48692005-09-15 Ulf Jasper <ulf.jasper@web.de>
4870
4871 * Makefile.in (install-arch-indep, uninstall):
4872 Handle newsticker manual.
4873 (info): Add - to commands.
4874
48752005-09-10 Giuseppe Scrivano <gscrivano@gmail.com>
4876
4877 Remove the MAXPATHLEN limitations:
4878
4879 * configure.in (AC_CHECK_FUNCS): Check for get_current_dir_name.
4880
48812005-09-09 Eli Zaretskii <eliz@gnu.org>
4882
4883 * configure.in <lynxsos*>: Support for LynxOS on PPC.
4884 * configure: Regenerate.
4885
48862005-09-05 Paul Eggert <eggert@cs.ucla.edu>
4887
4888 * config.guess, config.sub: Updated from master source.
4889
48902005-08-03 Juanma Barranquero <lekktu@gmail.com>
4891
4892 * .cvsignore: Add `lock'.
4893
48942005-07-28 Juanma Barranquero <lekktu@gmail.com>
4895
4896 * .cvsignore: Add `data' and `site-lisp' (for in-place installs).
4897
48982005-07-26 Paul Eggert <eggert@cs.ucla.edu>
4899
4900 Merge gnulib getopt implementation into Emacs.
4901
4902 * Makefile.in (AUTOCONF_INPUTS): New macro.
4903 ($(srcdir)/configure, $(srcdir)/src/stamp-h.in): Depend on it,
4904 so that these files also depend on m4/getopt.m4.
4905 * configure.in: Configure getopt by including m4/getopt.m4,
4906 and configuring a getopt replacement if necessary.
4907 * make-dist: Add m4 subdirectory. Unlink lib-src/getopt.h.
4908 * m4/getopt.m4: New file.
4909
49102005-07-06 Lute Kamstra <lute@gnu.org>
4911
4912 * configure.in: Fix capitalization.
4913
49142005-07-04 Lute Kamstra <lute@gnu.org>
4915
4916 Update FSF's address in GPL notices.
4917
49182005-06-19 Jérôme Marant <jerome@marant.org>
4919
4920 * Makefile.in (epaths-force): Protect both lisppath and
4921 buildlisppath from whitespace.
4922
49232005-06-08 Steven Tamm <steventamm@mac.com>
4924
090bd7cb 4925 * configure.in: Support Darwin/MacOSX on Intel.
067d23c9
KY
4926
49272005-06-06 Jan Djärv <jan.h.d@swipnet.se>
4928
4929 * configure.in (HAVE_CANCELMENUTRACKING): New test.
4930
1a71cb28 49312005-05-19 Jérôme Marant <jmarant@marant.org>
067d23c9
KY
4932
4933 * configure.in: Add --enable-locallisppath.
4934
49352005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4936
4937 * configure.in: Don't check HAVE_CARBON if HAVE_X11 is set to yes.
4938 Check HAVE_CARBON before USE_TOOLKIT_SCROLL_BARS. Define
4939 USE_TOOLKIT_SCROLL_BARS by default if HAVE_CARBON is set to yes.
4940
49412005-05-07 Jérôme Marant <jerome@marant.org>
4942
4943 * make-dist: Remove references to makefile.nt and makefile.def.
4944 Include widgets and images subdirectories of etc. Do not exclude
4945 ldefs-boot.el.
4946
49472005-04-23 Andreas Schwab <schwab@suse.de>
4948
4949 * configure.in: Remove duplicate match for powerpc configuration.
4950
49512005-04-20 Thien-Thi Nguyen <ttn@gnu.org>
4952
4953 * configure.in: Check for <pwd.h>.
4954
49552005-04-14 Lute Kamstra <lute@gnu.org>
4956
4957 * make-dist: Distribute all ChangeLog files in lisp/.
4958 Don't distribute ldefs-boot.el.
4959 lisp/makefile.nt no longer exists.
4960
49612005-04-13 Lute Kamstra <lute@gnu.org>
4962
4963 * make-dist: Don't use DONTCOMPILE from lisp/Makefile.in; check
4964 for "no-byte-compile: t" in the file instead.
4965
49662005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
4967
4968 * configure.in <Motif>: Don't let a special LessTif/Motif1.2 install
4969 shadow the main Lesstif/Motif-2.1 libs and includes.
4970
49712005-03-10 Jan Djärv <jan.h.d@swipnet.se>
4972
4973 * configure.in: Only add XASSERTS to cppflags.
4974
49752005-03-04 Jan Djärv <jan.h.d@swipnet.se>
4976
4977 * configure.in: Added --enable-asserts.
4978
49792005-02-09 Kim F. Storm <storm@cua.dk>
4980
4981 Change release version from 21.4 to 22.1 throughout.
4982 Change development version from 21.3.50 to 22.0.50.
4983
49842005-01-19 Steven Tamm <steventamm@mac.com>
4985
4986 * configure.in: Check for <sys/utsname.h>.
4987
49882004-12-11 Kim F. Storm <storm@cua.dk>
4989
4990 * Makefile.in (info): Undo 2004-12-05 change.
4991
49922004-12-08 Luc Teirlinck <teirllm@auburn.edu>
4993
4994 * info/dir (File): Add URL and Org Mode manuals.
4995 * Makefile.in (install-arch-indep, uninstall): Add url and org
4996 manuals.
4997
49982004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
4999
5000 * configure.in (INLINE, RE_TRANSLATE_P): Move patches mistakenly
5001 committed to src/config.in.
5002
50032004-12-07 Jan Djärv <jan.h.d@swipnet.se>
5004
5005 * configure.in: If $HAVE_GTK_FILE_CHOOSER = yes, check for
5006 pthreads and define HAVE_GTK_AND_PTHREAD.
5007
50082004-12-05 Richard M. Stallman <rms@gnu.org>
5009
5010 * Makefile.in (info): Ignore errors building info files.
5011
50122004-11-27 Eli Zaretskii <eliz@gnu.org>
5013
5014 * config.bat: If 8-byte alignment is not supported, define
5015 NO_DECL_ALIGN in src/config.h, instead of trivially defining
5016 DECL_ALIGN. Protect & with "" because & is special for cmd.exe;
5017 filter through Sed to remove the quotes.
5018
50192004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
5020
5021 * info/.cvsignore: Ignore everything. It's OK since .cvsignore does
5022 not apply to files explicitly `cvs add'ed.
5023
50242004-11-12 Eli Zaretskii <eliz@gnu.org>
5025
5026 * config.bat: Don't require djecho.exe for the v1.x build.
5027 Add a test for DECL_ALIGN support, and add a trivial definition to
5028 src/config.h if 8-byte alignment is not supported.
5029
50302004-11-08 Kim F. Storm <storm@cua.dk>
5031
5032 * Makefile.in (bootstrap, bootstrap-clean-before): Remove .elc
5033 files before building.
5034 (bootfast, bootstrap-clean-before-fast): New targets, like
5035 bootstrap but don't remove .elc files.
5036
50372004-11-06 Lars Brinkhoff <lars@nocrew.org>
5038
5039 * configure.in: Add check for getrusage.
5040
50412004-11-02 Jan Djärv <jan.h.d@swipnet.se>
5042
5043 * configure.in (HAVE_GTK_FILE_CHOOSER, $HAVE_GTK_FILE_SELECTION):
5044 New tests for new and old GTK file dialogs.
5045 (HAVE_GTK): Only set with_toolkit_scroll_bars if not explicitly set
5046 to no.
5047
50482004-10-20 Jan Djärv <jan.h.d@swipnet.se>
5049
5050 * configure.in (HAVE_PERSONALITY_LINUX32): New test if PER_LINUX32
5051 can be set. Remove SETARCH test.
5052
50532004-10-08 Steven Tamm <steventamm@mac.com>
5054
5055 * configure.in (HAVE_MALLOC_MALLOC_H): Test for malloc/malloc.h
5056
50572004-10-06 Jan Djärv <jan.h.d@swipnet.se>
5058
5059 * configure.in (HAVE_RANDOM_HEAPSTART): Change AC_MSG_ERROR to
5060 AC_MSG_WARN. Move output of warning message to end of configure run.
5061
50622004-10-05 Jan Djärv <jan.h.d@swipnet.se>
5063
5064 * configure.in (HAVE_RANDOM_HEAPSTART): Rename HAVE_EXECSHIELD.
5065 Run test to see if heap start address is random.
5066
50672004-09-29 Miles Bader <miles@gnu.org>
5068
5069 * configure.in (HAVE_EXECSHIELD): Test correct env variable to see
5070 if setarch is present.
5071
50722004-09-25 Jan Djärv <jan.h.d@swipnet.se>
5073
5074 * configure.in (HAVE_EXECSHIELD): Only define on x86.
5075
50762004-09-24 Jan Djärv <jan.h.d@swipnet.se>
5077
5078 * configure.in: Check for exec-shield.
5079
1a71cb28
GM
50802004-09-04 Reiner Steib <Reiner.Steib@gmx.de>
5081
5082 * Makefile.in (install-arch-indep): Add pgg and sieve.
5083
5084 * info/.cvsignore: Added pgg and sieve.
5085
067d23c9
KY
50862004-08-06 Andreas Schwab <schwab@suse.de>
5087
5088 * Makefile.in (install-arch-indep, uninstall): Add flymake.
5089
50902004-07-31 Eli Zaretskii <eliz@gnu.org>
5091
5092 * config.bat: Update URLs in the comments.
5093
067d23c9
KY
50942004-07-05 Andreas Schwab <schwab@suse.de>
5095
5096 * Makefile.in (install-arch-indep): Remove .arch-inventory files.
5097
50982004-06-21 Kenichi Handa <handa@m17n.org>
5099
5100 * make-dist: Link leim-ext.el into tempdir.
5101
51022004-06-15 Luc Teirlinck <teirllm@auburn.edu>
5103
5104 * info/dir (File): Add emacs-xtra.
5105 * Makefile.in (install-arch-indep, uninstall): Add emacs-xtra.
5106
51072004-06-12 Juri Linkov <juri@jurta.org>
5108
5109 * info/dir: Move menu help lines from `* Menu:' to file header.
5110 Describe the purpose of a red *.
5111
51122004-05-04 Dave Love <fx@gnu.org>
5113
5114 * configure.in: Don't use `extrasub'.
5115
51162004-04-29 Dave Love <fx@gnu.org>
5117
5118 * configure.in: Don't forget to quote args to `test'.
5119
51202004-04-24 Thien-Thi Nguyen <ttn@gnu.org>
5121
5122 * autogen.sh: Update filename in "please read" message.
5123
51242004-04-17 Richard M. Stallman <rms@gnu.org>
5125
5126 * INSTALL: Move the info about site-lisp dirs,
5127 and say uninstalled Emacs looks there too.
5128
51292004-04-04 Eli Zaretskii <eliz@gnu.org>
5130
5131 * config.bat (lib-src): Recognize comment lines in Makefile.in
5132 that have a TAB after the #, to avoid errors in preprocessing with
5133 GCC 3.3.3.
5134
51352004-03-31 Luc Teirlinck <teirllm@auburn.edu>
5136
5137 * Makefile.in: Mention in comment that `make maintainer-clean'
5138 deletes .elc files.
5139
51402004-03-22 Stefan Monnier <monnier@iro.umontreal.ca>
5141
5142 * update-subdirs: Add local variables to prevent byte-compiling.
5143
51442004-03-21 Dave Love <fx@gnu.org>
5145
5146 * configure.in: Fix previous change.
5147
51482004-03-18 Dave Love <fx@gnu.org>
5149
5150 * configure.in: Add -znocombreloc to LDFLAGS if compiler supports it.
5151
51522004-03-15 Luc Teirlinck <teirllm@auburn.edu>
5153
5154 * info/dir (File): Add SMTP and SES.
5155
51562004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5157
5158 * Makefile.in (maintainer-clean): Clean in the lisp dir as well.
5159 (bootstrap): Use the new bootstrap-prepare target in lisp.
5160
51612004-02-18 Kim F. Storm <storm@cua.dk>
5162
5163 * INSTALL.CVS: Add info about ssh/cvs related problems and work-around.
5164
51652004-02-16 Eli Zaretskii <eliz@gnu.org>
5166
5167 * make-dist: Don't link index.*perm and permute-index into tempdir.
5168
51692004-02-14 Jonathan Yavner <jyavner@member.fsf.org>
5170
5171 * AUTHORS (JonathanYavner): Rename testcover-*.el to tcover-*.el
5172 to match previous changes by Eli Zaretskii.
5173
51742004-02-09 Luc Teirlinck <teirllm@auburn.edu>
5175
5176 * Makefile.in: Set CDPATH to an empty string.
5177
51782004-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
5179
5180 * configure.in <darwin>: Use fink packages if available.
5181
51822004-01-25 Jérôme Marant <jmarant@free.fr> (tiny change)
5183
5184 * make-dist (lispref): Do include lispref/index.texi.
5185
51862004-01-06 Eric Hanchrow <offby1@blarg.net>
5187
5188 * make-dist (tempdir): Include cursors in nt/icons.
5189
51902003-12-30 Eli Zaretskii <eliz@gnu.org>
5191
5192 * INSTALL.CVS: Renamed from INSTALL-CVS to avoid file-name
5193 clashes with install-sh on 8+3 filesystems.
5194
1a71cb28 51952003-12-24 Miles Bader <miles@gnu.org>
067d23c9
KY
5196
5197 * .cvsignore: Add .arch-inventory.
5198
51992003-12-24 Andreas Schwab <schwab@suse.de>
5200
5201 * configure.in: Check for <sys/socket.h>. Include it before
5202 including <net/if.h>. Move check for <net/if.h> before its use.
5203
52042003-12-24 Jan Djärv <jan.h.d@swipnet.se>
5205
5206 * Makefile.in (install-arch-dep): Don't let cd output go into
5207 pipe for carbon_appdir.
5208
52092003-12-24 Andreas Schwab <schwab@suse.de>
5210
5211 * configure.in (PKG_CHECK_MODULES): Fix quoting.
5212
52132003-12-01 Andreas Schwab <schwab@suse.de>
5214
5215 * configure.in (powerpc-apple-darwin*): Use ${CC-cc} instead of
5216 hardcoding gcc.
5217
52182003-11-16 Jan Djärv <jan.h.d@swipnet.se>
5219
5220 * configure.in (HAVE_GTK_MULTIDISPLAY): Check if GTK can handle
5221 multiple displays.
5222 Wrong number of args to AC_CHECK_LIB for HAVE_X_SM test corrected.
5223
52242003-09-23 Dave Love <fx@gnu.org>
5225
5226 * configure.in: Check members of struct ifreq.
5227
52282003-09-14 Kim F. Storm <storm@cua.dk>
5229
5230 * configure.in: Add checks for sys/ioctl.h and net/if.h.
5231
52322003-09-12 Luc Teirlinck <teirllm@mail.auburn.edu>
5233
5234 * Makefile.in (install-arch-indep, uninstall): Add SES manual.
5235
52362003-08-18 Lute Kamstra <lute@gnu.org>
5237
5238 * configure.in: Revert the change of 2003-07-29 as GTK+ 2.2 is not
5239 required anymore.
5240
52412003-08-07 Andrew Choi <akochoi@shaw.ca>
5242
5243 * configure.in [powerpc-apple-darwin*]: Use the -no-cpp-precomp
5244 option instead of -traditional-cpp for CPP.
5245
52462003-07-29 Richard M. Stallman <rms@gnu.org>
5247
5248 * configure.in (HAVE_XIM): Define if XIM is available.
5249
52502003-07-29 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
5251
5252 * configure.in: The function gtk_window_set_icon_from_file was
5253 introduced in GTK+ 2.2, so check for that release.
5254
52552003-07-23 Andreas Schwab <schwab@suse.de>
5256
5257 * configure.in: Add --enable-maintainer-mode, substitute MAINT.
5258
5259 * Makefile.in (YACC): Remove, not used.
5260 (MAINT): Don't set.
5261 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
5262 disable dependency on ${srcdir}/configure.in when maintainer mode
5263 is disabled.
5264
52652003-07-22 Dave Love <fx@gnu.org>
5266
5267 * configure.in: Make XRegisterIMInstantiateCallback test depend on
5268 HAVE_X11, not with_xim.
5269 (HAVE_CRTIN): Provide template.
5270 <with_png>: Test for png.h and libpng/png.h.
5271
52722003-07-15 Andreas Schwab <schwab@suse.de>
5273
5274 * configure.in: Temporarily leave quoting for AC_DEFINE.
5275
52762003-07-13 Stefan Monnier <monnier@cs.yale.edu>
5277
5278 * configure.in: Check for posix_memalign.
5279
52802003-07-12 Richard M. Stallman <rms@gnu.org>
5281
5282 * configure.in [netbsd systems]: Define HAVE_CRTIN properly.
5283
52842003-07-09 Kim F. Storm <storm@cua.dk>
5285
5286 * INSTALL (DETAILED BUILDING AND INSTALLATION): Describe new
5287 functionality of --without-xim.
5288
52892003-06-29 Dave Love <fx@gnu.org>
5290
5291 * configure.in: Fix XRegisterIMInstantiateCallback check for gcc.
5292
52932003-06-23 Dave Love <fx@gnu.org>
5294
5295 * configure.in: Check for sys/_mbstate_t.h.
5296 Test XRegisterIMInstantiateCallback prototype.
5297 (AH_BOTTOM): Define DO_BLOCK_INPUT, my_strftime.
5298
52992003-06-06 Dave Love <fx@gnu.org>
5300
5301 * configure.in: Check for locale.h.
5302
53032003-06-05 Dave Love <fx@gnu.org>
5304
5305 * configure.in: Check for memcpy, mempcpy, mblen, mbrlen.
5306 Use AC_FUNC_STRFTIME, AC_STRUCT_TIMEZONE, AC_TYPE_MBSTATE_T.
5307 (NLIST_STRUCT): Don't define.
5308 (AH_BOTTOM): Define my_strftime.
5309
53102003-06-02 Richard M. Stallman <rms@gnu.org>
5311
5312 * configure.in: Revert changes of 2003-03-03 and 2003-05-24.
5313
53142003-05-24 Andreas Schwab <schwab@suse.de>
5315
5316 * configure.in (AH_BOTTOM) [MAC_OSX]: Do not redefine bcopy,
5317 bzero, and bcmp.
5318
53192003-05-22 Dave Love <fx@gnu.org>
5320
5321 * configure.in: Remove redundant test for term.h. Test for difftime.
5322
53232003-05-20 Dave Love <fx@gnu.org>
5324
5325 * configure.in: Append * to s390-*-linux-gnu case.
5326 (LIBMAIL) <lockfile>: Don't define.
5327
067d23c9
KY
53282003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
5329
5330 * INSTALL (* GNU/Linux development packages): Mention Debian and
5331 RedHat package names.
5332
53332003-04-30 Boyd Lynn Gerber <gerberb@zenez.com>
5334
5335 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5336
53372003-04-30 Kai Großjohann <kai.grossjohann@gmx.net>
5338
5339 * INSTALL (* GNU/Linux development packages): Tell people to
5340 install additional packages for compiling Emacs.
5341
1a71cb28
GM
53422003-04-30 Richard M. Stallman <rms@gnu.org>
5343
5344 * configure.in: Handle system types sysv5uw* and sysv5OpenUNIX*.
5345
53462003-04-28 Francesco Potortì <pot@gnu.org>
5347
5348 * configure.in: Undo last (RMS') change, as it is useless, per
5349 Dave Love.
5350
53512003-04-08 Richard M. Stallman <rms@gnu.org>
5352
5353 * configure.in: Put #include of jpeglib.h at start of line.
5354
067d23c9
KY
53552003-04-06 Francesco Potortì <pot@gnu.org>
5356
5357 * configure.in: Use the same configuration for all aix5, not just
5358 aix5.1.
5359
53602003-03-16 Nelson H. F. Beebe <beebe@math.utah.edu> (tiny change)
5361
5362 * configure.in: Check for need for bigtoc support on IBM AIX for
5363 solving a linker table overflow problem.
5364
53652003-03-03 Rob Browning <rlb@defaultvalue.org>
5366
5367 * configure.in: Add AC_CHECK_FUNCS for memcmp and memmove.
5368 (AH_BOTTOM): Switch tests to prefer memcmp, memset, and memmove
5369 over bzero, bcmp, and bcopy.
5370
53712003-02-23 Simon Josefsson <jas@extundo.com>
5372
5373 * Makefile.in (install-arch-indep, uninstall): Add SMTP manual.
5374
53752003-02-21 Klaus Zeitler <kzeitler@lucent.com>
5376
5377 * configure.in: Set new hpux10-20.h as "major" include for 10.20.
5378
53792003-02-13 Robert J. Chassell <bob@rattlesnake.com> (tiny change)
5380
5381 * INSTALL (* Extra fonts): Say that Emacs doesn't include fonts.
5382
53832003-02-08 Andreas Schwab <schwab@suse.de>
5384
5385 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
5386 instead of the substitution.
5387
53882003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
5389
5390 * Makefile.in: Use @EXEEXT@ for Cygwin.
5391 Use USERNAME if LOGNAME is not set (for Cygwin).
5392
5393 * configure.in: Add opsys=cygwin.
5394
53952003-01-22 Andreas Schwab <schwab@suse.de>
5396
5397 * configure.in: Set HAVE_MENUS=yes when HAVE_CARBON=yes instead of
5398 redefining it explicitly in src/config.in.
5399
54002003-01-22 Markus Rost <rost@math.ohio-state.edu>
5401
5402 * Makefile.in (bootstrap): Make bootstrap-after.
5403
54042003-01-20 Jan Djärv <jan.h.d@swipnet.se>
5405
5406 * configure.in: Fix --with-gtk.
5407
54082003-01-19 Jan Djärv <jan.h.d@swipnet.se>
5409
090bd7cb 5410 * configure.in: Add --with-gtk, --with-x-toolkit=gtk.
067d23c9
KY
5411
5412 * INSTALL (DETAILED BUILDING AND INSTALLATION): Add text about GTK.
5413
54142003-01-14 Francesco Potortì <pot@gnu.org>
5415
5416 * configure.in (m68k-motorola-sysv): Remove (obsolete).
5417
54182003-01-07 Steven Tamm <steventamm@mac.com>
5419
5420 * configure.in: New option, --enable-carbon-app, to specify
5421 that the application should be installed
5422 * Makefile.in (install-arch-dep): On Mac OS X, install the
090bd7cb 5423 Emacs.app application if carbon-app is enabled.
067d23c9
KY
5424
54252003-01-06 Dave Love <fx@gnu.org>
5426
5427 * configure.in: Check for nl_langinfo.
5428 [!HAVE_SIZE_T]: Fix typedef.
5429
54302003-01-06 David Kastrup <dak@gnu.org>
5431
5432 * Makefile.in (INSTALL_INFO): Get install-info command from configure.
5433
5434 * configure.in: Add tests for install-info.
5435
54362002-12-09 Markus Rost <rost@math.ohio-state.edu>
5437
5438 * configure.in (*-sunos5*, *-solaris*): Revert previous change -
5439 use again sol2-6 instead of sol2-8.
5440
54412002-12-09 Dave Love <fx@gnu.org>
5442
5443 * configure.in (*-sunos5.8*, *-solaris2.8*): Delete configurations.
5444
54452002-12-08 Andreas Schwab <schwab@suse.de>
5446
5447 * Makefile.in (install-arch-indep): Revert last change.
5448
54492002-11-27 Dave Love <fx@gnu.org>
5450
5451 * configure.in: Use AC_CHECK_DECLS, not AC_DECL_SYS_SIGLIST.
5452 Check for __sys_siglist too. Check for memset.
5453 Use AC_FUNC_GETPGRP. Add mipsel-*-linux-gnu* target.
5454
54552002-11-22 Juanma Barranquero <lektu@terra.es>
5456
5457 * config.guess, config.sub: Updated from master source.
5458
54592002-11-19 Karl Fogel <kfogel@red-bean.com>
5460
5461 * autogen.sh: New file.
5462
1a71cb28 54632002-11-18 Dave Love <fx@gnu.org>
067d23c9
KY
5464
5465 * configure.in: Tidy up various quoting issues throughout.
5466 Use AC_GNU_SOURCE.
5467 (AH_BOTTOM): Fix #endif protecting config.h. Maybe include
5468 alloca.h. Define GC_SETJMP_WORKS, GC_LISP_OBJECT_ALIGNMENT.
5469 Maybe define bcopy, bzero, bcmp.
5470 (powerpcle-*-solaris2.5*, powerpcle-*-solaris2*): Remove (use
5471 non-existent machine file).
5472 (sys/vlimit.h, sys/resource.h, fsync, __restrict): Test for.
5473 (term.h, X11/Xaw3d/Scrollbar.h): Avoid warning from test.
5474 (nlist.h): Move test up.
5475
54762002-11-18 Markus Rost <rost@math.ohio-state.edu>
5477
5478 * configure.in (*-sunos5*, *-solaris*): Use sol2-8.
5479
54802002-11-14 Francesco Potortì <pot@gnu.org>
5481
5482 * configure.in (*-sunos5.8*, *-solaris2.8*): New configurations.
5483
54842002-11-11 Tim Van Holder <tim.vanholder@anubex.com> (tiny change)
5485
5486 * Makefile.in (install-arch-indep): Prepend $(srcdir)/ to lisp.
5487
54882002-11-08 Dave Love <fx@gnu.org>
5489
5490 * configure.in: Use AC_CONFIG_LIBOBJ_DIR and require autoconf 2.54.
5491 (AH_BOTTOM) [!HAVE_SIZE_T]: Typedef size_t.
5492
54932002-11-07 Miles Bader <miles@gnu.org>
5494
5495 * Makefile.in (maybe_bootstrap): Fix shell variable usage.
5496 Handle separate-build-dir case.
5497
54982002-11-06 Richard M. Stallman <rms@gnu.org>
5499
5500 * Makefile.in (maybe_bootstrap): Add doublequotes to make it
5501 bulletproof. $bar may be empty when there are no .elc files.
5502
55032002-10-30 Dave Love <fx@gnu.org>
5504
5505 * configure.in: Require autoconf 2.53. Test for pty.h,
5506 sys/mman.h, sys/param.h, mremap, memmove.
5507 (AH_BOTTOM): Maybe include strings.h. Add local variables for mode.
5508 (AC_PROG_YACC): Delete.
5509 (size_t): Use AC_CHECK_TYPES.
5510 (AH_TOP): Up-date copyright.
5511
55122002-10-01 Juanma Barranquero <lektu@terra.es>
5513
5514 * update-subdirs: Add "no-byte-compile: t" to subdirs.el.
5515
55162002-09-19 Richard M. Stallman <rms@gnu.org>
5517
5518 * configure.in: Fix the LessTif-directory-finder for real.
5519
55202002-09-14 Richard M. Stallman <rms@gnu.org>
5521
5522 * Makefile.in (maybe_bootstrap): Test for complete absence
5523 of compiled Lisp files.
5524
55252002-09-11 Stefan Monnier <monnier@cs.yale.edu>
5526
5527 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap)
5528 (bootstrap-clean-after): Delete.
5529 (bootstrap): Make the sequencing explicit.
5530
55312002-09-10 Richard M. Stallman <rms@gnu.org>
5532
5533 * configure.in: Fix previous LessTif change.
5534
55352002-09-09 Richard M. Stallman <rms@gnu.org>
5536
5537 * configure.in (powerpcle-*-solaris2.5*): New configuration.
5538 (powerpcle-*-solaris*): Use version 2.6 as default.
5539 (*-sunos5.6*, *-solaris2.6*): New alternative.
5540 (*-sunos5*): Use version 2.6 as default.
5541
55422002-09-06 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
5543
5544 * configure.in: Fix typo.
5545
55462002-09-05 Richard M. Stallman <rms@gnu.org>
5547
5548 * configure.in: Look for LessTif in /usr/X11R6/LessTif/ before Motif.
5549
5550 * configure.in: Handle $GCC_LINK_TEST_OPTIONS and
5551 $NON_GCC_LINK_TEST_OPTIONS after the AC_PROG_... macros.
5552
55532002-08-26 Kim F. Storm <storm@cua.dk>
5554
5555 * Makefile.in (install-arch-indep): Do not remove DOC file
5556 when it is the only DOC file installed; this is the case when
5557 CANNOT_DUMP is defined. From Joe Buehler (tiny change).
5558
55592002-07-24 Markus Rost <rost@math.ohio-state.edu>
5560
5561 * configure.in: Fix typo.
5562
55632002-07-24 Richard M. Stallman <rms@gnu.org>
5564
5565 * configure.in: Don't print anything special about gamedir.
5566
5567 * configure.in: Delete nonstandard --with-game-user option.
5568
55692002-07-21 Richard M. Stallman <rms@gnu.org>
5570
5571 * Makefile.in (gamedir, localstatedir): New variables.
5572 (epaths-force): Insert value of gamedir into PATH_GAME.
5573
5574 * configure.in (gamedir): Handle it like lispdir.
5575 (--with-game-dir option): Delete.
5576
55772002-06-21 Pavel Janík <Pavel@Janik.cz>
5578
5579 * configure.in: Add support for mipseb-*-netbsd* machines.
5580
55812002-06-18 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
5582
5583 * Makefile.in (install-arch-indep, uninstall): Add Tramp.
5584
55852002-06-17 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
5586
5587 * info/dir (File): Add an entry for Tramp.
5588
55892002-06-17 Eli Zaretskii <eliz@is.elta.co.il>
5590
5591 * INSTALL-CVS: New file.
5592
55932002-06-07 Andreas Schwab <schwab@suse.de>
5594
5595 * configure.in (x86_64-*-linux-gnu*): New system.
5596
55972002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
5598
5599 * config.bat: Handle the case when lispintro is truncated to lispintr.
5600
56012002-05-26 Paul Eggert <eggert@twinsun.com>
5602
5603 * config.guess, config.sub: Updated from master source.
5604
56052002-05-09 Richard M. Stallman <rms@gnu.org>
5606
5607 * configure.in (emacs_cv_speed_t): Add square brackets for clarity.
5608
56092002-05-04 Pavel Janík <Pavel@Janik.cz>
5610
5611 * make-dist: Do not distribute lock/ directory.
5612
56132002-04-30 Andrew Choi <akochoi@shaw.ca>
5614
5615 * configure.in: Provide documentation string when defining
5616 variable HAVE_CARBON. Also define HAVE_WINDOW_SYSTEM, HAVE_MOUSE,
5617 and HAVE_MENUS in AH_BOTTOM if HAVE_CARBON is defined.
5618
1a71cb28 56192002-04-29 Colin Walters <walters@verbum.org>
067d23c9
KY
5620
5621 * configure.in: Delete configure check for access to the game user.
5622
56232002-04-29 Pavel Janík <Pavel@Janik.cz>
5624
5625 * make-dist: lwlib/Imakefile is removed.
5626
56272002-04-26 Andrew Choi <akochoi@shaw.ca>
5628
5629 * configure.in: Add support for powerpc-apple-darwin*.
5630 (HAVE_CARBON): Add.
5631
5632 * make-dist: Create directories in mac/Emacs.app.
5633
56342002-04-25 Pavel Janík <Pavel@Janik.cz>
5635
5636 * make-dist: lwlib-Xol* are removed.
5637
56382002-04-23 Andreas Schwab <schwab@suse.de>
5639
5640 * Makefile.in (MAINT): New variable.
5641 (${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
5642 instead of configure.in, to avoid running autoconf and autoheader
5643 unless explicitly requested.
5644
56452002-04-16 Eli Zaretskii <eliz@gnu.org>
5646
5647 * config.bat: Update for msdos/sed2v2.inp.
5648
56492002-04-15 Andreas Schwab <schwab@suse.de>
5650
5651 * Makefile.in ($(srcdir)/src/config.in): Generate using autoheader.
5652 * configure.in: Add config header templates to all AC_DEFINE and
5653 AC_DEFINE_UNQUOTED symbols.
5654 * make-dist: Run autoheader if necessary.
5655
56562002-04-10 Colin Walters <walters@verbum.org>
5657
5658 * configure.in: Add --game-dir, --game-user. Test to see if we
5659 can use them.
5660
56612002-04-08 Pavel Janík <Pavel@Janik.cz>
5662
5663 * configure.in: Add --with-sound.
5664
56652002-03-18 Kim F. Storm <storm@cua.dk>
5666
5667 * configure.in: Test for sendto, recvfrom, getsockopt, setsockopt,
5668 and getsockname functions. Test for sys/un.h include file.
5669
56702002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
5671
5672 * configure.in: Support AIX 5.1.
5673
56742002-03-10 Jan Djärv <jan.h.d@swipnet.se>
5675
5676 * configure.in: Added test for X Session Management (HAVE_X_SM).
5677
56782002-03-03 Richard M. Stallman <rms@gnu.org>
5679
5680 * Makefile.in (install-arch-indep): Use umask 022 for DOC* and lisp/.
5681 Run chown $${LOGNAME} on files installed by tar xvf.
5682
56832002-03-03 Kim F. Storm <storm@cua.dk>
5684
5685 * configure.in: Test for getpeername.
5686
56872002-03-01 Richard M. Stallman <rms@gnu.org>
5688
5689 * configure.in (HAVE_JPEG): Turn it off if libjpeg version < 6b.
5690 (HAVE_GIF): Don't use old libungif versions that crash.
5691
56922002-02-26 Richard M. Stallman <rms@gnu.org>
5693
5694 * configure.in <making srcdir absolute>: Verify that PWD is correct,
5695 not just well-formed and valid.
5696 (mips-compaq-nonstopux*): New configuration.
5697
56982002-02-18 Paul Eggert <eggert@twinsun.com>
5699
5700 * make-dist: Port to POSIX 1003.1-2001, which doesn't allow "head -1".
5701 "sed q" is a portable equivalent to plain "head -1".
5702
57032002-02-13 Richard M. Stallman <rms@gnu.org>
5704
5705 * Makefile.in (maybe_bootstrap): Do `exit 1'.
5706 (all): Don't depend on maybe_bootstrap here.
5707 (${SUBDIR}): Depend on it here instead.
5708
57092002-02-08 Richard M. Stallman <rms@gnu.org>
5710
5711 * Makefile.in (maybe_bootstrap): Add an infinite sleep-loop.
5712
57132002-01-27 Eli Zaretskii <eliz@is.elta.co.il>
5714
5715 * configure.in: Recognize BSD/OS 5.0.
5716
57172002-01-11 Eli Zaretskii <eliz@is.elta.co.il>
5718
5719 * make-dist: Make version checking in emacs.texi consistent with
5720 how we set it there.
5721
57222001-12-29 Kim F. Storm <storm@cua.dk>
5723
5724 * INSTALL: <CONFIGURATION BY HAND> Now requires autoconf 2.51.
5725
57262001-12-28 Richard M. Stallman <rms@gnu.org>
5727
5728 * configure.in: Test for mbsinit.
5729
57302001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
5731
5732 These changes make Leim part of the standard distribution:
5733
5734 * README: Add info about the `leim' directory.
5735
5736 * INSTALL: Remove text that describes Leim as a separate package.
5737
5738 * noleim-Makefile.in: File removed.
5739
5740 * make-dist: Don't copy noleim-Makefile.in to the leim subdirectory.
5741 Link Leim files to ${tempdir}/leim, not to real-leim. Don't move
5742 Leim files out of the Emacs tree. Don't prepare a separate tarball
5743 for Leim.
5744
57452001-12-11 Richard M. Stallman <rms@gnu.org>
5746
5747 * configure.in (hppa*-*-linux-gnu*): New alternative.
5748
57492001-12-08 Pavel Janík <Pavel@Janik.cz>
5750
5751 * make-dist: Copy COPYING to leim/, lwlib/, mac/ and nt/ when
5752 creating distribution.
5753
57542001-12-06 Paul Eggert <eggert@twinsun.com>
5755
5756 * configure.in (AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork.
5757 (AC_FUNC_VFORK): Remove.
5758 (AC_FUNC_FORK): Add.
5759 (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS;
5760 this is required by recent Autoconf versions.
5761
57622001-12-02 Pavel Janík <Pavel@Janik.cz>
5763
5764 * make-dist: Do not try to link removed files (aclocal.m4, _emacs,
5765 TODO, vms-pp.trans and others).
5766
57672001-11-29 Pavel Janík <Pavel@Janik.cz>
5768
5769 * make-dist: Use COPYING from the top-level directory.
5770
57712001-11-29 Gerd Moellmann <gerd@gnu.org>
5772
5773 * configure.in: Add support for FreeBSD/Alpha.
5774
57752001-11-29 Pavel Janík <Pavel@Janik.cz>
5776
5777 * make-dist: Add COPYING to the top-level directory of the
5778 distribution. Simplify the logic behind copying.
5779
5780 * Makefile.in (maybe_bootstrap): Fix previous change.
5781
57822001-11-28 Richard M. Stallman <rms@gnu.org>
5783
5784 * Makefile.in (maybe_bootstrap): Don't bootstrap, just suggest it.
5785
57862001-11-26 Richard M. Stallman <rms@gnu.org>
5787
5788 * Makefile.in: bootstrap should not delete dumped executables.
5789 (bootstrap-clean-before): New target.
5790 (bootstrap): Use bootstrap-clean-before instead of clean.
5791 (bootstrap-clean-after): Rename from bootstrap-clean. Calls changed.
5792
57932001-11-24 Eli Zaretskii <eliz@is.elta.co.il>
5794
5795 These changes add the Emacs Lisp Introduction manual to the
5796 distribution:
5797
5798 * Makefile.in (install-arch-indep, uninstall): Add ELisp Intro files.
5799
5800 * make-dist: Copy the files in lispintro directory.
5801
5802 * config.bat: Configure in the lispintro directory.
5803
5804 * configure.in (AC_OUTPUT): Add lispintro/Makefile.
5805
5806 * Makefile.in (SUBDIR_MAKEFILES): Add lispintro.
5807 (lispintro/Makefile): New target.
5808 (mostlyclean, clean, distclean, maintainer-clean): Add lispintro.
5809 (unlock, relock, info, dvi): Ditto.
5810
58112001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
5812
5813 * Makefile.in (uninstall, install-arch-indep): Don't install gfdl.1.
5814
5815 * make-dist (etc): Don't distribute gfdl.1.
5816
58172001-11-22 Colin Walters <walters@debian.org>
5818
5819 * Makefile.in (install-arch-indep): Install the calc .info files.
5820 (uninstall): Handle deletion of calc .info files (thanks Pavel Janík).
5821
58222001-11-17 Eli Zaretskii <eliz@is.elta.co.il>
5823
5824 * make-dist (lispref): Add *.txt, *.el, permute-index, and
5825 tindex.pl to the list of those being put into the distribution.
5826
58272001-11-16 Eli Zaretskii <eliz@gnu.org>
5828
5829 * configure.in: Add coff.h to the list in AC_CHECK_HEADERS.
5830
58312001-11-15 Pavel Janík <Pavel@Janik.cz>
5832
5833 * Makefile.in (uninstall): Fix previous change.
5834
5835 * configure.in, Makefile.in: Add support for --program-prefix,
5836 --program-suffix and --program-transform-name options.
5837
58382001-11-13 Pavel Janík <Pavel@Janik.cz>
5839
5840 * Makefile.in (install-arch-indep): Use `${manext}' instead of `.1'.
5841 (install-arch-indep): Install emacsclient manual page.
5842 (uninstall): Uninstall emacsclient manual page.
5843
58442001-11-12 Eli Zaretskii <eliz@is.elta.co.il>
5845
5846 * make-dist: Add lispref/index.*perm files to the distribution.
5847 From Pavel Janík <Pavel@Janik.cz>.
5848
58492001-11-12 Pavel Janík <Pavel@Janik.cz>
5850
5851 * Makefile.in (uninstall): Remove gfdl.1 when uninstalling.
5852
58532001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
5854
5855 * configure.in: AC_OUTPUT lispref/Makefile.
5856
58572001-11-10 Eli Zaretskii <eliz@is.elta.co.il>
5858
5859 The following changes add the ELisp reference manual to the
5860 distribution.
5861
5862 * make-dist: Add the lispref directory to the distribution.
5863
5864 * Makefile.in (install-arch-indep): Add elisp* to the list of
5865 installed Info files.
5866 (SUBDIR_MAKEFILES): Add lispref/Makefile.
5867 (lispref/Makefile): New target.
5868 (mostlyclean, clean, distclean, maintainer-clean, unlock, relock):
5869 Add commands for the lispref directory.
5870 (info, dvi): Ditto.
5871
5872 * config.bat: Configure in `lispref'.
5873
58742001-11-09 Richard M. Stallman <rms@gnu.org>
5875
5876 * Makefile.in (bootstrap-lisp): Don't suppress error messages.
5877
58782001-11-07 Eli Zaretskii <eliz@is.elta.co.il>
5879
5880 * make-dist (tempdir): Copy AUTHORS as well.
5881
58822001-11-06 Sam Steingold <sds@gnu.org>
5883
5884 * configure.in: Added a check for <nlist.h>.
5885
58862001-11-01 Pavel Janík <Pavel@Janik.cz>
5887
5888 * configure.in: Reindent --help output.
5889 From Per Starbäck (starback@ling.uu.se).
5890
58912001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
5892
5893 * configure.in: New entry for HP/UX-11.
5894
5895 * Makefile.in (SOURCES): Replace GETTING.GNU.SOFTWARE with FTP.
5896 From Eric S. Raymond <esr@golux.thyrsus.com>.
5897
58982001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
5899
5900 * configure.in (s390-*-linux-gnu): New system. From Adam Thornton
5901 <athornton@sinenomine.net>.
5902
59032001-10-25 Gerd Moellmann <gerd@gnu.org>
5904
5905 * Makefile.in (maybe_bootstrap): New target.
5906 (all): Add to prerequisites to bootstrap if abbrev.elc doesn't exist.
5907
59082001-10-24 Ken Raeburn <raeburn@gnu.org>
5909
5910 * configure.in: If --with-hesiod is given, look for
5911 hes_getmailhost and res_send or __res_send; check hesiod and
5912 resolv libraries respectively if system libraries don't supply them.
5913
59142001-10-24 Gerd Moellmann <gerd@gnu.org>
5915
5916 * configure.in: Use $MAKE for `make' if set.
5917
59182001-10-22 Gerd Moellmann <gerd@gnu.org>
5919
5920 * Makefile.in (install-arch-indep): Add -h (follow symlinks)
5921 to tar options.
5922
59232001-10-20 Gerd Moellmann <gerd@gnu.org>
5924
5925 * (Version 21.1 released).
5926
59272001-10-20 Miles Bader <miles@gnu.org>
5928
5929 * configure.in (configuration): Set from `host' if `host_alias'
5930 isn't defined.
5931
59322001-10-19 Andreas Schwab <schwab@suse.de>
5933
5934 * configure.in: Make ready for autoconf 2.5x.
5935 (AC_PREREQ): Require autoconf 2.50.
5936 * aclocal.m4: Removed.
5937 * Makefile.in (${srcdir}/configure): Don't depend on aclocal.m4.
5938
59392001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
5940
5941 * README: Bump Emacs version to 21.1.50.
5942
59432001-10-05 Gerd Moellmann <gerd@gnu.org>
5944
5945 * Branch for 21.1.
5946
59472001-09-05 Gerd Moellmann <gerd@gnu.org>
5948
5949 * configure.in: Avoid `$@' which is handled specially in
5950 Autoconf 2.52. From "Adam J. Richter" <adam@yggdrasil.com>.
5951
59522001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
5953
5954 * make-dist (nt): Add subdirs.el to the list of distributed files.
5955
59562001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
5957
5958 * configure.in (machine): Add an entry for
5959 hppa1.1-hitachi-hiuxwe2*.
5960
59612001-05-28 Gerd Moellmann <gerd@gnu.org>
5962
5963 * make-dist (LANG): Set LC_ALL and LANGUAGE to C, unset
5964 LC_MESSAGES and LANG. From Karl Eichwalder <keichwa@gmx.net>.
5965
59662001-05-14 Gerd Moellmann <gerd@gnu.org>
5967
5968 * make-dist: Copy texinfo.tex unconditionally.
5969
59702001-04-25 Eli Zaretskii <eliz@is.elta.co.il>
5971
5972 * Makefile.in (install-arch-indep): Add gfdl.1 to the man pages
5973 that are installed.
5974
59752001-04-06 Gerd Moellmann <gerd@gnu.org>
5976
5977 * make-dist: Copy only `[a-z]*.{el,elc}' from leim/quail.
5978 Don't copy quick-b5, quick-cns, tsang-b5, and tsang-cns files.
5979
5980 * make-dist: Handle leim/MISC-DIC. Only include
5981 `[a-zA-Z]*.{el,elc}' from leim/quail.
5982
59832001-04-05 Gerd Moellmann <gerd@gnu.org>
5984
5985 * Makefile.in (install-arch-indep): Remove .cvsignore files.
5986
59872001-03-30 Gerd Moellmann <gerd@gnu.org>
5988
5989 * Makefile.in (.PHONY): Add for bootstrap targets.
5990 (bootstrap-clean): New target.
5991 (bootstrap): Use it instead of `clean'.
5992
59932001-03-29 Eli Zaretskii <a34785@is.elta.co.il>
5994
5995 * Makefile.in (SUBDIR): Remove leim.
5996 (all, .RECURSIVE, extraclean): Add leim explicitly.
5997 (leim): Provide separate rule which exports PARALLEL=0 into the
5998 environment.
5999
60002001-03-20 Gerd Moellmann <gerd@gnu.org>
6001
6002 * configure.in (HAVE_XPM): Don't print the result of the check for
6003 XpmReturnAllocPixels if we don't have an xpm.h.
6004
60052001-03-05 Gerd Moellmann <gerd@gnu.org>
6006
6007 * COPYING: New file.
6008
60092001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
6010
6011 * config.bat: Update the copyright.
6012
60132001-02-23 Kenichi Handa <handa@etl.go.jp>
6014
6015 * configure.in: Use AC_EGREP_CPP to check if the C preprocessor
6016 converts `..' to `. .'. If it converts, set CPP_NEED_TRADITIONAL
6017 to `yes'. Later in AC_OUTPUT, check this variable.
6018
60192001-02-09 Dave Love <fx@gnu.org>
6020
6021 * AUTHORS: Updated.
6022
60232001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
6024
6025 * info/dir (Ebrowse): Fix the entry (was missing a dot).
6026
60272001-02-02 Gerd Moellmann <gerd@gnu.org>
6028
6029 * mkinstalldirs (errstatus): Chmod a+rx directories we create.
6030
6031 * Makefile.in (uninstall): Ignore exit code of `rm'.
6032
6033 * Makefile.in (uninstall): Remove more info files. Remove
6034 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
6035
60362001-01-31 Gerd Moellmann <gerd@gnu.org>
6037
6038 * noleim-Makefile.in (extraclean): Add.
6039
60402001-01-28 Gerd Moellmann <gerd@gnu.org>
6041
6042 * Makefile.in (extraclean): Added -f to -rm config-tmp-* to keep
6043 it quiet.
6044
60452001-01-24 Colin Walters <walters@cis.ohio-state.edu>
6046
6047 * Makefile.in (tags): Fix typo.
6048
60492001-01-13 Kenichi Handa <handa@etl.go.jp>
6050
6051 * configure.in: Fix typo in the code setting x_search_path.
6052
60532001-01-10 Dave Love <fx@gnu.org>
6054
6055 * configure.in: Don't reset LIBS at end of -lXmu test. Test for
6056 -lXext.
6057 (HAVE_XKBGETKEYBOARD): Fix reporting of result.
6058 (HAVE_LIBXP): Remove -lXt from AC_CHECK_LIB.
6059 (HAVE_XAW3D, HAVE_XPM, HAVE_JPEG, HAVE_PNG, HAVE_TIFF, HAVE_GIF):
6060 Don't frob CFLAGS. Remove extra X libs from AC_CHECK_LIB
6061 (now in $LIBS).
6062
60632001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
6064
6065 * config.bat: Run the preprocessor with -traditional.
6066
60672001-01-01 Eli Zaretskii <eliz@is.elta.co.il>
6068
6069 * INSTALL: Move copying conditions to end of file.
6070
60712000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
6072
6073 * INSTALL: Add basic installation procedure which assumes
6074 `configure' does its job. Elaborate on image support libraries.
6075 Add a pointer to Xaw3d library. Add advice about solving
6076 configure-time problems by looking in config.log and setting
6077 variables in the environment.
6078
60792000-12-27 Gerd Moellmann <gerd@gnu.org>
6080
6081 * Makefile.in (install-arch-indep): If tar fails, exit with
6082 exit code 1.
6083
60842000-12-19 Gerd Moellmann <gerd@gnu.org>
6085
6086 * configure.in: Test for XkbGetKeyboard with an AC_TRY_LINK whose
6087 source file includes XKBlib.h. On some broken Solaris systems,
6088 there is an XKBlib.h, reportedly, but header files included by
6089 XKBlib.h are missing.
6090
60912000-12-14 Gerd Moellmann <gerd@gnu.org>
6092
6093 * configure.in: AC_CHECK_FUNC XkbGetKeyboard.
6094
60952000-12-11 Dave Love <fx@gnu.org>
6096
6097 * configure.in <alpha*-dec-osf*>: Use full path for NON_GNU_CPP.
6098
60992000-12-11 Paul Eggert <eggert@twinsun.com>
6100
6101 * aclocal.m4 (AC_SYS_LARGEFILE, AC_SYS_LARGEFILE_MACRO_VALUE):
6102 Merge fixes from latest GNU tar version. These macros no longer
6103 futz with _XOPEN_SOURCE, as that was not portable in practice.
6104 (AC_FUNC_FSEEKO): New macro.
6105
6106 * configure.in: Use it instead of invoking AC_CHECK_FUNCS on
6107 ftello.
6108
61092000-12-05 Dave Love <fx@gnu.org>
6110
6111 * Makefile.in (TAGS, info): Avoid tab-prefixed comments in rules.
6112
61132000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
6114
6115 * info/dir: Change the category to "Emacs".
6116
61172000-12-01 Gerd Moellmann <gerd@gnu.org>
6118
6119 * make-dist (tempdir): Remove epaths.h from the distribution
6120 instead of paths.h.
6121
61222000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
6123
6124 * config.bat: Check for existence of djecho.exe, and print an
6125 error message if it is not available.
6126
6127 * INSTALL: Describe possible problem with djecho.exe in old
6128 versions of DJGPP v2.x.
6129
61302000-11-23 Gerd Moellmann <gerd@gnu.org>
6131
6132 * configure.in: Initialize HAVE_LIBXP to no.
6133
61342000-11-22 Gerd Moellmann <gerd@gnu.org>
6135
6136 * configure.in: Use m/macppc.h instead of the non-existent
6137 m/powerpc.h.
6138
61392000-11-21 Gerd Moellmann <gerd@gnu.org>
6140
6141 * Makefile.in (install-arch-indep): Also install info/eshell*
6142 and info/speedbar*.
6143
6144 * configure.in (HAVE_PNG): Check for the presence of
6145 png_get_channels to rule out older PNG libs.
6146
6147 * configure.in (AC_OUTPUT): Arrange to emit definitions of
6148 GCC and NON_GNU_CPP into config.status.
6149
61502000-11-20 Dave Love <fx@gnu.org>
6151
6152 * configure.in: Fix last change.
6153
6154 * GETTING.GNU.SOFTWARE: Deleted.
6155 * FTP: New file to replace it.
6156 * make-dist: Add FTP, remove GETTING.GNU.SOFTWARE.
6157
61582000-11-20 Gerd Moellmann <gerd@gnu.org>
6159
6160 * configure.in: Use -traditional with GNU cpp.
6161
61622000-11-17 Gerd Moellmann <gerd@gnu.org>
6163
6164 * make-dist: Handle the Mac port. Distribute all makefile.w32-in.
6165 Distribute more files from the nt/ subdir. Distribute PBM
6166 image files from subdirs of lisp/. Distribute old change logs
6167 from subdirs of lisp/. Distribute play/5x5.el.
6168
61692000-11-11 Dave Love <fx@gnu.org>
6170
6171 * config.sub, config.guess: Updated from master source.
6172
61732000-11-07 Dave Love <fx@gnu.org>
6174
6175 * configure.in: Test for mkstemp.
6176
61772000-11-01 Eli Zaretskii <eliz@is.elta.co.il>
6178
6179 * info/dir (Top): Rearrange menu items more logically, and put
6180 them into a single category. Add menu items for RefTeX and
6181 Widget.
6182
61832000-10-29 Kai Großjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6184
6185 * Makefile.in (install-arch-indep): Use --info-dir instead of
6186 --dir-file, and a simple argument instead of --info-file, so that
6187 the Debian version of install-info also works.
6188
61892000-10-19 Eric M. Ludlam <zappo@ultranet.com>
6190
6191 * info/dir (Speedbar): Add entry.
6192
61932000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
6194
6195 * INSTALL: Describe the new image-support options to the configure
6196 script. List URLs where image support libraries can be found.
6197
61982000-10-14 Eli Zaretskii <eliz@is.elta.co.il>
6199
6200 * info/dir (Top): Add an entry for Eshell.
6201
62022000-10-02 Dave Love <fx@gnu.org>
6203
6204 * configure.in: Check for gai_strerror.
6205
62062000-10-01 Andreas Schwab <schwab@suse.de>
6207
6208 * Makefile.in (install-arch-indep): Update list of installed info files.
6209
62102000-09-30 Gerd Moellmann <gerd@gnu.org>
6211
6212 * configure.in: Support `sparc*-*-netbsd*'.
6213
62142000-09-29 Eli Zaretskii <eliz@is.elta.co.il>
6215
6216 * info/dir (MIME): Add entry for emacs-mime.
6217
62182000-09-29 Dave Love <fx@gnu.org>
6219
6220 * configure.in: Fix alpha*-dec-osf4 using the osf5 config.
6221
62222000-09-26 Gerd Moellmann <gerd@gnu.org>
6223
6224 * make-dist: Adapt to the change of leim/Makefile which was
6225 necessary to ensure a reasonably working `make dist'.
6226
6227 * leim-Makefile.in: Moved to leim/Makefile.in..
6228
6229 * noleim-Makefile.in: New file, formerly leim/Makefile.in.
6230
62312000-09-21 Kenichi Handa <handa@etl.go.jp>
6232
6233 * leim-Makefile.in (TIT-GB, TIT-BIG5, NON-TIT-GB, NON-TIT-BIG5)
6234 (NON-TIT-CNS, JAPANESE, KOREAN, THAI, VIETNAMESE, LAO, INDIAN)
6235 (TIBETAN, LATIN, SLAVIC, GREEK, RUSSIAN, MISC): Rename all .el
6236 files to .elc.
6237 (${TIT}): Adjusted for the above change.
6238 (clean mostlyclean): Likewise.
6239 (.el.elc): New target.
6240
62412000-09-19 Gerd Moellmann <gerd@gnu.org>
6242
6243 * make-dist: Include XPM and XBM files in lisp/ and subdirs
6244 in the distribution.
6245
62462000-09-18 Gerd Moellmann <gerd@gnu.org>
6247
6248 * make-dist (skk): Rename to `ja-dic' because the leim directory
6249 was renamed.
6250
62512000-09-14 Dave Love <fx@gnu.org>
6252
6253 * configure.in: Fix spurion in last change.
6254
62552000-09-14 Gerd Moellmann <gerd@gnu.org>
6256
6257 * configure.in (USE_MMAP_FOR_BUFFERS): Recognize in system
6258 configuration files instead of REL_ALLOC_MMAP. Set REL_ALLOC
6259 to `no' if defined. Change result report.
6260
62612000-09-08 Dave Love <fx@gnu.org>
6262
6263 * configure.in: Remove spurious `@'s.
6264
6265 * aclocal.m4 (AC_FUNC_MMAP): Use fixed version from development
6266 autoconf.
6267
62682000-09-06 Gerd Moellmann <gerd@gnu.org>
6269
6270 * configure.in (REL_ALLOC_MMAP): Recognize in system configuration
6271 file and print informational message.
6272
6273 * configure.in (AC_FUNC_MMAP): Add.
6274
62752000-09-01 Gerd Moellmann <gerd@gnu.org>
6276
6277 * configure.in: Add ``checking'' messages for
6278 XpmReturnAllocPixels.
6279
62802000-08-28 Gerd Moellmann <gerd@gnu.org>
6281
6282 * configure.in: Check <strings.h>; check `index' and `rindex'
6283 functions.
6284
62852000-08-26 Kenichi Handa <handa@etl.go.jp>
6286
6287 * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
6288 "case "${canonical}" in".
6289
62902000-08-25 Dave Love <fx@gnu.org>
6291
6292 * configure.in <osf>: Use NON_GNU_CPP='cpp' always.
6293
62942000-08-25 Kenichi Handa <handa@etl.go.jp>
6295
6296 * leim-Makefile.in: Rename skk to ja-dic throughout the file.
6297
62982000-08-24 Gerd Moellmann <gerd@gnu.org>
6299
6300 * configure.in <making srcdir absolute>: Unset CDPATH in case $PWD
6301 contains a relative path. Protect against unusable values of $PWD.
6302
63032000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
6304
6305 * info/dir (WoMan): Add entry.
6306
6307 * config.bat (maindir): Update src/_gdbinit even if it does
6308 already exist.
6309
63102000-08-07 Gerd Moellmann <gerd@gnu.org>
6311
6312 * Makefile.in (config.status): Prepend `$(srcdir)/' to `configure'.
6313
63142000-08-03 Gerd Moellmann <gerd@gnu.org>
6315
6316 * configure.in: Add support for ia64*-*-linux*.
6317
63182000-07-27 Gerd Moellmann <gerd@gnu.org>
6319
6320 * make-dist (aclocal.m4): Include in distribution.
6321
63222000-07-26 Dave Love <fx@gnu.org>
6323
6324 * configure.in (AC_SYS_LARGEFILE): Moved earlier.
6325
63262000-07-24 Dave Love <fx@gnu.org>
6327
6328 * configure.in: Add AC_SIZE_T.
6329
63302000-07-18 Dave Love <fx@gnu.org>
6331
6332 * configure.in: Reorder so that most tests are done after CPPFLAGS
6333 is set from the C_SWITCH_... definitions.
6334
63352000-07-10 Gerd Moellmann <gerd@gnu.org>
6336
6337 * configure.in (HAVE_XPM): Undo previous change. Check for
6338 preprocessor define XpmReturnAllocPixels.
6339
63402000-07-06 Gerd Moellmann <gerd@gnu.org>
6341
6342 * configure.in (HAVE_XPM): Check for XpmReturnAllocPixels
6343 instead of XpmReadFileToPixmap.
6344
63452000-07-05 Ken Raeburn <raeburn@gnu.org>
6346
6347 * configure.in: Check for <soundcard.h>. Look for ossaudio
6348 library, and set LIBSOUND accordingly.
6349
63502000-07-05 Dave Love <fx@gnu.org>
6351
6352 * configure.in: Use AC_HEADER_SYS_WAIT.
6353
63542000-07-05 Gerd Moellmann <gerd@gnu.org>
6355
6356 * make-dist: Check DONTCOMPILE in lisp/Makefile.in instead of
6357 lisp/Makefile. Distribute lisp/Makefile.in instead of
6358 lisp/Makefile.
6359
63602000-06-30 Ken Raeburn <raeburn@gnu.org>
6361
6362 * configure.in: Add ${C_SWITCH_X_SITE} temporarily to CPPFLAGS,
6363 while searching for image-handling libraries.
6364
63652000-06-26 Gerd Moellmann <gerd@gnu.org>
6366
6367 * configure.in (--with-xim): New option.
6368
63692000-06-23 Dave Love <fx@gnu.org>
6370
6371 * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test
6372 for struct timezone and test how we can call gettimeofday.
6373 Check for OSF 5+. Check for term.h.
6374
6375 * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf
6376 version.
6377
63782000-06-23 Gerd Moellmann <gerd@gnu.org>
6379
6380 * configure.in (HAVE_LIBXP): Change test for libXp.
6381
63822000-06-21 Dave Love <fx@gnu.org>
6383
6384 * configure.in: Check for fcntl.h. Use AC_FUNC_GETLOADAVG, not
6385 simple test for getloadavg and substitute GETLOADAVG_LIBS.
6386 Simplify test for GETTIMEOFDAY_ONE_ARGUMENT.
6387
63882000-06-19 Dave Love <fx@gnu.org>
6389
6390 * configure.in (GETTIMEOFDAY_ONE_ARGUMENT): Fix in case
6391 _XOPEN_SOURCE is defined.
6392
63932000-06-16 Gerd Moellmann <gerd@gnu.org>
6394
6395 * Makefile.in (distclean): Also make distclean in lisp/.
6396
63972000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
6398
6399 * config.bat: Generate lisp/Makefile from lisp/Makefile.in.
6400
64012000-06-15 Gerd Moellmann <gerd@gnu.org>
6402
6403 * make-dist: Add --help and --snapshot options.
6404
64052000-06-14 Gerd Moellmann <gerd@gnu.org>
6406
6407 * configure.in: Generate lisp/Makefile.
6408
6409 * configure.in: Add support for `*-lynxos*'.
6410 Use `cpp' as NON_GNU_CPP for `alpha*-dec-osf[5-9]*', as
6411 recommended by <Karen.Dorhamer@compaq.com> to fix problems
6412 on Tru64 UNIX v5.0.
6413
64142000-06-13 Ken Raeburn <raeburn@gnu.org>
6415
6416 * Makefile.in (install-arch-indep): Don't use "-unset CDPATH" when
6417 it's on a continuation line.
6418
64192000-06-02 Dave Love <fx@gnu.org>
6420
6421 * Makefile.in (install-arch-indep): Add pcl-cvs to list of info
6422 files.
6423
6424 * configure.in: Don't specify -n32 flag for mips-sgi-irix6.5.
6425 Check for struct exception. Use AC_SYS_LARGEFILE and move ftello
6426 test.
6427
6428 * aclocal.m4 (AC_SYS_LARGEFILE_TEST_INCLUDES)
6429 (AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New.
6430
64312000-05-26 Gerd Moellmann <gerd@gnu.org>
6432
6433 * configure.in: Add check for speed_t typedef.
6434
64352000-05-25 Ken Raeburn <raeburn@gnu.org>
6436
6437 * Makefile.in (install-arch-dep): Install fns-*.el only if it
6438 exists; it won't in the CANNOT_DUMP case.
6439
64402000-05-25 Gerd Moellmann <gerd@gnu.org>
6441
6442 * Makefile.in: Ignore exit status of `unset CDPATH' everywhere.
6443 On FreeBSD, the exit status is 1 if CDPATH is not set.
6444 (install-arch-indep): Install ebrowse.info.
6445
64462000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
6447
6448 * configure.in: Check for grandpt and getpt.
6449
64502000-05-09 Dave Love <fx@gnu.org>
6451
6452 * Makefile.in (install-arch-indep): Filter CVS as well as RCS.
6453
64542000-05-05 Gerd Moellmann <gerd@gnu.org>
6455
6456 * make-dist: Make a link for lib-src/grep-changelog.
6457 Copy install-sh.
6458
64592000-05-01 Eli Zaretskii <eliz@is.elta.co.il>
6460
6461 * config.bat: Identify the beginning of the cpp stuff in
6462 src/Makefile.in and lib-src/Makefile.in more accurately.
6463
64642000-04-27 Gerd Moellmann <gerd@gnu.org>
6465
6466 * configure.in: Add support for `powerpc*-*-linux-gnu*'.
6467
64682000-04-19 Gerd Moellmann <gerd@gnu.org>
6469
6470 * configure.in: Add support for `powerpc-*-netbsd*'.
6471
64722000-04-19 Dave Love <fx@gnu.org>
6473
6474 * configure.in: Don't use AC_FUNC_GETLOADAVG.
6475
6476 * aclocal.m4 (AC_FUNC_MKTIME): Use AC_SUBST.
6477
64782000-04-16 Dave Love <fx@gnu.org>
6479
6480 * Makefile.in (${srcdir}/configure): Depend on aclocal.m4.
6481
64822000-04-14 Dave Love <fx@gnu.org>
6483
6484 * configure.in: Use AC_FUNC_GETLOADAVG, AC_FUNC_MKTIME.
6485
6486 * aclocal.m4 (AC_FUNC_MKTIME): New.
6487
64882000-03-28 Ken Raeburn <raeburn@gnu.org>
6489
6490 * configure.in: Line up "--help" output a little better.
6491
64922000-03-26 Gerd Moellmann <gerd@gnu.org>
6493
6494 * Makefile.in (bootstrap-lisp-1, bootstrap-lisp, bootstrap-src):
6495 New targets.
6496 (bootstrap): Rewritten in terms of the new targets above. Make
6497 info files, too.
6498
64992000-03-12 Gerd Moellmann <gerd@gnu.org>
6500
6501 * config.guess, config.sub: Use the versions of the files from
6502 subversions.
6503
65042000-03-08 Dave Love <fx@gnu.org>
6505
6506 * configure.in: Use AC_PROG_RANLIB, AC_C_PROTOTYPES,
6507 AC_C_VOLATILE. Define POINTER_TYPE.
6508
6509 * aclocal.m4: New file.
6510
65112000-03-02 Gerd Moellmann <gerd@gnu.org>
6512
6513 * configure.in (machine): Add `mipsel-*-netbsd*' and
6514 `arm-*-netbsd*'.
6515
65162000-03-01 Gerd Moellmann <gerd@gnu.org>
6517
6518 * configure.in (machine): Add support for `*-auspex-sunos*'.
6519
65202000-02-29 Gerd Moellmann <gerd@gnu.org>
6521
6522 * configure.in (C_OPTIMIZE_SWITCH) [__GNUC__]: Use -O2.
6523
65242000-02-18 Dave Love <fx@gnu.org>
6525
6526 * configure.in: Define NON_GNU_CPP on alpha-dec-osf5+.
6527
65282000-02-18 Andreas Schwab <schwab@suse.de>
6529
6530 * Makefile.in (install-arch-indep): Add eudc to list of installed
6531 info files.
6532
65332000-02-17 Ken Raeburn <raeburn@gnu.org>
6534
6535 * configure.in: Include -lz and -ljpeg (if it's available) when
6536 testing for the tiff library.
6537
65382000-02-17 Gerd Moellmann <gerd@gnu.org>
6539
6540 * configure.in: Remove LISP_FLOAT_TYPE.
6541
65422000-02-12 Dave Love <fx@gnu.org>
6543
6544 * configure.in: Use AC_FUNC_VFORK.
6545
65462000-02-01 Gerd Moellmann <gerd@gnu.org>
6547
6548 * make-dist: Various fixes for new development tree.
6549
6550 * leim-Makefile.in: New file.
6551
65522000-01-31 Gerd Moellmann <gerd@gnu.org>
6553
6554 * Makefile.in (dist): Call ./make-dist.
6555
65562000-01-24 Dave Love <fx@gnu.org>
6557
6558 * configure.in: Remove -G0 from Irix NON_GCC_TEST_OPTIONS.
6559
65602000-01-18 Gerd Moellmann <gerd@gnu.org>
6561
6562 * configure.in (HAVE_GIF): Check for DGifOpen instead of
6563 DGifOpenFileName.
6564
65652000-01-11 Andreas Schwab <schwab@suse.de>
6566
6567 * Makefile.in (install-arch-indep): Update list of info files to
6568 be installed.
6569
65702000-01-05 Dave Love <fx@gnu.org>
6571
6572 * configure.in: Check for jerror.h as well as libjpeg.
6573
65742000-01-03 Andreas Schwab <schwab@suse.de>
6575
6576 * Makefile.in (install-arch-indep): Install autotype*. Run
6577 install-info on autotype and emacs-faq.info.
6578
65791999-12-04 Dave Love <fx@gnu.org>
6580
6581 * Makefile.in (install-arch-indep): Depend on `info'.
6582 (install-strip): Use `install' as sub-make target.
6583
65841999-11-23 Ken Raeburn <raeburn@gnu.org>
6585
6586 * configure.in: Restore Kerberos code deleted on 1999-05-29 that
6587 didn't need to be deleted. Check for the k5crypto library as well
6588 as the crypto library; MIT Kerberos 1.1 changed the name.
6589
65901999-11-18 Dave Love <fx@gnu.org>
6591
6592 * configure.in: Fix NON_GNU_CPP for Irix 6 to avoid failing tests.
6593
65941999-11-11 Erik Naggum <erik@naggum.no>
6595
6596 * configure.in (bitmapdir): Allow for both "bitmaps" directories.
6597
65981999-11-08 Dave Love <fx@gnu.org>
6599
6600 * configure.in: Fix change for --with-pop default.
6601
66021999-11-04 Dave Love <fx@gnu.org>
6603
6604 * configure.in: Default to --with-pop. Change sense of with-gcc
6605 and with-toolkit-scroll-bars messages to reflect the defaults.
6606
66071999-11-01 Gerd Moellmann <gerd@gnu.org>
6608
6609 * INSTALL: Mention the Emacs Lisp Reference.
6610
66111999-10-27 Noah Friedman <friedman@splode.com>
6612
6613 * configure.in: Check for dynamic ptys (/dev/ptmx, /dev/pts/).
6614
66151999-10-23 Gerd Moellmann <gerd@gnu.org>
6616
6617 * Makefile.in (bootstrap): New target.
6618
66191999-10-19 Paul Eggert <eggert@twinsun.com>
6620
6621 Add support for large files. Merge glibc 2.1.2.
6622
6623 * configure.in (AC_CHECK_HEADERS): Add stdio_ext.h.
6624 (HAVE_TM_GMTOFF): New symbol.
6625 (AC_CHECK_FUNCS): Add __fpending, ftello, getloadavg, mblen,
6626 mbrlen, strsignal.
6627 (LOCALTIME_CACHE): Don't include stdlib.h, as config.h does this now.
6628
66291999-10-09 Stefan Monnier <monnier@cs.yale.edu>
6630
6631 * make-dist (dontcompile): Look for the DONTCOMPILE variable rather
6632 than the obsolete dontcompilefiles pseudo-rule in lisp/Makefile.
6633
66341999-10-09 Richard M. Stallman <rms@gnu.org>
6635
6636 * Makefile.in (uninstall, install-arch-indep, install-arch-dep):
6637 Unset CDPATH to prevent cd from generating output.
6638
66391999-10-08 Stefan Monnier <monnier@cs.yale.edu>
6640
6641 * update-subdirs: Also ignore CVS subdirs.
6642
66431999-10-07 Gerd Moellmann <gerd@gnu.org>
6644
6645 * Makefile.in (install-arch-indep): Add ada-mode.
6646
66471999-10-06 Dave Love <fx@gnu.org>
6648
6649 * Makefile.in: Add rules for config.status, configure.
6650
66511999-09-07 Gerd Moellmann <gerd@gnu.org>
6652
6653 * configure.in (--with-sound): Removed.
6654
66551999-08-30 Gerd Moellmann <gerd@gnu.org>
6656
6657 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move the test down after
6658 the test for Xaw3d.
6659 (HAVE_TIFF): Add -lm to library check.
6660
66611999-08-28 Richard Stallman <rms@gnu.org>
6662
6663 * configure.in (USE_TOOLKIT_SCROLL_BARS): Move tests for
6664 -lXaw3d, -lXpm, -ljpeg, -lpng, -ltiff, and -lgif, down
6665 after the other X-related libraries.
6666
66671999-08-21 Dave Love <fx@gnu.org>
6668
6669 * configure.in: Don't check for jpeglib.h.
6670
66711999-08-20 Gerd Moellmann <gerd@gnu.org>
6672
6673 * configure.in (HAVE_TIFF): Remove tiff34 prefix from tiffio.h.
6674 (HAVE_XAW3D): Don't check for Xaw3d if USE_X_TOOLKIT=none.
6675
66761999-08-18 Dave Love <fx@gnu.org>
6677
6678 * configure.in: Check for termcap.h.
6679
66801999-08-15 Gerd Moellmann <gerd@gnu.org>
6681
6682 * configure.in: Add --with-toolkit-scroll-bars. If "no",
6683 use Emacs' scroll bars, even if configured for Motif or when
6684 Xaw3d is available.
6685
66861999-08-12 Wolfgang Rupprecht <wolfgang@wsrcc.com>
6687
6688 * configure.in: Check for getaddrinfo.
6689
66901999-08-04 Eli Zaretskii <eliz@gnu.org>
6691
6692 * config.bat: Make --no-debug work again by removing -gcoff.
6693
66941999-07-30 Dave Love <fx@gnu.org>
6695
6696 * configure.in: Check for stdlib.h.
6697
66981999-07-19 Dave Love <fx@gnu.org>
6699
6700 * configure.in: Grok sparc64-*-linux-gnu*.
6701
67021999-07-12 Richard Stallman <rms@gnu.org>
6703
6704 * Version 20.4 released.
6705
67061999-06-23 Karl Heuer <kwzh@gnu.org>
6707
6708 * make-dist: Unset EMACS_UNIBYTE, so Emacs runs in its default state.
6709 Quote $EMACS, in case it's a program with args.
6710
67111999-06-15 Gerd Moellmann <gerd@gnu.org>
6712
6713 * configure.in (HAVE_GIF): Use libungif instead of libgif
6714 because the former doesn't contain patented compression code.
6715
67161999-05-29 Richard M. Stallman <rms@gnu.org>
6717
6718 * configure.in: Delete the Kerberos stuff.
6719
67201999-05-27 Greg Hudson <ghudson@mit.edu>
6721
6722 * configure.in: Prefer kerberos 5 names.
6723
67241999-04-26 Richard M. Stallman <rms@gnu.org>
6725
6726 * configure.in: Check for libXp.
6727
67281999-04-08 Richard Stallman <rms@gnu.org>
6729
6730 * make-dist: Include change logs in subdirs of `lisp'.
6731
67321999-04-05 Richard Stallman <rms@gnu.org>
6733
6734 * Makefile.in (mkdir): If we create ${datadir}, make it world-readable.
6735 (install-arch-indep): Make ${datadir}/emacs world-readable.
6736
67371999-03-30 Eli Zaretskii <eliz@gnu.org>
6738
6739 * config.bat: Use epaths.* instead of paths.*.
6740
67411999-03-07 Eli Zaretskii <eliz@gnu.org>
6742
6743 * INSTALL: Add detailed instructions to unpack and install
6744 intlfonts on MS-DOS.
6745
67461999-02-26 Richard Stallman <rms@gnu.org>
6747
6748 * configure.in: Use epaths.h and epaths-force instead of paths...
6749
6750 * Makefile.in (epaths-force): Renamed from paths-force;
6751 operate on epaths.in and produce epaths.h.
6752
67531999-02-24 Richard Stallman <rms@gnu.org>
6754
6755 * make-dist: Fix nt/icons directory handling.
6756
67571999-02-22 Simon Josefsson <jas@pdc.kth.se>
6758
6759 * configure.in (f301-fujitsu-uxpv4.1): New target.
6760
67611999-02-20 Richard Stallman <rms@gnu.org>
6762
6763 * make-dist (tempparent): Fix command to update info files.
6764
67651999-02-09 Richard Stallman <rms@gnu.org>
6766
6767 * configure.in (powerpc-apple-netbsd*): New alternative.
6768
67691999-01-25 Geoff Voelker <voelker@cs.washington.edu>
6770
6771 * make-dist: Include the new directory nt/icons in distributions.
6772
67731999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
6774
6775 * configure.in: Change message about HAVE_XFREE386.
6776
67771999-01-07 Eli Zaretskii <eliz@gnu.org>
6778
6779 * config.bat: Support configuring with leim.
6780
67811998-12-16 Petri Kaurinkoski <Petri.Kaurinkoski@hut.fi>
6782
6783 * configure.in (mips-sgi-irix6.5): New target.
6784
67851998-12-16 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
6786
6787 * configure.in: Remove GSS-API support, since it has been removed
6788 from movemail.
6789
67901998-12-04 Markus Rost <rost@delysid.gnu.org>
6791
6792 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
6793
67941998-12-04 Andreas Schwab <schwab@delysid.gnu.org>
6795
6796 * Makefile.in: Don't install customize info file.
6797 Run install-info on viper info file.
6798
67991998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
6800
6801 * Makefile.in (install-arch-dep): Copy fns-*.el from lib-src.
6802
68031998-11-16 Kenichi Handa <handa@etl.go.jp>
6804
6805 * configure.in (*-*-bsdi4*): New target.
6806
68071998-11-13 Ehud Karni <ehud@unix.simonwiesel.co.il>
6808
6809 * configure.in: Fix previous change.
6810
68111998-11-11 Richard Stallman <rms@gnu.org>
6812
6813 * configure.in (aviion-intel): New machine.
6814
68151998-11-04 Kenichi Handa <handa@etl.go.jp>
6816
6817 * configure.in (mips-nec-sysv4*): New target.
6818
68191998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
6820
6821 * Makefile.in (install-arch-dep): Fix last change and use fns-*.el
6822 from lisp.
6823
68241998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
6825
6826 * make-dist: Don't include fns*.el in dist.
6827
68281998-10-30 Dave Love <fx@gnu.org>
6829
6830 * configure.in: Don't mkdir cpp.
6831
68321998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
6833
6834 * Makefile.in (install-arch-dep): Install src/fns-*.el in
6835 ${archlibdir}.
6836
68371998-08-19 Richard Stallman <rms@psilocin.ai.mit.edu>
6838
6839 * Version 20.3 released.
6840
68411998-07-30 Paul Eggert <eggert@twinsun.com>
6842
6843 * Makefile.in (Makefile, src/Makefile, src/config.stamp)
6844 (lib-src/Makefile, man/Makefile, oldXMenu/Makefile)
6845 (lwlib/Makefile, leim/Makefile):
6846 Prepend $(srcdir)/ to rule dependencies outside this dir.
6847
68481998-06-30 Richard Stallman <rms@psilocin.ai.mit.edu>
6849
6850 * configure.in: Use unset CDPATH instead of making it empty.
6851
68521998-06-20 Karl Heuer <kwzh@gnu.org>
6853
6854 * configure.in: Assume unspecified Solaris is 2.5, not 2.4.
6855
68561998-06-07 Richard Stallman <rms@psilocin.ai.mit.edu>
6857
6858 * make-dist (MANIFEST): Include most subdirs, but exclude subdirs.el
6859 and default.el. Sort the results.
6860
68611998-05-31 Karl Heuer <kwzh@gnu.org>
6862
6863 * Makefile.in (install-arch-indep): Don't die if site-lisp/ isn't
6864 writable.
6865
68661998-05-14 Richard Stallman <rms@psilocin.ai.mit.edu>
6867
6868 * Makefile.in (install-arch-indep):
6869 Don't alter site-lisp/subdirs.el if it exists.
6870
68711998-05-12 Richard Stallman <rms@psilocin.ai.mit.edu>
6872
6873 * Makefile.in (install-arch-indep): Put `-' on commands to create
6874 subdirs.el in site-lisp dirs.
6875
68761998-05-07 Richard Stallman <rms@psilocin.gnu.org>
6877
6878 * Makefile.in (install-arch-indep): Fix typo in previous change.
6879
68801998-05-06 Richard Stallman <rms@psilocin.gnu.org>
6881
6882 * Makefile.in (install-arch-indep): Pass --dir-file to install-info.
6883
68841998-04-28 Richard Stallman <rms@psilocin.gnu.org>
6885
6886 * Makefile.in (mkdir): Create the site-lisp dirs.
6887 (install-arch-indep): Make site-lisp/subdirs files world-readable.
6888
68891998-04-26 Richard Stallman <rms@psilocin.gnu.org>
6890
6891 * Makefile.in (INSTALL_INFO): New variable.
6892 (install-arch-indep): Don't replace the dir file if it already exists.
6893 Use the install-info program, via INSTALL_INFO, to add entries.
6894 Make the `info' subdir and the Info files world-readable.
6895
68961998-04-16 Eli Zaretskii <eliz@delysid.gnu.org>
6897
6898 * config.bat: Make sure the environment is large enough to support
6899 all the "set foo=bar" commands. Update pointers to DJGPP FTP sites.
6900
69011998-04-10 Karl Heuer <kwzh@gnu.org>
6902
6903 * make-dist: Don't accept EMACS=t when testing for $EMACS set.
6904
69051998-04-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
6906
6907 * configure.in: Add --with-gssapi to specify GSS-API
6908 authentication support for movemail.
6909
69101998-04-02 Richard Stallman <rms@psilocin.ai.mit.edu>
6911
6912 * Makefile.in (install-arch-indep): Fix previous change.
6913
69141998-03-30 Richard Stallman <rms@psilocin.ai.mit.edu>
6915
6916 * Makefile.in (info): Run man in build dir, not srcdir.
6917
69181998-03-28 Richard Stallman <rms@psilocin.ai.mit.edu>
6919
6920 * Makefile.in (install-arch-indep): Fix previous change.
6921
69221998-03-23 Kenichi Handa <handa@etl.go.jp>
6923
6924 * Makefile.in (top_distclean): Check the existence of `lock' subdir.
6925
69261998-03-22 Richard Stallman <rms@gnu.org>
6927
6928 * Makefile.in (install-arch-indep): Put special subdirs.el files
6929 in site-lisp dirs. Use normal-top-level-add-subdirs-to-load-path.
6930
69311998-03-21 Richard Stallman <rms@psilocin.gnu.org>
6932
6933 * make-dist: Fix shell syntax in check for missing .el or .elc files.
6934
69351998-03-09 Richard Stallman <rms@psilocin.gnu.org>
6936
6937 * configure.in (hppa-hp-hpux1[0-9]*): Handle versions 1X like 10.
6938 (m68*-hp-hpux*): Handle versions 1X like 10.
6939
69401998-03-07 Richard Stallman <rms@psilocin.gnu.org>
6941
6942 * make-dist: PROBLEMS is now in etc, not top level dir.
6943
6944 * Makefile.in (SOURCES): Delete PROBLEMS.
6945
69461998-02-25 Richard Stallman <rms@gnu.org>
6947
6948 * configure.in (hppa*-hp-hpux*): Use hpux10 by default.
6949
6950 * Makefile.in (install-arch-indep): Do chmod a+x on subdirs.
6951
69521998-01-17 Richard Stallman <rms@gnu.org>
6953
6954 * Makefile.in (install-arch-indep): Add semicolon before `else'.
6955
69561998-01-02 Richard Stallman <rms@psilocin.gnu.org>
6957
6958 * make-dist (tempparent): New option --no-check.
6959
6960 * make-dist: Don't do anything with cpp directory.
6961
69621997-12-20 Richard Stallman <rms@psilocin.gnu.org>
6963
6964 * configure.in (sparc-fujitsu-sysv4*): New target.
6965
69661997-12-17 Andreas Schwab <schwab@gnu.org>
6967
6968 * configure.in: Cache more tests. Add missing quotes around
6969 message with embedded comma.
6970
69711997-12-04 Karl Heuer <kwzh@gnu.org>
6972
6973 * Makefile.in (unlock, relock): Don't reference cpp/ directory.
6974
69751997-11-26 Joel N. Weber II <devnull@gnu.org>
6976
6977 * make-dist: Changed the comment about `umask 0' to say `Don't
6978 restrict access to any files.'; previously it said `Don't protect
6979 any files', which may have implied that we think fascism is good.
6980
69811997-11-24 Paul Eggert <eggert@twinsun.com>
6982
6983 * configure.in (AC_CHECK_FUNCS): Add strftime. The new GNU C library
6984 strftime needs the underlying host's strftime for locale dependent
6985 formats.
6986
69871997-11-20 Abraham Nahum <miko@uxsrvc.tti.co.il>
6988
6989 * configure.in (i586-dg-dguxR4.*): New name in case branch.
6990
69911997-11-20 Eli Zaretskii <eliz@is.elta.co.il>
6992
6993 * config.bat: Configure the man subdirectory.
6994
69951997-11-07 Paul Eggert <eggert@twinsun.com>
6996
6997 * configure.in (AC_CHECK_LIB): Add -lintl.
6998
69991997-11-07 Karl Heuer <kwzh@gnu.org>
7000
7001 * make-dist (check for .elc files): Avoid bash-specific syntax.
7002 (check for overflow 14-char limit): Simplify.
7003
70041997-11-07 Richard Stallman <rms@gnu.org>
7005
7006 * Makefile.in (install): Move blessmail last.
7007
70081997-10-02 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7009
7010 * configure.in (gettimeofday, one arg or two):
7011 Clarify messages by avoiding double negative.
7012
70131997-09-30 Karl Eichwalder <ke@suse.de>
7014
7015 * Makefile.in (install-arch-indep): Install the widget info file.
7016
70171997-09-24 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7018
7019 * configure.in (with-pop, with-kerberos): Need to check Kerberos
7020 libraries in reverse order, so that libraries will appear in the
7021 correct dependency order on the link line (and so that the
7022 configure checks themselves will work properly when early
7023 libraries depend on later ones).
7024
70251997-09-21 Erik Naggum <erik@naggum.no>
7026
7027 * make-dist (making links to `src'): Keep timestamp on copied files.
7028
7029 * make-delta: New script to produce delta distributions.
7030
70311997-09-19 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7032
7033 * Version 20.2 released.
7034
70351997-09-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7036
7037 * Version 20.1 released.
7038
7039 * Makefile.in (install-leim): Depend on mkdir.
7040 (leim): Depend on src.
7041
70421997-09-13 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7043
7044 * configure.in: Recognize alpha* instead of just alpha.
7045
70461997-09-12 Paul Eggert <eggert@twinsun.com>
7047
7048 * leim-Makefile.in (mostlyclean, maintainer-clean): New targets.
7049
70501997-09-12 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7051
7052 * update-subdirs: Use rm -f.
7053
70541997-09-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7055
7056 * update-subdirs: Delete subdirs.el if this dir has no subdirs.
7057 Ignore subdirs named Old.
7058
70591997-08-04 Kenneth Stailey <kstailey@elbereth.disclosure.com>
7060
7061 * configure.in: Add OpenBSD clause to set $machine.
7062
70631997-09-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7064
7065 * make-dist: Recompile everything after updating various Lisp files.
7066 Recompile in leim as well as lisp.
7067 Check in leim as well as lisp for mismatched files and too-long names.
7068
70691997-09-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7070
7071 * Makefile.in (TAGS tags): Simply refer this to the src subdir.
7072
70731997-08-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7074
7075 * Makefile.in (install-arch-indep): Verify ./lisp has simple.el in it
7076 before trying to copy anything from it.
7077
70781997-08-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7079
7080 * Makefile.in (man/Makefile): New target.
7081 (tags): Define env var EMACS and run Makefile from build dir.
7082
70831997-08-27 Eli Zaretskii <eliz@psilocin.gnu.ai.mit.edu>
7084
7085 * config.bat: If src/_gdbinit doesn't exist, try using
7086 src/.gdbinit to create it (for building on Windows 95).
7087
70881997-08-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7089
7090 * Makefile.in (install-arch-indep):
7091 Discard extra data in tar | tar pipes.
7092
70931997-08-24 NIIBE Yutaka <gniibe@mri.co.jp>
7094
7095 * configure.in (x_default_search_path): Corrected
7096 '${x_library}' to '${x_library}/X11'.
7097
70981997-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7099
7100 * configure.in (HAVE_MOTIF_2_1): Test for Motif 2.1.
7101
71021997-08-22 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
7103
7104 * configure.in: Support auto-configuration of both Kerberos V4 and
7105 Kerberos V5 for movemail, including detection of V4 and V5 header
7106 files and libraries.
7107
71081997-08-16 NIIBE Yutaka <gniibe@etl.go.jp>
7109
7110 * configure.in: Compute x_default_search_path
7111 and substitute into makefiles.
7112
7113 * Makefile.in (paths-force): Store PATH_X_DEFAULTS in paths.h.
7114
71151997-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7116
7117 * Makefile.in (install-arch-indep): Run list-load-path-shadows.
7118
71191997-08-07 Erik Naggum <erik@naggum.no>
7120
7121 * configure.in: Remove lockdir, it is no longer needed.
7122 * Makefile.in (mkdir): Don't create lockdir.
7123 (lockdir): Variable deleted.
7124 (paths-force): Don't operate on PATH_LOCK.
7125
71261997-08-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7127
7128 * leim-Makefile.in (clean, distclean): New targets.
7129
7130 * make-dist: Include leim/ChangeLog in leim distribution.
7131
71321997-08-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7133
7134 * configure.in (i*86-*-sysv4.2uw*): Set NON_GNU_CPP.
7135
71361997-07-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7137
7138 * Makefile.in (CPPFLAGS): Get this from configure, like CFLAGS.
7139
71401997-07-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7141
7142 * Makefile.in (LDFLAGS): Get this from configure, like CFLAGS.
7143
71441997-07-25 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7145
7146 * make-dist: Update leim/leim-list.el.
7147 Pass along value of $EMACS when updating lisp dir.
7148
71491997-07-25 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7150
7151 * configure.in (doug_lea_malloc): Make __after_morecore_hook a
7152 prerequisite to the use of Doug Lea's malloc.
7153
71541997-07-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7155
7156 * Makefile.in (top_distclean): Use -f to delete contents of lock dir.
7157
7158 * make-dist: Use name leim/SKK-DIC, not leim/SKK.
7159
71601997-07-16 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7161
7162 * make-dist: Arrange for the leim tar file to unpack in emacs-M.N/leim.
7163
71641997-07-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7165
7166 * configure.in (mips-sony-newsos6*): File news-risc.h renamed
7167 to news-r6.h.
7168
71691997-07-10 Eli Zaretskii <eliz@is.elta.co.il>
7170
7171 * config.bat: Use `sed' instead of `cp', which might not be
7172 installed.
7173
71741997-07-09 Kenichi Handa <handa@etl.go.jp>
7175
7176 * Makefile.in (mostlyclean): Add cleaning leim directory.
7177 (clean, distclean, maintainer-clean): Likewise.
7178
71791997-07-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7180
7181 * make-dist (bogosities): Check subdirs of `lisp' also.
7182
71831997-07-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7184
7185 * make-dist (etc): Really avoid symlinks now.
7186 (lisp): Don't delete from subdirs the things we never copy.
7187
71881997-07-07 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7189
7190 * Makefile.in (install-arch-indep): Correct the target name.
7191 The first letter `i' was dropped by the previous change of mine.
7192
71931997-07-06 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7194
7195 * configure.in (leim/Makefile): Generate this.
7196 (*-sysv4.2uw*): Recognize new alternative.
7197
7198 * leim-Makefile.in: Renamed from leim-Makefile.
7199
7200 * make-dist: Set up real-leim subdirectory,
7201 with the real contents of leim; then move it to
7202 a separate top-level directory.
7203
7204 * make-dist: Don't mention site-lisp, site-init, site-start
7205 or default, when listing files hat are not compiled and should be.
7206
7207 * configure.in: Create src/config.stamp at the end.
7208
72091997-07-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7210
7211 * Makefile.in (install-leim): Correct previous change.
7212
72131997-07-02 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7214
7215 * Makefile.in (install-leim): New target.
7216 (install): Depend on install-leim.
7217
72181997-07-01 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7219
7220 * Makefile.in (SUBDIR): Add leim.
7221 (SUBDIR_MAKEFILES): Add leim/Makefile.
7222 (leim/Makefile): New target.
7223
72241997-07-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7225
7226 * leim-Makefile: New file.
7227 * make-dist: Initialize a `leim' subdirectory with that makefile.
7228
72291997-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7230
7231 * configure.in (GNU_MALLOC_reason): Fix message text.
7232
72331997-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7234
7235 * make-dist (lisp): Don't process subdirs that start with =.
7236 (etc): Copy symlinks, as in src.
7237
72381997-06-26 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7239
7240 * configure.in (i*86-*-unixware*): New alternative.
7241
72421997-06-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7243
7244 * Makefile.in (src/config.stamp): Target renamed from src/config.h
7245 and touch it explicitly.
7246
7247 * configure.in (mips-sony-newsos6*): New alternative.
7248 (mips-*-linux-gnu*): New alternative.
7249 (*-*-bsdi*): New alternative.
7250 (i*86-*-bsd386, i*86-*-bsdi...): Delete old alternatives.
7251
72521997-06-22 Dave Love <d.love@dl.ac.uk>
7253
7254 * Makefile.in (lib-src): Depend on src/config.h (e.g. for movemail.o).
7255 (src/config.h): New target to re-configure if src/config.in is patched.
7256
72571997-06-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7258
7259 * configure.in (shutdown): Check for `shutdown' function.
7260
72611997-06-18 Kenichi Handa <handa@psilocin.gnu.ai.mit.edu>
7262
7263 * update-subdirs: Include the directory "language" in subdirs.
7264
72651997-06-01 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7266
7267 * configure.in (m88k-dg-dgux4*): New alternative.
7268 (alpha-*-netbsd*): New alternative.
7269 (powerpcle-*-solaris2*): New alternative.
7270
72711997-05-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7272
7273 * make-dist: Warn about .el files that are not compiled.
7274
72751997-05-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7276
7277 * Makefile.in (dist): Don't run update-subdirs here,
7278 since make-dist now gets that done.
7279
7280 * make-dist: Use the new `updates' target in lisp/Makefile.
7281
7282 * make-dist: Use new non-file targets in lisp/Makefile.
7283
72841997-04-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7285
7286 * make-dist: Handle all subdirs of `lisp' uniformly.
7287 Don't handle `term' and `language' specially.
7288 Clear out umask at the beginning.
7289
72901997-04-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7291
7292 * make-dist: Use Make to update finder-inf.el and autoloads.
7293 Also update cus-load.el.
7294
72951997-04-09 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7296
7297 * configure.in (doug_lea_malloc): First check for SYSTEM_MALLOC,
7298 in case it is desirable to disable the GNU malloc features with glibc.
7299
73001997-04-08 Marcus G. Daniels <marcus@cathcart.sysc.pdx.edu>
7301
7302 * configure.in (DOUG_LEA_MALLOC):
7303 Define if malloc_{get,set}_state exist.
7304
73051997-03-05 Kenichi Handa <handa@etl.go.jp>
7306
7307 * make-dist: Make links for files under lisp/language.
7308
73091997-02-20 Kenichi Handa <handa@etl.go.jp>
7310
7311 * update-subdirs: Exclude the directory "language" from subdirs.
7312
73131997-01-26 Karl Heuer <kwzh@gnu.ai.mit.edu>
7314
7315 * configure.in: Check for rint and cbrt.
7316
73171997-01-01 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7318
7319 * make-dist: Use $EMACS to say where to run Emacs.
7320 Add --no-update option.
7321
73221996-12-30 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7323
7324 * configure.in (hppa1.1-hitachi-hiuxmpp): New configuration.
7325
73261996-12-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7327
7328 * make-dist (copying src): Check thoroughly for symlinks
7329 and copy them in all cases. Regularize the linking of *.in
7330 and *.opt and ChangeLog files.
7331 (copying lib-src): Likewise.
7332 Don't rm getdate.c or y.tab.*--they don't exist any more.
7333
73341996-12-18 Jonathan I. Kamens <jik@annex-1-slip-jik.cam.ov.com>
7335
7336 * configure.in: Check for libmail, maillock.h and
7337 touchlock (for movemail).
7338
73391996-12-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7340
7341 * configure.in (limits.h): Check for this file.
7342
73431996-12-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7344
7345 * configure.in (rs6000-ibm-aix4.2): New alternative.
7346 (rs6000-ibm-aix4.0): New alternative.
7347 (rs6000-ibm-aix4*): Assume aix 4.1 by default.
7348
73491996-11-22 Ben Harris <bjh21@cam.ac.uk>
7350
7351 * configure.in: Recognize vax-*-netbsd*.
7352
73531996-11-06 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7354
7355 * configure.in (locallisppath): Add leim directory.
7356
73571996-10-31 Eli Zaretskii <eliz@is.elta.co.il>
7358
7359 * config.bat: Make sure `mv' supports forward slashes and -f.
7360
73611996-10-28 Christian Limpach <chris@nice.ch>
7362
7363 * configure.in (hppa*-next-nextstep*): * added after hppa
7364 to accept hppa1.0 and hppa1.1.
7365
73661996-10-05 Marcus G. Daniels <marcus@coulee.tdb.com>
7367
7368 * configure.in: Provide an empty default for LD_SWITCH_X_SITE_AUX.
7369 * configure.in (ld_switch_machine): Fix typo.
7370
73711996-09-28 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7372
7373 * configure.in: Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
7374 from config.h and use them in $ac_link.
7375
73761996-09-28 Erik Naggum <erik@psilocin.gnu.ai.mit.edu>
7377
7378 * configure.in: Create a subdir named `lisp'.
7379
73801996-09-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7381
7382 * configure.in: Check for getcwd.
7383
73841996-09-04 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7385
7386 * configure.in: Check for termios.h. Check for setpgid.
7387
73881996-08-31 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7389
7390 * configure.in: Check for setrlimit.
7391
73921996-08-31 Paul Eggert <eggert@twinsun.com>
7393
7394 * configure.in: Check for sys/systeminfo.h, getdomainname, sysinfo.
7395
73961996-08-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7397
7398 * configure.in: Check for utimes.
7399
7400 * configure.in: Check for com_err library, but only
7401 if --with-kerberos was used. Check for krb and des
7402 only if --with-kerberos.
7403
74041996-08-26 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7405
7406 * Makefile.in (INSTALL_STRIP): New variable.
7407 (install-strip): Set INSTALL_STRIP, not INSTALL_PROGRAM.
7408 (install-arch-dep): Use INSTALL_STRIP, and pass it to lib-src.
7409
74101996-08-25 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7411
7412 * configure.in: Check for krb and des libraries.
7413
74141996-08-24 Richard Stallman <rms@ethanol.gnu.ai.mit.edu>
7415
7416 * configure.in (*-sunos4.1.[3-9]*noshare):
7417 Use sunos413, not sunos4-1-3.
7418 (m88k-dg-dgux5.4R3*): Use dgux5-4-3, not dgux5-4r3.
7419 (arm-acorn-riscix1.2*): Use riscix12, not riscix1-2.
7420
74211996-08-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7422
7423 * Makefile.in (src/paths.h): Target deleted.
7424 (paths-force): Delete all dependencies on this target
7425 but don't delete the target.
7426 (install): Depend on `all'.
7427 (paths-force): Don't print a message.
7428
7429 * configure.in: Generate src/paths.h here.
7430
74311996-08-18 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7432
7433 * configure.in (NON_GCC_LINK_TEST_OPTIONS, GCC_LINK_TEST_OPTIONS):
7434 New variables that affect linking only.
7435 (alpha-dec-osf*): Use those instead of previous change.
7436
74371996-08-15 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7438
7439 * Makefile.in (install-arch-indep): Install info/messages.
7440
74411996-08-11 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7442
7443 * Version 19.33 released.
7444
74451996-08-10 Marcus G. Daniels <marcus@sayre.sysc.pdx.edu>
7446
7447 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
7448 Fix previous change.
7449
74501996-08-08 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7451
7452 * configure.in (i[3456]86-sequent-ptx4*, i[3456]86-sequent-sysv4*):
7453 New alternative.
7454
74551996-08-07 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7456
7457 * configure.in (alpha-dec-osf*): Specify GCC_TEST_OPTIONS
7458 and NON_GCC_TEST_OPTIONS.
7459
74601996-08-06 Paul Eggert <eggert@twinsun.com>
7461
7462 * configure.in (LOCALTIME_CACHE): Don't put a string literal
7463 "TZ=..." in environ.
7464
74651996-08-04 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7466
7467 * make-dist (msdos): Add is_exec.c, sigaction.c to distribution.
7468
74691996-08-03 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7470
7471 * configure.in (*-sunos4.1.[3-9]*noshare): Move this before
7472 the more general *-sunos4.1.[3-9]* clause.
7473
74741996-07-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7475
7476 * Version 19.32 released.
7477
7478 * configure.in (*-sco3.2v5*):
7479 Set OVERRIDE_CPPFLAG to a string of one space.
7480 Fix the code that uses OVERRIDE_CPPFLAG.
7481
74821996-07-16 Karl Heuer <kwzh@gnu.ai.mit.edu>
7483
7484 * configure.in: Undo previous change.
7485
74861996-07-16 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7487
7488 * config.sub: Use `pc', not `unknown', when canonicalizing
7489 the vendor for ...86.
7490
74911996-07-15 David Mosberger-Tang <davidm@AZStarNet.com>
7492
7493 * configure.in: Check for termios.h header.
7494
74951996-07-11 Bill Mann <dvmann@dvncr.praxisint.com>
7496
7497 * configure.in: Use s/usg5-4-3.h for ncr-i[3456]86-sysv4.3.
7498
74991996-07-07 Karl Heuer <kwzh@gnu.ai.mit.edu>
7500
7501 * configure.in: Split bsdos2 and bsdos2-1.
7502
75031996-07-06 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7504
7505 * config.sub: If last two words are not a recognized
7506 KERNEL-OS pair, use just the last word as OS, as in 19.31.
7507 Make conversion of gnu/linux to linux-gnu really work.
7508
7509 * config.sub: If vendor unspecified with i386, use `pc' not `unknown'.
7510
75111996-06-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7512
7513 * configure.in (check for using Lucid widgets by default):
7514 Eliminate indentation that confuses some compilers.
7515
75161996-06-29 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7517
7518 * config.sub: Convert linux and gnu/linux to linux-gnu.
7519
7520 * make-dist: Don't update getdate.c.
7521 Ignore =... files when checking for too-long Lisp file names.
7522
75231996-06-28 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7524
7525 * configure.in (euidaccess): Check for that, not for eaccess.
7526
75271996-06-27 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7528
7529 * configure.in (sunos4.1.[3-9]*noshare): Eliminate dash from
7530 before `noshare'.
7531 (mips-sgi-irix6*): Specify NON_GCC_TEST_OPTIONS.
7532
75331996-06-21 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7534
7535 * configure.in: Rename lignux to linux-gnu in configuration names.
7536 Use gnu-linux as the opsys value (s/ file name).
7537 Allow i686 just like i386, i486, i586.
7538
75391996-06-20 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7540
7541 * configure.in (i*86-*-sco3.2v5): New alternative.
7542 (OVERRIDE_CPPFLAG): New variable.
7543 (CPPFLAGS): If OVERRIDE_CPPFLAG is set, use that.
7544
7545 * configure.in: Specify vpath for .texi files.
7546
75471996-06-09 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7548
7549 * configure.in: Always check for HAVE_X11R5.
7550 Separately decide whether to use a toolkit by default.
7551
75521996-06-04 Bill Mann <dvmann@dvhpux1.praxisint.com>
7553
7554 * configure.in: If X11R5 is missing the Xaw headers,
7555 default to --with-x-toolkit=no.
7556
75571996-05-31 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7558
7559 * configure.in (powerpc-*-solaris2*): Use ibmrs6000, not rs6000.
7560
75611996-05-30 Richard Stallman <rms@psilocin.gnu.ai.mit.edu>
7562
7563 * Makefile.in (install-arch-indep): If cd etc makes output,
7564 don't treat that as part of the tar data.
7565 Check that ./lisp actually exists.
7566
75671996-05-29 Karl Heuer <kwzh@gnu.ai.mit.edu>
7568
7569 * make-dist: Check for long file names.
7570
75711996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
7572
7573 * Version 19.31 released.
7574
75751996-05-25 Karl Heuer <kwzh@gnu.ai.mit.edu>
7576
7577 * configure.in: Recognize sparc-*-lignux.
7578
75791996-05-03 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
7580
7581 * make-dist: Include nt/inc/arpa and nt/inc/netinet in the dist.
7582 Don't include config.w95.
7583
75841996-04-21 Richard Stallman <rms@delasyd.gnu.ai.mit.edu>
7585
7586 * make-dist: Replace --no-clean-up and --no-tar options
7587 with --clean-up and --tar, so that the default is useful.
7588
75891996-04-15 Eli Zaretskii <eliz@is.elta.co.il>
7590
7591 * config.bat: Make sure the GDB init file is called src/_gdbinit;
7592 if not, tell the user to rename it and abort.
7593
75941996-04-14 Eli Zaretskii <eliz@is.elta.co.il>
7595
7596 * config.bat: With DJGPP v1.x, use `COFF2EXE' to produce JUNK.EXE
7597 test program.
7598
75991996-04-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7600
7601 * config.bat (djgpp_ver): Variable renamed from djgpp-ver.
7602
7603 * make-dist (MANIFEST): Fix previous change.
7604 (msdos): Put mainmake.v2 into the dist.
7605
76061996-04-10 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
7607
7608 * make-dist: Exit if autoconf fails.
7609
76101996-04-10 Eli Zaretskii <eliz@is.elta.co.il>
7611
7612 * config.bat: Set djgpp-ver, and unset it at the end.
7613 Add a number of conditionals for DJGPP version 2.
7614 Rename label libsrc2 to libsrc3.
7615 Substitute for LDFLAGS in src/Makefile.
7616 Substitute for ALL_CFLAGS in lib-src/Makefile.
7617
76181996-04-08 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7619
7620 * configure.in (ncurses): Check this after checking fns like strerror.
7621
76221996-04-08 Erik Naggum <erik@naggum.no>
7623
7624 * make-dist (MANIFEST): Don't include lines from =files.
7625
76261996-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7627
7628 * make-dist: Don't put lisp/dired.todo in the dist.
7629
76301996-04-05 Richard Stallman <rms@lucy.gnu.ai.mit.edu>
7631
7632 * configure.in (HAVE_NCURSES): Look for library named ncurses.
7633
7634 * configure.in (setlocale): Check for it.
7635
7636 * configure.in (*-*-sysv4.2*): If no /usr/ccs/lib/cpp, use /lib/cpp.
7637
76381996-03-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7639
7640 * configure.in: Use lignux instead of linux as value of opsys.
7641
76421996-03-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7643
7644 * Makefile.in (install-strip): Fix whitespace.
7645 Get rid of continuation.
7646
7647 * config.sub: Convert linux or gnu/linux to lignux.
7648
76491996-03-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7650
7651 * configure.in: Accept lignux in configuration name.
7652
76531996-03-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7654
7655 * Makefile.in (install-strip): New target.
7656
76571996-03-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7658
7659 * Makefile.in (top_distclean): Use `|| true' to ignore error in rm.
7660 -f failed to do the job on Suns.
7661
76621996-03-13 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7663
7664 * Makefile.in (install-arch-dep): Don't depend on install-arch-indep.
7665
7666 * configure.in (linux/version.h): Check for this header.
7667
76681996-03-12 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
7669
7670 * configure.in: Remove -fno-builtin hackery from -lm check.
7671
76721996-03-08 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
7673
7674 * configure.in (-lm check): If $GCC, append -fno-builtin to $CC for
7675 just this test.
7676
7677 * configure.in (AC_PREREQ): Require version 2.8 of Autoconf.
7678
76791996-03-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7680
7681 * configure.in: Check for ncurses.
7682
76831996-02-28 Paul Eggert <eggert@twinsun.com>
7684
7685 * configure.in (LOCALTIME_CACHE):
7686 Also define if localtime mishandles unsetting TZ.
7687 This works around a localtime bug in mips-dec-ultrix.
7688
76891996-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7690
7691 * make-dist (finder-inf.el): Use finder-compile-keywords-make-dist.
7692
7693 * configure.in: Improve messages about X versions.
7694
76951996-02-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7696
7697 * configure.in (LOCALTIME_CACHE): Cope if $ac_cv_func_tzset is null.
7698
76991996-02-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7700
7701 * configure.in (HAVE_X11XTR6): Set it as a shell variable.
7702 (HAVE_LIBXMU): If HAVE_X11XTR6, use -lSM and -lICE.
7703
7704 * Makefile.in (install-arch-dep): Depend on install-arch-indep.
7705 (install): Put install-arch-indep before install-arch-dep.
7706
77071996-02-20 Dave Love <d.love@dl.ac.uk>
7708
7709 * INSTALL: Clarify info about MS-DOS path handling.
7710
77111996-02-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7712
7713 * Makefile.in (install-arch-indep): Install info/ccmode*.
7714 In previous change, protect against /bin/pwd returning null string.
7715
77161996-02-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7717
7718 * Makefile.in (install-arch-indep): Copy build-dir's lisp subdir
7719 to lispdir.
7720
77211996-02-01 Paul Eggert <eggert@twinsun.com>
7722
7723 * configure.in (LD_RUN_PATH): Prepend x_libraries to this envvar.
7724
77251996-01-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7726
7727 * configure.in (HAVE_TIMEVAL): Set explicitly to `no' if test fails.
7728
77291996-01-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7730
7731 * Makefile.in (extraclean): Use ${top_distclean} to ensure
7732 we delete everything distclean deletes.
7733
77341996-01-23 Karl Heuer <kwzh@gnu.ai.mit.edu>
7735
7736 * make-dist (lwlib): Don't distribute lwlib-Xol* files.
7737
77381996-01-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7739
7740 * configure.in (HAVE_X11): Merge $LD_SWITCH_X_SITE
7741 into LDFLAGS instead of into LIBS.
7742
77431996-01-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7744
7745 * configure.in (HAVE_XMU): Fix typo in previous change.
7746
77471996-01-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7748
7749 * configure.in [Solaris]: Don't let $CC make us use /usr/ucb/cc.
7750
77511996-01-10 Erik Naggum <erik@naggum.no>
7752
7753 * configure.in (USE_X_TOOLKIT = maybe): Delete redundant `fi'.
7754
77551996-01-10 Karl Heuer <kwzh@gnu.ai.mit.edu>
7756
7757 * Makefile.in (install-arch-indep): Ignore error if no chmod -R.
7758
77591996-01-10 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7760
7761 * configure.in (HAVE_XMU): Check for libXmu.a only if using toolkit
7762 and use -lXt to link it.
7763
77641996-01-08 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7765
7766 * configure.in (locallisppath): Put version-specific dir first.
7767
77681996-01-07 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7769
7770 * configure.in (hppa-*-nextstep*): New alternative.
7771 (USE_X_TOOLKIT): By default, set this to "maybe";
7772 and change that later to LUCID or "no" according to X11 version.
7773
7774 * make-dist: Recompile outdated .elc files and update all autoloads.
7775
77761996-01-05 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
7777
7778 * configure.in (locallisppath): Fix typo in last change: " -> '.
7779
77801996-01-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7781
7782 * configure.in (locallisppath): Add ../emacs/VERSION/site-lisp.
7783
77841995-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7785
7786 * Makefile.in (install-arch-indep): Give all files read permission.
7787
77881995-12-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7789
7790 * configure.in (hppa*-hp-hpux9shr*, hppa*-hp-hpux9*, hppa*-hp-hpux*):
7791 If it is hpux 9, check for /usr/include/X11R5 and /usr/lib/x11R5.
7792
77931995-12-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7794
7795 * configure.in: Determine HAVE_X11R6.
7796 (HAVE_MENUS): Renamed from HAVE_X_MENU.
7797
77981995-12-21 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7799
7800 * configure.in: Just "solaris" now defaults to version 2.4.
7801 Add sunos4.1.n-noshare as alternative.
7802
78031995-12-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7804
7805 * configure.in (mips-sgi-irix6*): Set NON_GNU_CPP.
7806
78071995-11-29 Erik Naggum <erik@naggum.no>
7808
7809 * Makefile.in (install-arch-indep): Add missing backslash.
7810
78111995-11-29 Karl Eichwalder <ke@ke.Central.DE>
7812
7813 * Makefile.in (install-arch-indep): Don't install
7814 lispdir/[Mm]akefile*, lispdir/ChangeLog, lispdir/dired.todo.
7815
78161995-11-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7817
7818 * Makefile.in (install-arch-indep): Fix previous change.
7819
7820 * configure.in (mips-sni-sysv*): New alias for mips-siemens-sysv*.
7821
78221995-11-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7823
7824 * Version 19.30 released.
7825
7826 * make-dist (lisp): Exclude subdirs.el.
7827
78281995-11-22 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7829
7830 * make-dist (etc): Delete *.orig and *.rej.
7831
78321995-11-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7833
7834 * Makefile.in (install-arch-indep): Rename old info/dir only if exists.
7835
78361995-11-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7837
7838 * configure.in (hppa*-hp-hpux10*): Use s/hpux10.h.
7839
78401995-11-14 Geoff Voelker <voelker@cs.washington.edu>
7841
7842 * make-dist (nt): Rename install, readme, and todo to
7843 INSTALL, README, and TODO.
7844
78451995-11-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7846
7847 * make-dist (lisp): Don't distribute site-start.
7848
78491995-11-06 Karl Heuer <kwzh@gnu.ai.mit.edu>
7850
7851 * make-dist: Break the hard link on alloca.c.
7852
78531995-11-04 Richard Stallman <rms@whiz-bang.gnu.ai.mit.edu>
7854
7855 * configure.in (LIBS): Add libsrc_libs and keep the old LIBS.
7856
78571995-11-02 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
7858
7859 * make-dist (src, lib-src): Don't distribute Makefile.c.
7860 (etc/e): Do cleanup in $tempdir/etc/e, not $tempdir/etc.
7861
78621995-10-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7863
7864 * Makefile.in (mkdir): Create man1dir, not mandir.
7865 (uninstall): Use man1dir, not mandir.
7866
78671995-10-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7868
7869 * Makefile.in (man1dir): New variable.
7870 (install-arch-indep): Use man1dir.
7871
7872 * configure.in (sparc-*-nextstep*): Remove incorrect .h's.
7873
7874 * make-dist: Create lisp/MANIFEST.
7875
78761995-10-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
7877
7878 * configure.in (m68k-*-linux*): New alternative.
7879
78801995-10-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7881
7882 * make-dist: Use new names config.in, paths.in, and
7883 {src,lib-src}/Makefile.in.
7884
78851995-10-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
7886
7887 * configure.in: Don't bother checking for drem.
7888
78891995-10-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7890
7891 * Makefile.in (distclean): Delete line with just a tab in it.
7892 (install-arch-indep): Delete spaces that precede tabs.
7893 Delete spurious `fi' left from previous change.
7894 (install): Supply `true' as command, to avoid null command.
7895
78961995-10-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7897
7898 * configure.in (--with-x-toolkit)): Add `athen' as alias for `athena'.
7899
79001995-09-30 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7901
7902 * configure.in (powerpc-*-solaris2): New alternative.x
7903
79041995-09-12 Karl Heuer <kwzh@gnu.ai.mit.edu>
7905
7906 * Makefile.in (src/paths.h, paths-force): Use paths.h.$$ instead
7907 of paths.h.tmp$$, to avoid going beyond 14 characters.
7908
79091995-09-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7910
7911 * configure.in: Improve error msg for invalid --with-x-toolkit value.
7912
79131995-09-06 Paul Eggert <eggert@twinsun.com>
7914
7915 * configure.in (LOCALTIME_CACHE): Define if tzset exists and
7916 if localtime caches TZ. Check for tzset.
7917
79181995-09-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7919
7920 * config.bat: Simplify using new names file names src/makefile.in,
7921 config.in, paths.in. Change Echo commands not to use `.
7922
79231995-08-31 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7924
7925 * Makefile.in (install-arch-indep): Always install the new dir file;
7926 rename the previous dir file to dir.bak or dir.old.
7927
79281995-08-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7929
7930 * configure.in (RANLIB): Substitute this into makefiles.
7931 Set it specially on solaris; set it by default on other systems.
7932
7933 * configure.in: Fix previous Alpha change.
7934
79351995-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7936
7937 * configure.in (i*386-*-isc4.*): Set GCC_TEST_OPTIONS and
7938 NON_GCC_TEST_OPTIONS.
7939
79401995-08-10 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7941
7942 * configure.in (CFLAGS): When computing CFLAGS and REAL_CFLAGS
7943 from config.h, use SPECIFIED_CFLAGS to get what the user specified.
7944
7945 * configure.in (alpha-*-linux*): New configuration.
7946
79471995-08-05 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7948
7949 * configure.in (m68*-next-*): Use m68k.h and nextstep.h.
7950 (m68k-next-nextstep*): New alias for that.
7951 (i*86-*-nextstep*): Use nextstep.h.
7952 (sparc-*-nextstep*): New configuration.
7953
79541995-08-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7955
7956 * configure.in (CPP): Save original CFLAGS value in SPECIFIED_CFLAGS.
7957 And get CFLAGS from config.h if SPECIFIED_CFLAGS is null.
7958
79591995-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7960
7961 * configure.in: Handle sunos4shr by sharing; not like sunos4*.
7962 Determine GETTIMEOFDAY_ONE_ARGUMENT by experiment.
7963
79641995-07-18 Mike Long <mike.long@analog.com>
7965
7966 * make-dist: Fix update of finder-inf.el, and byte-compile it.
7967
79681995-07-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7969
7970 * Makefile.in (src/paths.h, paths-force):
7971 Rename src/paths.h.in to src/paths.in.
7972 (Makefile): Depend on src/Makefile.in, not src/Makefile.in.in.
7973
7974 * configure.in: Rename {src,lib-src}/Makefile.in.in to Makefile.in.
7975 Use Makefile.c for intermediate file.
7976 Rename src/config.h.in to src/config.in.
7977
79781995-07-17 Richard Stallman <rms@gnu.ai.mit.edu>
7979
7980 * configure.in (mips-dec-ultrix*): Assume version 4.3.
7981 (mips-dec-ultrix4.[12]): New alternative for old versions.
7982
79831995-07-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
7984
7985 * make-dist: Don't break intra-tree links.
7986
79871995-07-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
7988
7989 * configure.in: Put back archlibdir initialization. Require
7990 autoconf 2.4.1 or later.
7991
79921995-07-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7993
7994 * configure.in: Use sunos4shr normally for Sunos 4.1.[3-9].
7995 (mips-mips-riscos5*): New alternative.
7996
79971995-06-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
7998
7999 * Makefile.in (uninstall, install-arch-indep): Install info/ediff*.
8000
80011995-06-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8002
8003 * configure.in (bindir, datadir, sharedstatedir, libexecdir)
8004 (mandir, infodir, archlibdir): Initializations deleted.
8005
8006 * configure.in: On hpux9, use hpux9-x11r4.h if we have X11R4.
8007 On hpux9shr, use hpux9shxr4.h.
8008
80091995-06-24 Morten Welinder <terra+@cs.cmu.edu>
8010
8011 * configure.in: Added target mips-dec-mach_bsd4.3.
8012 * config.guess: Guess mips-dec-mach_bsd4.3.
8013
80141995-06-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8015
8016 * Makefile.in (mkdir): Use symbolic chmod.
8017
80181995-06-22 Paul Eggert <eggert@twinsun.com>
8019
8020 * configure.in: Treat SunOS 4.1.4 like SunOS 4.1.3. (Likewise for
8021 SunOS 4.1.5 through 4.1.9, should they ever exist.)
8022
80231995-06-22 Paul Eggert <eggert@twinsun.com>
8024
8025 * Makefile.in (SUBDIR_MAKEFILES):
8026 Add man/Makefile, so `make distclean' removes it.
8027 (top_distclean): Add config.log to the list of files to be removed.
8028
80291995-06-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8030
8031 * Version 19.29 released.
8032
80331995-06-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8034
8035 * configure.in: Fix the previous change to verify that the -b
8036 option really solves the problem.
8037
8038 * make-dist (nt): Explicitly include makefile.nt and makefile.def only.
8039
80401995-06-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8041
8042 * configure.in: Test whether XFree86 needs -b i486-linuxaout to link.
8043
80441995-06-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8045
8046 * configure.in: Report more clearly when there is no special
8047 dir to search for X includes or libraries.
8048
80491995-06-13 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8050
8051 * configure.in: Check for -lpthreads, not -lpthread.
8052
80531995-06-09 Geoff Voelker <voelker@cs.washington.edu>
8054
8055 * make-dist: Copy new files nt/addpm.c and nt/emacs.bat.in.
8056
80571995-06-08 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8058
8059 * configure.in: Check for -lpthread.
8060
80611995-06-05 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8062
8063 * Makefile.in (install-arch-indep): Install info files for mh-e.
8064 (uninstall): Uninstall info files for dired-x, gnus, mh-e, and sc.
8065
80661995-06-01 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8067
8068 * configure.in (*-solaris2.5): New configuration.
8069
8070 * make-dist: Copy new files config.nt and config.w95.
8071
80721995-05-30 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8073
8074 * configure.in: Use x_includes, not x_libraries, for -I.
8075 Make bitmapdir a colon-separated list.
8076
80771995-05-27 Richard Stallman <rms@gnu.ai.mit.edu>
8078
8079 * configure.in (hppa*-hp-hpux10*, m68k-hp-hpux10*): New configurations.
8080
8081 * configure.in: Allow x_libraries and x_includes to be paths.
8082
80831995-05-25 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8084
8085 * configure.in: Fix typo.
8086
80871995-05-24 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8088
8089 * INSTALL: Clarify use of site-init.el.
8090
80911995-05-22 enami tsugutomo <enami@sys.ptg.sony.co.jp>
8092
8093 * configure.in: Pass arg to sqrt.
8094
80951995-05-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8096
8097 * make-dist: Fix May 6 change.
8098
80991995-05-17 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8100
8101 * vpath.sed: Delete reference to ymakefile.
8102
81031995-05-09 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8104
8105 * configure.in: Use sqrt (more portable) instead of fmod in -lm check.
8106
81071995-05-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8108
8109 * make-dist: Put nt/emacs.ico and nt/emacs.rc in dist.
8110
8111 * update-subdirs: Specify /bin/sh to run the script.
8112
81131995-05-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8114
8115 * make-dist: Put src/makefile.nt in dist.
8116
8117 * configure.in (i[345]86-*-bsdi2*): New configuration.
8118 (vax-dec-bsd386*): Deleted.
8119
81201995-05-06 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8121
8122 * configure.in: Make sure CDPATH doesn't mess up PWD check.
8123 Check whether X bitmaps are in X11/bitmaps instead of bitmaps.
8124 Use fmod instead of logb in -lm check.
8125
81261995-05-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8127
8128 * configure.in (m68*-apollo-*): Renamed from m68*-apollo*.
8129 Use bsd4-3. Don't set NON_GNU_CPP.
8130
8131 * make-dist: Don't copy in src/s/*.inp. Don't copy nt/src.
8132 In nt, copy various different things, but not *.cmd.
8133 Fix the ln commands for the subdirs of nt.
8134
81351995-04-29 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8136
8137 * configure.in (*-sun-sunos4.1.3*): Use sunos4shr.h.
8138
81391995-04-27 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8140
8141 * configure.in (*-sun-sunos4.1.3*): Use shared libraries,
8142 since that's what the header file expects.
8143
81441995-04-24 Francesco Potortì (pot@cnuce.cnr.it)
8145
8146 * configure.in (m68k-motorola-sysv*): Distinguish between 68030
8147 and 68040 based machines when choosing options for gnucc.
8148
81491995-04-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8150
8151 * Makefile.in (top_distclean): Delete config.cache.
8152
81531995-04-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8154
8155 * Makefile.in (install-arch-indep): Delete .#* when copying subdirs.
8156
8157 * configure.in: Use m/ncr386.h.
8158
81591995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8160
8161 * Makefile.in (install-arch-indep): Undo Sep 23 change.
8162
81631995-04-06 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8164
8165 * make-dist (lib-src): Don't copy *.lex; it doesn't exist anymore.
8166 (man): Don't copy texindex.c and getopt.c; they're deleted.
8167 (etc): Omit `e'; it's a subdirectory.
8168 (etc/e): Use `../..', not `..', to reference top level.
8169
81701995-04-06 Simon Leinen <simon@lia.di.epfl.ch>
8171
8172 * Makefile.in (install-arch-indep, dist):
8173 Look for `update-subdir' in $(srcdir).
8174
81751995-04-06 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8176
8177 * make-dist: Include mkinstalldirs in distribution.
8178
81791995-04-05 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8180
8181 * make-dist: Add missing close backquote.
8182
81831995-04-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8184
8185 * make-dist: Don't distribute shortnames directory.
8186
81871995-03-12 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8188
8189 * Makefile.in (blessmail): Pass archlibdir to the sub-make.
8190
81911995-02-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8192
8193 * configure.in (m88k-motorola-sysv4*): Use usg5-4-2.
8194
81951995-02-23 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8196
8197 * configure.in (EMACS_CONFIG_OPTIONS): Use $ac_configure_args.
8198
81991995-02-13 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8200
8201 * configure.in (mips-sgi-irix6): New configuration.
8202
82031995-02-07 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8204
8205 * Makefile.in (maintainer-clean): Renamed from realclean.
8206
82071995-02-02 David J. MacKenzie <djm@geech.gnu.ai.mit.edu>
8208
8209 * configure.in: Create a .gdbinit that sources the real one,
8210 if using a different build directory.
8211
82121995-01-23 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8213
8214 * configure.in: Check for sys/select.h.
8215
82161995-01-02 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8217
8218 * configure.in: On sunos4.1.3 and sunus4shr, set NON_GNU_CPP.
8219
82201994-12-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8221
8222 * configure.in: Handle isc 4.1 operating system.
8223
82241994-12-10 Richard Stallman <rms@kepa>
8225
8226 * configure.in (rs6000-ibm-aix4.1*): New alternative.
8227 (rs6000-ibm-aix4*): New alternative.
8228
82291994-12-06 Richard Stallman <rms@kepa>
8230
8231 * configure.in: For SVR4.2, set NON_GNU_CPP if not already set.
8232
82331994-11-30 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8234
8235 * configure.in: Don't try to make directories that are guaranteed
8236 to already exist.
8237
82381994-11-23 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8239
8240 * configure.in: Generate man/Makefile from man/Makefile.in.
8241 Create the man subdir.
8242
8243 * Makefile.in (dvi): Run Make in our man subdir.
8244
8245 * make-dist: Create subdir etc/e.
8246 Make links to it.
8247 Put man/Makefile.in in dist, instead of man/Makefile.
8248
82491994-11-21 David J. MacKenzie (djm@mole.gnu.ai.mit.edu)
8250
8251 * configure.in: Add --with-pop, --with-kerberos, and
8252 --with-hesiod for movemail.
8253
82541994-11-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8255
8256 * configure.in (m68*-apollo*): Use s/domain.h.
8257
82581994-11-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8259
8260 * configure.in (m68*-apollo*): Set NON_GNU_CPP.
8261
82621994-11-14 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8263
8264 * configure.in: Don't add -I, -L, -R options for cc if their
8265 arguments would be empty.
8266
82671994-11-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8268
8269 * configure.in (i860-intel-osf1*): New alternative.
8270 (mips-sgi-irix5.[01]*): Distinguish from irix5*.
8271 (mips-sgi-irix*): Now an alias for mips-sgi-irix5*.
8272
82731994-11-09 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8274
8275 * configure.in: Make h_errno check not use nested functions.
8276
82771994-11-09 Richard Stallman <rms@pogo.gnu.ai.mit.edu>
8278
8279 * Makefile.in (install-arch-indep): Delete *.orig in copied dirs.
8280
82811994-11-08 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
8282
8283 * Makefile.in (install-arch-indep): Avoid continued comment
8284 swallowing target line.
8285
82861994-11-08 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
8287
8288 * configure.in: Protect a character class with `changequote'.
8289
82901994-11-07 Karl Heuer <kwzh@nutrimat.gnu.ai.mit.edu>
8291
8292 * configure.in: Accept `news' as a synonym for `newsos'.
8293
82941994-11-03 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8295
8296 * Makefile.in: Don't rm files if cd fails.
8297
82981994-11-01 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8299
8300 * make-dist: Put nt subdir and its subdirs in the dist.
8301 (lib-src): Put makefile.nt in the dist.
8302 (lisp): Put makefile.nt in the dist.
8303
83041994-10-29 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8305
8306 * configure.in: Change a stray `[' to `test'.
8307
83081994-10-28 David J. MacKenzie <djm@duality.gnu.ai.mit.edu>
8309
8310 * configure.in: Adapt for Autoconf v2. Use the standard argument
8311 parser, host type canonicalizer, X11 finder, and message
8312 printing macros. Use the new macro names. Use `test' instead of `['.
8313
83141994-10-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8315
8316 * configure.in: Check for getpagesize.
8317
83181994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8319
8320 * make-dist (msdos): Put sed* in the distribution.
8321
83221994-10-17 Morten Welinder <terra@mole.gnu.ai.mit.edu>
8323
8324 * config.bat: New option, `--with-x', for configuring Emacs
8325 for use with the X11 system DesqView/X.
8326 New option, `--no-debug', for compiling Emacs without debug
8327 information thus saving disk space.
8328 (src/config.h, src/paths.h): Use `update' (which is like
8329 `move-if-changed') to change the file.
8330 (src/config.h): When configuring for X11 perform extra changes.
8331 (src/makefile): When configuring for X11 perform extra changes.
8332 (lib-src): Remove temporary files.
8333 (): Check that `sed', `rm', `mv', and `gcc' are available.
8334
83351994-10-17 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8336
8337 * Makefile.in (sharedstatedir): Substitute sharedstatedir properly.
8338
8339 * configure.in (bitmapdirs): Default to /usr/include/X11/bitmaps.
8340
83411994-10-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8342
8343 * configure.in (EMACS_CONFIGURATION): Use $canonical as value.
8344
8345 * configure.in (canonical): Substitute var into makefiles.
8346 (bitmapdir): Likewise.
8347
8348 * Makefile.in (bitmapdir): New variable.
8349 (src/paths.h, paths-force): Edit PATH_BITMAPS.
8350
83511994-10-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8352
8353 * make-dist: Put update-subdirs and lisp/subdirs.el in the dist.
8354
8355 * Makefile.in (dist, install-arch-indep): Run update-subdirs.
8356 * update-subdirs: New shell script.
8357
83581994-10-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8359
8360 * Makefile.in (top_distclean): Don't rm build-install.
8361 (SOURCES): Delete build-install.in.
8362
8363 * make-dist: Don't distribute build-ins.in.
8364 * build-ins.in: File deleted.
8365
83661994-10-12 David J. MacKenzie (djm@duality.gnu.ai.mit.edu)
8367
8368 * Makefile.in (mkdir): Use mkinstalldirs instead of make-path.
8369
83701994-10-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8371
8372 * Makefile.in: Use libexecdir and sharedstatedir as appropriate.
8373
8374 * configure.in (libexecdir): Renamed from libdir. New default.
8375 (sharedstatedir): Renamed from statedir. New default.
8376 (datadir): New default.
8377
8378 * make-dist: Don't distribute subdirs.el.
8379
83801994-10-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8381
8382 * configure.in (eaccess): Check for it.
8383
83841994-10-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8385
8386 * configure.in (mktime): Check for it.
8387
83881994-10-02 Paul Reilly <pmr@geech.gnu.ai.mit.edu>
8389
8390 * configure.in (motif): Add support for usage and option checking.
8391
83921994-09-24 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
8393
8394 * configure.in (utimes): Check for it.
8395
83961994-09-23 Richard Stallman <rms@churchy.gnu.ai.mit.edu>
8397
8398 * Makefile.in (install-arch-indep): Don't do mkdir here.
8399
84001994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8401
8402 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8403 riscix.h renamed to acorn.h.
8404
84051994-09-21 Michael Ben-Gershon (mybg@cs.huji.ac.il)
8406
8407 * configure.in (arm-acorn-riscix1.1*, arm-acorn-riscix1.2*):
8408 New configurations.
8409
84101994-09-21 David J. MacKenzie (djm@geech.gnu.ai.mit.edu)
8411
8412 * configure.in: Remove trailing slashes from srcdir.
8413
84141994-09-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8415
090bd7cb 8416 * configure.in (i[345]86-sequent-ptx*): Handle.
067d23c9
KY
8417
84181994-09-20 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8419
8420 * Makefile.in (paths-force): Depend on src/paths.h
8421
84221994-09-19 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8423
8424 * configure.in (config_options): Save all arguments, not just some.
8425
84261994-09-18 Karl Heuer <kwzh@hal.gnu.ai.mit.edu>
8427
090bd7cb 8428 * Makefile.in (install-arch-indep): Copy DOC-*, not DOC*.
067d23c9
KY
8429
8430 * configure.in: Add AC_AIX.
8431 Add checks to set HAVE_STRUCT_UTIMBUF, HAVE_TIMEVAL, HAVE_SELECT.
8432
84331994-09-18 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8434
8435 * configure.in (parsing options): Simplify sed command to delete -'s.
8436
84371994-09-16 Karl Heuer <kwzh@churchy.gnu.ai.mit.edu>
8438
8439 * configure.in (config_options): New shell variable.
8440 Pass its value to C code in EMACS_CONFIG_OPTIONS.
8441
84421994-09-16 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8443
8444 * configure.in (alpha-dec-osf*): New target.
8445
8446 * Makefile.in: Use just one FRC target.
8447
84481994-09-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8449
8450 * Makefile.in (removenullpaths, paths-force):
8451 Use name paths.h.tmp$$, which depends on the pid.
8452
84531994-09-14 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8454
8455 * Makefile.in (removenullpaths, paths-force):
8456 Put paths.h.tmp in top-level dir, not in src.
8457
84581994-09-11 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8459
8460 * Version 19.27 released.
8461
84621994-09-07 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8463
8464 * Version 19.26 released.
8465
84661994-09-04 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8467
8468 * configure.in: Check for lrand48, not rand48.
8469
84701994-09-03 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8471
8472 * configure.in (powerpc-ibm-aix3.1*, powerpc-ibm-aix3.2.5)
8473 (powerpc-ibm-aix*): New aliases.
8474
84751994-08-21 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8476
8477 * make-dist (src/m, src/s): Put *.inp in distribution.
8478
84791994-08-19 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8480
8481 * configure.in: Accept i586 and i486 along with i386.
8482
84831994-08-15 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8484
8485 * configure.in: Do compute unexec, LIBX, system_malloc, etc
8486 even if CPP env var was set by the user.
8487
8488 * configure.in (i[34]86-*-*): For SCO 3.2v4, fix NON_GNU_CPP value.
8489
84901994-08-14 Jonathan I. Kamens (jik@gza-client1.aktis.com)
8491
8492 * Makefile.in: Uninstall "$(EMACS)", not "emacs".
8493
84941994-08-13 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8495
8496 * configure.in (i[34]86-*-*): For SCO 3.2v4, set NON_GNU_CPP.
8497
84981994-08-09 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8499
8500 * configure.in: Check more specifically for i*86-sun-sunos.
8501
85021994-08-03 Caveh Jalali (caveh@eng.sun.com)
8503
8504 * configure.in: Handle solaris 2.4.
8505
85061994-07-27 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8507
8508 * configure.in (rand48): Check for it.
8509
85101994-07-26 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8511
8512 * make-dist: Update the info files.
8513
85141994-07-25 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8515
8516 * configure.in: Make "checking..." messages' style consistent.
8517 (HAVE_H_ERRNO): New test.
8518
85191994-07-24 Richard Stallman <rms@mole.gnu.ai.mit.edu>
8520
8521 * configure.in (i860-*-sysv4*): Set NON_GNU_CC and NON_GNU_CPP.
8522
85231994-07-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8524
8525 * configure.in (CFLAGS): If the envvar was specified, use that.
8526 And set REAL_CFLAGS from it too.
8527
85281994-07-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8529
8530 * make-dist: Update finder-inf.el.
8531
85321994-07-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8533
8534 * make-dist (msdos): Include sed4.inp in dist.
8535
8536 * Makefile.in (libsrc_libs): Var deleted.
8537
85381994-07-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8539
8540 * Makefile.in (mkdir, removenullpaths): Put g in sed replace commands.
8541
85421994-06-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8543
8544 * configure.in (mips-sony-newsos4*): New alias.
8545
85461994-06-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8547
8548 * configure.in (*-convex-bsd*): Set NON_GNU_CPP.
8549 (*-convex-convexos*): Accept this as alias.
8550
85511994-06-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8552
8553 * configure.in: Get CFLAGS both with and without THIS_IS_CONFIGURE,
8554 for two different uses.
8555
85561994-06-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8557
8558 * configure.in: Define THIS_IS_CONFIGURE when extracting CFLAGS etc.
8559
85601994-06-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8561
8562 * make-dist: Put ./BUGS into the distrib.
8563
85641994-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8565
8566 * configure.in: Handle 386 running Solaris 2.
8567
85681994-06-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8569
8570 * configure.in (mips-siemens-sysv*): Use cpp, not cc -E.
8571
85721994-06-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8573
8574 * configure.in (mips-sony-newsos*): Use news-risc.h.
8575
8576 * configure.in: Accept bsdi as opsys, like bsd386.
8577
85781994-06-01 Morten Welinder (terra@diku.dk)
8579
8580 * config.bat (src/paths.h): Use sed script msdos/sed4.inp.
8581
85821994-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8583
8584 * Version 19.25 released.
8585
8586 * make-dist (shortversion): Don't assume another period follows.
8587
85881994-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8589
8590 * Makefile.in (install-arch-indep): Use /bin/pwd uniformly, not pwd.
8591 (uninstall): Use /bin/pwd.
8592
8593 * Makefile.in (blessmail): Depend on src.
8594 (all): Don't depend on blessmail.
8595
8596 * Makefile.in (src/paths.h): Don't force recomputation.
8597 (paths-force): New target; force recomputation of paths.h.
8598 (all): Depend on paths-force.
8599 (src, lib-src): Depend on src/paths.h.
8600
8601 * configure.in (*-sun-sunos4*): Set GCC_TEST_OPTIONS,
8602 NON_GCC_TEST_OPTIONS.
8603
86041994-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8605
8606 * configure.in: Don't insist on subversions for irix.
8607
86081994-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8609
8610 * configure.in (hppa*-hp-hpux9shr): Move alternative up.
8611
8612 * configure.in (i[34]86-next-*): New alternative.
8613
86141994-05-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8615
8616 * Version 19.24 released.
8617
8618 * configure.in: New config hppa*-hp-hpux9shr*.
8619
86201994-05-22 Morten Welinder (terra@tyr.diku.dk)
8621
8622 * config.bat: Doc fix.
8623
86241994-05-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8625
8626 * Makefile.in (mostlyclean, clean, distclean, realclean)
8627 (extraclean): Don't act on man subdir if it doesn't exist.
8628
86291994-05-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8630
8631 * configure.in (GCC_TEST_OPTIONS, NON_GCC_TEST_OPTIONS): New vars.
8632 Use them to set up CC.
8633 (*-sun-sunos4.1.3): Set them.
8634
86351994-05-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8636
8637 * Makefile.in (lib-src): Don't depend on src/paths.h.
8638
86391994-05-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8640
8641 * build-ins.in (copydests): Get rid of spurious `-'s.
8642
8643 * configure.in: Define EMACS_CONFIGURATION instead of CONFIGURATION.
8644
86451994-05-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8646
8647 * Version 19.23 released.
8648
8649 * configure.in [HAVE_X11]: Merge $C_SWITCH_X_SITE into CFLAGS
8650 for the Xlib and Xt checks; then restore old CFLAGS.
8651
86521994-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8653
8654 * configure.in (HAVE_X11XTR6): Add newline before #if.
8655 Add newline after #endif.
8656
86571994-05-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8658
8659 * configure.in (HAVE_X11XTR6): Arrange to define it.
8660
86611994-05-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8662
8663 * Makefile.in (install): Depend on blessmail.
8664
86651994-05-12 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
8666
8667 * configure.in (mips-siemens-sysv*): Put quotes around value
8668 containing blanks.
8669
86701994-05-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8671
8672 * Makefile.in (TAGS): Use the makefile in src subdir.
8673
86741994-05-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
8675
8676 * configure.in (opsys): Recognize `gnu'.
8677
86781994-05-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8679
8680 * configure.in (using NON_GNU_CPP): Fix test for CPP already set.
8681
86821994-05-09 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
8683
8684 * configure.in: Remove AC_LANG_C call. Not needed with Autoconf
8685 version > 1.8.
8686
86871994-05-08 Morten Welinder (terra@diku.dk)
8688
8689 * config.bat: Forcibly remove "# " style comments from makefiles.
8690
86911994-05-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8692
8693 * Makefile.in (uninstall): When processing lispdir and etcdir,
8694 do nothing unless it exists and is a directory.
8695
86961994-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8697
8698 * Makefile.in (install-arch-indep): Do install info/dired-x*.
8699 Merge code in from install-doc.
8700 (install-doc): Merge code back into install-arch-indep.
8701 (install-arch-dep): Don't depend on install-doc.
8702
8703 * configure.in (run_in_place): Don't use pwd for archlibdir and docdir.
8704
87051994-05-04 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8706
8707 * configure.in (making src/Makefile and lib-src/Makefile):
8708 Split off the autoconf substitutions and don't pass them thru cpp.
8709 (undefs): Use $canonical as well as $configuration.
8710
8711 * make-dist: Distribute lisp/Makefile.
8712
8713 * configure.in: Recognize m88k-dg-dgux5.4.3* and m88k-dg-dgux5.4.2*.
8714 Use lower case names for the s files.
8715
87161994-05-03 Morten Welinder (terra@diku.dk)
8717
8718 * config.bat: Added possibility for different file name
8719 transcriptions in lib-src.
8720
87211994-05-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8722
8723 * Makefile.in (lib-src): Undo previous change.
8724 (blessmail): New target to run maybe-blessmail in lib-src.
8725 (all): Depend on blessmail.
8726
8727 * Makefile.in (lib-src): Depend on src.
8728
87291994-04-30 Paul Reilly (pmr@churchy.gnu.ai.mit.edu)
8730
8731 * configure.in (m88k-dg-dgux5.4R3): Use dgux5-4R3.
8732 (m88k-dg-dgux5.4R2): dgux5.4R2.
8733
87341994-04-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8735
8736 * configure.in (window_system): Restore accidentally deleted code
8737 that uses AC_FIND_X.
8738
8739 * make-dist: Distribute config.bat.
8740
87411994-04-29 Morten Welinder (terra@diku.dk)
8742
8743 * config.bat: Corrected the configuration of lib-src
8744 to keep up with configure. Add note about dos version 3
8745 or better needed (djgpp needs that). Add note explaining
8746 that either install in c:/emacs or edit the script.
8747 Don't change to c:/emacs, but assume we're there (to minimize
8748 the number of places to change).
8749
8750 * config.bat: Build-in the first step towards X11 support with
8751 the X11 emulator that exists. At this time it won't work,
8752 and several files are missing.
8753
87541994-04-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8755
8756 * configure.in: Use m/hp800.h in place of m/hp9000s800.h.
8757 Don't look for -lresolv.
8758
8759 * Makefile.in (lib-src): Depend on src/paths.h.
8760
87611994-04-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8762
8763 * configure.in: Restore deleted AC_SUBST of `configuration'.
8764 Improve error message for bad --with-x-toolkit value.
8765
8766 * configure.in: Define CONFIGURATION in src/config.h
8767 rather than substituting in src/Makefile.in.
8768
87691994-04-26 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8770
8771 * Makefile.in (install-doc): New target.
8772 (install-arch-dep): Depend on install-doc.
8773 (mkdir): Create docdir.
8774
87751994-04-22 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8776
8777 * configure.in: Test for libresolv.a.
8778 Substitute machfile and opsysfile.
8779
87801994-04-22 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8781
8782 * Makefile.in (.PHONY, install): Kill reference to obsolete do-install.
8783 (install-arch-dep): Install under the name $(EMACS).
8784
87851994-04-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8786
8787 * configure.in (version): Use entire value of emacs-version.
8788 (mips-siemens-sysv*): New alternative.
8789
87901994-04-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8791
8792 * Makefile.in (install-arch-indep): Don't install dired-x*.
8793
87941994-04-18 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8795
8796 * configure.in (src/Makefile, lib-src/Makefile): Delete ^L.
8797 Fix definition of $undefs.
8798
87991994-04-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8800
8801 * configure.in (window_system): Obey --with-x11=no and --with-x10=no.
8802
8803 * configure.in (lib-src/Makefile.in): Use src, not lib-src, in -I.
8804
88051994-04-16 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
8806
8807 * configure.in: Call AC_LANG_C, if it's defined, after AC_PREPARE.
8808
88091994-04-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8810
8811 * configure.in (lib-src/Makefile.in): Make this from Makefile.in.in
8812 and run it thru cpp, as with src/Makefile.in.
8813
8814 * configure.in: Use AC_SET_MAKE.
8815
88161994-04-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8817
8818 * configure.in (i[34]86-ncr-sysv*): Use usg5-4-2.
8819
88201994-04-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8821
8822 * Makefile.in (MAKE): Don't just assign it--use @SET_MAKE@.
8823
8824 * configure.in (CFLAGS): Exclude ${CFLAGS} from singlequotes.
8825 (printing the choices): Make the toolkit message unconditional.
8826 (USE_X_TOOLKIT): Use `none', not `no', if none.
8827 (include libsrc_libs): Include config.h, and specify -I for srcdir.
8828 Get rid of temp file foofoo1.
8829
88301994-04-13 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8831
8832 * configure.in (CFLAGS): Use shell syntax, not Makefile.
8833
88341994-04-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8835
8836 * configure.in (window_system): If no X, set USE_X_TOOLKIT=no.
8837 (printing the choices): State choice of toolkit.
8838 (libsrc_libs): Recalculate after writing config.h;
8839 then update lib-src/Makefile.
8840
88411994-04-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8842
8843 * configure.in: Add sunos4shr as alternative for suns.
8844 Conditionals testing for null $CC were backwards.
8845
88461994-04-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8847
8848 * make-dist (msdos): Don't link patch1. Link sed*.inp, not sed.in*.
8849
88501994-04-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8851
8852 * configure.in: Handle -isc4.0*.
8853
88541994-03-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8855
8856 * configure.in (esix5): Set NON_GNU_CPP.
8857
88581994-03-24 Roland McGrath (roland@mole.gnu.ai.mit.edu)
8859
8860 * Makefile.in (thisdir): Nonsensical variable removed.
8861 (install-arch-indep): Set shell var thisdir=`pwd` before cd and cd
8862 back to $thisdir, rather than the directory `this_dir'.
8863
88641994-03-17 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
8865
8866 * Makefile.in (install-arch-indep): Add missing backslash after a
8867 `then'.
8868
88691994-03-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8870
8871 * Makefile.in (thisdir): New variable.
8872 (install-arch-indep): Go back to thisdir to run INSTALL_DATA.
8873
88741994-03-08 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8875
8876 * configure.in: Add freebsd.
8877
88781994-03-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
8879
8880 * configure.in: Check for fpathconf.
8881
88821994-03-02 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8883
8884 * configure.in (with_x_toolkit): Fix typo in previous change.
8885
88861994-03-01 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8887
8888 * configure.in: New s-file for rs60000-ibm-aix3.2.5.
8889
88901994-02-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8891
8892 * configure.in (with_x_toolkit): Don't allow motif or open-look.
8893
88941994-02-24 Karl Heuer (kwzh@hal.gnu.ai.mit.edu)
8895
8896 * configure.in: Fix value of docdir.
8897 * Makefile.in (install-arch-indep): Install DOC* in docdir.
8898
88991994-02-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8900
8901 * configure.in (*-sysv4.1): Set NON_GNU_CPP.
8902
89031994-02-22 Karl Heuer (kwzh@geech.gnu.ai.mit.edu)
8904
8905 * configure.in: New variable docdir to control where the docstring
8906 file goes.
8907 Makefile.in: Use it to initialize PATH_DOC in paths.h.
8908
89091994-02-22 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
8910
8911 * configure.in: When --run-in-place, don't inherit archlibdir.
8912
89131994-02-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8914
8915 * Makefile.in (install-arch-dep, install-arch-indep):
8916 New targets split up former do-install rule.
8917 (do-install): Target deleted.
8918
89191994-02-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8920
8921 * configure.in (mips-sony-newsos*): New configuration.
8922
89231994-02-14 Frederic Pierresteguy (fp@mole.gnu.ai.mit.edu)
8924
8925 * configure.in (rs6000-bull-bosx*): Added support for BULL dpx20.
8926
89271994-02-11 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
8928
8929 * configure.in: Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
8930
89311994-02-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8932
8933 * configure.in: Don't initialize CC.
8934
89351994-02-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
8936
8937 * configure.in (creating src/Makefile): Also generate -U switches
8938 for symbols in the $configuration value.
8939
8940 * configure.in: Check for sys_siglist being declared in system header.
8941
89421994-02-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8943
8944 * configure.in (creating src/Makefile): Delete blank lines
8945 along with lines of whitespace.
8946 (m68k-motorola-sysv*, m68000-motorola-sysv*): Compute proper CC value.
8947
89481994-02-09 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8949
8950 * configure.in: Get, use, and substitute C_SWITCH_MACHINE
8951 like C_SWITCH_SYSTEM.
8952 (m68*-motorola-sysv*): Set CC. Require cpu type to be m68k or m68000.
8953
89541994-02-04 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
8955
8956 * configure.in (drem): Check for this function.
8957
89581994-02-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8959
8960 * configure.in (Using NON_GNU_CPP): Don't lose if it has spaces.
8961 If CPP was inherited from environment, don't use NON_GNU_CPP.
8962 (NON_GNU_CC): Likewise.
8963 (handling with_gcc): Use explicit if in the `no' case.
8964 (cc_specified): New variable; if set, don't use NON_GNU_CC.
8965
89661994-02-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8967
8968 * configure.in (mips-mips-riscos4*): Set NON_GNU_CPP.
8969
89701994-02-01 Karl Heuer (kwzh@mole.gnu.ai.mit.edu)
8971
8972 * configure.in: Check whether fmod exists.
8973
89741994-01-31 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
8975
8976 * make-dist: Distribute {src,lisp}/ChangeLog.? instead of
8977 {src,lisp}/OChangeLog.
8978
89791994-01-22 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
8980
8981 * configure.in: Restore Jan 8 and Jan 16 changes. The -U hack is
8982 necessary for proper operation. This code works with the current
8983 released version of Autoconf.
8984
89851994-01-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8986
8987 * configure.in (with_x_toolkit): Treat values athena and lucid alike.
8988 (USE_X_TOOLKIT): Define it for all values except `no'.
8989
8990 * configure.in: Undo first Jan 8 change and Jan 16 change.
8991
89921994-01-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
8993
8994 * configure.in: Handle --with-x-toolkit. Produce lwlib/Makefile.
8995 Substitute USE_X_TOOLKIT as both C macro and Make variable.
8996
8997 * Makefile.in (lwlib/Makefile): New target.
8998 (SUBDIR_MAKEFILES): Depend on lwlib/Makefile.
8999 (clean, mostlyclean, distclean, realclean): Handle lwlib subdir.
9000 (unlock, relock): Handle lwlib subdir.
9001
9002 * Makefile.in: Add some .PHONY targets.
9003
9004 * make-dist: Handle lwlib subdir like oldXMenu subdir.
9005
9006 * lwlib: New subdirectory.
9007
90081994-01-17 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9009
9010 * configure.in: If CPP has a value that is a directory,
9011 discard the value.
9012
90131994-01-16 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9014
9015 * configure.in (srcdir_undefs): Add g flag to sed substitution to
9016 remove -U[0-9]*.
9017
90181994-01-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9019
9020 * Makefile.in (do-install): Install the dired-x info files.
9021
9022 * configure.in: Provide for variable LD_SWITCH_X_SITE_AUX.
9023 (See src/s/sol2.h.)
9024
90251994-01-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9026
9027 * configure.in (m68k-harris-cxux*, m88k-harris-cxux*): New configs.
9028
90291994-01-08 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9030
9031 * configure.in (creating src/Makefile): Put code inside 2nd arg to
c80e3b4a 9032 AC_OUTPUT as it should be; hopefully no one will again see fit to
067d23c9
KY
9033 gratuitously break this and not make a change log entry.
9034 Optimized sed processing of Makefile.in and cpp output; now
9035 preserves comments previously removed from the cpp input.
9036 Eliminated temp file for cpp output. Generate -U switches to
9037 undefine all identifiers that appear in the directory name
9038 ${srcdir}; pass these to cpp.
9039
9040 * configure.in (version): Fix sed regexp to match two-elt version
9041 number.
9042
9043 * configure.in: Check for strerror.
9044
90451994-01-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9046
9047 * configure.in: Test for bcmp.
9048
90491994-01-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9050
9051 * make-dist (tempdir): Put subdir msdos into the distribution.
9052
90531993-01-07 Morten Welinder (terra@diku.dk)
9054
9055 * config.bat: New file.
9056
90571994-01-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9058
9059 * Makefile.in (${SUBDIR} target): Pass down LDFLAGS and CPPFLAGS.
9060
90611994-01-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9062
9063 * configure.in (m68*-next-*): Don't care about which os is specified.
9064 (i[34]86-*-*): Check for *-nextstop*.
9065
90661993-12-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9067
9068 * configure.in: Check for setsid.
9069
90701993-12-17 Richard Stallman (rms@srarc2)
9071
9072 * configure.in (*-sun-solaris*): Add special case for Solaris 2.3.
9073
90741993-12-15 Richard Stallman (rms@srarc2)
9075
9076 * Makefile.in (mkdir): Make only the lockdir writable.
9077
9078 * configure.in (i860-*-sysv4): Renamed from i860-*-sysvr4.
9079
90801993-12-11 Richard Stallman (rms@srarc2)
9081
9082 * Makefile.in (libdir): Use @libdir@.
9083
90841993-12-08 Richard Stallman (rms@srarc2)
9085
9086 * Makefile.in (install): Add empty command.
9087
90881993-12-04 Richard Stallman (rms@srarc2)
9089
9090 * make-dist: Put man/getopt.c in the dist.
9091
9092 * configure.in (LIBS): Add test for existence of XSetWMProtocols.
9093
9094 * Makefile.in (install): Depend on ${SUBDIR}, not `all'.
9095
90961993-12-03 Richard Stallman (rms@srarc2)
9097
9098 * configure.in (solaris): Set NON_GNU_CPP instead of CPP.
9099 Set it for all solaris versions.
9100 (mips-mips-riscos4*): Set NON_GNU_CC, not CC.
9101 (after checking for GCC): If not GCC, and NON_GNU_CPP is set, set CPP.
9102 Likewise for NON_GNU_CC and CC.
9103
91041993-12-01 Richard Stallman (rms@srarc2)
9105
9106 * configure.in (mips-mips-riscos4*): Assign variable CC.
9107 (checking ${with_gcc}): If "no", don't override CC if already set.
9108 (CC): Initialize it as empty.
9109
91101993-11-30 Richard Stallman (rms@srarc2)
9111
9112 * configure.in (Suns): Set CPP if *-solaris2.3*.
9113
91141993-11-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9115
9116 * Version 19.22 released.
9117
9118 * Makefile.in (do-install): Use umask 022 in copying etc and lisp dirs.
9119
91201993-11-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9121
9122 * make-dist: When breaking links, use cp -p.
9123 Copy install.sh into distribution.
9124 Move the temp dir up into the parent dir;
9125 don't leave the staging dir make-dist.tmp... in existence.
9126 * install.sh: New file.
9127
91281993-11-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9129
9130 * configure.in (i[34]86-ncr-sysv*): New specific alternative.
9131
91321993-11-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9133
9134 * configure.in (version): When --run-in-place, exclude
9135 ${datadir}/emacs/site-lisp from locallisppath.
9136
91371993-11-18 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9138
9139 * configure.in: Delete jumk.c before writing it.
9140
91411993-11-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9142
9143 * Version 19.21 released.
9144
9145 * Makefile.in (mkdir): Ignore error from chmod.
9146
91471993-11-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9148
9149 * make-dist: Don't put lisp/forms.README in the distribution.
9150
91511993-11-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9152
9153 * configure.in (creating src/Makefile): Before running cpp,
9154 discard all lines that start with `# Generated' or /**/#.
9155
91561993-11-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9157
9158 * Version 19.20 released.
9159
9160 * make-dist: Use build-ins.in, not build-install.in.
9161 Don't bother updating TAGS since it's not included.
9162
9163 * build-ins.in: Renamed from build-install.in.
9164
91651993-11-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9166
9167 * make-dist: Don't try to link *.texinfo--there are none now.
9168 When running make in lib-src, specify YACC var value.
9169
91701993-10-03 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9171
9172 * configure.in (extrasub): Add vpath patterns for %.[yls].
9173
9174 * configure.in: Don't do seddery on config.status after AC_OUTPUT.
9175 Instead just include the commands to make src/Makefile as the
9176 second arg to AC_OUTPUT.
9177
9178 * configure.in: Use : instead of dnl for comment inside
9179 $makefile_command.
9180
9181 * configure.in: No longer use vpath_sed. Instead, when we notice
9182 srcdir already configured, set extrasub to hack vpath in the
9183 makefiles.
9184
9185 * configure.in: In cmds to make src/Makefile, chmod Makefile.new
9186 before moving it.
9187 * Makefile.in (VPATH): Define to @srcdir@.
9188
91891993-09-28 Brian J. Fox (bfox@cubit)
9190
9191 * configure.in: Don't copy ${srcdir}/src/Makefile.in; that file
9192 doesn't exist. Just copy src/Makefile.in instead. Touch
9193 all of the Makefiles after editing config.status.
9194
9195 * INSTALL: Update documentation to match new configuration
9196 mechanism.
9197
91981993-09-27 Brian J. Fox (bfox@ai.mit.edu)
9199
9200 * configure.in: Allow any of the path or directory Makefile
9201 variables to be set with flags to configure. Create all Makefiles
9202 at configure time. Edit special commands into config.status after
9203 src/Makefile.in is built from src/Makefile.
9204
9205 * Makefile.in (src/Makefile, lib-src/Makefile, oldXMenu/Makefile):
9206 If these files are out of date, simply have config.status
9207 rebuild them; don't rebuild them explicitly.
9208
92091993-09-25 Brian J. Fox (bfox@ai.mit.edu)
9210
9211 * build-install.in: Change src/xemacs to src/emacs. We no longer
9212 create src/xemacs, so the file wouldn't be found.
9213
9214 * make-dist: Remove `src/ymakefile', add `src/Makefile.in.in'.
9215
92161993-09-24 Brian J. Fox (bfox@albert.gnu.ai.mit.edu)
9217
9218 * configure.in: Avoid forcing the search of /usr/include before
9219 fixed include files by resetting C_SWITCH_X_SITE if it is
9220 "-I/usr/include".
9221
92221993-09-20 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9223
9224 * Makefile.in (@rip_paths@locallisppath):
9225 Delete ${datadir}/emacs/site-lisp.
9226
92271993-09-15 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9228
9229 * configure.in:
9230 Use AC_QUOTE_SQUOTE twice to properly quote vpath_sed value.
9231 Remove ${extra_output} from AC_OUTPUT call.
9232
92331993-09-17 Brian J. Fox (bfox@inferno)
9234
9235 * make-dist: Quote backquotes found in strings to be echoed.
9236
9237 * configure.in: Use "sh -c pwd" when we want to avoid having the
9238 shell fix up the value of $PWD.
9239
92401993-09-13 Brian J. Fox (bfox@inferno)
9241
9242 * Makefile.in (do-install): Don't abort if ln or chmod at the end
9243 of the installation fail. Suggested by Karl Berry.
9244
92451993-08-30 Brian J. Fox (bfox@inferno)
9246
9247 * Makefile.in (*clean): Use "$(MAKE) $(MAKEFLAGS)" wherever "make"
9248 was used. Set MAKEFLAGS from MFLAGS.
9249
92501993-09-16 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9251
9252 * configure.in: Test for res_init in libc.
9253
92541993-09-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9255
9256 * configure.in: In the file ${tempcname}, use configure___
9257 instead of @configure@.
9258
92591993-09-12 Roland McGrath (roland@sugar-bombs.gnu.ai.mit.edu)
9260
9261 * make-dist: Dist vpath.sed
9262
9263 * Makefile.in (lib-src/Makefile, src/Makefile, oldXMenu/Makefile):
9264 Depend on vpath.sed.
6e81c819 9265 Replace sed command for VPATH with @vpath_sed@.
067d23c9
KY
9266
9267 * configure.in: Substitute variable `vpath_sed'.
9268 If not in $srcdir and $srcdir is configured,
9269 issue warning that GNU make is required,
9270 and set vpath_sed to use vpath.sed script.
9271
92721993-09-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9273
9274 * configure.in: Remove check for $srcdir being configured. This
9275 pretty much works now.
9276 Grok {m68*-hp,i[34]86-*}-netbsd* and set opsys=netbsd.
9277 Check for XFree86 (/usr/X386/include) independent of whether
9278 -lXbsd exists.
9279
9280 * Makefile.in (info, dvi, clean, mostlyclean, distclean,
9281 realclean, unlock, relock): Use `$(MAKE)' in place of plain
9282 `make'.
9283
92841993-08-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9285
9286 * Version 19.19 released.
9287
9288 * configure.in (i386-*-sunos4): Assume Sunos 4.0.
9289
92901993-08-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9291
9292 * configure.in: Check for XScreenNumberOfScreen.
9293
92941993-08-12 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9295
9296 * configure.in: Add * to end of all configuration alternatives.
9297 (m68*-sony-newsos3*): New alternative.
9298
92991993-08-11 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9300
9301 * make-dist: Include getdate.c in distribution.
9302
9303 * configure.in: For --help, use $PAGER if it is set.
9304 (LIB_X11_LIB): Default to -lX11.
9305 (mips-sgi-irix5.*): New alternative.
9306
9307 * Makefile.in (do-install): Install info/gnus* and info/sc*.
9308
9309 * configure.in (m68*-hp-hpux*, hppa*-hp-hpux*):
9310 Recognize *.B8.* as hpux version 8.
9311 (m68*-tektronix-bsd*): Fix typo in tek4300.
9312 (AC_HAVE_FUNCS): Add ftime.
9313
93141993-08-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9315
9316 * configure.in (m88k-tektronix-sysv3*): Added the missing *.
9317 Use tekxd88, not tekXD88.
9318
93191993-08-10 Roland McGrath (roland@churchy.gnu.ai.mit.edu)
9320
9321 * configure.in: Check for -lm. Then can check for frexp and logb.
9322
93231993-08-08 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9324
9325 * Version 19.18 released.
9326
9327 * make-dist (src): Don't put gnu-hp300 in dist.
9328 (src, lisp): Include OChangeLog in dist.
9329
93301993-08-08 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9331
9332 * configure.in: Test for presence of logb and frexp functions.
9333
93341993-08-05 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9335
9336 * configure.in (machine): Add i370-ibm-aix*.
9337
93381993-08-03 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9339
9340 * configure.in (function checks): Test for mkdir and rmdir.
9341
9342 * configure.in (function checks): Don't test for random and bcopy
9343 only when we're building with X; look for them all the time.
9344
93451993-07-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9346
9347 * configure.in: Test for availability of bcopy functions, searching
9348 the X libraries if we're using X.
9349
9350 * configure.in: Test for the presence of/usr/lpp/X11/bin/smt.exp,
9351 and #define HAVE_AIX_SMT_EXP if we do. This is present in some
9352 versions of AIX, and needs to be passed to the loader.
9353
9354 * configure.in: Test for the availability of the
9355 XScreenResourceString function.
9356
93571993-07-30 David J. MacKenzie (djm@frob.eng.umd.edu)
9358
9359 * configure.in: If we found X on our own, set C_SWITCH_X_SITE and
9360 LD_SWITCH_X_SITE and assume --with-x11.
9361 Only look for X11 files if we weren't told about a window system
9362 or if we were told to use X11 but not told where.
9363 Search the libraries from the s and/or m files when checking for
9364 functions.
9365
9366 * configure.in: Remove any trailing slashes in prefix and exec_prefix.
9367
93681993-07-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9369
9370 * make-dist: Include lisp/dired.todo in the distribution.
9371
93721993-07-23 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9373
9374 * configure.in: Add code to set HAVE_INET_SOCKETS.
9375
93761993-07-21 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9377
9378 * configure.in: If we do find x_includes and x_libraries
9379 via AC_FIND_X, set C_SWITCH_X_SITE and LD_SWITCH_X_SITE.
9380
93811993-07-19 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9382
9383 * make-dist: Include src/gnu-hp300 in the dist.
9384
9385 * configure.in (canonical): New variable holds the canonicalized
9386 configuration. Don't alter `configuration'. Use `configuration'
9387 for Makefile.in for file naming.
9388 (testing x_includes and x_libraries): Use =, not ==.
9389
93901993-07-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9391
9392 * Version 19.17 released.
9393
9394 * Makefile.in (src/Makefile): Propagate C_SWITCH_SYSTEM to the src
9395 directory's makefile. This allows the invocation of CPP which
9396 builds xmakefile to receive these switches. The SunSoft C
9397 preprocessor inserts spaces between tokens if it doesn't get the
9398 -Xs flag requested in src/s/sol2.h.
9399
94001993-07-12 Frederic Pierresteguy (F.Pierresteguy@frcl.bull.fr)
9401
9402 * configure.in (m68k-bull-sysv3): New config.
9403
94041993-07-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9405
9406 * configure.in: Use the autoconf AC_FIND_X macro to try to find
9407 the X Windows libraries.
9408
94091993-07-07 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9410
9411 * make-dist (tempdir): Don't create lisp/forms-mode directory in
9412 the distribution. Those files aren't kept in their own
9413 subdirectory any more.
9414
94151993-07-06 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9416
9417 * Version 19.16 released.
9418
94191993-06-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9420
9421 * configure.in: Add --verbose flag.
9422
94231993-06-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9424
9425 * version 19.15 released.
9426
94271993-06-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9428
9429 * Makefile.in (top_distclean): Use -f switch when cleaning out
9430 lock dir; it might be empty.
9431
9432 * configure.in: Only check for -lXbsd once.
9433
94341993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9435
9436 * Version 19.14 released.
9437
94381993-06-17 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9439
9440 * make-dist: If using gzip, create distribution with '.gz' extension.
9441
9442 * make-dist (lisp/term): This doesn't have a ChangeLog anymore.
9443 (lisp/forms-mode): This doesn't exist anymore.
9444
9445 * configure.in: Look for the closedir function.
9446
94471993-06-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9448
9449 * configure.in (CPP): Autoconf sets this to a shell variable
9450 reference, which doesn't work when it's edited into a makefile.
9451 Expand that variable reference.
9452
9453 * Makefile.in (CPP): New variable.
9454 (src/Makefile): Edit CPP into src/Makefile.
9455
9456 * Makefile.in (src/Makefile): Don't bother exiting single quotes
9457 and entering double quotes to get the values of LD_SWITCH_X_SITE
9458 and the other make variables; make substitutes them in anyway.
9459
9460 * Makefile.in (uninstall): Don't remove the lisp and etc
9461 directories if they're in the source tree.
9462
9463 Bring mumbleclean targets into conformance with GNU coding standards.
9464 * Makefile.in (mostlyclean, clean): Separate these two; just have
9465 them pass the request to the subdirectory makefiles.
9466 (distclean): Pass the request down, and then get rid of the
9467 files configure built, and get rid of the Makefiles.
9468 (realclean): Pass the request down, and then do the same things
9469 distclean does.
9470 (uninstall, info, dvi): New targets.
9471
9472 * configure.in: Move clause for PC-compatible i386 box to the end
9473 of the case statement, to avoid masking configurations below.
9474
9475 * configure.in: Add case for m88k-motorola-sysv4.
9476
9477 * configure.in: Add support for HP/UX versions 7, 8, and 9 on
9478 the HP 68000 machines.
9479
9480 * configure.in: Put the arguments to LD_SWITCH_X_SITE's and
9481 C_SWITCH_X_SITE's -L and -I switches in quotes, so the
9482 preprocessor won't fiddle with them.
9483
94841993-06-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9485
9486 * Makefile.in (TAGS): cd to src to run etags.
9487
94881993-06-12 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9489
9490 * configure.in (version): Check the X libraries for XrmSetDatabase
9491 and random, and see if we have -lXbsd.
9492
94931993-06-11 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9494
9495 * configure.in: Pass "-Isrc" to the CPP we run to examine the
9496 s/*.h and m/*.h files. Martin Tomes
9497 <mt00@controls.eurotherm.co.uk> says ISC Unix 3.0.1 needs it.
9498
94991993-06-10 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9500
9501 * configure.in: Move i386-prime-sysv* and i386-sequent-bsd*
9502 above the general i386 alternative.
9503
95041993-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9505
9506 * configure.in: Recognize configuration name for Data General
9507 AViiON machines.
9508
9509 * configure.in: Use AC_LONG_FILE_NAMES.
9510
95111993-06-09 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9512
9513 * configure.in: Test for bison.
9514 * Makefile.in (YACC): New variable.
9515 (lib-src/Makefile.in): Edit YACC into the makefile.
9516
95171993-06-08 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9518
9519 * Version 19.13 released.
9520
9521 * configure.in (CFLAGS): Don't set this according to the value of
9522 the GCC shell variable. Instead, consult the machine and system
9523 files for the values of C_OPTIMIZE_SWITCH and C_DEBUG_SWITCH, and
9524 test __GNUC__ while we're at it.
9525
9526 * configure.in: Remove extra ;; from hpux cases.
9527
95281993-06-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9529
9530 * configure.in: Check to see if the system has -ldnet.
9531
95321993-06-08 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9533
9534 * make-dist: Add clauses to distribute lisp/forms-mode.
9535
95361993-06-07 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9537
9538 * configure.in (machine): Fix the versions in hpux version number test.
9539 Do not guess based on cpu type. Do check for explicit system version.
9540
95411993-06-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9542
9543 * configure.in: Do NOT look for `unknown' as company name.
9544
95451993-06-02 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9546
9547 * configure.in: Fix typo in message.
9548
95491993-06-01 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9550
9551 * Version 19.12 released.
9552
9553 * Makefile.in (do-install): Correct previous etc-copying change.
9554 Partially rewrite using `if'.
9555 (src/Makefile): Insert --x-libraries option into LD_SWITCH_X_SITE.
9556
9557 * Version 19.11 released.
9558
9559 * configure.in: Handle 386bsd.
9560
95611993-05-31 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9562
9563 * make-dist: Update getdate.c.
9564
9565 * configure.in: Handle bsd386.
9566
9567 * Makefile.in (do-install): Use `-' in tar options.
9568
9569 * configure.in: Change ! "${...}" to x"${...}" = x.
9570
9571 * Makefile.in (do-install): Copy the DOC-* files from the build
9572 etc directory, as well as lots of things from ${srcdir}/etc.
9573
9574 * make-dist: Copy config.guess.
9575
9576 * configure.in: Handle AIX versions 1.2, 1.3.
9577
95781993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9579
9580 * configure.in: Use s/bsd4-3.h for mips-mips-riscos4, and add
9581 the configuration name mips-mips-usg* to represent USG systems.
9582
9583 * configure.in: Fix logic to detect if srcdir is already configured.
9584
9585 * Makefile.in: Pass in LD_SWITCH_X_SITE.
9586
9587 * Makefile.in (mkdir, clean, mostlyclean, do-install): Use `(cd
9588 foo && pwd)` instead of `(cd foo ; pwd)` to get the canonical name
9589 of a directory; cd might fail, and have pwd print out the current
9590 directory.
9591
95921993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9593
9594 * configure.in: When looking for sources, use '.', not `.`. Also '..'.
9595
95961993-05-30 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9597
9598 * configure.in: Complain if srcdir points at an already-configured
9599 tree.
9600
96011993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9602
9603 * Version 19.10 released.
9604
96051993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9606
9607 * Makefile.in: Use Makefile comments, not C comments.
9608
9609 * configure.in: Add case for the Tektronix XD88.
9610
96111993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9612
9613 * configure.in: Handle sysv4.2 and sysvr4.2.
9614
96151993-05-29 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9616
9617 * configure.in: Traverse the argument list without destroying it;
9618 don't use shift. It turns out that "set - ${saved_arguments}"
9619 doesn't work portably.
9620
9621 * configure.in: Add missing "fi".
9622
9623 * make-dist: Rebuild configure if configure.in is newer.
9624
9625 * Makefile.in (src:, lib-src:, FRC:): Force the src and lib-src
9626 targets to be executed even if make remembers that it has already
9627 satisfied FRC.
9628
96291993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9630
9631 * Makefile.in (do-install): Delete redundant code to copy etc twice.
9632
9633 * configure.in (romp): Handle various version numbers with aos and bsd.
9634
96351993-05-28 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9636
9637 * configure.in: Fix message text.
9638
96391993-05-28 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9640
9641 * make-dist: Make a `site-lisp' directory in the distribution,
9642 instead of a `local-lisp' directory, which hasn't been the
9643 appropriate name for a long time.
9644 * Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
9645 from the distribution first, then /usr/local/lib/emacs/site-lisp.
9646
9647 * Makefile.in (do-install): Correctly detect if ./etc and
9648 ${srcdir}/etc are the same.
9649
9650 * configure.in: Extract UNEXEC from the system configuration
9651 files, compute the name of the source file corresponding to the
9652 object file, and #define it as UNEXEC_SRC in config.h.
9653
9654 * configure.in: If srcdir is '.', then try using PWD to make it
9655 absolute.
9656
9657 * configure.in: Include ${srcdir} in the printed report, to help
9658 people notice if it's an automounter path.
9659
96601993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9661
9662 * configure.in (prefix): Don't run pwd on srcdir unnecessarily.
9663
96641993-05-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9665
9666 * Makefile.in (do-install): Delete the dest dir, not the source dir,
9667 when they are different. Add `shift' command.
9668 (COPYDESTS, COPYDIR): Delete external-lisp dir.
9669 (externallispdir): Var deleted.
9670
9671 * configure.in: Delete spurious paren outputting short_usage.
9672
96731993-05-27 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9674
9675 * Version 19.9 released.
9676
96771993-05-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9678
9679 * Makefile.in (${SUBDIR}): Pass the value of the make variable to
9680 subdirectory makes.
9681
9682 * make-dist: Check for .elc files with no corresponding .el file.
9683
9684 * Makefile.in (mkdir): Make all the directories in locallisppath.
9685
9686 * config.guess: New file.
9687 * configure.in: Use it, tentatively.
9688 * INSTALL: Mention its usage.
9689
9690 * configure.in (hppa-hp-hpux): Use uname -r instead of uname -m;
9691 the former gives you the operating system rev directly. Use
9692 s/hpux.h if we don't recognize what we got.
9693
9694 * Makefile.in (do-install): Don't remove a destination directory
9695 if it's the same as the source. If ${srcdir}/info == ${infodir},
9696 don't try to copy the info files.
9697
9698 * Makefile.in (COPYDIR, COPYDESTS): Don't mention etc twice; this
9699 doesn't work if you're not using a separate source directory.
9700 (do-install): Copy the build tree's etc directory only after
9701 making sure it's not also the source tree's etc directory.
9702
97031993-05-26 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9704
9705 * configure.in: Handle sunos4.1.3 specially.
9706
97071993-05-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9708
9709 * Makefile.in (INSTALL): Add definition.
9710
9711 * configure.in: Fix some messages. Support -with-gnu-cc.
9712 At the end, use `set --', not `set -'.
9713 Delete spurious `.h' in hpux alternatives.
9714
97151993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9716
9717 * Version 19.8 released.
9718
97191993-05-25 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9720
9721 * configure.in: When looking for source in the same directory as
9722 the configure script, make the path thus discovered absolute.
9723 If the user specifies the `--srcdir' switch, make that directory
9724 absolute too.
9725
9726 * Makefile.in (srcdir): Remove comment saying this doesn't work.
9727
9728 * Makefile.in (src/paths.h): Edit the `infodir' variable into this
9729 too, as the value of the PATH_INFO macro.
9730
9731 * configure.in: Check to see if the source lives in the same
9732 directory as the configure script.
9733
97341993-05-24 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9735
9736 * Makefile.in (install): Split this into `install' and
9737 `do-install', to give people more control over exactly what gets
9738 done.
9739 (do-install): New target, containing the guts of `install'. Don't
9740 remove and recreate the directories inside the copying loop - do
9741 it all before the copying loop. Pass more flags to the lib-src
9742 make.
9743 (mkdir): Create ${infodir}, ${mandir}, and ${sitelispdir} here, to
9744 avoid errors and warnings.
9745
9746 * configure.in: For generic IBM PC boxes, insist on "unknown" for
9747 the manufacturer - the more general case was blocking other i386
9748 configuration names below, and that's how the names are written in
9749 MACHINES anyway.
9750
9751 * make-dist: When breaking links, remove the link before moving
9752 the copy onto it, to avoid interactive behavior.
9753
9754 * Makefile.in: Doc fix.
9755
9756 * configure.in: Doc fix.
9757
9758 * INSTALL: Mention --exec-prefix option.
9759
9760 * configure.in: Add support for the `--exec-prefix' option.
9761 * Makefile.in: Accept that support.
9762
9763 * configure.in: Use the AC_PROG_INSTALL macro.
9764 * Makefile.in (INSTALL): Variable removed.
9765 (INSTALL_PROGRAM, INSTALL_DATA): Accept these values from configure.
9766
9767 * configure.in: Distinguish between hp800's and hp700's by calling
9768 "uname -m".
9769
97701993-05-24 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9771
9772 * configure.in: Recognize configuration names for i860 boxes
9773 running SYSV.
9774
97751993-05-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9776
9777 * configure.in: Distinguish between hp800's and hp700's by the
9778 version of HP/UX they run, since that's something people are more
9779 likely to know - hp700's run 8.0.
9780 Add HP 700 configuration.
9781
9782 * configure.in: Test for the presence of the `rename' function.
9783
9784 * Makefile.in (C_SWITCH_X_SITE): New variable - get this from
9785 configure.in.
9786 (oldXMenu/Makefile): Edit C_SWITCH_X_SITE into this.
9787
9788 * make-dist: Break intra-tree links.
9789
9790 * configure.in: Explain that this is an autoconf script, and give
9791 instructions for rebuilding configure from it. Arrange to put
9792 comments in configure explaining this too.
9793
9794 * configure.in: Make the first line of the configure script be
9795 "#!/bin/sh". Leaving the first line blank didn't work.
9796
9797 * configure.in (long_usage): Removed; made short_usage describe
9798 the options briefly.
9799
9800 * configure.in: Implement the --prefix option.
9801 * Makefile.in (prefix): Add support for it here.
9802 * INSTALL: Document it here.
9803
9804 * Makefile.in (install): Don't assume that the files in the `info'
9805 subdirectory match *.info. They don't have that prefix.
9806
98071993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9808
9809 * configure.in: Add case for version 5 of Esix.
9810
98111993-05-22 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9812
9813 * Version 19.7 released.
9814
9815 * make-dist: There aren't any *.com files in lib-src anymore.
9816
9817 * make-dist: Copy texinfo.tex and texindex.c, rather than linking
9818 them; they're symlinks to other filesystems on the GNU machines.
9819
9820 * make-dist: Check that the manual reflects the same version of
9821 Emacs as stated in lisp/version.el. Edit that version number into
9822 the README file.
9823
98241993-05-21 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9825
9826 * configure.in: Remove the hack of AC_DEFINE; use
9827 AC_DEFINE_UNQUOTED.
9828
98291993-05-20 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9830
9831 * make-dist: Don't distribute precomp.com, compile.com, or
9832 link.com from ./src; they're in ./vms now.
9833
9834 Some time-handling patches from Paul Eggert:
9835 * configure.in: Add AC_TIMEZONE.
9836
98371993-05-19 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9838
9839 * configure.in: Recognize Linux as a valid operating system for
9840 the i386.
9841
98421993-05-18 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
9843
9844 * make-dist: Distribute some VMS files we got from Richard Levitte.
9845
9846 * Makefile.in (oldXMenu/Makefile): Take oldXMenu/Makefile.in as
9847 the source for the sed command, not oldXMenu/Makefile.
9848
98491993-05-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9850
9851 * INSTALL: Don't claim the srcdir option doesn't work.
9852
98531993-05-16 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9854
9855 * configure.in: Include remarks saying what order the autoconf
9856 tests should go in, and remind people to change config.h.in
9857 whenever they add autoconf tests which make #definitions.
9858
9859 * make-dist: Distribute oldXMenu/Makefile.in, not oldXMenu/Makefile.
9860
98611993-05-15 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9862
9863 * Makefile.in (oldXMenu/Makefile): Make this depend on
9864 ${srcdir}/oldXMenu/Makefile.in, not itself.
9865
9866 * PROBLEMS: Some updates from David J. Mackenzie.
9867
9868 More changes from David J. Mackenzie.
9869 * Makefile.in (install.sysv, install.xenix, install.aix): Targets
9870 removed; autoconf and config.h should specify all these
9871 differences.
9872 (buildlisppath): Make this path depend on ${srcdir}.
9873 (INSTALLFLAGS): Removed.
9874 (INSTALL): Include the -c flag.
9875 (install): Change the way we invoke install accordingly.
9876
9877 Install ${srcdir} changes from DJM.
9878 * Makefile.in (SUBDIR_MAKEFILES): Add oldXMenu/Makefile to this
9879 list.
9880 (COPYDIR, COPYDESTS): Install files from both the etc directory in
9881 the source tree and the etc directory in the object tree.
9882 (${SUBDIR}): Pass the prefix variable down to submakes.
9883 (everywhere): Use `sed', not `/bin/sed'. Not all systems have sed
9884 in /bin.
9885 (lib-src/Makefile, src/Makefile, oldXMenu/Makefile): Edit in
9886 values for srcdir and VPATH.
9887 (install): Add `v' flag to tar command. Make sure that `dir'
9888 exists in ${srcdir}/info before copying it. Remember that the man
9889 pages come from the source tree, not the object tree.
9890 * configure.in: Remove remarks saying that the --srcdir option
9891 doesn't work.
9892 Create the etc directory in the object tree.
9893 Recognize configuration names of the form *-sun-solaris*.
9894 Recognize sunos5 and solaris as operating system names.
9895
9896 * configure.in: Use the AC_TIME_WITH_SYS_TIME macro, for
9897 lib-src/getdate.y and src/systime.h.
9898
98991993-05-15 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9900
9901 * make-dist: Make links in info subdir.
9902
99031993-05-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9904
9905 * configure.in: Call AC_STDC_HEADERS.
9906
99071993-05-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9908
9909 * configure.in: Sidestep autoconf's quoting of the second argument
9910 of AC_DEFINE, so we can specify the value to put there. It would
9911 be nice if autoconf provided some way to specify computed values
9912 for macros.
9913
99141993-05-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9915
9916 * Makefile.in (DEFS): Deleted; since we're using AC_CONFIG_HEADER,
9917 this is always just -DHAVE_CONFIG_H.
9918
9919 The GNU coding standards specify that CFLAGS should be left for
9920 users to set.
9921 * Makefile.in (CFLAGS): Let configure determine the default value
9922 for this. Don't
9923 have it default to DEFS.
9924 (${SUBDIR}): Pass CFLAGS down to submakes, not DEFS.
9925 (lib-src/Makefile, src/Makefile): Edit the default value for
9926 CFLAGS into these files, not DEFS.
9927 * configure.in (CFLAGS): Choose a default value for this - "-g"
9928 normally, or "-g -O" if we're using GCC. Edit it into the
9929 top-level Makefile.
9930
9931 * configure.in: When scanning the machine and system description
9932 #include files, write their names to conftest.c properly.
9933
99341993-05-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9935
9936 * configure.in: In configuration name case for Apallos running
9937 Domainios, set opsys, not opsysfile.
9938
9939 * configure.in: Use the autoconf AC_CONFIG_HEADER macro to produce
9940 src/config.h, instead of AC_OUTPUT; the latter overwrites
9941 src/config.h even when it hasn't changed, puts a makefile-style
9942 comment at the top even though it's C code, and produces a
9943 config.status script which doesn't do the job right.
9944
9945 * configure.in: Add AC_LN_S test, so we can tell whether or not we
9946 can use a symbolic link to get the X Menu library into src.
9947 * Makefile.in (LN_S): New variable.
9948 (src/Makefile): Edit the value of LN_S into this makefile.
9949
99501993-05-06 Richard Stallman (rms@mole.gnu.ai.mit.edu)
9951
9952 * configure.in: Support *-sco3.2v4* as opsystem.
9953
9954 * make-dist: Don't include calc directory.
9955 Exclude many files in the man directory; copy a few.
9956
99571993-05-04 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
9958
9959 * configure.in: Use AC_HAVE_HEADERS to test for sys/time.h, and
9960 call AC_STRUCT_TM to see what's in time.h.
9961
9962 * configure.in: Employ quoting stupidity to get the value of CPP
9963 to expand properly.
9964
99651993-04-27 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9966
9967 * configure.in: Use the AC_PROG_CPP macro, and then use the CPP
9968 variable to scan the machine and system description files.
9969
9970 * configure.in: Use the AC_HAVE_HEADERS to check for sys/timeb.h,
9971 so that getdate.y builds correctly.
9972
99731993-04-26 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9974
9975 * configure.in (tempcname): Change this to "conftest.c", so it will
9976 work properly on systems with short filenames; this is the name
9977 autoconf uses.
9978
9979 * configure.in: Also detect the availability of dup2 and
9980 gethostname.
9981
9982 * configure.in: Use the AC_ALLOCA test.
9983 * Makefile.in (ALLOCA): New variable, to be set by ./configure.
9984 (lib-src/Makefile): Edit the value of ALLOCA into lib-src/Makefile.
9985
99861993-04-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9987
9988 * make-dist: Distribute configure, as well as configure.in.
9989 Oversight.
9990
99911993-04-23 Jim Blandy (jimb@totoro.cs.oberlin.edu)
9992
9993 * Makefile.in (install): Print out the name of the directory we're
9994 copying, so people can have some idea of whether we're making
9995 progress.
9996
9997 * Makefile.in (install.aix, install.xenix, install.sysv, install):
9998 Don't forget to re-create the COPYDESTS directories after we clear
9999 them out.
10000
100011993-04-13 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10002
10003 * Makefile.in: Add autoconf cookies so that the configure
10004 script can comment out sections of path variable definitions to
10005 choose between the installable configuration and the run-in-place
10006 configuration.
10007 * configure.in: Add new option `--run-in-place', to select the
10008 run-in-place path definitions.
10009
10010 * configure.in: Add a clause to the big configuration name case
10011 for the NeXT machine.
10012
100131993-04-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10014
10015 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10016 Make sure that each source directory exists, and is different from
10017 the destination directory; then, delete the destination before
10018 copying over the source.
10019
10020 * make-dist: Distribute configure.in, instead of configure.
10021
100221993-04-10 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10023
10024 * configure.in: Don't set CC to "gcc -O" if the user specifies
10025 `--with-gcc'. Add -O to DEFS if GCC is set.
10026
100271993-04-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10028
10029 * Makefile.in (clean mostlyclean): Missing right paren.
10030
10031 * configure.in: When checking for X windows, search for an X11
10032 subdirectory of ${x_includes}.
10033
10034 * configure.in: Check for gettimeofday function, for getdate.y.
10035
10036 Change `configure' to a mixture of custom code and autoconf stuff.
10037 autoconf can't derive all the information we need, but we'd really
10038 like to be able to take advantage of some of its tests, and its
10039 file-editing facilities.
10040 * configure.in: Renamed from configure.
10041 Quote the sections of shell script we want copied literally to
10042 the configure script.
10043 (compile): Initialize this to make the autoconf macros' code happy.
10044 Use AC_PROG_CC, AC_CONST, and AC_RETSIGTYPE instead of writing out
10045 code to do their jobs.
10046 Use autoconf to produce Makefile and src/config.h.
10047 Remove the Makefile-style comment that autoconf places at the top
10048 of src/config.h.
10049 (config_h_opts): Removed - no longer necessary.
10050 * Makefile.in (configname): Renamed to configuration.
10051 (CONFIG_CFLAGS): Renamed to DEFS.
10052 (CC, DEFS, C_SWITCH_SYSTEM, version, configuration): Adjusted to
10053 get values via autoload @cookies@.
10054 (libsrc_libs): Get this from autoconf. We used to do nothing
10055 about this.
10056 (${SUBDIR}): Pass DEFS to submakes instead of CONFIG_CFLAGS.
10057
10058 * Makefile.in (src/paths.h, lib-src/Makefile, src/Makefile): Don't
10059 echo the move-if-change command.
10060
100611993-04-08 Jim Blandy (jimb@churchy.gnu.ai.mit.edu)
10062
10063 * make-dist: Distribute lib-src/rcs-checkin.
10064
10065 * make-dist: It's oldXMenu/compile.com, not oldXMenu/compile.mms.
10066 Don't try to make links to the RCS or Old subdirectories.
10067 Use the appropriate extension for the compression type in use.
10068 Create the tar file in the shell's initial default directory, not
10069 in ${tempparent}.
10070 Erase the whole ${tempparent} tree, not just ${tempdir}.
10071
100721993-03-30 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10073
10074 * Makefile.in (src/paths.h): Don't echo the huge sed command we
10075 use to build paths.h.
10076 (lib-src/Makefile, src/Makefile): Similarly.
10077
10078 * configure: Extend test for working `const' keyword to handle AIX
10079 3.2 cc.
10080
100811993-03-24 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10082
10083 * make-dist: Distribute lisp/term/ChangeLog.
10084
10085 Arrange for C compilation throughout the tree to get
10086 C_SWITCH_SYSTEM from the configuration files.
10087 * configure: Extract C_SWITCH_SYSTEM from the machine and
10088 system-dependent files, and save it in the top-level Makefile.
10089 * Makefile.in (C_SWITCH_SYSTEM): New flag for configure to edit.
10090 (lib-src/Makefile): Edit C_SWITCH_SYSTEM into lib-src/Makefile.
10091
10092 * make-dist: Include the VMS support files in oldXMenu in the
10093 distribution.
10094
10095 * configure: Doc fix.
10096
10097 * configure: Fix corrupted config_h_opts.
10098
10099 * configure: Properly report option names in error messages.
10100
10101 * configure: Properly recognize --x-includes and --x-libraries
10102 options.
10103
10104 * configure: Fix syntax errors in code handling XFree386.
10105
101061993-03-23 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10107
10108 * configure: Add special code to detect XFree386, and tell
10109 config.h about it.
10110
10111 * configure: Properly handle extracting values of LIBS_MACHINE and
10112 LIBS_SYSTEM that contain spaces.
10113
10114 * configure: Add `--x-includes' and `--x-libraries' options. I
10115 think these are dopey, but no less than three alpha testers, at
10116 large sites, have said they have their X files installed in odd
10117 places. Implement them by setting C_SWITCH_X_SITE and
10118 LD_SWITCH_X_SITE in src/config.h.
10119
101201993-03-22 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10121
10122 * make-dist: Don't distribute etc/Old files.
10123
10124 * GETTING.GNU.SOFTWARE, PROBLEMS: Registered into RCS with their
10125 backups.
10126
101271993-03-20 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10128
10129 * make-dist: Fix typo.
10130
101311993-03-19 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10132
10133 * make-dist: Corrected typo, fixed it to discard = and TAGS files
10134 in some cases where it should but didn't seen to.
10135
10136 * Makefile.in: Added unlock and relock productions.
10137
101381993-03-18 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10139
10140 * make-dist: Add a --compress option to force make-dist to use
10141 compress.
10142
10143 * make-dist: Use gzip, if we can find it.
10144
10145 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10146 make rs6000-ibm-aix default to -aix32.
10147
101481993-03-17 Eric S. Raymond (eric@geech.gnu.ai.mit.edu)
10149
10150 * Makefile.in: Added `Developer's configuration' section.
10151
101521993-03-17 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
10153
10154 * Makefile.in: Add commented-out variable settings for developer's
10155 configuration.
10156
101571993-03-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10158
10159 * make-dist: Distribute `src/bitmaps' too.
10160
101611993-03-14 Charles Hannum (mycroft@hal.gnu.ai.mit.edu)
10162
10163 * configure: Recognize rs6000-ibm-aix32 and rs6000-ibm-aix, and
10164 make rs6000-ibm-aix default to -aix32.
10165
101661993-03-09 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10167
10168 * configure: Recognize strings like "sysvr0" or "sysvr1" as System V.
10169
10170 * Makefile.in (install.sysv): Add a second `$' in front of
10171 `${dest}', so that the shell will expand it, instead of Make.
10172
10173 * configure: When processing the name of the configure script,
10174 collapse `././' to `./', but leave a single `./' prefix alone.
10175
10176 * configure: Doc fix.
10177
101781993-03-04 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10179
10180 * configure: Handle isc3.0 correctly.
10181
101821993-02-25 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10183
10184 * make-dist: Don't try to copy the COPYING notice into
10185 external-lisp; we're not distributing that directory any more.
10186
101871993-02-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10188
10189 * Makefile.in (install, install.aix, install.xenix, install.sysv):
10190 Remove CVS subdirectories from the installed directory trees, as
10191 well as RCS directories.
10192
101931993-02-23 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10194
10195 * make-dist: Only copy gmalloc.c if we couldn't link it.
10196 Don't try to copy man/{README,Makefile} unless they actually exist.
10197
10198 * Makefile.in (lisppath): Don't include externallispdir in this.
10199 We're not sure whether we're even going to distribute the
10200 directory yet.
10201
102021993-02-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10203
10204 * make-dist: Don't distribute the external-lisp directory anymore.
10205 * INSTALL: Remove all references to external-lisp.
10206
10207 * configure: Detect whether the compiler supports `const'
10208 properly, and edit src/config.h accordingly.
10209
10210 * configure: Tweak layout of final report.
10211
10212 * Makefile.in (${SUBDIR}): Pass CONFIG_CFLAGS to the submakes, not
10213 CFLAGS.
10214
10215 * Makefile.in (locallisppath): Make this default to
10216 ${datadir}/emacs/site-lisp, instead of
10217 ${datadir}/emacs/local-lisp. ${datadir} and ${statedir} are often
10218 the same thing, and local-lisp causes completion conflicts with
10219 lock.
10220 (lisppath): Add ${externallispdir} to this.
10221 * INSTALL: Adjust installation directions.
10222
10223 * Makefile.in (externallispdir): New variable, to say where to
10224 install the externally-maintained lisp files.
10225 (COPYDIR, COPYDESTS): Copy the external lisp directory just like
10226 the others.
10227 * INSTALL: Describe external-lisp and the new externallispdir
10228 variable.
10229
102301993-02-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10231
10232 * configure (progname): New option `--with-gcc'. Make it clearer
10233 how we are trying to guess whether or not we have GCC.
10234 * INSTALL: Document the `--with-gcc' option, and improve
10235 description of `--with-x' options.
10236
102371993-02-06 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10238
10239 * Makefile.in (COPYDIR, COPYDESTS): Remove ${srcdir}/info and
10240 ${infodir} from these variables; we have written out explicit code
10241 to install the info files.
10242
102431993-01-25 Jim Blandy (jimb@geech.gnu.ai.mit.edu)
10244
10245 * make-dist: Don't distributed the RCS files in the etc directory.
10246
102471993-01-24 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10248
10249 * Makefile.in: Some makes can't handle comments in the middle of
10250 commands; move them to before the whole rule.
10251
102521993-01-16 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10253
10254 * README: Mention what Emacs is.
10255
102561993-01-14 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10257
10258 * make-dist: Include `./lisp/calc-2.02' in the distribution.
10259 Add `./cpp' and `./man' back into the distribution.
10260
102611993-01-13 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10262
10263 * Makefile.in: Define MAKE, and use where appropriate.
10264
102651993-01-07 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10266
10267 * make-dist: Remember that the authoritative COPYING notice is
10268 `etc/COPYING', not `../etc/COPYING'.
10269
102701992-12-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10271
10272 * make-dist: Make sure that the COPYING notices in each directory
10273 are copies, not symlinks.
10274
102751992-12-19 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10276
10277 * INSTALL: The build process produces an executable called `emacs'
10278 now. Change references.
10279 * Makefile.in: Adjust `install.mumble' targets to install
10280 `src/emacs', not `src/xemacs'.
10281
10282 * configure: Start with a blank line; this keeps some old CSH's
10283 from thinking it's a CSH script. Most systems will just use
10284 /bin/sh to run it, which is what we're expecting; the only other
10285 shells which might try to interpret it themselves are probably
10286 Bourne-compatible.
10287
102881992-12-14 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10289
10290 * INSTALL: Improvements suggested by David Mackenzie.
10291
102921992-12-12 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10293
10294 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10295 Don't try to copy the info files if there aren't any; the
10296 unexpanded globbing pattern disappoints `install'. Ignore the
10297 return status of that command.
10298
10299 * INSTALL: Updated for new configuration arrangement.
10300
10301 * configure: Don't make the top-level Makefile read-only - people
10302 may want to edit the values of the path variables.
10303
10304 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10305 Install the info files in ${infodir}. Install the executable
10306 under both `emacs' and `emacs-VERSION'.
10307
10308 * Makefile.in: Doc fix.
10309
10310 * Makefile.in (exec_prefix): New variable, as per latest version
10311 of coding standards.
10312 (bindir, libdir): Use it, instead of `prefix'.
10313 (lib-src/Makefile): Edit value of exec_prefix into lib-src/Makefile.
10314
10315 * Makefile.in (mandir): Make the default value for this depend on
10316 $(prefix).
10317
10318 * Makefile.in (datadir, statedir, libdir): Make these all default
10319 to ${prefix}/lib.
10320 (lispdir, locallisppath, etcdir, lockdir, archlibdir): Adjusted
10321 to compensate.
10322
10323 * Makefile.in (install, install.sysv, install.xenix, install.aix):
10324 Install the etags and ctags man pages too.
10325
10326 * Makefile.in (distclean): Don't delete backup files; that's the
10327 job of extraclean.
10328 (extraclean): Like distclean, but deletes backup and autosave files.
10329
103301992-12-10 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10331
10332 Make path specification conform to GNU coding standards.
10333 * configure (long_usage): Remove all traces of old arguments from
10334 usage messages, and document the options we do accept in more
10335 detail: -with-x... and --srcdir.
10336 (options, boolean_opts): Deleted; we don't have enough options to
10337 make this worthwhile.
10338 (prefix, bindir, lisppath, datadir, libdir, lockdir): Deleted,
10339 along with the code which supported them; these should be set as
10340 arguments to the top-level make.
10341 (config_h_opts): Since this no longer doubles as a list of option
10342 names, make them upper case; this simplifies the code which uses
10343 them to build the sed command to edit src/config.h. Change the
10344 code which sets them.
10345 (cc, g, O): Don't allow the user to set these using options; they
10346 should be specified using `CC=' and `CFLAGS=' arguments to the
10347 top-level make. Just choose reasonable default values for them,
10348 and edit them into Makefile.in's default CC and CONFIG_CFLAGS
10349 values.
10350 (gnu_malloc, rel_alloc): Don't allow the user to set these using
10351 options; use them whenever the configuration files say they're
10352 possible.
10353 Simplify the argument processing loop. Don't accept abbreviations
10354 for option names; these might conflict with other configuration
10355 options in the future.
10356 Add some support for the `--srcdir' option. Check for the sources
10357 in . and .. if `--srcdir' is omitted. If the directories we will
10358 compile in don't exist yet, create them under the current directory.
10359 Note that the rest of the build process doesn't really support
10360 this.
10361 Edit only the top Makefile. That should edit the others. Edit
10362 into the makefile: `version', from lisp/version.el, `configname'
10363 and `srcdir' from the configuration arguments, `CC' and
10364 `CONFIG_CFLAGS' as guessed from the presence or absence of GCC in
10365 the user's path, and LOADLIBES as gleaned from the system
10366 description files.
10367 Simplify the report generated; it doesn't need to include any
10368 description of paths now.
10369 Make `config.status' exec configure instead of just calling it, so
10370 there's no harm in overwriting `config.status'.
10371 * Makefile.in (version, configname): New variables, used to choose
10372 the default values for datadir and libdir.
10373 Path variables rearranged into two clearer groups:
10374 - In the first group are the variables specified by the GNU coding
10375 standards (prefix, bindir, datadir, statedir, libdir, mandir,
10376 manext, infodir, and srcdir).
10377 - In the second are the variables actually used for Emacs's paths
10378 (lispdir, locallisppath, lisppath, buildlisppath, etcdir, lockdir,
10379 archlibdir), which depend on the first category.
10380 datadir and libdir default to directories under
10381 ${prefix}/lib/emacs instead of ${prefix}/emacs, by popular
10382 demand.
10383 etcdir and lispdir default to subdirectories of datadir.
10384 archlibdir defaults to libdir.
10385 The new installation tree is a bit deeper than it used to be, so
10386 use the new make-path program in lib-src to build them all.
10387 Always build a new src/paths.h.tmp and then move-if-change it to
10388 src/paths.h, to avoid unnecessary rebuilds while responding to the
10389 right changes.
10390 Remove all mention of arch-lib. Run utility commands from
10391 lib-src, and let the executables be copied into archlibdir when
10392 Emacs is installed.
10393 Add targets for src/Makefile, lib-src/Makefile, and
10394 oldXMenu/Makefile, editing the values of the path variables into
10395 them.
10396 Let lib-src do its own installation.
10397 (datadir): Default to putting data files under
10398 ${prefix}/lib/emacs/${version}, not /usr/local/emacs.
10399 (emacsdir): Variable deleted; it would only be confusing to use.
10400 (lispdir, etcdir): Default to ${datadir}/lisp.
10401 (mkdir): Use make-path for this.
10402 (lockdir): Do this in mkdir.
10403 (Makefile): New target.
10404
10405 * configure (usage_message): Rename to long_usage.
10406
10407 * make-dist: Don't bother creating an arch-lib directory; that's
10408 only for installation now.
10409
104101992-11-20 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10411
10412 * configure: Use GCC-style configuration names, using config.sub.
10413 Change the usage and help messages.
10414
10415 * configure: Initialize window_system, not indow_system.
10416
10417 * configure: Report which window system, compiler, and signal
10418 handler return type we decide to use.
10419
10420 * make-dist: Explain what's going on if config.sub and gmalloc.c
10421 can't be linked. Place the code which copies them near the code
10422 which links the rest of the files around them.
10423
104241992-11-15 Jim Blandy (jimb@apple-gunkies.gnu.ai.mit.edu)
10425
10426 * make-dist: Don't bother to distribute src/*.com, or
10427 src/vmsbuild; those have all been moved to `../vms'.
10428
104291992-11-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10430
10431 * make-dist: Don't forget that the way to avoid filenames starting
10432 with `=' is to use the pattern `[a-zA-Z0-9]*.h', not
10433 `[a-zA-Z0-9].h'. Add a new section for dealing with files that we
10434 couldn't make hard links to, since we have two already, and
10435 perhaps more to come.
10436
104371992-11-04 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10438
10439 * configure: When editing parameters into lib-src/Makefile, change
10440 the definition of CONFIG_CFLAGS instead of CFLAGS itself; CFLAGS
10441 needs some other flags too.
10442
104431992-11-03 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10444
10445 * configure: Remove spurious echo of the configuration name.
10446
10447 * make-dist: Don't distribute files in src/m and src/s whose names
10448 begin with `='.
10449
104501992-10-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10451
10452 * configure: Update GNU_MALLOC and REL_ALLOC in config.h.
10453 Also LISP_FLOAT_TYPE.
10454
104551992-10-26 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10456
10457 * make-dist: Copy config.sub, since it's a symbolic link to a file
10458 on another file system.
10459
104601992-10-17 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10461
10462 * make-dist: Include lib-src/makedoc.com and emacs.csh in the
10463 distribution.
10464
10465 * config.sub: New file, to help us recognize configuration names.
10466 * make-dist: Include it in the distribution.
10467
104681992-09-14 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10469
10470 * configure: Convert `-' to `_' in specified option names.
10471 Accept options with --. Delete --highpri and --have-x-menu options.
10472 New options --with-x and --with-x10 replace -window-system.
10473 Don't mention options --gnu-malloc, --rel-alloc
10474 or --lisp-float-type in help message.
10475
104761992-09-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10477
10478 * make-dist: Include the `vms' subdirectory in the distribution.
10479
104801992-09-10 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10481
10482 * configure: Remove lines starting with "# DIST: " when building
10483 lib-src/Makefile and src/Makefile. This allows us to mark the
10484 "Makefile.in" files with explanatory comments which won't also get
10485 stuck in the Makefiles.
10486
104871992-09-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10488
10489 * make-dist: Don't use the '+' operator in the sed regular
10490 expression that extracts the version number from lisp/version.el;
10491 Ultrix sed doesn't seem support the operator. Just double the
10492 operand and use *.
10493
104941992-09-01 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10495
10496 * Makefile.in: Doc fix.
10497
104981992-08-31 Jim Blandy (jimb@totoro.cs.oberlin.edu)
10499
10500 * configure: Rewrite sed command to remove at most one ./ prefix;
10501 Ultrix's sed doesn't allow us to apply the * operator to a \( \)
10502 group.
10503
105041992-08-25 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10505
10506 * Makefile.in (src/paths.h): Use sed, not /bin/sed.
10507
105081992-08-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10509
10510 * make-dist: Go ahead and build a new TAGS file, unless the
10511 --newer option was specified. Don't try to delete a TAGS file
10512 from etc; it's not kept there, and shouldn't be deleted anyway.
10513
105141992-08-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10515
10516 * make-dist: If the lisp directory contains a default.el, don't
10517 distribute it.
10518
10519 * configure: When searching signal.h for the type of a signal
10520 return handler, make a copy of it, not a symbolic link to it; that
10521 way, it will work on systems that don't have symbolic links.
10522
105231992-08-14 Eric S. Raymond (eric@mole.gnu.ai.mit.edu)
10524
10525 * make-dist: Taught it about vcdiff and rcs2log, added --newer
10526 option for generating incremental distributions. Stopped it from
10527 generating a TAGS file into the distribution; that sucker is
10528 *big*, and easily enough generated with the toplevel makefile.
10529
105301992-08-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10531
10532 * configure: When writing config.status, don't prefix progname
10533 with a '.'; it might be absolute.
10534
105351992-08-05 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10536
10537 * configure: Choose to use X11 if either /usr/lib/libX11.a or
10538 /usr/include/X11 exist, not only if both exist.
10539
105401992-07-27 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10541
10542 * make-dist: Make the new external-lisp directory a duplicate of
10543 the external-lisp directory, not the lisp directory.
10544
105451992-07-07 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10546
10547 * Makefile.in (clean, mostlyclean): Don't bother trying to `make
10548 clean' in arch-lib; it doesn't even have a Makefile.
10549
10550 * Makefile.in (clean, mostlyclean): In the test which tries to
10551 distinguish between the build directory, which should be cleaned,
10552 and the installed directory, which shouldn't, cd to `${emacsdir}',
10553 not `${DESTDIR}${LIBDIR}'.
10554
105551992-06-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10556
10557 * make-dist: Be sure to delete the .c and .h files that YACC and
10558 BISON create from getdate.y.
10559
10560 * external-lisp: New directory; see `external-lisp/README'.
10561 * make-dist: Added support for the external-lisp subdirectory.
10562
10563 * make-dist: Changed message which complains that make-dist wasn't
10564 invoked in the right directory to indicate which files it was
10565 looking for.
10566
105671992-06-29 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10568
10569 * configure: Add comments explaining why we can't translate
10570 character ranges or control characters in `tr'.
10571
105721992-06-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10573
10574 * configure: When generating the configuration message, we used to
10575 build the message from the start so that each line began with "# "
10576 so that it would be a comment in `config.status'. However, this
10577 causes trouble if any of the variables we use in the message
10578 expand to more than one line of text - as gnu_malloc_reason
10579 sometimes does. So instead, we build the message as it should be
10580 printed to the user (i.e. without the "# " prefixes), and stick on
10581 the "# "s when we write it to `config.status'.
10582
10583 * Makefile.in (clean, mostlyclean): Don't neglect to clean out
10584 `lib-src' and `arch-lib'.
10585
10586 * configure: When generating report and `config.status' file, note
10587 that bindir only determines where `make install' and
10588 `build-install' will place the executables; this should make it
10589 clear that the ordinary build process will not try to install
10590 things.
10591
105921992-06-10 Jim Blandy (jimb@wookumz.gnu.ai.mit.edu)
10593
10594 * make-dist: Change messages to say that we are 'making links to
10595 X', rather than 'copying X'. And put `' quotes around file names.
10596
10597 * make-dist: Include '.tmp' in the name of the staging directory.
10598
10599 * make-dist: Pass the `-f' option to rm when you're not sure that
10600 the files you're removing actually exist.
10601
10602 * make-dist: When setting up etc/COPYING, always nuke whatever is
10603 there, and then copy it in, to make sure we get a real file.
10604
10605 * make-dist: Don't try to distribute *.defns files any more. The
0105dc3e 10606 only such file was for simula.el, which has been superseded by a
067d23c9
KY
10607 version which doesn't have a separate .defns file.
10608
106091992-05-28 Ken Raeburn (Raeburn@Cygnus.COM)
10610
10611 * make-dist: Don't distribute configured versions of config.h.in,
10612 paths.h.in, Makefile.in in src.
10613
10614 * configure: Delete .tmp files before creating them; don't bother
cd1181db 10615 trying to make final targets writable first, since it won't
067d23c9
KY
10616 matter to move-if-change.
10617
106181992-05-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10619
10620 * Makefile.in (mkdir, lockdir): Don't put dashes in front of the
10621 mkdir and chmod in the center of all the conditionals. GNU Make
10622 will strip these out, but other makes won't.
10623
106241992-05-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10625
10626 * make-dist: Include move-if-change in list of files to distribute.
10627
106281992-05-04 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10629
10630 * configure: Remove any "." elements from the program name.
10631
10632 * configure: Don't record the values of all the possible arguments
10633 in config.status; only record the options that the user specified.
10634
10635 * configure: Use move-if-change to move in the new src/config.h.
10636
106371992-04-29 Ken Raeburn (Raeburn@Cygnus.COM)
10638
10639 * move-if-change: New file, copied from gcc release.
10640 * Makefile.in (src/paths.h): Use it, and put the "sed" output into
10641 a temp file, so we don't update paths.h if an error occurs or if
10642 it doesn't need changing.
10643
106441992-04-28 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10645
10646 * Makefile.in (src/paths.h): Do not install a value for the
10647 PATH_SUPERLOCK value; that macro doesn't exist anymore.
10648 * build-install.in: Same thing.
10649
106501992-04-24 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10651
10652 * make-dist: Check the flag called "make_tar", not "make_dir"; the
10653 latter, being a typo, is always false, resulting in a program
10654 whose default behavior is to painstakingly build a copy of the
10655 source tree, and then delete it. Rah.
10656
10657 * Makefile.in: Add dist target, and comment for it.
10658
10659 * configure: When scanning <signal.h> for a declaration for
10660 signal, create a symbolic link with a name ending in .c, so the
10661 compiler won't complain that it's only been given .h files.
10662
10663 * configure: Check whether there are any arguments available
10664 before shifting to get the value of a non-boolean parameter.
10665
10666 * make-dist: Doc fix.
10667
106681992-04-20 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10669
10670 * configure: Instead of grepping /usr/include/signal.h for a
10671 signal declaration, run /usr/include/signal.h or
10672 /usr/include/sys/signal.h through cpp and grep for the
10673 declaration.
10674
10675 * configure: Redirect the output of grep to /dev/null instead of
10676 using grep -s - that flag means different things on other systems.
10677
10678 * Makefile.in: Use 'buildlisppath' instead of 'dumplisppath',
10679 since the former is recognizable even if you don't know what
10680 'dumping' is.
10681 * configure: Accommodate that change.
10682
10683 * configure: Accept options for all of the directories you can
10684 change in the Makefile.
10685
10686 * configure: Accept "-OPTION VALUE" as well as "-OPTION=VALUE".
10687
10688 * INSTALL: Mention that you have to copy all the 'FOO.in' files to
10689 FOO before you can use them.
10690
10691 * build-install.in: Made the "Where To Install Things" section
10692 conform with the similar section from Makefile.in. Copied section
10693 which builds src/paths.h from src/paths.h.in from the Makefile.
10694
106951992-04-19 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10696
10697 * configure: Write config.status to pass its command-line
10698 arguments on to configure, so that people can use it to recreate
10699 an old configuration, with minor changes.
10700
107011992-04-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10702
10703 * configure: Don't rely on option variables being unset if their
10704 values are the empty string. In particular, when producing the
10705 English report, don't assume that highpri will be unset when no
10706 increased priority has been requested; -highpri='' should be the
10707 same as omitting -highpri altogether.
10708
10709 * configure: Fix dumb bug: when running the system and machine
10710 description files through cpp, mark those lines that we want to
10711 evaluate with the string '@configure@', and then only evaluate
10712 them. This way if the files include anything that actually
10713 generates text (type definitions or external declarations, say),
10714 we won't try to eval it.
10715
107161992-04-11 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10717
10718 * make-dist: New shell script.
10719
10720 * configure: When creating foo from foo.in, make foo read-only to
10721 remind people to edit the .in file instead.
10722
10723 * INSTALL: Changed references to config.h-dist to config.h.in.
10724 The "BUILDING GNU EMACS BY HAND" section neglected to mention how
10725 to build src/paths.h from src/paths.h.in; added a paragraph to do
10726 this.
10727 * configure, Makefile, build-install: Changed filenames like
10728 FOO-dist to FOO.in.
10729
107301992-04-08 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10731
10732 * Makefile, build-install: Renamed to Makefile.in and
10733 build-install.in; the configure script will edit these to produce
10734 the usable Makefile and build-install.
10735 * configure: Changed to produce ./Makefile, ./build-install,
10736 lib-src/Makefile, and src/Makefile from their *.in counterparts,
10737 instead of editing them in place.
10738
107391992-04-07 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10740
10741 * Makefile: Re-arranged so that the undumped Emacs will search
10742 ../lisp *after* the site's local elisp files.
10743 (locallisppath, dumplisppath): New variables.
10744 (lisppath): This variable's default value is now chosen based on
10745 $(locallisppath) and $(lispdir); while it used to be the
10746 customization point for adding site-local elisp directories to
10747 load-path, that job is now handled mostly by locallisppath.
10748 (src/paths.h): Edit the value of a new macro, PATH_DUMPLOADSEARCH.
10749 Check the values being assigned to the *LOADSEARCH macros for null
10750 path elements (like '::' in 'foo::bar').
10751
10752 * configure: When checking if the machine- and system-dependent
10753 files define a particular macro or not, actually run them through
10754 CPP and test the macros with #ifs, instead of just grepping for
10755 the macros' names. In particular, check for SYSTEM_MALLOC in this
10756 way.
10757
107581992-04-03 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10759
10760 * Makefile (install): Don't use -s in install. (Keep the symbols.)
10761
107621992-04-02 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10763
10764 * configure: Make the config.status file an executable shell
10765 script which will recreate the same configuration. Include the
10766 verbal description of the current configuration as a comment in
10767 the script.
10768 * INSTALL: Doc fix.
10769
10770 * Makefile: Brought the Makefile up to the GNU coding
10771 standards, as described in standards.text:
10772 (TAGS): New name for the target which rebuilds the tags table.
10773 (check): New target; doesn't do anything yet.
10774 (mostlyclean): New target, synonymous with clean.
10775 (realclean): New target. Currently, this just calls the
10776 subdirectories's makefiles and then deletes config.status.
10777 (INSTALL, INSTALLFLAGS, INSTALL_PROGRAM, INSTALL_DATA): New
10778 variables.
10779 Installation directory variables changed to conform.
10780 (install, install.sysv, install.xenix, install.aix): Changed the
10781 code which copies the directories into their installed location to
10782 allow the installed locations to be in several different
10783 directories; the old version assumed that they would all be in
10784 $(emacsdir).
10785 (mkdir, lockdir): Allow the installed locations to be in several
10786 different directories.
10787 * INSTALL: Doc fix.
10788
10789 * build-install: Use the same variable names as the Makefile.
10790 Allow the installed locations to be in several different
10791 directories.
10792
107931992-03-31 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10794
10795 * Makefile (src/paths.h): Instead of using a single sed command to
10796 edit both the PATH_LOCK and PATH_SUPERLOCK macros, edit the two
10797 separately, and don't forget to append "/!!!SuperLock!!!" to the
10798 value of the PATH_SUPERLOCK macro.
10799
10800 * config.emacs: Renamed to configure, for consistency with other
10801 GNU products. Internal references changed.
10802 INSTALL, Makefile: References changed.
10803
10804 * lock: New directory, which should always be empty. If this
10805 directory doesn't exist, Emacs won't complain; it just won't lock.
10806 Having this here means that people can just unpack Emacs, build
10807 it, and have locking work.
10808
10809 * share-lib: Re-renamed to etc, for the sake of tradition.
10810 * config.emacs: Changed default value for datadir to ../etc.
10811 * INSTALL, README: Adjusted.
10812
108131992-03-18 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10814
10815 * config.emacs: Guess the value for LOADLIBES in lib-src/Makefile
10816 by running CPP on the appropriate s/*.h and m/*.h files.
10817
108181992-03-16 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10819
10820 * config.emacs: Make sure to set the "exit on error" flag once
10821 we've removed config.status; errors should abort the configuration.
10822
108231992-02-15 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10824
10825 * config.emacs: Added -distribute option, so that the Makefile
10826 paths are in their proper form. I don't know why this matters.
10827
108281992-02-14 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10829
10830 * local-lisp: New directory, empty in the distribution, for people
10831 to put local elisp code in.
10832 * config.emacs: Include it in the default load path.
10833 * README: Document it.
10834
108351992-01-30 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10836
10837 * config.emacs: Guess the type of signal handling functions based
10838 on the contents of /usr/include/signal.h.
10839
10840 * config.emacs: Print out progress report messages.
10841
10842 * Makefile (src/paths.h): Don't generically replace
10843 /usr/local/lib/emacs with LIBROOT. This can hide bugs in the
10844 editing of the other entries, and each entry should be dealt with
10845 explicitly anyway.
10846
10847 * build-install: Converted from C-shell to Bourne shell.
10848 * config.emacs: Edit build-install properly.
10849
10850 * config.emacs: Doc fix.
10851
108521992-01-27 Richard Stallman (rms@mole.gnu.ai.mit.edu)
10853
10854 * Makefile (install): Remove `B' from tar xf command.
10855
108561992-01-13 Jim Blandy (jimb@pogo.cs.oberlin.edu)
10857
10858 * config.emacs: Removed support for the `maintain-environment'
10859 option; the only important difference between this and its absence
10860 has been removed.
10861 * INSTALL: Removed mention of `maintain-environment'.
10862
10863 * config.emacs: Fix arguments to sed when processing boolean
10864 arguments.
10865
108661991-12-05 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
10867
10868 * config.emacs: New file, to help automate the installation
10869 process.
10870
10871 * Makefile: Lots of changes to support the separation of etc into
10872 architecture-dependent and -independent files:
10873 (EMACSROOT): New variable, giving the directory under which all of
10874 Emacs's libraries should be installed. Changed rest of file to
10875 use it.
10876 (LIBDIR): Now denotes only architecture-dependent dir.
10877 (DATADIR): New variable, denoting architecture-independent dir.
10878 (LOCKDIR): New variable, for completeness.
10879 (SUBDIR): No more etc, new lib-src.
10880 (COPYDIR): No more etc, new arch-lib and share-lib.
10881 (src/paths.h): Set PATH_DATA and the LOCK macros too.
10882 (src): Now depends on lib-src, not etc.
10883 * build-install: Changes parallel to the above.
10884 * README: Describe the new arrangement.
10885
10886 * vms: New subdirectory for all the VMS stuff.
10887
108881991-12-03 Jim Blandy (jimb@pogo.gnu.ai.mit.edu)
10889
10890 * Makefile (LISPPATH): New variable.
10891 (src/paths.h): Define PATH_LOADSEARCH according to LISPPATH.
10892
108931990-09-28 Richard Stallman (rms@mole.ai.mit.edu)
10894
10895 * Makefile (install, install.sysv, install.xenix):
10896 Install wakeup instead of loadst. No need for setuid or setgid.
10897
108981990-08-07 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
10899
10900 * Makefile (clean): Clean etc if that's not the installation dir.
10901
109021990-04-26 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
10903
10904 * Makefile (paths.h): Make sed alter each name in the path.
10905
109061988-08-30 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
10907
10908 * Makefile (install.sysv): Use cpio, not tar.
10909
109101988-08-03 Richard Stallman (rms@sugar-bombs.ai.mit.edu)
10911
10912 * Makefile (lockdir): Rename `lock' target.
10913 Depend on it from install*, not from `all'.
10914
109151988-05-16 Richard Stallman (rms@frosted-flakes.ai.mit.edu)
10916
10917 * Makefile: Changed LIBDIR and BINDIR back to /usr/local/{emacs,bin}
10918 to match build-install and paths.h.
10919
10920;; Local Variables:
10921;; coding: utf-8
067d23c9
KY
10922;; End:
10923
1a71cb28 10924 Copyright (C) 1993-1999, 2001-2012 Free Software Foundation, Inc.
067d23c9
KY
10925
10926 This file is part of GNU Emacs.
10927
10928 GNU Emacs is free software: you can redistribute it and/or modify
10929 it under the terms of the GNU General Public License as published by
10930 the Free Software Foundation, either version 3 of the License, or
10931 (at your option) any later version.
10932
10933 GNU Emacs is distributed in the hope that it will be useful,
10934 but WITHOUT ANY WARRANTY; without even the implied warranty of
10935 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10936 GNU General Public License for more details.
10937
10938 You should have received a copy of the GNU General Public License
10939 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.