diff options
author | joerg <joerg@pkgsrc.org> | 2008-02-05 18:57:09 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-02-05 18:57:09 +0000 |
commit | 4f81810ae0b55e5d9a7a4e8dfca28005c00a264e (patch) | |
tree | 6fe65693315b741e33339a2df0b8ec9c7d3382fc /pkgtools | |
parent | 80ba1e879368853ef8a7a0a24eefa4dae76ad19e (diff) | |
download | pkgsrc-4f81810ae0b55e5d9a7a4e8dfca28005c00a264e.tar.gz |
Include fcntl.h for Solaris. From Andri Piik in private mail.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/info/perform.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/info/perform.c b/pkgtools/pkg_install/files/info/perform.c index d99c54d124c..63b1aa8bc37 100644 --- a/pkgtools/pkg_install/files/info/perform.c +++ b/pkgtools/pkg_install/files/info/perform.c @@ -1,4 +1,4 @@ -/* $NetBSD: perform.c,v 1.41 2008/02/02 16:21:45 joerg Exp $ */ +/* $NetBSD: perform.c,v 1.42 2008/02/05 18:57:09 joerg Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -17,7 +17,7 @@ #if 0 static const char *rcsid = "from FreeBSD Id: perform.c,v 1.23 1997/10/13 15:03:53 jkh Exp"; #else -__RCSID("$NetBSD: perform.c,v 1.41 2008/02/02 16:21:45 joerg Exp $"); +__RCSID("$NetBSD: perform.c,v 1.42 2008/02/05 18:57:09 joerg Exp $"); #endif #endif @@ -90,6 +90,9 @@ __RCSID("$NetBSD: perform.c,v 1.41 2008/02/02 16:21:45 joerg Exp $"); #if HAVE_ERRNO_H #include <errno.h> #endif +#if HAVE_FCNTL_H +#include <fcntl.h> +#endif #if HAVE_SIGNAL_H #include <signal.h> #endif |