/*
 * Gnophone: A client for the Asterisk PBX
 *
 * Copyright (C) 2005, Digium, Inc.
 *
 * Written by Travis Axtell
 *
 * Linux/UNIX version distributed under the terms of
 * the GNU General Public License
 *
 * config.h: Configuration settings for building.
 *
 */

#ifndef _CONFIG_H_
#define _CONFIG_H_

#define INSTALL_PREFIX "%(install_prefix)s"

#define VERSION		"%(version)s"
#define VERSION_LONG	"%(version_long)s"

#define DEBUG %(debug)d

#if %(enable_binreloc)d
# ifndef ENABLE_BINRELOC
#  define ENABLE_BINRELOC
# endif
#else
# undef ENABLE_BINRELOC
#endif

#include <arpa/inet.h>
#include <ctype.h>
#include <dirent.h>
#include <dlfcn.h>
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <gtk/gtk.h>
#include <linux/videodev.h>
#include <malloc.h>
#include <math.h>
#include <netdb.h>
#include <netinet/in.h>
#include <pthread.h>
#include <sched.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/resource.h>
#include <sys/signal.h>
#include <sys/socket.h>
#include <sys/soundcard.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#define GTK26 GTK_CHECK_VERSION(2, 6, 0)
#endif

