1. 04 Aug, 2010 2 commits
  2. 03 Aug, 2010 2 commits
  3. 02 Aug, 2010 12 commits
  4. 01 Aug, 2010 7 commits
  5. 31 Jul, 2010 2 commits
  6. 30 Jul, 2010 5 commits
  7. 29 Jul, 2010 6 commits
    • Kamil Dudka's avatar
      NTLM tests: boost coverage by forcing the hostname · b5c3feda
      Kamil Dudka authored
      A shared library tests/libtest/.libs/lihostname.so is preloaded in NTLM
      test-cases to override the system implementation of gethostname().  It
      makes it possible to test the NTLM authentication for exact match, and
      this way test the implementation of MD4 and DES.
      
      If LD_PRELOAD doesn't work, a debug build willl also workk as debug
      builds are now made to prefer a specific environment variable and will
      then return that content as host name instead of the actual one.
      
      Kamil wrote the bulk of this, Daniel Stenberg polished it.
      b5c3feda
    • Guenter Knauf's avatar
    • Guenter Knauf's avatar
      d873c820
    • Guenter Knauf's avatar
      41cf1f40
    • Guenter Knauf's avatar
      Make Watcom makefiles use Makefile.inc to reduce future maintainance. · 6ad0acb6
      Guenter Knauf authored
      lib/Makefile.Watcom works fine already, for src/Makefile.Watcom we
      need first to tweak src/Makefile.inc a bit - therefore the handtweaked
      list still exists for now.
      6ad0acb6
    • Guenter Knauf's avatar
      Watcom makefiles overhaul. · cfbb351e
      Guenter Knauf authored
      - make both libcurl and curl makefiles use register calling convention
        (previously libcurl had stack calling convention).
      - added include paths to the Watcom headers so its no longer required
        to set the environment vars for this.
      - added -wcd=201 to supress compiler warning about unreachable code.
      - use macros for all tools, and removed dependency on GNU tools like rm.
      - make ipv6 and debug builds controlable via env vars and so make them
        optional instead of default.
      - commented WINLDAPAPI and WINBERAPI since they broke with OW 1.8, and
        it seems they're not needed (anymore?).
      - added rule for hugehelp.c.cvs so that it will be created when not
        already exist - this is required for building from a release tarball
        since there we have no hugehelp.c.cvs, thus compilation broke.
      - removed C_ARG creation from lib/Makefile.Watcom and use CFLAGS
        directly as done too in src/Makefile.Watcom - this has the benefit
        that we will see all active cflags and defines during compile.
      - added LINK-ARG to src/Makefile.Watcom in order to better control
        linker input.
      - a couple of other minor makefile tweaks here and there ...
      - added largefile support for Watcom builds to config-win32.h. Not yet
        tested if it really works, but should since Win32 supports it.
      - added loaddll stuff to speed up builds if supported.
      cfbb351e
  8. 28 Jul, 2010 1 commit
  9. 26 Jul, 2010 2 commits
  10. 25 Jul, 2010 1 commit
    • Daniel Stenberg's avatar
      curl-config: --built-shared returns shared info · a1312859
      Daniel Stenberg authored
      The curl-config now features a --built-shared command line option that
      will output 'yes' or 'no' depending if the build process was asked to
      build shared library/libraries or not.
      
      It is primarily made to offer more details to the test suite to know
      what kind of stunts it can expect to work.
      a1312859