Fix detection of openpty with gcc 4.

Index: Makefile.PL
--- Makefile.PL.orig
+++ Makefile.PL
@@ -185,20 +185,8 @@ $platform_defines
 #include <fcntl.h>
 
 /* Try platform-specific headers for openpty and friends */
-#if defined(__has_include)
-#  if __has_include(<pty.h>)
-#    include <pty.h>
-#  endif
-#  if __has_include(<libutil.h>)
-#    include <libutil.h>
-#  endif
-#  if __has_include(<termios.h>)
 #    include <termios.h>
-#  endif
-#  if __has_include(<util.h>)
 #    include <util.h>
-#  endif
-#endif
 
 /* Store the function pointer in a global so the optimizer cannot
    eliminate the reference.  A local + (void)cast is dead code that
