INSTALL
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:33k
源码类别:

TAPI编程

开发平台:

Visual C++

  1.                                   _   _ ____  _
  2.                               ___| | | |  _ | |
  3.                              / __| | | | |_) | |
  4.                             | (__| |_| |  _ <| |___
  5.                              ___|___/|_| ______|
  6.                                 How To Compile
  7. Installing Binary Packages
  8. ==========================
  9.    Lots of people download binary distributions of curl and libcurl. This
  10.    document does not describe how to install curl or libcurl using such a
  11.    binary package. This document describes how to compile, build and install
  12.    curl and libcurl from source code.
  13. UNIX
  14. ====
  15.    A normal unix installation is made in three or four steps (after you've
  16.    unpacked the source archive):
  17.         ./configure
  18.         make
  19.         make test (optional)
  20.         make install
  21.    You probably need to be root when doing the last command.
  22.    If you have checked out the sources from the CVS repository, read the
  23.    CVS-INFO on how to proceed.
  24.    Get a full listing of all available configure options by invoking it like:
  25.         ./configure --help
  26.    If you want to install curl in a different file hierarchy than /usr/local,
  27.    you need to specify that already when running configure:
  28.         ./configure --prefix=/path/to/curl/tree
  29.    If you happen to have write permission in that directory, you can do 'make
  30.    install' without being root. An example of this would be to make a local
  31.    install in your own home directory:
  32.         ./configure --prefix=$HOME
  33.         make
  34.         make install
  35.    The configure script always tries to find a working SSL library unless
  36.    explicitly told not to. If you have OpenSSL installed in the default search
  37.    path for your compiler/linker, you don't need to do anything special. If
  38.    you have OpenSSL installed in /usr/local/ssl, you can run configure like:
  39.         ./configure --with-ssl
  40.    If you have OpenSSL installed somewhere else (for example, /opt/OpenSSL)
  41.    and you have pkg-config installed, set the pkg-config path first, like this:
  42.         env PKG_CONFIG_PATH=/opt/OpenSSL/lib/pkgconfig ./configure --with-ssl
  43.    Without pkg-config installed, use this:
  44.         ./configure --with-ssl=/opt/OpenSSL
  45.    If you insist on forcing a build without SSL support, even though you may
  46.    have OpenSSL installed in your system, you can run configure like this:
  47.         ./configure --without-ssl
  48.    If you have OpenSSL installed, but with the libraries in one place and the
  49.    header files somewhere else, you have to set the LDFLAGS and CPPFLAGS
  50.    environment variables prior to running configure.  Something like this
  51.    should work:
  52.      (with the Bourne shell and its clones):
  53.         CPPFLAGS="-I/path/to/ssl/include" LDFLAGS="-L/path/to/ssl/lib" 
  54.            ./configure
  55.      (with csh, tcsh and their clones):
  56.         env CPPFLAGS="-I/path/to/ssl/include" LDFLAGS="-L/path/to/ssl/lib" 
  57.            ./configure
  58.    If you have shared SSL libs installed in a directory where your run-time
  59.    linker doesn't find them (which usually causes configure failures), you can
  60.    provide the -R option to ld on some operating systems to set a hard-coded
  61.    path to the run-time linker:
  62.         env LDFLAGS=-R/usr/local/ssl/lib ./configure --with-ssl
  63.    MORE OPTIONS
  64.    ------------
  65.      To force configure to use the standard cc compiler if both cc and gcc are
  66.      present, run configure like
  67.        CC=cc ./configure
  68.          or
  69.        env CC=cc ./configure
  70.      To force a static library compile, disable the shared library creation
  71.      by running configure like:
  72.        ./configure --disable-shared
  73.      To tell the configure script to skip searching for thread-safe functions,
  74.      add an option like:
  75.        ./configure --disable-thread
  76.      To build curl with kerberos4 support enabled, curl requires the krb4 libs
  77.      and headers installed. You can then use a set of options to tell
  78.      configure where those are:
  79.           --with-krb4-includes[=DIR]   Specify location of kerberos4 headers
  80.           --with-krb4-libs[=DIR]       Specify location of kerberos4 libs
  81.           --with-krb4[=DIR]            where to look for Kerberos4
  82.      In most cases, /usr/athena is the install prefix and then it works with
  83.        ./configure --with-krb4=/usr/athena
  84.      If you're a curl developer and use gcc, you might want to enable more
  85.      debug options with the --enable-debug option.
  86.      curl can be built to use a whole range of libraries to provide various
  87.      useful services, and configure will try to auto-detect a decent
  88.      default. But if you want to alter it, you can select how to deal with
  89.      each individual library.
  90.      To build with GnuTLS support instead of OpenSSL for SSL/TLS, note that
  91.      you need to use both --without-ssl and --with-gnutls.
  92.      To build with yassl support instead of OpenSSL or GnuTLS, you must build
  93.      yassl with its OpenSSL emulation enabled and point to that directory root
  94.      with configure --with-ssl.
  95.      To build with NSS support instead of OpenSSL for SSL/TLS, note that
  96.      you need to use both --without-ssl and --with-nss.
  97.      To get GSSAPI support, build with --with-gssapi and have the MIT or
  98.      Heimdal Kerberos 5 packages installed.
  99.      To get support for SCP and SFTP, build with --with-libssh2 and have
  100.      libssh2 0.16 or later installed.
  101.      
  102.    SPECIAL CASES
  103.    -------------
  104.    Some versions of uClibc require configuring with CPPFLAGS=-D_GNU_SOURCE=1
  105.    to get correct large file support.
  106.    The Open Watcom C compiler on Linux requires configuring with the variables:
  107.        ./configure CC=owcc AR="$WATCOM/binl/wlib" AR_FLAGS=-q 
  108.            RANLIB=/bin/true STRIP="$WATCOM/binl/wstrip" CFLAGS=-Wextra
  109. Win32
  110. =====
  111.    Building Windows DLLs and C run-time (CRT) linkage issues
  112.    ---------------------------------------------------------
  113.    As a general rule, building a DLL with static CRT linkage is highly
  114.    discouraged, and intermixing CRTs in the same app is something to
  115.    avoid at any cost.
  116.    Reading and comprehension of Microsoft Knowledge Base articles
  117.    KB94248 and KB140584 is a must for any Windows developer. Especially
  118.    important is full understanding if you are not going to follow the
  119.    advice given above.
  120.    KB94248  - How To Use the C Run-Time
  121.               http://support.microsoft.com/kb/94248/en-us
  122.    KB140584 - How to link with the correct C Run-Time (CRT) library
  123.               http://support.microsoft.com/kb/140584/en-us
  124.    If your app is misbehaving in some strange way, or it is suffering
  125.    from memory corruption, before asking for further help, please try
  126.    first to rebuild every single library your app uses as well as your
  127.    app using the debug multithreaded dynamic C runtime.
  128.    MingW32
  129.    -------
  130.    Make sure that MinGW32's bin dir is in the search path, for example:
  131.      set PATH=c:mingw32bin;%PATH%
  132.    then run 'mingw32-make mingw32' in the root dir. There are other
  133.    make targets available to build libcurl with more features, use:
  134.    'mingw32-make mingw32-zlib' to build with Zlib support;
  135.    'mingw32-make mingw32-ssl-zlib' to build with SSL and Zlib enabled;
  136.    'mingw32-make mingw32-ssh2-ssl-zlib' to build with SSH2, SSL, Zlib;
  137.    'mingw32-make mingw32-ssh2-ssl-sspi-zlib' to build with SSH2, SSL, Zlib
  138.    and SSPI support.
  139.    If you have any problems linking libraries or finding header files, be sure
  140.    to verify that the provided "Makefile.m32" files use the proper paths, and
  141.    adjust as necessary. It is also possible to override these paths with 
  142.    environment variables, for example:
  143.      set ZLIB_PATH=c:zlib-1.2.3
  144.      set OPENSSL_PATH=c:openssl-0.9.8g
  145.      set LIBSSH2_PATH=c:libssh2-0.17
  146.    ATTENTION: if you want to build with libssh2 support you have to use latest
  147.    version 0.17 - previous versions will NOT work with 7.17.0 and later!
  148.    Use 'mingw32-make mingw32-ssh2-ssl-zlib' to build with SSH2 and SSL enabled.
  149.    It is now also possible to build with other LDAP SDKs than MS LDAP;
  150.    currently it is possible to build with native Win32 OpenLDAP, or with the
  151.    Novell CLDAP SDK. If you want to use these you need to set these vars:
  152.      set LDAP_SDK=c:openldap
  153.      set USE_LDAP_OPENLDAP=1
  154.    or for using the Novell SDK:
  155.      set USE_LDAP_NOVELL=1
  156.    If you want to enable LDAPS support then set LDAPS=1.
  157.    - optional MingW32-built OpenlDAP SDK available from:
  158.      http://www.gknw.net/mirror/openldap/
  159.    - optional recent Novell CLDAP SDK available from:
  160.      http://developer.novell.com/ndk/cldap.htm
  161.    Cygwin
  162.    ------
  163.    Almost identical to the unix installation. Run the configure script in the
  164.    curl root with 'sh configure'. Make sure you have the sh executable in
  165.    /bin/ or you'll see the configure fail toward the end.
  166.    Run 'make'
  167.    Dev-Cpp
  168.    -------
  169.    See the separate INSTALL.devcpp file for details.
  170.    MSVC from command line
  171.    ----------------------
  172.    Run the 'vcvars32.bat' file to get a proper environment. The
  173.    vcvars32.bat file is part of the Microsoft development environment and
  174.    you may find it in 'C:Program FilesMicrosoft Visual Studiovc98bin'
  175.    provided that you installed Visual C/C++ 6 in the default directory.
  176.    Then run 'nmake vc' in curl's root directory.
  177.    If you want to compile with zlib support, you will need to build
  178.    zlib (http://www.gzip.org/zlib/) as well. Please read the zlib
  179.    documentation on how to compile zlib. Define the ZLIB_PATH environment
  180.    variable to the location of zlib.h and zlib.lib, for example:
  181.      set ZLIB_PATH=c:zlib-1.2.3
  182.    Then run 'nmake vc-zlib' in curl's root directory.
  183.    If you want to compile with SSL support you need the OpenSSL package.
  184.    Please read the OpenSSL documentation on how to compile and install
  185.    the OpenSSL libraries.  The build process of OpenSSL generates the
  186.    libeay32.dll and ssleay32.dll files in the out32dll subdirectory in
  187.    the OpenSSL home directory.  OpenSSL static libraries (libeay32.lib,
  188.    ssleay32.lib, RSAglue.lib) are created in the out32 subdirectory.
  189.    Before running nmake define the OPENSSL_PATH environment variable with
  190.    the root/base directory of OpenSSL, for example:
  191.      set OPENSSL_PATH=c:openssl-0.9.8g
  192.    Then run 'nmake vc-ssl' or 'nmake vc-ssl-dll' in curl's root
  193.    directory.  'nmake vc-ssl' will create a libcurl static and dynamic
  194.    libraries in the lib subdirectory, as well as a statically linked
  195.    version of curl.exe in the src subdirectory.  This statically linked
  196.    version is a standalone executable not requiring any DLL at
  197.    runtime. This make method requires that you have the static OpenSSL
  198.    libraries available in OpenSSL's out32 subdirectory.
  199.    'nmake vc-ssl-dll' creates the libcurl dynamic library and
  200.    links curl.exe against libcurl and OpenSSL dynamically.
  201.    This executable requires libcurl.dll and the OpenSSL DLLs
  202.    at runtime.
  203.    Run 'nmake vc-ssl-zlib' to build with both ssl and zlib support.
  204.    MSVC 6 IDE
  205.    ----------
  206.    A minimal VC++ 6.0 reference workspace (vc6curl.dsw) is available with the
  207.    source distribution archive to allow proper building of the two included
  208.    projects, the libcurl library and the curl tool.
  209.    1) Open the vc6curl.dsw workspace with MSVC6's IDE.
  210.    2) Select 'Build' from top menu.
  211.    3) Select 'Batch Build' from dropdown menu.
  212.    4) Make sure that the eight project configurations are 'checked'.
  213.    5) Click on the 'Build' button.
  214.    6) Once the eight project configurations are built you are done.
  215.    Dynamic and static libcurl libraries are built in debug and release flavours,
  216.    and can be located each one in its own subdirectory, DLL-Debug, DLL-Release,
  217.    LIB-Debug and LIB-Release, all of them below the 'lib' subdirectory.
  218.    In the same way four curl executables are created, each using its respective
  219.    library. The resulting curl executables are located in its own subdirectory,
  220.    DLL-Debug, DLL-Release, LIB-Debug and LIB-Release, below the 'src' subdir.
  221.    These reference VC++ 6.0 configurations are generated using the dynamic CRT.
  222.    Intentionally, these reference VC++ 6.0 projects and configurations don't use
  223.    third party libraries, such as OpenSSL or Zlib, to allow proper compilation
  224.    and configuration for all new users without further requirements.
  225.    If you need something more 'involved' you might adjust them for your own use,
  226.    or explore the world of makefiles described above 'MSVC from command line'.
  227.    Borland C++ compiler
  228.    ---------------------
  229.    compile openssl
  230.    Make sure you include the paths to curl/include and openssl/inc32 in
  231.    your bcc32.cnf file
  232.    eg : -I"c:Bcc55include;c:path_curlinclude;c:path_opensslinc32"
  233.    Check to make sure that all of the sources listed in lib/Makefile.b32
  234.    are present in the /path_to_curl/lib directory. (Check the src
  235.    directory for missing ones.)
  236.    Make sure the environment variable "BCCDIR" is set to the install
  237.    location for the compiler eg : c:BorlandBCC55
  238.    command line:
  239.    make -f /path_to_curl/lib/Makefile-ssl.b32
  240.    compile simplessl.c with appropriate links
  241.    c:curldocsexamples> bcc32 -L c:path_to_curlliblibcurl.lib
  242.                                  -L c:borlandbcc55libpsdkws2_32.lib
  243.                                  -L c:opensslout32libeay32.lib
  244.                                  -L c:opensslout32ssleay32.lib
  245.                                  simplessl.c
  246.    OTHER MSVC IDEs
  247.    ---------------
  248.    If you use VC++, Borland or similar compilers. Include all lib source
  249.    files in a static lib "project" (all .c and .h files that is).
  250.    (you should name it libcurl or similar)
  251.    Make the sources in the src/ drawer be a "win32 console application"
  252.    project. Name it curl.
  253.    Disabling Specific Protocols in Win32 builds
  254.    --------------------------------------------
  255.    The configure utility, unfortunately, is not available for the Windows
  256.    environment, therefore, you cannot use the various disable-protocol
  257.    options of the configure utility on this platform.
  258.    However, you can use the following defines to disable specific
  259.    protocols:
  260.    HTTP_ONLY             disables all protocols except HTTP
  261.    CURL_DISABLE_FTP      disables FTP
  262.    CURL_DISABLE_LDAP     disables LDAP
  263.    CURL_DISABLE_TELNET   disables TELNET
  264.    CURL_DISABLE_DICT     disables DICT
  265.    CURL_DISABLE_FILE     disables FILE
  266.    CURL_DISABLE_TFTP     disables TFTP
  267.    CURL_DISABLE_HTTP     disables HTTP
  268.    If you want to set any of these defines you have the following
  269.    possibilities:
  270.    - Modify lib/config-win32.h
  271.    - Modify lib/setup.h
  272.    - Modify lib/Makefile.vc6
  273.    - Add defines to Project/Settings/C/C++/General/Preprocessor Definitions
  274.      in the curllib.dsw/curllib.dsp Visual C++ 6 IDE project.
  275.    Important static libcurl usage note
  276.    -----------------------------------
  277.    When building an application that uses the static libcurl library, you must
  278.    add '-DCURL_STATICLIB' to your CFLAGS.  Otherwise the linker will look for
  279.    dynamic import symbols.
  280. IBM OS/2
  281. ========
  282.    Building under OS/2 is not much different from building under unix.
  283.    You need:
  284.       - emx 0.9d
  285.       - GNU make
  286.       - GNU patch
  287.       - ksh
  288.       - GNU bison
  289.       - GNU file utilities
  290.       - GNU sed
  291.       - autoconf 2.13
  292.    If you want to build with OpenSSL or OpenLDAP support, you'll need to
  293.    download those libraries, too. Dirk Ohme has done some work to port SSL
  294.    libraries under OS/2, but it looks like he doesn't care about emx.  You'll
  295.    find his patches on: http://come.to/Dirk_Ohme
  296.    If during the linking you get an error about _errno being an undefined
  297.    symbol referenced from the text segment, you need to add -D__ST_MT_ERRNO__
  298.    in your definitions.
  299.    If everything seems to work fine but there's no curl.exe, you need to add
  300.    -Zexe to your linker flags.
  301.    If you're getting huge binaries, probably your makefiles have the -g in
  302.    CFLAGS.
  303. VMS
  304. ===
  305.    (The VMS section is in whole contributed by the friendly Nico Baggus)
  306.    Curl seems to work with FTP & HTTP other protocols are not tested.  (the
  307.    perl http/ftp testing server supplied as testing too cannot work on VMS
  308.    because vms has no concept of fork(). [ I tried to give it a whack, but
  309.    thats of no use.
  310.    SSL stuff has not been ported.
  311.    Telnet has about the same issues as for Win32. When the changes for Win32
  312.    are clear maybe they'll work for VMS too. The basic problem is that select
  313.    ONLY works for sockets.
  314.    Marked instances of fopen/[f]stat that might become a problem, especially
  315.    for non stream files. In this regard, the files opened for writing will be
  316.    created stream/lf and will thus be safe. Just keep in mind that non-binary
  317.    read/wring from/to files will have a records size limit of 32767 bytes
  318.    imposed.
  319.    Stat to get the size of the files is again only safe for stream files &
  320.    fixed record files without implied CC.
  321.    -- My guess is that only allowing access to stream files is the quickest
  322.    way to get around the most issues. Therefore all files need to to be
  323.    checked to be sure they will be stream/lf before processing them.  This is
  324.    the easiest way out, I know. The reason for this is that code that needs to
  325.    report the filesize will become a pain in the ass otherwise.
  326.    Exit status.... Well we needed something done here,
  327.    VMS has a structured exist status:
  328.    | 3  |       2    |     1       |  0|
  329.    |1098|765432109876|5432109876543|210|
  330.    +----+------------+-------------+---+
  331.    |Ctrl|  Facility  | Error code  |sev|
  332.    +----+------------+-------------+---+
  333.    With the Ctrl-bits an application can tell if part or the whole message has
  334.    already been printed from the program, DCL doesn't need to print it again.
  335.    Facility - basically the program ID. A code assigned to the program
  336.    the name can be fetched from external or internal message libraries
  337.    Error code - the err codes assigned by the application
  338.    Sev. - severity: Even = error, off = non error
  339.       0 = Warning
  340.       1 = Success
  341.       2 = Error
  342.       3 = Information
  343.       4 = Fatal
  344.       <5-7> reserved.
  345.    This all presents itself with:
  346.    %<FACILITY>-<Sev>-<Errorname>, <Error message>
  347.    See also the src/curlmsg.msg file, it has the source for the messages In
  348.    src/main.c a section is devoted to message status values, the globalvalues
  349.    create symbols with certain values, referenced from a compiled message
  350.    file. Have all exit function use a exit status derived from a translation
  351.    table with the compiled message codes.
  352.    This was all compiled with:
  353.       Compaq C V6.2-003 on OpenVMS Alpha V7.1-1H2
  354.    So far for porting notes as of:
  355.    13-jul-2001
  356.    N. Baggus
  357. QNX
  358. ===
  359.    (This section was graciously brought to us by David Bentham)
  360.    As QNX is targeted for resource constrained environments, the QNX headers
  361.    set conservative limits. This includes the FD_SETSIZE macro, set by default
  362.    to 32. Socket descriptors returned within the CURL library may exceed this,
  363.    resulting in memory faults/SIGSEGV crashes when passed into select(..)
  364.    calls using fd_set macros.
  365.    A good all-round solution to this is to override the default when building
  366.    libcurl, by overriding CFLAGS during configure, example
  367.    #  configure CFLAGS='-DFD_SETSIZE=64 -g -O2'
  368. RISC OS
  369. =======
  370.    The library can be cross-compiled using gccsdk as follows:
  371.         CC=riscos-gcc AR=riscos-ar RANLIB='riscos-ar -s' ./configure 
  372.              --host=arm-riscos-aof --without-random --disable-shared
  373.         make
  374.    where riscos-gcc and riscos-ar are links to the gccsdk tools.
  375.    You can then link your program with curl/lib/.libs/libcurl.a
  376. AmigaOS
  377. =======
  378.    (This section was graciously brought to us by Diego Casorran)
  379.    To build cURL/libcurl on AmigaOS just type 'make amiga' ...
  380.    What you need is:    (not tested with others versions)
  381.         GeekGadgets / gcc 2.95.3 (http://www.geekgadgets.org/)
  382.         AmiTCP SDK v4.3 (http://www.aminet.net/comm/tcp/AmiTCP-SDK-4.3.lha)
  383.         Native Developer Kit (http://www.amiga.com/3.9/download/NDK3.9.lha)
  384.    As no ixemul.library is required you will be able to build it for
  385.    WarpOS/PowerPC (not tested by me), as well a MorphOS version should be
  386.    possible with no problems.
  387.    To enable SSL support, you need a OpenSSL native version (without ixemul),
  388.    you can find a precompiled package at http://amiga.sourceforge.net/OpenSSL/
  389. NetWare
  390. =======
  391.    To compile curl.nlm / libcurl.nlm you need:
  392.    - either any gcc / nlmconv, or CodeWarrior 7 PDK 4 or later.
  393.    - gnu make and awk running on the platform you compile on;
  394.      native Win32 versions can be downloaded from:
  395.      http://www.gknw.net/development/prgtools/
  396.    - recent Novell LibC SDK available from:
  397.      http://developer.novell.com/ndk/libc.htm
  398.    - or recent Novell CLib SDK available from:
  399.      http://developer.novell.com/ndk/clib.htm
  400.    - optional recent Novell CLDAP SDK available from:
  401.      http://developer.novell.com/ndk/cldap.htm
  402.    - optional zlib sources (static or dynamic linking with zlib.imp);
  403.      sources with NetWare Makefile can be obtained from:
  404.      http://www.gknw.net/mirror/zlib/
  405.    - optional OpenSSL sources (version 0.9.8 or later build with BSD sockets);
  406.      you can find precompiled packages at:
  407.      http://www.gknw.net/development/ossl/netware/
  408.      for CLIB-based builds OpenSSL needs to be patched to build with BSD
  409.      sockets (currently only a winsock-based CLIB build is supported):
  410.      http://www.gknw.net/development/ossl/netware/patches/v_0.9.8g/openssl-0.9.8g.diff
  411.    - optional SSH2 sources (version 0.17 or later);
  412.    Set a search path to your compiler, linker and tools; on Linux make
  413.    sure that the var OSTYPE contains the string 'linux'; set the var
  414.    NDKBASE to point to the base of your Novell NDK; and then type
  415.    'make netware' from the top source directory; other targets available
  416.    are 'netware-ssl', 'netware-ssl-zlib', 'netware-zlib' and 'netware-ares';
  417.    if you need other combinations you can control the build with the
  418.    environment variables WITH_SSL, WITH_ZLIB, WITH_ARES, WITH_SSH2, and
  419.    ENABLE_IPV6; you can set LINK_STATIC=1 to link curl.nlm statically.
  420.    By default LDAP support is enabled, however currently you will need a patch
  421.    in order to use the CLDAP NDK with BSD sockets (Novell Bug 300237):
  422.    http://www.gknw.net/test/curl/cldap_ndk/ldap_ndk.diff
  423.    I found on some Linux systems (RH9) that OS detection didn't work although
  424.    a 'set | grep OSTYPE' shows the var present and set; I simply overwrote it
  425.    with 'OSTYPE=linux-rh9-gnu' and the detection in the Makefile worked...
  426.    Any help in testing appreciated!
  427.    Builds automatically created 8 times a day from current CVS are here:
  428.    http://www.gknw.net/mirror/curl/autobuilds/
  429.    the status of these builds can be viewed at the autobuild table:
  430.    http://curl.haxx.se/auto/
  431. eCos
  432. ====
  433.    curl does not use the eCos build system, so you must first build eCos
  434.    separately, then link curl to the resulting eCos library.  Here's a sample
  435.    configure line to do so on an x86 Linux box targeting x86:
  436.    GCCLIB=`gcc -print-libgcc-file-name` && 
  437.    CFLAGS="-D__ECOS=1 -nostdinc -I$ECOS_INSTALL/include 
  438.     -I`dirname $GCCLIB`/include" 
  439.    LDFLAGS="-nostdlib -Wl,--gc-sections -Wl,-static 
  440.     -L$ECOS_INSTALL/lib -Ttarget.ld -ltarget" 
  441.    ./configure --host=i386 --disable-shared 
  442.     --without-ssl --without-zlib --disable-manual --disable-ldap
  443.    In most cases, eCos users will be using libcurl from within a custom
  444.    embedded application.  Using the standard 'curl' executable from
  445.    within eCos means facing the limitation of the standard eCos C
  446.    startup code which does not allow passing arguments in main().  To
  447.    run 'curl' from eCos and have it do something useful, you will need
  448.    to either modify the eCos startup code to pass in some arguments, or
  449.    modify the curl application itself to retrieve its arguments from
  450.    some location set by the bootloader or hard-code them.
  451.    Something like the following patch could be used to hard-code some
  452.    arguments.  The MTAB_ENTRY line mounts a RAM disk as the root filesystem
  453.    (without mounting some kind of filesystem, eCos errors out all file
  454.    operations which curl does not take to well).  The next section synthesizes
  455.    some command-line arguments for curl to use, in this case to direct curl
  456.    to read further arguments from a file.  It then creates that file on the
  457.    RAM disk and places within it a URL to download: a file: URL that
  458.    just happens to point to the configuration file itself.  The results
  459.    of running curl in this way is the contents of the configuration file
  460.    printed to the console.
  461. --- src/main.c 19 Jul 2006 19:09:56 -0000 1.363
  462. +++ src/main.c 24 Jul 2006 21:37:23 -0000
  463. @@ -4286,11 +4286,31 @@
  464.  }
  465.  
  466.  
  467. +#ifdef __ECOS
  468. +#include <cyg/fileio/fileio.h>
  469. +MTAB_ENTRY( testfs_mte1,
  470. +                   "/",
  471. +                   "ramfs",
  472. +                   "",
  473. +                   0);
  474. +#endif
  475.  
  476.  int main(int argc, char *argv[])
  477.  {
  478.    int res;
  479.    struct Configurable config;
  480. +#ifdef __ECOS
  481. +  char *args[] = {"ecos-curl", "-K", "curlconf.txt"};
  482. +  FILE *f;
  483. +  argc = sizeof(args)/sizeof(args[0]);
  484. +  argv = args;
  485. +
  486. +  f = fopen("curlconf.txt", "w");
  487. +  if (f) {
  488. +    fprintf(f, "--url file:curlconf.txt");
  489. +    fclose(f);
  490. +  }
  491. +#endif
  492.    memset(&config, 0, sizeof(struct Configurable));
  493.  
  494.    config.errors = stderr; /* default errors to stderr */
  495. Minix
  496. =====
  497.    curl can be compiled on Minix 3 using gcc or ACK (starting with
  498.    ver. 3.1.3).
  499.    
  500.    ACK
  501.    ---
  502.    Increase the heap sizes of the compiler with the command:
  503.      binsizes xxl
  504.    Configure and compile with:
  505.      ./configure CONFIG_SHELL=/bin/bigsh CC=cc LD=cc AR=/usr/bin/aal 
  506.                  GREP=grep CPPFLAGS='-D_POSIX_SOURCE=1 -I/usr/local/include'
  507.      make
  508.      chmem =256000 src/curl
  509.    GCC
  510.    ---
  511.    Make sure gcc is in your PATH with the command:
  512.    
  513.      export PATH=/usr/gnu/bin:$PATH
  514.    
  515.    then configure and compile curl with:
  516.      ./configure CONFIG_SHELL=/bin/bigsh CC=gcc AR=/usr/gnu/bin/gar GREP=grep
  517.      make
  518.      chmem =256000 src/curl
  519. Symbian OS
  520. ==========
  521.    The Symbian OS port uses the Symbian build system to compile.  From the
  522.    packages/Symbian/group/ directory, run:
  523.       bldmake bldfiles
  524.       abld build
  525.    to compile and install curl and libcurl. If your Symbian SDK doesn't
  526.    include support for P.I.P.S., you will need to contact your SDK vendor
  527.    to obtain that first.
  528. CROSS COMPILE
  529. =============
  530.    (This section was graciously brought to us by Jim Duey, with additions by
  531.    Dan Fandrich)
  532.    Download and unpack the cURL package.
  533.    'cd' to the new directory. (e.g. cd curl-7.12.3)
  534.    Set environment variables to point to the cross-compile toolchain and call
  535.    configure with any options you need.  Be sure and specify the '--host' and
  536.    '--build' parameters at configuration time.  The following script is an
  537.    example of cross-compiling for the IBM 405GP PowerPC processor using the
  538.    toolchain from MonteVista for Hardhat Linux.
  539.    (begin script)
  540.    #! /bin/sh
  541.    export PATH=$PATH:/opt/hardhat/devkit/ppc/405/bin
  542.    export CPPFLAGS="-I/opt/hardhat/devkit/ppc/405/target/usr/include"
  543.    export AR=ppc_405-ar
  544.    export AS=ppc_405-as
  545.    export LD=ppc_405-ld
  546.    export RANLIB=ppc_405-ranlib
  547.    export CC=ppc_405-gcc
  548.    export NM=ppc_405-nm
  549.    ./configure --target=powerpc-hardhat-linux 
  550. --host=powerpc-hardhat-linux 
  551. --build=i586-pc-linux-gnu 
  552. --prefix=/opt/hardhat/devkit/ppc/405/target/usr/local 
  553. --exec-prefix=/usr/local
  554.    (end script)
  555.    You may also need to provide a parameter like '--with-random=/dev/urandom'
  556.    to configure as it cannot detect the presence of a random number
  557.    generating device for a target system.  The '--prefix' parameter
  558.    specifies where cURL will be installed.  If 'configure' completes
  559.    successfully, do 'make' and 'make install' as usual.
  560.    In some cases, you may be able to simplify the above commands to as
  561.    little as:
  562.        ./configure --host=ARCH-OS
  563. REDUCING SIZE
  564. =============
  565.    There are a number of configure options that can be used to reduce the
  566.    size of libcurl for embedded applications where binary size is an
  567.    important factor.  First, be sure to set the CFLAGS variable when
  568.    configuring with any relevant compiler optimization flags to reduce the
  569.    size of the binary.  For gcc, this would mean at minimum the -Os option,
  570.    and potentially the -march=X and -mdynamic-no-pic options as well, e.g.
  571.       ./configure CFLAGS='-Os' ...
  572.    Note that newer compilers often produce smaller code than older versions
  573.    due to improved optimization.
  574.    Be sure to specify as many --disable- and --without- flags on the configure
  575.    command-line as you can to disable all the libcurl features that you
  576.    know your application is not going to need.  Besides specifying the
  577.    --disable-PROTOCOL flags for all the types of URLs your application
  578.    will not use, here are some other flags that can reduce the size of the
  579.    library:
  580.      --disable-ares (disables support for the C-ARES DNS library)
  581.      --disable-cookies (disables support for HTTP cookies)
  582.      --disable-crypto-auth (disables HTTP cryptographic authentication)
  583.      --disable-ipv6 (disables support for IPv6)
  584.      --disable-manual (disables support for the built-in documentation)
  585.      --disable-proxy (disables support for HTTP and SOCKS proxies)
  586.      --disable-verbose (eliminates debugging strings and error code strings)
  587.      --enable-hidden-symbols (eliminates unneeded symbols in the shared library)
  588.      --without-libidn (disables support for the libidn DNS library)
  589.      --without-ssl (disables support for SSL/TLS)
  590.      --without-zlib (disables support for on-the-fly decompression)
  591.    The GNU compiler and linker have a number of options that can reduce the
  592.    size of the libcurl dynamic libraries on some platforms even further.
  593.    Specify them by providing appropriate CFLAGS and LDFLAGS variables on the
  594.    configure command-line:
  595.      CFLAGS="-ffunction-sections -fdata-sections" 
  596.      LDFLAGS="-Wl,-s -Wl,-Bsymbolic -Wl,--gc-sections"
  597.    Be sure also to strip debugging symbols from your binaries after
  598.    compiling using 'strip' (or the appropriate variant if cross-compiling).
  599.    If space is really tight, you may be able to remove some unneeded
  600.    sections of the shared library using the -R option to objcopy (e.g. the
  601.    .comment section).
  602.    Using these techniques it is possible to create a basic HTTP-only shared
  603.    libcurl library for i386 Linux platforms that is only 94 KiB in size, and
  604.    an FTP-only library that is 87 KiB in size (as of libcurl version 7.19.1,
  605.    using gcc 4.2.2).
  606.    You may find that statically linking libcurl to your application will
  607.    result in a lower total size than dynamically linking.
  608.    Note that the curl test harness can detect the use of some, but not all, of
  609.    the --disable statements suggested above. Use will cause tests relying on
  610.    those features to fail.  The test harness can be manually forced to skip
  611.    the relevant tests by specifying certain key words on the runtests.pl
  612.    command line.  Following is a list of appropriate key words:
  613.      --disable-cookies          !cookies
  614.      --disable-crypto-auth      !HTTP Digest auth !HTTP proxy Digest auth
  615.      --disable-manual           !--manual
  616.      --disable-proxy            !HTTP proxy !proxytunnel !SOCKS4 !SOCKS5
  617. PORTS
  618. =====
  619.    This is a probably incomplete list of known hardware and operating systems
  620.    that curl has been compiled for. If you know a system curl compiles and
  621.    runs on, that isn't listed, please let us know!
  622.         - Alpha DEC OSF 4
  623.         - Alpha Digital UNIX v3.2
  624.         - Alpha FreeBSD 4.1, 4.5
  625.         - Alpha Linux 2.2, 2.4
  626.         - Alpha NetBSD 1.5.2
  627.         - Alpha OpenBSD 3.0
  628.         - Alpha OpenVMS V7.1-1H2
  629.         - Alpha Tru64 v5.0 5.1
  630.         - AVR32 Linux
  631.         - ARM INTEGRITY
  632.         - ARM iPhone OS
  633.         - Cell Linux
  634.         - Cell Cell OS
  635.         - HP-PA HP-UX 9.X 10.X 11.X
  636.         - HP-PA Linux
  637.         - HP3000 MPE/iX
  638.         - MicroBlaze uClinux
  639.         - MIPS IRIX 6.2, 6.5
  640.         - MIPS Linux
  641.         - OS/400
  642.         - Pocket PC/Win CE 3.0
  643.         - Power AIX 3.2.5, 4.2, 4.3.1, 4.3.2, 5.1, 5.2
  644.         - PowerPC Darwin 1.0
  645.         - PowerPC INTEGRITY
  646.         - PowerPC Linux
  647.         - PowerPC Mac OS 9
  648.         - PowerPC Mac OS X
  649.         - SH4 Linux 2.6.X
  650.         - SH4 OS21
  651.         - SINIX-Z v5
  652.         - Sparc Linux
  653.         - Sparc Solaris 2.4, 2.5, 2.5.1, 2.6, 7, 8, 9, 10
  654.         - Sparc SunOS 4.1.X
  655.         - StrongARM (and other ARM) RISC OS 3.1, 4.02
  656.         - StrongARM/ARM7/ARM9 Linux 2.4, 2.6
  657.         - StrongARM NetBSD 1.4.1
  658.         - Symbian OS (P.I.P.S.) 9.x
  659.         - TPF
  660.         - Ultrix 4.3a
  661.         - UNICOS 9.0
  662.         - i386 BeOS
  663.         - i386 DOS
  664.         - i386 eCos 1.3.1
  665.         - i386 Esix 4.1
  666.         - i386 FreeBSD
  667.         - i386 HURD
  668.         - i386 Haiku OS
  669.         - i386 Linux 1.3, 2.0, 2.2, 2.3, 2.4, 2.6
  670.         - i386 MINIX 3.1
  671.         - i386 NetBSD
  672.         - i386 Novell NetWare
  673.         - i386 OS/2
  674.         - i386 OpenBSD
  675.         - i386 QNX 6
  676.         - i386 SCO unix
  677.         - i386 Solaris 2.7
  678.         - i386 Windows 95, 98, ME, NT, 2000, XP, 2003
  679.         - i486 ncr-sysv4.3.03 (NCR MP-RAS)
  680.         - ia64 Linux 2.3.99
  681.         - m68k AmigaOS 3
  682.         - m68k Linux
  683.         - m68k uClinux
  684.         - m68k OpenBSD
  685.         - m88k dg-dgux5.4R3.00
  686.         - s390 Linux
  687.         - x86_64 Linux
  688.         - XScale/PXA250 Linux 2.4
  689.         - Nios II uClinux
  690. Useful URLs
  691. ===========
  692. OpenSSL   http://www.openssl.org
  693. MingW     http://www.mingw.org
  694. OpenLDAP  http://www.openldap.org
  695. Zlib      http://www.gzip.org/zlib/
  696. libssh2   http://www.libssh2.org