Skip to content

Commit

Permalink
Merge branch 'redesign' of github.com:kthakore/SDL_perl into redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Leich committed Mar 20, 2010
2 parents 7e68242 + 1e3339b commit 4725d0b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
66 changes: 33 additions & 33 deletions Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -352,34 +352,34 @@ my %subsystems =
},
libraries => [qw( SDL SDL_image jpeg png )],
},
Net => {
file => {
from => 'src/Net/Net.xs',
to => 'lib/SDL/Net.xs',
},
libraries => [qw( SDL SDL_net )],
},
TCP => {
file => {
from => 'src/Net/TCP.xs',
to => 'lib/SDL/Net/TCP.xs',
},
libraries => [qw( SDL SDL_net )],
},
UDP => {
file => {
from => 'src/Net/UDP.xs',
to => 'lib/SDL/Net/UDP.xs',
},
libraries => [qw( SDL SDL_net )],
},
IPaddress => {
file => {
from => 'src/Net/objects/IPaddress.xs',
to => 'lib/SDL/Net/IPaddress.xs',
},
libraries => [qw( SDL SDL_net )],
},
# Net => {
# file => {
# from => 'src/Net/Net.xs',
# to => 'lib/SDL/Net.xs',
# },
# libraries => [qw( SDL SDL_net )],
# },
# TCP => {
# file => {
# from => 'src/Net/TCP.xs',
# to => 'lib/SDL/Net/TCP.xs',
# },
# libraries => [qw( SDL SDL_net )],
# },
# UDP => {
# file => {
# from => 'src/Net/UDP.xs',
# to => 'lib/SDL/Net/UDP.xs',
# },
# libraries => [qw( SDL SDL_net )],
# },
# IPaddress => {
# file => {
# from => 'src/Net/objects/IPaddress.xs',
# to => 'lib/SDL/Net/IPaddress.xs',
# },
# libraries => [qw( SDL SDL_net )],
# },

);

Expand All @@ -405,11 +405,11 @@ my %libraries = (
header => 'SDL_mixer.h',
lib => 'SDL_mixer',
},
SDL_net => {
define => 'HAVE_SDL_NET',
header => 'SDL_net.h',
lib => 'SDL_net',
},
# SDL_net => {
# define => 'HAVE_SDL_NET',
# header => 'SDL_net.h',
# lib => 'SDL_net',
# },
SDL_ttf => {
define => 'HAVE_SDL_TTF',
header => 'SDL_ttf.h',
Expand Down
4 changes: 2 additions & 2 deletions lib/pods/SDL/Tutorial.pod
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Tutorials
# to read this tutorial
$ perldoc SDL::Tutorial

# to create a bare-bones SDL app based on this tutorial
# to run this tutorial
$ perl -MSDL::Tutorial -e 1

=head1 SDL BASICS

SDL, the Simple DirectMedia Layer, is a cross-platform multimedia library.
These are the Perl 5 bindings. You can find out more about SDL at
L<http://www.libsdl.org/>.
L<http://www.libsdl.org/>. You can find out more about SDL perl at L<http://sdl.perl.org>.

Creating an SDL application with Perl is easy. You have to know a few basics,
though. Here's how to get up and running as quickly as possible.
Expand Down

0 comments on commit 4725d0b

Please sign in to comment.