chiark / gitweb /
Build separately from mLib.
[sw-tools] / acconfig.h
1 /* -*-c-*-
2  *
3  * $Id: acconfig.h,v 1.1 1999/06/02 16:53:33 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 /*----- Revision history --------------------------------------------------* 
30  *
31  * $Log: acconfig.h,v $
32  * Revision 1.1  1999/06/02 16:53:33  mdw
33  * Initial revision
34  *
35  */
36
37 #ifndef ACCONFIG_H
38 #define ACCONFIG_H
39
40 #ifdef __cplusplus
41   extern "C" {
42 #endif
43
44 #define _GNU_SOURCE
45
46 /*----- Configuration variables -------------------------------------------*/
47 @TOP@
48
49 /* The package name.  */
50 #define PACKAGE "sw-tools"
51
52 /* Current version.  */
53 #define VERSION "1.0.0"
54
55 /* The installed name of my program.  */
56 #define SW "sw"
57
58 /* Various handy directories.  */
59 #define PREFIX "/usr/local"
60 #define BINDIR "/usr/local/bin"
61 #define DATADIR "/usr/local/share"
62
63 /* Derived facts from the above.  */
64 #define ARCHTAB DATADIR "/archtab"
65 #define PATH_SW BINDIR "/" SW
66
67 /* My architecture name.  */
68 #define ARCH "i386-linux"
69
70 /* Whether to compile in curses support.  */
71 #define HAVE_CURSES
72
73 /* Whether the `environ' array is already declared somewhere useful.  */
74 #undef DECL_ENVIRON
75
76 /* Command for starting a remote shell.  */
77 #define RSH "/usr/bin/rsh"
78
79 /* Return type from `read' and `write'.  */
80 #undef ssize_t
81
82 /* Define if you have <curses.h>.  */
83 #undef HAVE_CURSES_H
84
85 @BOTTOM@
86
87 /*----- That's all, folks -------------------------------------------------*/
88
89 #ifdef __cplusplus
90   }
91 #endif
92
93 #endif