]> err.no Git - sope/commitdiff
fixed a header
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Tue, 15 Feb 2005 00:03:26 +0000 (00:03 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Tue, 15 Feb 2005 00:03:26 +0000 (00:03 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@561 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-ical/NGiCal/ChangeLog
sope-ical/NGiCal/GNUmakefile.preamble
sope-ical/NGiCal/Version
sope-ical/NGiCal/iCalRecurrenceCalculator.h

index 7799a49c74385ce5aef478574bec433ac9cd3eb7..e3febed981d34f4c2bc52600608aff86129786df 100644 (file)
@@ -1,3 +1,13 @@
+2005-02-14  Helge Hess  <helge.hess@opengroupware.org>
+
+       * v4.5.41
+
+       * GNUmakefile.preamble: added missing dependency on libNGExtensions
+         (which also adds the dependency on libDOM)
+
+       * iCalRecurrenceCalculator.h: fixed missing forward declaration in
+         header
+
 2005-02-12  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * v4.5.40
index a5b5fa0a78dff1d0d30ad746622d9a767512bd98..82687d5002b82d362c9004ec803938a248d9dc11 100644 (file)
@@ -12,8 +12,13 @@ ADDITIONAL_INCLUDE_DIRS += \
        -I../../sope-core               \
        -I../../sope-xml
 
-libNGiCal_LIBRARIES_DEPEND_UPON = \
-       -lSaxObjC -lEOControl
+libNGiCal_LIBRARIES_DEPEND_UPON += \
+       -lNGExtensions  \
+       -lEOControl     \
+       -lSaxObjC
+
+libNGiCal_LIBRARIES_DEPEND_UPON += \
+       -lDOM
 
 ifneq ($(GNUSTEP_BUILD_DIR),)
 RELBUILD_DIR_SxCore=$(GNUSTEP_BUILD_DIR)/../../sope-core
index 99d8f0dbc41ed455a2f8fac7aa56811d93e6edb1..50a3ce02d64779e87eb8267c6384a6085c4dcfe4 100644 (file)
@@ -2,7 +2,7 @@
 
 MAJOR_VERSION=4
 MINOR_VERSION=5
-SUBMINOR_VERSION:=40
+SUBMINOR_VERSION:=41
 
 # v4.5.40 requires NGExtensions v4.5.145
 # v4.5.37 requires NGExtensions v4.5.140
index 60cf528961790d4e93f46efa0be9500d94fe914a..661e91b6f239b7e8f4dd653d410bc7700219fa05 100644 (file)
 #import <Foundation/NSObject.h>
 
 /*
- iCalRecurrenceCalculator
 iCalRecurrenceCalculator
  
- Provides an API for performing common calculations performed in conjunction
- with iCalRecurrenceRule objects.
 Provides an API for performing common calculations performed in conjunction
 with iCalRecurrenceRule objects.
 */
 
+@class NSArray;
 @class iCalRecurrenceRule, NGCalendarDateRange;
 
 @interface iCalRecurrenceCalculator : NSObject