diff options
author | Nicholas Clark <nick@ccl4.org> | 2002-03-04 22:48:38 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-04 22:17:56 +0000 |
commit | 1cb0fb506639f41107792256805556ee04e5463a (patch) | |
tree | edcae7d6f9d2e1e4ca67c0e7cd70b1943e06b734 /ext/Fcntl | |
parent | 26f1752374957703dbfe054b7fa25c12c67ca6f3 (diff) | |
download | perl-1cb0fb506639f41107792256805556ee04e5463a.tar.gz |
(was Re: [PATCH @13746] h2xs)
Message-ID: <20020304224837.GA4284@Bagpuss.unfortu.net>
p4raw-id: //depot/perl@15023
Diffstat (limited to 'ext/Fcntl')
-rw-r--r-- | ext/Fcntl/Fcntl.xs | 4 | ||||
-rw-r--r-- | ext/Fcntl/Makefile.PL | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/ext/Fcntl/Fcntl.xs b/ext/Fcntl/Fcntl.xs index 9f167d07f8..c907c9ac8d 100644 --- a/ext/Fcntl/Fcntl.xs +++ b/ext/Fcntl/Fcntl.xs @@ -33,8 +33,8 @@ --AD October 16, 1995 */ -#include "constants.c" +#include "const-c.inc" MODULE = Fcntl PACKAGE = Fcntl -INCLUDE: constants.xs
\ No newline at end of file +INCLUDE: const-xs.inc diff --git a/ext/Fcntl/Makefile.PL b/ext/Fcntl/Makefile.PL index 030c8b4239..d9551a913e 100644 --- a/ext/Fcntl/Makefile.PL +++ b/ext/Fcntl/Makefile.PL @@ -1,11 +1,10 @@ use ExtUtils::MakeMaker; -use ExtUtils::Constant 0.07 'WriteConstants'; +use ExtUtils::Constant 0.11 'WriteConstants'; WriteMakefile( NAME => 'Fcntl', MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'Fcntl.pm', - realclean => {FILES=> 'constants.c constants.xs'}, ); my @names = (qw(FAPPEND FASYNC FCREAT FDEFER FDSYNC FD_CLOEXEC FEXCL FLARGEFILE |