Reduced the required stack size.

This commit is contained in:
Dan Fandrich 2008-05-14 23:38:21 +00:00
parent 08aab6a620
commit c24ed07596
2 changed files with 11 additions and 3 deletions

View File

@ -19,5 +19,5 @@ STATICLIBRARY libcrt0.lib
CAPABILITY NetworkServices
EPOCSTACKSIZE 0x18000
EPOCSTACKSIZE 0x8000

View File

@ -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