diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-02-03 11:55:47 +0000 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-02-03 11:55:47 +0000 |
commit | 0df16e00be4019a223d5081ae82abab5cc460d2e (patch) | |
tree | 1deccebeba72b6cd96e5da6a2261fcfec9a813ed /src/mac.c | |
parent | b81434000af1e028aaafc2c0cf8fc6eb2d3ebf0d (diff) | |
download | emacs-0df16e00be4019a223d5081ae82abab5cc460d2e.tar.gz |
Use MAC_OS_X_VERSION_MAX_ALLOWED to conditionalize by the compiling OS
version.
Diffstat (limited to 'src/mac.c')
-rw-r--r-- | src/mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mac.c b/src/mac.c index 99e0d44830b..cce1b858cb3 100644 --- a/src/mac.c +++ b/src/mac.c @@ -2858,7 +2858,7 @@ select_and_poll_event (n, rfds, wfds, efds, timeout) return r; } -#ifndef MAC_OS_X_VERSION_10_2 +#if MAC_OS_X_VERSION_MAX_ALLOWED < 1020 #undef SELECT_INVALIDATE_CFSOCKET #endif |