xpcom-private.h.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. /* The following defines are only used by the xpcom implementation */
  5. #ifndef _XPCOM_PRIVATE_H_
  6. #define _XPCOM_PRIVATE_H_
  7. /* Define if getpagesize() is available */
  8. #undef HAVE_GETPAGESIZE
  9. /* Define if iconv() is available */
  10. #undef HAVE_ICONV
  11. /* Define if iconv() supports const input */
  12. #undef HAVE_ICONV_WITH_CONST_INPUT
  13. /* Define if mbrtowc() is available */
  14. #undef HAVE_MBRTOWC
  15. /* Define if wcrtomb() is available */
  16. #undef HAVE_WCRTOMB
  17. /* Define if statvfs64() is available */
  18. #undef HAVE_STATVFS64
  19. /* Define if statvfs() is available */
  20. #undef HAVE_STATVFS
  21. /* Define if statfs64() is available */
  22. #undef HAVE_STATFS64
  23. /* Define if statfs() is available */
  24. #undef HAVE_STATFS
  25. /* Define if <sys/statvfs.h> is present */
  26. #undef HAVE_SYS_STATVFS_H
  27. /* Define if <sys/statfs.h> is present */
  28. #undef HAVE_SYS_STATFS_H
  29. /* Define if <sys/vfs.h> is present */
  30. #undef HAVE_SYS_VFS_H
  31. /* Define if <sys/mount.h> is present */
  32. #undef HAVE_SYS_MOUNT_H
  33. #endif /* _XPCOM_PRIVATE_H_ */