diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-07-10 22:06:45 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-07-10 22:06:45 +0000 |
commit | b6de822b37107cd819f11750075c2518da106e4f (patch) | |
tree | 4014ff2167c1670f6e8c8030cea19708bfe86315 /package/libgtk12/timezone-fix.patch | |
parent | 7909d9d1d96c46f3b2e5c65fd40f79a88a6bd809 (diff) | |
download | buildroot-novena-b6de822b37107cd819f11750075c2518da106e4f.tar.gz buildroot-novena-b6de822b37107cd819f11750075c2518da106e4f.zip |
add support for gtk+ version 1.2
Diffstat (limited to 'package/libgtk12/timezone-fix.patch')
-rw-r--r-- | package/libgtk12/timezone-fix.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/libgtk12/timezone-fix.patch b/package/libgtk12/timezone-fix.patch new file mode 100644 index 000000000..15684145f --- /dev/null +++ b/package/libgtk12/timezone-fix.patch @@ -0,0 +1,15 @@ +diff -NurBabdH gtk+-1.2.10/gtk/testrgb.c gtk+-1.2.10-timezone-fix/gtk/testrgb.c +--- gtk+-1.2.10/gtk/testrgb.c 2000-08-18 23:36:34.000000000 +0200 ++++ gtk+-1.2.10-timezone-fix/gtk/testrgb.c 2005-03-03 11:18:09.000000000 +0100 +@@ -49,7 +49,10 @@ + get_time (void) + { + struct timeval tv; +- struct timezone tz; ++ struct timezone { ++ int tz_minuteswest; /* minutes W of Greenwich */ ++ int tz_dsttime; /* type of dst correction */ ++ } tz; + + gettimeofday (&tv, &tz); + |