summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/date/depend2
-rw-r--r--ext/date/extconf.rb1
-rw-r--r--ext/date/timev.h21
3 files changed, 3 insertions, 21 deletions
diff --git a/ext/date/depend b/ext/date/depend
new file mode 100644
index 0000000000..b694930eba
--- /dev/null
+++ b/ext/date/depend
@@ -0,0 +1,2 @@
+date_core.o: $(top_srcdir)/timev.h
+date_strftime.o: $(top_srcdir)/timev.h
diff --git a/ext/date/extconf.rb b/ext/date/extconf.rb
index 9f7d3e8f0b..3515a6e89a 100644
--- a/ext/date/extconf.rb
+++ b/ext/date/extconf.rb
@@ -1,2 +1,3 @@
require 'mkmf'
+$INCFLAGS << " -I$(top_srcdir)"
create_makefile('date_core')
diff --git a/ext/date/timev.h b/ext/date/timev.h
deleted file mode 100644
index 631fcf3e1d..0000000000
--- a/ext/date/timev.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef RUBY_TIMEV_H
-#define RUBY_TIMEV_H
-
-struct vtm {
- VALUE year; /* 2000 for example. Integer. */
- int mon; /* 1..12 */
- int mday; /* 1..31 */
- int hour; /* 0..23 */
- int min; /* 0..59 */
- int sec; /* 0..60 */
- VALUE subsecx; /* 0 <= subsecx < TIME_SCALE. possibly Rational. */
- VALUE utc_offset; /* -3600 as -01:00 for example. possibly Rational. */
- int wday; /* 0:Sunday, 1:Monday, ..., 6:Saturday */
- int yday; /* 1..366 */
- int isdst; /* 0:StandardTime 1:DayLightSavingTime */
- const char *zone; /* "JST", "EST", "EDT", etc. */
-};
-
-#define TIME_SCALE 1000000000
-
-#endif