Skip to content
This repository was archived by the owner on Mar 19, 2025. It is now read-only.

Commit fb8c3d5

Browse files
devel-chmwchristian
authored andcommitted
Update VERSION to 0.70_01 for CPAN Testers checkout
1 parent 5150955 commit fb8c3d5

File tree

4 files changed

+39
-60
lines changed

4 files changed

+39
-60
lines changed

Changes

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for Perl extension OpenGL::Array.
22

3-
0.01 Tue Feb 28 16:23:40 2017
4-
- original version; created by h2xs 1.23 with options
5-
-O -b 5.8.0 -A -n OpenGL::Array
6-
3+
0.70_01 Thu Mar 2 10:13:19 EST 2017
4+
- first stand alone version of OpenGL::Array
5+
- framework initialize with h2xs
6+
- code from Perl OpenGL 0.70

README

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
OpenGL-Array version 0.01
2-
=========================
1+
OpenGL-Array version 0.70_01
2+
============================
33

44
This is a stand-alone distribution of OpenGL::Array
55
(which includes OpenGL::Matrix). All of these were
@@ -27,7 +27,9 @@ DEPENDENCIES
2727

2828
This module requires these other modules and libraries:
2929

30-
TODO
30+
Devel::CheckOS => 0
31+
ExtUtils::MakeMaker => 6.52
32+
Test::More => 0
3133

3234
COPYRIGHT AND LICENCE
3335

lib/OpenGL/Array.pm

Lines changed: 1 addition & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ our @EXPORT = qw(
2626
2727
);
2828

29-
our $VERSION = '0.01';
29+
our $VERSION = '0.70_01';
3030

31-
# require XSLoader;
32-
# XSLoader::load('OpenGL::Array', $VERSION);
3331

3432
bootstrap OpenGL::Array;
3533

@@ -40,53 +38,3 @@ bootstrap OpenGL::Array;
4038

4139
1;
4240
__END__
43-
# Below is stub documentation for your module. You'd better edit it!
44-
45-
=head1 NAME
46-
47-
OpenGL::Array - Perl extension for blah blah blah
48-
49-
=head1 SYNOPSIS
50-
51-
use OpenGL::Array;
52-
blah blah blah
53-
54-
=head1 DESCRIPTION
55-
56-
Stub documentation for OpenGL::Array, created by h2xs. It looks like the
57-
author of the extension was negligent enough to leave the stub
58-
unedited.
59-
60-
Blah blah blah.
61-
62-
=head2 EXPORT
63-
64-
None by default.
65-
66-
67-
68-
=head1 SEE ALSO
69-
70-
Mention other useful documentation such as the documentation of
71-
related modules or operating system documentation (such as man pages
72-
in UNIX), or any relevant external documentation such as RFCs or
73-
standards.
74-
75-
If you have a mailing list set up for your module, mention it here.
76-
77-
If you have a web site set up for your module, mention it here.
78-
79-
=head1 AUTHOR
80-
81-
U-NAE\chris.h.marshall, E<lt>chris.h.marshall@nonetE<gt>
82-
83-
=head1 COPYRIGHT AND LICENSE
84-
85-
Copyright (C) 2017 by U-NAE\chris.h.marshall
86-
87-
This library is free software; you can redistribute it and/or modify
88-
it under the same terms as Perl itself, either Perl version 5.22.2 or,
89-
at your option, any later version of Perl 5 you may have available.
90-
91-
92-
=cut

pgopogl_call_XS.h

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright (C) 2003-2005 by the gtk2-perl team (see the file AUTHORS for
3+
* the full list)
4+
*
5+
* This library is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU Library General Public License as published by
7+
* the Free Software Foundation; either version 2.1 of the License, or (at your
8+
* option) any later version.
9+
*
10+
* This library is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13+
* License for more details.
14+
*
15+
* You should have received a copy of the GNU Library General Public License
16+
* along with this library; if not, write to the Free Software Foundation,
17+
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA.
18+
*
19+
* $Id: Glib.xs 1077 2009-02-05 14:39:12Z tsch $
20+
*/
21+
22+
void
23+
_pgopogl_call_XS (pTHX_ void (*subaddr) (pTHX_ CV *), CV * cv, SV ** mark)
24+
{
25+
dSP;
26+
PUSHMARK (mark);
27+
(*subaddr) (aTHX_ cv);
28+
PUTBACK; /* forget return values */
29+
}

0 commit comments

Comments
 (0)