Skip to content

Commit c131520

Browse files
committed
minimum Perl 5.10 for better Exporter
1 parent 4fbde94 commit c131520

File tree

3 files changed

+18
-23
lines changed

3 files changed

+18
-23
lines changed

Changes

+16-20
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,30 @@
1+
- minimum Perl 5.10 for better Exporter
2+
13
0.0401 2025-03-27
24
- add GLFW_TRANSPARENT_FRAMEBUFFER and glfwGetMonitorWorkarea (#1) - thanks @SeHarrys
35

46
0.04 2017-09-23 16:29:52-04:00
5-
- New offical release
6-
7+
- New offical release
78

89
0.03_01 2017-09-20 13:44:28-04:00
9-
- Increment reference counts on callbacks
10-
to avoid problems when the original CV
11-
goes out of scope.
12-
10+
- Increment reference counts on callbacks
11+
to avoid problems when the original CV
12+
goes out of scope.
1313

1414
0.03 2017-08-25 12:13:51-04:00
15-
- First official CPAN release
16-
- Clean up perl docs
17-
- Add git repo information to META
15+
- First official CPAN release
16+
- Clean up perl docs
17+
- Add git repo information to META
1818

1919
0.02_02 2017-08-19 14:48:34-04:00
20-
- Improved documentation of implementation
21-
- Added gears.pl implementation to examples
22-
- This is release candidate for our first
23-
official release
24-
20+
- Improved documentation of implementation
21+
- Added gears.pl implementation to examples
22+
- This is release candidate for our first official release
2523

2624
0.02_01 2017-08-06 12:13:54-04:00
27-
- First complete coverage of GLFW bindings
28-
- Add rudimentary pkg-config for build support
25+
- First complete coverage of GLFW bindings
26+
- Add rudimentary pkg-config for build support
2927

3028
0.01 2017-06-14 17:13:17-04:00
31-
- original version; created by h2xs 1.23 with options
32-
-b 5.10.1 -OAfn OpenGL::GLFW
33-
- edit template h2xs files
34-
29+
- original version; created by h2xs 1.23 with options -b 5.10.1 -OAfn OpenGL::GLFW
30+
- edit template h2xs files

Makefile.PL

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ WriteMakefile(
1616
PREREQ_PM => {
1717
'ExtUtils::MakeMaker' => 6.64, # needed for TEST_REQUIRES
1818
},
19+
MIN_PERL_VERSION => '5.010',
1920
TEST_REQUIRES => {
2021
'OpenGL::Modern' => 0.04,
2122
},

lib/OpenGL/GLFW.pm

+1-3
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,7 @@ use constant GLFW_DISCONNECTED => 0x00040002;
247247
use constant GLFW_DONT_CARE => -1;
248248
use constant GLFW_TRANSPARENT_FRAMEBUFFER => 0x0002000A;
249249

250-
require Exporter;
251-
252-
our @ISA = qw(Exporter);
250+
use Exporter 'import';
253251

254252
# Items to export into callers namespace by default. Note: do not export
255253
# names by default without a very good reason. Use EXPORT_OK instead.

0 commit comments

Comments
 (0)