diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2008-04-29 08:03:54 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2008-04-29 08:03:54 +0000 |
commit | 3171b4c009441b9b6795a47cc3ac1e84b04b7907 (patch) | |
tree | 4490c85acecf2a894219bbe849a50167fff9bcf5 /Build/source/libs | |
parent | 9dc89b36e8cb3adb1c66e104ce2322a5296db366 (diff) |
luatex-on-aix compilation
git-svn-id: svn://tug.org/texlive/trunk@7719 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs')
-rw-r--r-- | Build/source/libs/luafontforge/fontforge/inc/basics.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Build/source/libs/luafontforge/fontforge/inc/basics.h b/Build/source/libs/luafontforge/fontforge/inc/basics.h index eb3781df017..97c172d4461 100644 --- a/Build/source/libs/luafontforge/fontforge/inc/basics.h +++ b/Build/source/libs/luafontforge/fontforge/inc/basics.h @@ -45,11 +45,16 @@ #define forever for (;;) -/* typedef int32_t int32; */ +#ifndef _AIX + +typedef int32_t int32; +typedef int16_t int16; +typedef int8_t int8; + +#endif + typedef uint32_t uint32; -/* typedef int16_t int16; */ typedef uint16_t uint16; -/* typedef int8_t int8; */ typedef uint8_t uint8; /* An integral type which can hold a pointer */ |