1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 13:10:57 -08:00

(LIBS_MACHINE): Use -lpthread if it exists.

This commit is contained in:
Karl Heuer 1995-06-09 01:39:10 +00:00
parent 117aaf6057
commit 549fba2b64

View file

@ -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