From: Karl Heuer Date: Fri, 9 Jun 1995 01:39:10 +0000 (+0000) Subject: (LIBS_MACHINE): Use -lpthread if it exists. X-Git-Tag: emacs-19.34~3701 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=549fba2b64f2b2fba984dbcc9aaab06f88108d6a;p=emacs.git (LIBS_MACHINE): Use -lpthread if it exists. --- diff --git a/src/m/ibmrs6000.h b/src/m/ibmrs6000.h index 42642e125ab..7b6cc6845a0 100644 --- a/src/m/ibmrs6000.h +++ b/src/m/ibmrs6000.h @@ -122,8 +122,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define C_SWITCH_MACHINE -D_BSD #ifdef AIX3_2 +#ifdef HAVE_LIBPTHREAD +#define LIBS_MACHINE -lrts -lIM -liconv -lpthread +#else /* IBM's X11R5 use -lIM and -liconv in AIX 3.2.2. */ #define LIBS_MACHINE -lrts -lIM -liconv +#endif #else #define LIBS_MACHINE -lIM #endif