diff options
| author | Richard M. Stallman | 2002-07-24 03:59:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-07-24 03:59:52 +0000 |
| commit | fe44589306e35698b1ee62be12101b0bb9942444 (patch) | |
| tree | 7d60c59cc468dbe1c0e713dff45920bb48b69dc1 | |
| parent | 95c997fa7f03b25717db583709d5a52893d7ccc5 (diff) | |
| download | emacs-fe44589306e35698b1ee62be12101b0bb9942444.tar.gz emacs-fe44589306e35698b1ee62be12101b0bb9942444.zip | |
*** empty log message ***
| -rw-r--r-- | etc/PROBLEMS | 21 | ||||
| -rw-r--r-- | lisp/ChangeLog | 17 |
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 | ||
| 405 | This can happen because the linker by default only looks for shared | 405 | There are reports that this happens on some systems because the linker |
| 406 | libraries, but jpeg distribution by default doesn't build and doesn't | 406 | by default only looks for shared libraries, but jpeg distribution by |
| 407 | install a shared version of the library, `libjpeg.so'. One system | 407 | default only installs a nonshared version of the library, `libjpeg.a'. |
| 408 | where this is known to happen is Compaq OSF/1 (`Tru64'), but it | 408 | |
| 409 | probably isn't limited to that system. | 409 | If this is the problem, you can configure the jpeg library with the |
| 410 | 410 | `--enable-shared' option and then rebuild libjpeg. This produces a | |
| 411 | You can configure the jpeg library with the `--enable-shared' option | 411 | shared version of libjpeg, which you need to install. Finally, rerun |
| 412 | and then rebuild libjpeg. This produces a shared version of libjpeg, | 412 | the Emacs configure script, which should now find the jpeg library. |
| 413 | which you need to install. Finally, rerun the Emacs configure script, | 413 | Alternatively, modify the generated src/Makefile to link the .a file |
| 414 | which should now find the jpeg library. Alternatively, modify the | 414 | explicitly. |
| 415 | generated 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 |
| 418 | libjpeg with both `--enable-static' and `--enable-shared' options.) | 417 | libjpeg 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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-07-23 Richard M. Stallman <rms@gnu.org> | 18 | 2002-07-23 Richard M. Stallman <rms@gnu.org> |
| 2 | 19 | ||
| 3 | * warnings.el: Add `provide' call. | 20 | * warnings.el: Add `provide' call. |