Created
January 12, 2012 04:44
-
-
Save d235j/1598834 to your computer and use it in GitHub Desktop.
configure script ed-patch (EWW)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| / AC_APPLE_UNIVERSAL_BUILD /c | |
| /* #undef AC_APPLE_UNIVERSAL_BUILD */ | |
| . | |
| / G_VA_COPY_AS_ARRAY /c | |
| #ifdef __LP64__ | |
| #define G_VA_COPY_AS_ARRAY 1 | |
| #else | |
| /* #undef G_VA_COPY_AS_ARRAY */ | |
| #endif | |
| . | |
| / SIZEOF_LONG /c | |
| #ifdef __LP64__ | |
| #define SIZEOF_LONG 8 | |
| #else | |
| #define SIZEOF_LONG 4 | |
| #endif | |
| . | |
| / SIZEOF_SIZE_T /c | |
| #ifdef __LP64__ | |
| #define SIZEOF_SIZE_T 8 | |
| #else | |
| #define SIZEOF_SIZE_T 4 | |
| #endif | |
| . | |
| / SIZEOF_VOID_P /c | |
| #ifdef __LP64__ | |
| #define SIZEOF_VOID_P 8 | |
| #else | |
| #define SIZEOF_VOID_P 4 | |
| #endif | |
| . | |
| w |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment