You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
760 B

  1. === modified file 'crypto/bio/bio.h'
  2. --- crypto/bio/bio.h 2013-02-08 14:43:05 +0000
  3. +++ crypto/bio/bio.h 2013-02-08 14:43:26 +0000
  4. @@ -752,7 +752,7 @@
  5. /*long BIO_ghbn_ctrl(int cmd,int iarg,char *parg);*/
  6. -#ifdef __GNUC__
  7. +#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__MINGW64__)
  8. # define __bio_h__attr__ __attribute__
  9. #else
  10. # define __bio_h__attr__(x)
  11. === modified file 'e_os.h'
  12. --- e_os.h 2013-02-08 14:43:05 +0000
  13. +++ e_os.h 2013-02-08 14:43:20 +0000
  14. @@ -290,7 +290,7 @@
  15. # ifdef _WIN64
  16. # define strlen(s) _strlen31(s)
  17. /* cut strings to 2GB */
  18. -static unsigned int _strlen31(const char *str)
  19. +static inline unsigned int _strlen31(const char *str)
  20. {
  21. unsigned int len=0;
  22. while (*str && len<0x80000000U) str++, len++;