Skip to content

Commit

Permalink
Attempt to fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
hnw committed Jul 7, 2017
1 parent e3fecf4 commit eea6f85
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config.w32
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// $Id$
// vim:ft=javascript

// If your extension references something external, use ARG_WITH
// ARG_WITH("timecop", "for timecop support", "no");

// Otherwise, use ARG_ENABLE
// ARG_ENABLE("timecop", "enable timecop support", "no");
ARG_ENABLE("timecop", "enable timecop support", "no");

if (PHP_TIMECOP != "no") {
EXTENSION("timecop", "timecop.c");
if (PHP_VERSION <= 5) {
EXTENSION("timecop", "timecop_php5.c tc_timeval.c");
} else {
EXTENSION("timecop", "timecop_php7.c tc_timeval.c");
}
}

0 comments on commit eea6f85

Please sign in to comment.