X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=perl%2FMakefile.PL.in;h=62cd04b124e3c25eb64a52d096a66b040f273e99;hb=b2edcbe1b9c9d161e96cb56d0efd944e84d84526;hp=d18aba6358ce32427847c39b31f34dc9d3bd0a38;hpb=349814e9d912c4f372b8fbdfb10b03749911021f;p=libguestfs.git diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index d18aba6..62cd04b 100644 --- a/perl/Makefile.PL.in +++ b/perl/Makefile.PL.in @@ -1,5 +1,5 @@ # libguestfs Perl bindings -# Copyright (C) 2009 Red Hat Inc. +# Copyright (C) 2009-2011 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -15,16 +15,17 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +use Config; use ExtUtils::MakeMaker; WriteMakefile ( FIRST_MAKEFILE => 'Makefile-pl', NAME => 'Sys::Guestfs', - VERSION => '@PACKAGE_VERSION@', + VERSION => '0.@MAX_PROC_NR@', LIBS => '-L@top_builddir@/src/.libs -lguestfs', INC => '-I@top_builddir@/src -I@top_srcdir@/src', TYPEMAPS => [ '@srcdir@/typemap' ], - CCFLAGS => '@CFLAGS@', + CCFLAGS => $Config{ccflags} . ' @CFLAGS@', );