diff options
| author | Chong Yidong | 2009-11-20 21:40:00 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-11-20 21:40:00 +0000 |
| commit | abbdc6a07b34911e98d2877f545a33b77fd0df6d (patch) | |
| tree | c5997d6f397327877418cf3ad0bb3eee654cb6b5 | |
| parent | 6aeaa3dcde4b682244b26b2f1443d9810bd1a3c9 (diff) | |
| download | emacs-abbdc6a07b34911e98d2877f545a33b77fd0df6d.tar.gz emacs-abbdc6a07b34911e98d2877f545a33b77fd0df6d.zip | |
* PROBLEMS (http): Add workaround for Cygwin crash.
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/PROBLEMS | 15 |
2 files changed, 17 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 0b134576973..3811063d5d8 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change) | ||
| 2 | |||
| 3 | * PROBLEMS (http): Add workaround for Cygwin crash. | ||
| 4 | |||
| 1 | 2009-11-17 Jan Djärv <jan.h.d@swipnet.se> | 5 | 2009-11-17 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * NEWS: Mention dynamic font changes (font-use-system-font). | 7 | * NEWS: Mention dynamic font changes (font-use-system-font). |
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index eb1e362cc71..acc5ff996a1 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -252,8 +252,19 @@ A typical error message is | |||
| 252 | 252 | ||
| 253 | Emacs supplies its own malloc, but glib (part of Gtk+) calls memalign and on | 253 | Emacs supplies its own malloc, but glib (part of Gtk+) calls memalign and on |
| 254 | Cygwin, that becomes the Cygwin supplied memalign. As malloc is not the | 254 | Cygwin, that becomes the Cygwin supplied memalign. As malloc is not the |
| 255 | Cygwin malloc, the Cygwin memalign always returns ENOSYS. A fix for this | 255 | Cygwin malloc, the Cygwin memalign always returns ENOSYS. |
| 256 | problem would be welcome. | 256 | |
| 257 | One workaround is to set G_SLICE=always-malloc before starting emacs. | ||
| 258 | For example, in bash, | ||
| 259 | |||
| 260 | G_SLICE=always-malloc emacs | ||
| 261 | |||
| 262 | or put | ||
| 263 | |||
| 264 | export G_SLICE=always-malloc | ||
| 265 | |||
| 266 | in one of the bash startup files. This also has to be done before | ||
| 267 | building emacs on Cygwin with Gtk+. | ||
| 257 | 268 | ||
| 258 | * General runtime problems | 269 | * General runtime problems |
| 259 | 270 | ||