/*------------------------------------------------------------------------- * Filename: acconfig.h * Version: $Id: acconfig.h,v 1.1.4.2 1999/06/09 10:14:03 erik Exp $ * Copyright: Copyright (C) 1998, * Author: Erik Mouw * Description: Definitions for GNU autoconf/automake/libtool * Created at: Fri Apr 9 22:39:05 1999 * Modified by: Erik Mouw * Modified at: Wed May 26 23:11:44 1999 *-----------------------------------------------------------------------*/ /* acconfig.h -- defines for autoconf macros * Copyright (C) 1999 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ /* * * WARNING: * Don't try to edit config.h.in or config.h, because your changes will * be overwritten once you run automake, autoconf or configure. Edit * acconfig.h instead. * */ #ident "$Id: acconfig.h,v 1.1.4.2 1999/06/09 10:14:03 erik Exp $" #ifndef CONFIG_H #define CONFIG_H @TOP@ /* Define the package name here */ #undef PACKAGE /* Define the package version here */ #undef VERSION /* Define if the compiler doesn't have __FILE__ macro */ #undef __FILE__ /* Define if the compiler doesn't have __LINE__ macro */ #undef __LINE__ /* Define if the compiler doesn't have __FUNCTION__ macro */ #undef __FUNCTION__ /* Define if the compiler doesn't have __PRETTY_FUNCTION__ macro */ #undef __PRETTY_FUNCTION__ /* Define if you want to enable run-time debug information */ #undef MUSICA_DEBUG /* Define if you want to enable run-time timing debug information */ #undef TIMING_DEBUG /* Define if you want to enable run-time MIDI I/O debug information */ #undef MIDI_DEBUG /* Define if you have a clean memcmp function */ #undef HAVE_MEMCMP_CLEAN @BOTTOM@ #endif