Changeset e8b95f8


Ignore:
Timestamp:
Oct 17, 2003, 10:01:34 PM (21 years ago)
Author:
Erik Nygren <nygren@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
f51bc78
Parents:
2a2bb60
Message:
portability fix for solaris.  may require ./configure
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • configure

    re6449bc re8b95f8  
    17381738fi
    17391739
    1740 for ac_hdr in strings.h sys/ioctl.h unistd.h com_err.h
     1740for ac_hdr in strings.h sys/ioctl.h sys/filio.h unistd.h com_err.h
    17411741do
    17421742ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  • configure.in

    r210c261 re8b95f8  
    6262AC_HEADER_STDC
    6363AC_HEADER_SYS_WAIT
    64 AC_CHECK_HEADERS(strings.h sys/ioctl.h unistd.h com_err.h)
     64AC_CHECK_HEADERS(strings.h sys/ioctl.h sys/filio.h unistd.h com_err.h)
    6565
    6666dnl Add CFLAGS for embeded perl
  • owl.c

    r2a2bb60 re8b95f8  
    2323
    2424#if OWL_STDERR_REDIR
     25#ifdef HAVE_SYS_IOCTL_H
    2526#include <sys/ioctl.h>
     27#endif
     28#ifdef HAVE_SYS_FILIO_H
     29#include <sys/filio.h>
     30#endif
    2631int stderr_replace(void);
    2732void stderr_redirect(int rfd);
Note: See TracChangeset for help on using the changeset viewer.