Expunge CVS cruft.
[fwd] / acconfig.h
1 /* -*-c-*-
2 *
3 * $Id: acconfig.h,v 1.4 2004/04/08 01:36:25 mdw Exp $
4 *
5 * Configuration header for fw
6 *
7 * (c) 1999 Straylight/Edgeware
8 */
9
10 /*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of the `fw' port forwarder.
13 *
14 * `fw' 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 * `fw' 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 `fw'; 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 /*----- Configuration macros ----------------------------------------------*/
37 @TOP@
38
39 /* Package name. */
40 #define PACKAGE "fw"
41
42 /* Package version number. */
43 #define VERSION "1.0.0"
44
45 /* Define if `environ' is declared somewhere sensible. */
46 #undef DECL_ENVIRON
47
48 @BOTTOM@
49
50 /* Cygwin advertises a number of limits and raises errors if you use them.
51 * This is a bit crap, and we ought to be able to cope, but for now we just
52 * don't do resource limits on Cygwin. Sorry. */
53 #ifdef __CYGWIN__
54 # undef HAVE_SETRLIMIT
55 #endif
56
57 /*----- That's all, folks -------------------------------------------------*/
58
59 #ifdef __cplusplus
60 }
61 #endif
62
63 #endif