X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=perl%2FMakefile.PL.in;h=349adbb2731e5de8b67e19fe85aeb24f8f0df9e8;hb=1a35ca59088e572c11633e85524bb282cb436186;hp=40d1d6c43df73faab5b9b60d8ed1e8fbe3ef4d57;hpb=5e332cc6c06532191f793a6789bafe818f726258;p=libguestfs.git diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in index 40d1d6c..349adbb 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 @@ -13,17 +13,19 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +use Config; use ExtUtils::MakeMaker; WriteMakefile ( FIRST_MAKEFILE => 'Makefile-pl', NAME => 'Sys::Guestfs', - VERSION => '@PACKAGE_VERSION@', + VERSION => '0.@MAX_PROC_NR@', - LIBS => '-L@abs_top_builddir@/src/.libs -lguestfs', - INC => '-I@abs_top_builddir@/src', - CCFLAGS => '@CFLAGS@', + LIBS => '-L@top_builddir@/src/.libs -lguestfs', + INC => '-I@top_builddir@/src -I@top_srcdir@/src', + TYPEMAPS => [ '@srcdir@/typemap' ], + CCFLAGS => $Config{ccflags} . ' @CFLAGS@', );