--- deliantra/Deliantra-Client/Makefile.PL 2009/09/28 20:44:01 1.118 +++ deliantra/Deliantra-Client/Makefile.PL 2014/12/24 06:12:21 1.129 @@ -24,7 +24,7 @@ *** apt-get install perl libpango1.0-dev libglib2.0-dev libsdl1.2-dev *** apt-get install libsdl-mixer1.2-dev libsdl-image1.2-dev *** apt-get install libwww-perl libdb4.4-dev -*** apt-get install anyevent-perl +*** apt-get install libanyevent-perl EOF @@ -44,6 +44,8 @@ qx, "-L/usr/X11/lib"; + $LIBS .= " -lGL" unless $^O =~ /darwin/i; # sigh... os x is so borked + $_ =~ s/\n/ /g for $INC, $LIBS; # for extra horrid macosx joys @@ -63,24 +65,33 @@ EXE_FILES => [qw(bin/deliantra)], VERSION_FROM => "DC.pm", PREREQ_PM => { + common::sense => 3.6, BDB => 1.83, - Deliantra => 1.23, + Deliantra => 1.31, Time::HiRes => 0, EV => 3.42, Guard => 1, AnyEvent => 4.331, Compress::LZF => 3.41, - Pod::POM => 0.15, + Pod::POM => 0.27, LWP => 0, JSON::XS => 2.2222, + IO::AIO => 4, + AnyEvent::AIO => 1, + Coro => 6, + Coro::EV => 0, + Urlader => 1, }, depend => { "Client.o" => 'glfunc.h pangoopengl.h pango-font.c pango-fontmap.c pango-render.c texcache.c rendercache.c', }, clean => { FILES => 'docwiki.pst' }, PM => { + 'Client.pm' => '$(INST_LIBDIR)/Client.pm', 'DC.pm' => '$(INST_LIBDIR)/Client/private/DC.pm', + 'DC/Main.pm' => '$(INST_LIBDIR)/Client/private/DC/Main.pm', 'DC/Protocol.pm' => '$(INST_LIBDIR)/Client/private/DC/Protocol.pm', + 'DC/Audio.pm' => '$(INST_LIBDIR)/Client/private/DC/Audio.pm', 'DC/OpenGL.pm' => '$(INST_LIBDIR)/Client/private/DC/OpenGL.pm', 'DC/Texture.pm' => '$(INST_LIBDIR)/Client/private/DC/Texture.pm', 'DC/DB.pm' => '$(INST_LIBDIR)/Client/private/DC/DB.pm',