diff options
| author | Dan Nicolaescu | 2010-03-22 19:39:19 -0700 |
|---|---|---|
| committer | Dan Nicolaescu | 2010-03-22 19:39:19 -0700 |
| commit | 5845f0ed5a260ad0708bb82dea89b38b01aa2d1b (patch) | |
| tree | 47e822dabcc285a9f2c0ac31edf9b56b8b7e168c /src/s | |
| parent | 002787475ff69f44a4fbd26bfe8b8dad3ea435ed (diff) | |
| download | emacs-5845f0ed5a260ad0708bb82dea89b38b01aa2d1b.tar.gz emacs-5845f0ed5a260ad0708bb82dea89b38b01aa2d1b.zip | |
Simplify LIBS_MACHINE definitions.
* m/hp800.h (LIBS_MACHINE): Remove, same as default.
* m/iris4d.h (LIBS_MACHINE): Likewise.
* m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
* s/aix4-2.h (LIBS_SYSTEM): ... here.
Diffstat (limited to 'src/s')
| -rw-r--r-- | src/s/aix4-2.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/s/aix4-2.h b/src/s/aix4-2.h index f4ffc606221..93869db6bca 100644 --- a/src/s/aix4-2.h +++ b/src/s/aix4-2.h | |||
| @@ -95,6 +95,15 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 95 | 95 | ||
| 96 | #define LIB_STANDARD | 96 | #define LIB_STANDARD |
| 97 | 97 | ||
| 98 | /* -lpthreads seems to be necessary for Xlib in X11R6, and should be harmless | ||
| 99 | on older versions of X where it happens to exist. */ | ||
| 100 | #ifdef HAVE_LIBPTHREADS | ||
| 101 | #define LIBS_SYSTEM -lrts -lIM -liconv -lpthreads | ||
| 102 | #else | ||
| 103 | /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */ | ||
| 104 | #define LIBS_SYSTEM -lrts -lIM -liconv | ||
| 105 | #endif | ||
| 106 | |||
| 98 | /* Use terminfo instead of termcap. */ | 107 | /* Use terminfo instead of termcap. */ |
| 99 | 108 | ||
| 100 | #define TERMINFO | 109 | #define TERMINFO |