chiark / gitweb /
Fiddle with CSS+HTML in effort to get more consistent buttons
[disorder] / lib / defs.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
5aff007d 3 * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
460b9539 4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
14ad73b9
RK
20/** @file lib/defs.c @brief Definitions chosen by configure
21 *
22 * The binary directories are included so that they can be appended to the path
23 * (see fix_path()), not so that the path can be ignored.
24 */
460b9539 25
05b75f8d 26#include "common.h"
460b9539 27
28#include "defs.h"
29#include "definitions.h"
30
14ad73b9 31/** @brief Software version number */
a05e4467 32const char disorder_short_version_string[] = VERSION;
14ad73b9
RK
33
34/** @brief Package library directory */
460b9539 35const char pkglibdir[] = PKGLIBDIR;
14ad73b9
RK
36
37/** @brief Package configuration directory */
460b9539 38const char pkgconfdir[] = PKGCONFDIR;
14ad73b9
RK
39
40/** @brief Package variable state directory */
460b9539 41const char pkgstatedir[] = PKGSTATEDIR;
14ad73b9
RK
42
43/** @brief Package fixed data directory */
460b9539 44const char pkgdatadir[] = PKGDATADIR;
14ad73b9
RK
45
46/** @brief Binary directory */
e83d0967 47const char bindir[] = BINDIR;
14ad73b9
RK
48
49/** @brief System binary directory */
e83d0967 50const char sbindir[] = SBINDIR;
14ad73b9 51
2eee4b0c
RK
52/** @brief System sendmail executable */
53const char sendmail_binary[] = SENDMAIL;
54
0e4472a0 55/** @brief Fink binary directory
56 *
57 * Meaningless if not on a Mac.
58 */
e83d0967 59const char finkbindir[] = FINKBINDIR;
460b9539 60
3fbdc96d 61#include "versionstring.h"
a05e4467 62
460b9539 63/*
64Local Variables:
65c-basic-offset:2
66comment-column:40
67fill-column:79
68End:
69*/