Made possible build without need for configure

This commit is contained in:
mostafah%oeone.com 2002-12-03 21:12:30 +00:00
parent 4eab84537c
commit f5bff61d3c
4 changed files with 14 additions and 5 deletions

View File

@ -29,7 +29,7 @@ include $(DEPTH)/config/autoconf.mk
include $(srcdir)/objs.mk
MODULE = ical
LIBRARY_NAME=mozz
LIBRARY_NAME=ical
ifeq ($(OS_ARCH),WINNT)
MAPFILE = $(LIBRARY_NAME).map

View File

@ -2,7 +2,7 @@
FILE: icalcomponent.c
CREATOR: eric 28 April 1999
$Id: icalcomponent.c,v 1.12 2002/11/07 14:33:28 mostafah%oeone.com Exp $
$Id: icalcomponent.c,v 1.13 2002/12/03 21:12:26 mostafah%oeone.com Exp $
(C) COPYRIGHT 2000, Eric Busboom, http://www.softwarestudio.org
@ -818,7 +818,11 @@ time_t icalcomponent_convert_time(icalproperty *p)
time_t t;
t = time(NULL);
#ifdef __USE_BSD
offset = localtime(&t)->tm_gmtoff;
#else
offset = localtime(&t)->__tm_gmtoff;
#endif
#endif
#endif
}

View File

@ -4,7 +4,7 @@
CREATOR: Damon Chaplin 15 March 2001
$Id: icaltimezone.c,v 1.5 2002/11/06 21:22:30 mostafah%oeone.com Exp $
$Id: icaltimezone.c,v 1.6 2002/12/03 21:12:28 mostafah%oeone.com Exp $
$Locker: $
(C) COPYRIGHT 2001, Damon Chaplin
@ -42,9 +42,14 @@
#ifdef WIN32
#define snprintf _snprintf
#define PACKAGE_DATA_DIR "/Projects/libical"
#endif
#else
#ifdef XP_MAC
#define PACKAGE_DATA_DIR "/Projects/libical"
#else
#ifndef PACKAGE_DATA_DIR
#define PACKAGE_DATA_DIR "/usr/share/libical"
#endif
#endif
#endif
/* This is the toplevel directory where the timezone data is installed in. */

View File

@ -35,7 +35,7 @@ include $(DEPTH)/config/autoconf.mk
include $(srcdir)/objs.mk
MODULE = icalss
LIBRARY_NAME=mozz
LIBRARY_NAME=icalss
ifeq ($(OS_ARCH),WINNT)
MAPFILE = $(LIBRARY_NAME).map