diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-06-13 21:47:34 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-06-13 21:47:34 +0000 |
commit | 2c2422161c6c275e7d85ab8b9b7ea4014c747aad (patch) | |
tree | b7f0a8c7a51325df0be0914e5e6e9876172f6020 /src/m | |
parent | eacd9c3124bebcf99c3da508e1caab9d97c30465 (diff) | |
download | emacs-2c2422161c6c275e7d85ab8b9b7ea4014c747aad.tar.gz |
(LIBS_MACHINE): Use -lpthreads, not -lpthread.
Diffstat (limited to 'src/m')
-rw-r--r-- | src/m/ibmrs6000.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/m/ibmrs6000.h b/src/m/ibmrs6000.h index ad5b272fbc6..46e8290c268 100644 --- a/src/m/ibmrs6000.h +++ b/src/m/ibmrs6000.h @@ -122,10 +122,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define C_SWITCH_MACHINE -D_BSD #ifdef AIX3_2 -/* -lpthread seems to be necessary for Xlib in X11R6, and should be harmless +/* -lpthreads seems to be necessary for Xlib in X11R6, and should be harmless on older versions of X where it happens to exist. */ -#ifdef HAVE_LIBPTHREAD -#define LIBS_MACHINE -lrts -lIM -liconv -lpthread +#ifdef HAVE_LIBPTHREADS +#define LIBS_MACHINE -lrts -lIM -liconv -lpthreads #else /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */ #define LIBS_MACHINE -lrts -lIM -liconv |