aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-07-24 03:59:52 +0000
committerRichard M. Stallman2002-07-24 03:59:52 +0000
commitfe44589306e35698b1ee62be12101b0bb9942444 (patch)
tree7d60c59cc468dbe1c0e713dff45920bb48b69dc1
parent95c997fa7f03b25717db583709d5a52893d7ccc5 (diff)
downloademacs-fe44589306e35698b1ee62be12101b0bb9942444.tar.gz
emacs-fe44589306e35698b1ee62be12101b0bb9942444.zip
*** empty log message ***
-rw-r--r--etc/PROBLEMS21
-rw-r--r--lisp/ChangeLog17
2 files changed, 27 insertions, 11 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index 0bb229ce5e8..e4bc7f4af98 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -402,17 +402,16 @@ library function.
402 402
403* The `configure' script doesn't find the jpeg library. 403* The `configure' script doesn't find the jpeg library.
404 404
405This can happen because the linker by default only looks for shared 405There are reports that this happens on some systems because the linker
406libraries, but jpeg distribution by default doesn't build and doesn't 406by default only looks for shared libraries, but jpeg distribution by
407install a shared version of the library, `libjpeg.so'. One system 407default only installs a nonshared version of the library, `libjpeg.a'.
408where this is known to happen is Compaq OSF/1 (`Tru64'), but it 408
409probably isn't limited to that system. 409If this is the problem, you can configure the jpeg library with the
410 410`--enable-shared' option and then rebuild libjpeg. This produces a
411You can configure the jpeg library with the `--enable-shared' option 411shared version of libjpeg, which you need to install. Finally, rerun
412and then rebuild libjpeg. This produces a shared version of libjpeg, 412the Emacs configure script, which should now find the jpeg library.
413which you need to install. Finally, rerun the Emacs configure script, 413Alternatively, modify the generated src/Makefile to link the .a file
414which should now find the jpeg library. Alternatively, modify the 414explicitly.
415generated src/Makefile to link the .a file explicitly.
416 415
417(If you need the static version of the jpeg library as well, configure 416(If you need the static version of the jpeg library as well, configure
418libjpeg with both `--enable-static' and `--enable-shared' options.) 417libjpeg with both `--enable-static' and `--enable-shared' options.)
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 64b07c5cc8c..96001bea65a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12002-07-24 Richard M. Stallman <rms@gnu.org>
2
3 * emacs-lisp/bytecomp.el (byte-compile-log-warning):
4 Bind warning-group-format.
5
6 * emacs-lisp/bytecomp.el (byte-compile-cl-functions): New variable.
7 (byte-compile-cl-warn): Use that variable.
8 (byte-compile-find-cl-functions): New function.
9 (displaying-byte-compile-warnings):
10 Call byte-compile-find-cl-functions.
11
12 * warnings.el (warning-levels): Add %s to the strings.
13 (warning-group-format): New variable.
14 (warning-suppress-log-types): Renamed from warning-suppress-log.
15 (warning-suppress-types): Renamed from warning-suppress.
16 (display-warning): Implement those changes.
17
12002-07-23 Richard M. Stallman <rms@gnu.org> 182002-07-23 Richard M. Stallman <rms@gnu.org>
2 19
3 * warnings.el: Add `provide' call. 20 * warnings.el: Add `provide' call.