chiark / gitweb /
doxygen
[disorder] / lib / defs.c
... / ...
CommitLineData
1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2005 Richard Kettlewell
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 */
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 */
25
26#include <config.h>
27#include "types.h"
28
29#include "defs.h"
30#include "definitions.h"
31
32/** @brief Software version number */
33const char disorder_version_string[] = VERSION;
34
35/** @brief Package library directory */
36const char pkglibdir[] = PKGLIBDIR;
37
38/** @brief Package configuration directory */
39const char pkgconfdir[] = PKGCONFDIR;
40
41/** @brief Package variable state directory */
42const char pkgstatedir[] = PKGSTATEDIR;
43
44/** @brief Package fixed data directory */
45const char pkgdatadir[] = PKGDATADIR;
46
47/** @brief Binary directory */
48const char bindir[] = BINDIR;
49
50/** @brief System binary directory */
51const char sbindir[] = SBINDIR;
52
53/** @brief Fink binary directory
54 *
55 * Meaningless if not on a Mac.
56 */
57const char finkbindir[] = FINKBINDIR;
58
59/*
60Local Variables:
61c-basic-offset:2
62comment-column:40
63fill-column:79
64End:
65*/