diff options
| author | Kenichi Handa | 2010-11-25 12:56:41 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-11-25 12:56:41 +0900 |
| commit | e957f9ae90f3cab1584c06877cbff075d52a6a9a (patch) | |
| tree | d19aea6f4c6a3e369604ab8bc97be6d419073b0c /lib-src | |
| parent | b84ae584330c940010bc543fd925eddeb13fd9e2 (diff) | |
| parent | 33aeea0eb66921329fde41e14cfda2565c6bad6d (diff) | |
| download | emacs-e957f9ae90f3cab1584c06877cbff075d52a6a9a.tar.gz emacs-e957f9ae90f3cab1584c06877cbff075d52a6a9a.zip | |
merge emacs-23
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 3 | ||||
| -rw-r--r-- | lib-src/makefile.w32-in | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 11da74f63b0..ba98132521d 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * emacsclient.c (set_local_socket) [DARWIN_OS]: Add fall-back | ||
| 4 | definition of _CS_DARWIN_USER_TEMP_DIR for Mac OS X 10.4 and older. | ||
| 5 | |||
| 1 | 2010-10-01 Glenn Morris <rgm@gnu.org> | 6 | 2010-10-01 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back | 8 | * emacsclient.c (set_local_socket) [DARWIN_OS]: Try as a fall-back |
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 05f01b3b097..4b45beb6901 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -1251,6 +1251,9 @@ set_local_socket () | |||
| 1251 | if (!tmpdir) | 1251 | if (!tmpdir) |
| 1252 | { | 1252 | { |
| 1253 | #ifdef DARWIN_OS | 1253 | #ifdef DARWIN_OS |
| 1254 | #ifndef _CS_DARWIN_USER_TEMP_DIR | ||
| 1255 | #define _CS_DARWIN_USER_TEMP_DIR 65537 | ||
| 1256 | #endif | ||
| 1254 | size_t n = confstr (_CS_DARWIN_USER_TEMP_DIR, NULL, (size_t) 0); | 1257 | size_t n = confstr (_CS_DARWIN_USER_TEMP_DIR, NULL, (size_t) 0); |
| 1255 | if (n > 0) | 1258 | if (n > 0) |
| 1256 | { | 1259 | { |
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 601d412894e..1a0def1e304 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in | |||
| @@ -22,7 +22,7 @@ ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacs | |||
| 22 | 22 | ||
| 23 | .PHONY: $(ALL) | 23 | .PHONY: $(ALL) |
| 24 | 24 | ||
| 25 | VERSION = 23.2.50 | 25 | VERSION = 23.2.90 |
| 26 | 26 | ||
| 27 | LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ | 27 | LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \ |
| 28 | -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \ | 28 | -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \ |