1. 27 Apr, 2011 8 commits
  2. 26 Apr, 2011 3 commits
  3. 25 Apr, 2011 4 commits
  4. 24 Apr, 2011 1 commit
  5. 22 Apr, 2011 4 commits
  6. 21 Apr, 2011 8 commits
  7. 20 Apr, 2011 7 commits
  8. 19 Apr, 2011 5 commits
    • Daniel Stenberg's avatar
      CURL_DOES_CONVERSIONS: cleanup · c828646f
      Daniel Stenberg authored
      Massively reduce #ifdefs all over (23 #ifdef lines less so far)
      Moved conversion-specific code to non-ascii.c
      c828646f
    • Guenter Knauf's avatar
      Improve MinGW static makefile builds. · eb65a49b
      Guenter Knauf authored
      It is now possible to use any combination of features without
      having to 1st add makefile targets to the main makefile. The
      main makefile now passes the 'mingw32-feat1-feat2' as var CFG,
      and the ./[lib|src]/Makefile.m32 parses the CFG var to determine
      the features to be enabled.
      eb65a49b
    • Guenter Knauf's avatar
      Enabled MinGW native Windows IDN build. · b2140a09
      Guenter Knauf authored
      b2140a09
    • Guenter Knauf's avatar
      Windows native IDN fixes. · 519bec7c
      Guenter Knauf authored
      changed windows.h include to system header;
      changed obsolete 2nd check for str_w to str_utf8 in order to catch
      malloc() failure and avoid a free(NULL);
      changed calls to GetLastError() to void to kill unsused var compiler
      warnings;
      moved one call to GetLastError() into else case so that its only
      called when WideCharToMultiByte() really fails.
      519bec7c
    • Guenter Knauf's avatar
      Windows native IDN fixes. · 24e5a401
      Guenter Knauf authored
      Provide prototype for curl_win32_idn_to_ascii();
      remove wrong 3rd parameter from curl_win32_idn_to_ascii() call.
      24e5a401