next up previous contents
Next: Getting started Up: Darcs 1.0.2 Darcs Previous: Introduction   Contents

Subsections

Building darcs

This chapter should walk you through the steps necessary to build darcs for yourself. There are in general two ways to build darcs. One is for building released versions from tarballs, and the other is to build the latest and greatest darcs, from the darcs repo itself.

Please let me know if you have any problems building darcs, or don't have problems described in this chapter and think there's something obsolete here, so I can keep this page up-to-date.

Prerequisites

To build darcs you will need to have ghc, the Glorious Glasgow Haskell Compiler. You should have at the very minimum version 6.2.

It is a good idea (but not required) to have a recent version of libcurl installed. If not, you will at least need to have either wget or curl installed if you want to be able to grab repos remotely over normal network protocols (ftp or http). You also might want to have scp available if you want to grab your repos over ssh...

To send patches, you will also need to have a working /usr/sbin/sendmail or /usr/lib/sendmail, which is provided by most mail transport agents, and is generally available on linux and BSD systems. It's also there on Mac OS X. However, if you don't have this, it won't stop you from building darcs.

To use the diff command of darcs, a diff program supporting options -r (recursive diff) and -N (show new files as differences against an empty file) is required. The configure script will look for gdiff, gnudiff and diff in this order. You can force the use of another program by setting the DIFF environment variable before running configure.

To rebuild the documentation (which should not be necessary since it is included in html form with the tarballs), you will need to have latex installed, as well as latex2html if you want to build it in html form.

Building on Mac OS X

To build on Mac OS X, you will need the Apple Developer Tools and the ghc 6.2 package installed. There seems to be a problem with ghc and Apple's gcc 3.3, so you may need to run
% sudo gcc_select 3.1
to avoid crashes. I have also had to run autoconf once when the configure script failed. (NOTE: as of Mac OS X 10.3 and ghc 6.2, it seems that gcc 3.3 works fine, and the above advice is unnecessary.)

Another recently discovered problem is that on MacOS, the curl-config from libcurl versions prior to 7.11.0 gives incorrect link flags, so you probably will want to make sure you have version 7.11.0 installed. I suspect one could also simply edit the curl-config of an older install to remove the offending ``-arch i386'', but haven't tried this.

Building on Microsoft Windows

To build on Microsoft Windows, you will need:

Copy the zlib and curl libraries and headers to both GHC and MinGW. GHC stores C headers in <ghc-dir>/gcc-lib/include and libraries in <ghc-dir>/gcc-lib. MinGW stores headers in <mingw-dir>/include and libraries in <mingw-dir>/lib.

Set PATH to include the <msys-dir>/bin, <mingw-dir>/bin, <curl-dir>, and a directory containing a pre-built darcs.exe if you want the build's patch context stored for `darcs --exact-version'.

C:\darcs> cd <darcs-source-dir>
C:\darcs> sh

$ export GHC=/c/<ghc-dir>/bin/ghc.exe
$ autoconf
$ ./configure --disable-mmap --target=mingw
$ make

Building from tarball

If you get darcs from a tarball, the procedure (after unpacking the tarball itself) is as follows:
% ./configure
% make
% make install

There are options to configure that you may want to check out with

% ./configure --help

Building darcs from the repository

To build the latest darcs from its repository, you will first need a working copy of darcs. You can get darcs using:
% darcs get -v http://abridgegame.org/repos/darcs
and once you have the darcs repository you can bring it up to date with a
% darcs pull

The repository doesn't hold automatically generated files, which include the configure script and the HTML documentation, so you need to run autoconf first.

You'll need autoconf 2.50 or higher. Some systems have more than one version of autoconf installed. For example, autoconf may point to version 2.13, while autoconf259 runs version 2.59.

Also note that make is really "GNU make". On some systems, such as the *BSDs, you may need to substitute gmake for this to work.

This also means you'll need to have latex installed if you want the documentation.

% autoconf
% ./configure
% make
% make install

If you want to tweak the configure options, you'll need to run ./configure yourself after the make, and then run make again.

Submitting patches to darcs

I know, this doesn't really belong in this chapter, but if you're using the repository version of darcs it's really easy to submit patches to me using darcs. In fact, even if you don't know any haskell, you could submit fixes or additions to this document (by editing building_darcs.tex) based on your experience building darcs...

To do so, just record your changes (which you made in the darcs repository)

% darcs record --no-test
making sure to give the patch a nice descriptive name. The --no-test options keeps darcs from trying to run the unit tests, which can be rather time-consuming. Then you can send the patch to the darcs-devel mailing list by email by
% darcs send -u
The darcs repository stores the email address to which patches should be sent by default. The email address you see is actually my own, but when darcs notices that you haven't signed the patch with my GPG key, it will forward the message to darcs-devel.


next up previous contents
Next: Getting started Up: Darcs 1.0.2 Darcs Previous: Introduction   Contents
Michael Scherer 2005-02-23