diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2008-05-14 23:38:21 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2008-05-14 23:38:21 +0000 |
commit | c24ed07596abdb56e0f3511178755ca63cc8c746 (patch) | |
tree | 15409a65cfe0f089feca7101a70f5b626ba0e810 /packages | |
parent | 08aab6a6206790abfdc9564ed727df8e70378c26 (diff) | |
download | curl-c24ed07596abdb56e0f3511178755ca63cc8c746.tar.gz |
Reduced the required stack size.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/Symbian/group/curl.mmp | 2 | ||||
-rw-r--r-- | packages/Symbian/readme.txt | 12 |
2 files changed, 11 insertions, 3 deletions
diff --git a/packages/Symbian/group/curl.mmp b/packages/Symbian/group/curl.mmp index a24c16281..1c495486d 100644 --- a/packages/Symbian/group/curl.mmp +++ b/packages/Symbian/group/curl.mmp @@ -19,5 +19,5 @@ STATICLIBRARY libcrt0.lib CAPABILITY NetworkServices -EPOCSTACKSIZE 0x18000 +EPOCSTACKSIZE 0x8000 diff --git a/packages/Symbian/readme.txt b/packages/Symbian/readme.txt index dfae00a54..282bf06ce 100644 --- a/packages/Symbian/readme.txt +++ b/packages/Symbian/readme.txt @@ -20,6 +20,7 @@ Signed, which is required in order to install them on most phones. Following are some things to keep in mind when using this port. + curl notes ---------- When starting curl in the Windows emulator from the Windows command-line, @@ -39,15 +40,18 @@ P.I.P.S. doesn't inherit the current working directory at startup, so the to files will be necessary. P.I.P.S. provides no way to disable echoing of characters as they are -entered, so passwords typed in on the console will be visible. +entered, so passwords typed in on the console will be visible. It also +line buffers keyboard input so interactive telnet sessions are not very +feasible. -All screen output disappears after curl exits, so after a transfer completes, +All screen output disappears after curl exits, so after a command completes, curl waits by default for Enter to be pressed before exiting. This behaviour is suppressed when the -s option is given. curl's "home directory" in Symbian is C:\Private\f0206442\. The .curlrc file is read from this directory on startup. + libcurl notes ------------- libcurl uses writable static data, so the EPOCALLOWDLLDATA option is @@ -66,6 +70,10 @@ half an hour are selected. SSL/TLS encryption is not supported, nor are LDAP, SCP or SFTP URLs. +Debug builds are not supported (i.e. --enable-debug) because they cause +additional symbol exports in the library which are not frozen in the .def +files. + Dan Fandrich dan@coneharvesters.com |