00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 2008, Digium, Inc. 00005 * 00006 * See http://www.asterisk.org for more information about 00007 * the Asterisk project. Please do not directly contact 00008 * any of the maintainers of this project for assistance; 00009 * the project provides a web site, mailing lists and IRC 00010 * channels for your use. 00011 * 00012 * This program is free software, distributed under the terms of 00013 * the GNU General Public License Version 2. See the LICENSE file 00014 * at the top of the source tree. 00015 */ 00016 00017 /*! 00018 * \file 00019 * \brief Find tonezone header in the right place (DAHDI or Zaptel) 00020 */ 00021 00022 #ifndef TONEZONE_COMPAT_H 00023 #define TONEZONE_COMPAT_H 00024 00025 #if defined(HAVE_ZAPTEL) 00026 00027 #include <zaptel/tonezone.h> 00028 00029 #elif defined(HAVE_DAHDI) 00030 00031 #include <dahdi/tonezone.h> 00032 00033 #endif 00034 00035 #endif /* TONEZONE_COMPAT_H */