002-fix-header-path.patch 726 B

123456789101112131415161718
  1. This package had an absolute path for sys/types.h, which doesn't
  2. make much sense. It breaks on newer Ubuntu systems, and probably many
  3. others once multiarch becomes more common.
  4. This patch makes the types a relative path, and allows the system
  5. to use whatever include paths it feels are correct.
  6. --- a/common/stdafx.h
  7. +++ b/common/stdafx.h
  8. @@ -27,7 +27,7 @@
  9. // For Linux systems only, types.h only defines the signed
  10. // integer types. This is not professional code.
  11. // Update: They are defined in the header files in the more recent version of redhat enterprise gcc.
  12. -#include "/usr/include/sys/types.h"
  13. +#include <sys/types.h>
  14. #include <stdint.h>
  15. //typedef unsigned long uint32_t;
  16. //typedef unsigned short uint16_t;