1275970Scy/*
2275970Scy * Copyright (C) 2009  Internet Systems Consortium, Inc. ("ISC")
3275970Scy *
4275970Scy * Permission to use, copy, modify, and/or distribute this software for any
5275970Scy * purpose with or without fee is hereby granted, provided that the above
6275970Scy * copyright notice and this permission notice appear in all copies.
7275970Scy *
8275970Scy * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9275970Scy * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10275970Scy * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11275970Scy * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12275970Scy * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13275970Scy * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14275970Scy * PERFORMANCE OF THIS SOFTWARE.
15275970Scy */
16275970Scy
17275970Scy/* $Id: bind9.h,v 1.2 2009/12/05 23:31:41 each Exp $ */
18275970Scy
19275970Scy#ifndef ISC_BIND9_H
20275970Scy#define ISC_BIND9_H 1
21275970Scy
22275970Scy/*
23275970Scy * This determines whether we are building BIND9 or using the exported
24275970Scy * libisc/libdns libraries.  The version of this file included in the
25275970Scy * standard BIND9 build defines BIND9; the version included with the
26275970Scy * exportable libraries does not.
27275970Scy */
28275970Scy#define BIND9 1
29275970Scy
30275970Scy#endif /* ISC_BIND9_H */
31