chiark / gitweb /
disable LC_COLLATE for shell globbing
[disorder] / lib / defs.c
CommitLineData
460b9539 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 */
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
26#include <config.h>
27#include "types.h"
28
29#include "defs.h"
30#include "definitions.h"
31
14ad73b9 32/** @brief Software version number */
460b9539 33const char disorder_version_string[] = VERSION;
14ad73b9
RK
34
35/** @brief Package library directory */
460b9539 36const char pkglibdir[] = PKGLIBDIR;
14ad73b9
RK
37
38/** @brief Package configuration directory */
460b9539 39const char pkgconfdir[] = PKGCONFDIR;
14ad73b9
RK
40
41/** @brief Package variable state directory */
460b9539 42const char pkgstatedir[] = PKGSTATEDIR;
14ad73b9
RK
43
44/** @brief Package fixed data directory */
460b9539 45const char pkgdatadir[] = PKGDATADIR;
14ad73b9
RK
46
47/** @brief Binary directory */
e83d0967 48const char bindir[] = BINDIR;
14ad73b9
RK
49
50/** @brief System binary directory */
e83d0967 51const char sbindir[] = SBINDIR;
14ad73b9 52
0e4472a0 53/** @brief Fink binary directory
54 *
55 * Meaningless if not on a Mac.
56 */
e83d0967 57const char finkbindir[] = FINKBINDIR;
460b9539 58
f486ea18
RK
59/** @brief Package documentation directory */
60const char docdir[] = DOCDIR;
61
460b9539 62/*
63Local Variables:
64c-basic-offset:2
65comment-column:40
66fill-column:79
67End:
68*/