* libversit/Makefile.am: * gncal/Makefile.am: * gnomecard/Makefile.am: Christian: Fix linker errors on SGI IRIX 6.5 by not using libtool for libversit.a. (Bugzilla #61031) -rpath removal and some small cleanups by me. * gncal/corba-cal-factory.c: (init_corba_server, unregister_calendar_services): Christian: Fix startup crashes. * gncal/calobj.c: (ical_object_to_vobject): Christian: Don't save dtend if it's 0 (i.e. the epoch 1970-01-01 00:00). Partly addresses Bugzilla #6058. * gncal/calendar.c: (calendar_open): Store errno privately so that the displayed error message is correct. * gncal/gncal-week-view.c: (gncal_week_view_set): Put %W time format string in week_end part, since otherwise we get problems when the week start is set to Sunday. Also use %V instead of %W to get the ISO week number, instead of the C week number. This makes the week number consistent with the one from GtkCalendar. * libversit/vcc.y: Christian: Fix a problem with locale-dependent string comparisons. (Bugzilla #64801) svn path=/trunk/; revision=16114
23 lines
394 B
Makefile
23 lines
394 B
Makefile
# Makefile for libversit.a
|
|
|
|
# $Id: Makefile.am,v 1.8 2002/03/12 00:41:53 srittau Exp $
|
|
|
|
VERSIT_SRC = \
|
|
vcc.y \
|
|
vcc.h \
|
|
vobject.c \
|
|
vobject.h \
|
|
port.h \
|
|
vcaltmp.c \
|
|
vcaltmp.h
|
|
|
|
noinst_LIBRARIES = libversit.a
|
|
noinst_LTLIBRARIES = libversit_lt.la
|
|
|
|
libversit_a_SOURCES = $(VERSIT_SRC)
|
|
libversit_lt_la_SOURCES = $(VERSIT_SRC)
|
|
|
|
EXTRA_DIST = README.TXT vcaltest.c vctest.c
|
|
|
|
YFLAGS=-pversit_
|