chiark / gitweb /
Merge some changes from 1.0.4. Very odd.
[sw-tools] / acconfig.h
1 /* -*-c-*-
2  *
3  * $Id: acconfig.h,v 1.2 2004/04/08 01:52:18 mdw Exp $
4  *
5  * Configuration skeleton
6  *
7  * (c) 1999 EBI
8  */
9
10 /*----- Licensing notice --------------------------------------------------* 
11  *
12  * This file is part of sw-tools.
13  *
14  * sw-tools is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  * 
19  * sw-tools is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * 
24  * You should have received a copy of the GNU General Public License
25  * along with sw-tools; if not, write to the Free Software Foundation,
26  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27  */
28
29 #ifndef ACCONFIG_H
30 #define ACCONFIG_H
31
32 #ifdef __cplusplus
33   extern "C" {
34 #endif
35
36 #define _GNU_SOURCE
37
38 /*----- Configuration variables -------------------------------------------*/
39 @TOP@
40
41 /* The package name.  */
42 #define PACKAGE "sw-tools"
43
44 /* Current version.  */
45 #define VERSION "1.0.0"
46
47 /* The installed name of my program.  */
48 #define SW "sw"
49
50 /* Various handy directories.  */
51 #define PREFIX "/usr/local"
52 #define BINDIR "/usr/local/bin"
53 #define DATADIR "/usr/local/share"
54
55 /* Derived facts from the above.  */
56 #define ARCHTAB DATADIR "/archtab"
57 #define PATH_SW BINDIR "/" SW
58
59 /* My architecture name.  */
60 #define ARCH "i386-linux"
61
62 /* Whether to compile in curses support.  */
63 #define HAVE_CURSES
64
65 /* Whether the `environ' array is already declared somewhere useful.  */
66 #undef DECL_ENVIRON
67
68 /* Command for starting a remote shell.  */
69 #define RSH "/usr/bin/rsh"
70
71 /* Return type from `read' and `write'.  */
72 #undef ssize_t
73
74 /* Define if you have <curses.h>.  */
75 #undef HAVE_CURSES_H
76
77 @BOTTOM@
78
79 /*----- That's all, folks -------------------------------------------------*/
80
81 #ifdef __cplusplus
82   }
83 #endif
84
85 #endif