File: README

package info (click to toggle)
libmcal 0.6-16
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 556 kB
  • ctags: 472
  • sloc: ansic: 4,397; makefile: 179; sh: 124
file content (41 lines) | stat: -rw-r--r-- 1,161 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
 *	$Id: README,v 1.1.1.1 1999/12/02 08:01:39 zircote Exp $
mcal stands for Modular Calendar Access Library.

libmcal is a C library for accessing calendars. It's written
to be very modular, with plugable drivers.

once the library is compiled, calendar clients can be wirrten very easily.

Compilation:

To compile libmcal, you need to first have calendar drivers in place.
The calendar drivers are ina seperate package, and should be untarred
and compiled under the mail libmcal directory.

i.e.:

/home/musone/libmcal     <-- libmcal base compile directory
/home/musone/libmcal/icap   <-- icap driver for libmcal
/home/musone/libmcal/dummy  <--- dummy driver for libmcal

Once the drivers are compiled, run configure in the libmcal directory.

You should pass in --with-[DRIVERNAME] for each driver you want compiled in.

For example, in the above sample driver installation, to enable both driver:

>./configure --with-icap --with-dummy

You can also specify an alternative driver directory for each driver:

>./configure --with-icap=../drivers/icap --with-dummy=testdrivers/dummy


Once configure is run, type:


>make

libmcal.a should then be compiled.