diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-02-12 23:06:05 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-02-12 23:06:05 -0500 |
commit | 79bdfb63e9936619d1d5fd50cab8694db5052291 (patch) | |
tree | 70d02b28e1c3d0e5264f2a3ca39e64bd1418b6b2 /src/common | |
parent | 82bba906f43bad545c457ce5f858a7dfec000a64 (diff) | |
download | tor-79bdfb63e9936619d1d5fd50cab8694db5052291.tar.gz tor-79bdfb63e9936619d1d5fd50cab8694db5052291.zip |
Remove the --enable-iphone option as needless.
On or-talk, Marco Bonetti reports that recent iPhone SDKs build
Tor fine without it.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/compat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index 7295bf25bd..406d74eb25 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -1009,9 +1009,6 @@ set_max_file_descriptors(rlim_t limit, int *max_out) #if defined(CYGWIN) || defined(__CYGWIN__) const char *platform = "Cygwin"; const unsigned long MAX_CONNECTIONS = 3200; -#elif defined(IPHONE) - const char *platform = "iPhone"; - const unsigned long MAX_CONNECTIONS = 9999; #elif defined(MS_WINDOWS) const char *platform = "Windows"; const unsigned long MAX_CONNECTIONS = 15000; |