diff --git a/src/ChangeLog b/src/ChangeLog index 7453a74d7e..88e46a2478 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-06-03 John Levon + + * ispell.C: HPUX doesn't have sys/select.h + (from Albert Chin) + 2003-06-03 John Levon * CutAndPaste.C: update tabular and include inset diff --git a/src/ispell.C b/src/ispell.C index 4cd221f182..ee75bf507c 100644 --- a/src/ispell.C +++ b/src/ispell.C @@ -21,7 +21,10 @@ #include "support/forkedcall.h" #include "support/lstrings.h" +// HP-UX 11.x doesn't have this header +#ifdef HAVE_SYS_SELECT_H #include +#endif #include #ifndef CXX_GLOBAL_CSTD