--- gncal/calendar.c.orig	Tue Aug  4 06:01:10 1998
+++ gncal/calendar.c	Fri Oct  2 20:58:32 1998
@@ -301,17 +301,18 @@
 {
 	VObject *vcal;
 	GList   *l;
+	struct tm *mytm;
 	time_t  now = time (NULL);
 	
 	if (fname == NULL)
 		fname = cal->filename;
 
 	/* WE call localtime for the side effect of setting tzname */
-	localtime (&now);
+	mytm = localtime (&now);
 	
 	vcal = newVObject (VCCalProp);
 	addPropValue (vcal, VCProdIdProp, "-//GNOME//NONSGML GnomeCalendar//EN");
-	addPropValue (vcal, VCTimeZoneProp, tzname [0]);
+	addPropValue (vcal, VCTimeZoneProp, mytm->tm_zone);
 	addPropValue (vcal, VCVersionProp, VERSION);
 	cal->temp = vcal;
 
--- gncal/prop.c.orig	Sat Oct 10 23:30:44 1998
+++ gncal/prop.c	Sat Oct 10 23:30:51 1998
@@ -6,7 +6,7 @@
  *          Federico Mena <federico@nuclecu.unam.mx>
  */
 #include <config.h>
-#include <langinfo.h>
+//#include <langinfo.h>
 #include <gnome.h>
 #include "gnome-cal.h"
 #include "gnome-month-item.h"
--- gncal/versit/Makefile.in.orig	Sat Oct 10 23:40:11 1998
+++ gncal/versit/Makefile.in	Sat Oct 10 23:41:40 1998
@@ -325,8 +325,7 @@
 install-data: 
 	@$(NORMAL_INSTALL)
 
-install: install-exec install-data all
-	@:
+install:
 
 uninstall: uninstall-libLIBRARIES
 
