diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2007-09-16 09:13:28 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2007-09-16 09:13:28 +0000 |
commit | 846d1b3e948004ade6fc49aad33442b0de450c54 (patch) | |
tree | 39ea5ba5c53d1d27a8ce4efb5ce2bbb73c6be4a1 /configure | |
parent | 4e0a4fdc0097f50049e3d3245fe063d5f3b9d327 (diff) | |
download | emacs-846d1b3e948004ade6fc49aad33442b0de450c54.tar.gz |
Don't use -lpthread on HP-UX.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure b/configure index 303d64c9a9f..5df7d18faaa 100755 --- a/configure +++ b/configure @@ -11683,7 +11683,10 @@ fi fi if test "$HAVE_GTK_AND_PTHREAD" = yes; then - GTK_LIBS="$GTK_LIBS -lpthread" + case "${canonical}" in + *-hpux*) ;; + *) GTK_LIBS="$GTK_LIBS -lpthread" ;; + esac cat >>confdefs.h <<\_ACEOF #define HAVE_GTK_AND_PTHREAD 1 |