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