diff options
| author | Jim Blandy | 1993-05-27 02:08:14 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-27 02:08:14 +0000 |
| commit | 7ad1552990092f3c0301a2bb946bf368def41b08 (patch) | |
| tree | 166909c45400ed27223fcdb5167af0f530cec51b /src | |
| parent | 8f731fcc051beffc2f4c72fde699101a3a9b49fc (diff) | |
| download | emacs-7ad1552990092f3c0301a2bb946bf368def41b08.tar.gz emacs-7ad1552990092f3c0301a2bb946bf368def41b08.zip | |
* s/aix3-2.h (C_SWITCH_SYSTEM): Don't define this to be "-ma" if
we're using GCC - that's an XLC switch.
* s/aix3-2.h (LIBS_SYSTEM): Put -LIM -Liconv here.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/aix3-2.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/s/aix3-2.h b/src/s/aix3-2.h index e5c9859b8d7..e789a8a7a28 100644 --- a/src/s/aix3-2.h +++ b/src/s/aix3-2.h | |||
| @@ -6,7 +6,9 @@ | |||
| 6 | and that's supposedly what 3.2 will come with. */ | 6 | and that's supposedly what 3.2 will come with. */ |
| 7 | #undef SPECIFY_X11R4 | 7 | #undef SPECIFY_X11R4 |
| 8 | 8 | ||
| 9 | #ifndef __GNUC__ | ||
| 9 | #define C_SWITCH_SYSTEM -ma | 10 | #define C_SWITCH_SYSTEM -ma |
| 11 | #endif | ||
| 10 | #define HAVE_ALLOCA | 12 | #define HAVE_ALLOCA |
| 11 | #undef rindex | 13 | #undef rindex |
| 12 | #undef index | 14 | #undef index |
| @@ -17,3 +19,8 @@ | |||
| 17 | 3.2, and a cc-compiled Emacs works with this undefined. | 19 | 3.2, and a cc-compiled Emacs works with this undefined. |
| 18 | --karl@cs.umb.edu. */ | 20 | --karl@cs.umb.edu. */ |
| 19 | #undef SYSTEM_MALLOC | 21 | #undef SYSTEM_MALLOC |
| 22 | |||
| 23 | /* | ||
| 24 | IBM's X11R5 use these libraries in AIX 3.2.2. */ | ||
| 25 | |||
| 26 | #define LIBS_SYSTEM -lIM -liconv | ||