/*=============================================================================*\ * File: gfsmConfig.h * Author: Bryan Jurish * Description: finite state machine library: autoconf configuration hack * * Copyright (c) 2004-2007 Bryan Jurish. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *=============================================================================*/ /** * \file gfsmConfig.h * \brief safely include autoheader preprocessor defines * * \file gfsmConfigNoAuto.h * \brief Undefine any autoheader preprocessor defines * * \file gfsmConfigAuto.h * \brief autoheader-generated preprocessor defines */ /* * Putting autoheader files within the #ifndef/#endif idiom (below) * is potentially a BAD IDEA, since we might need to (re-)define * the autoheader-generated preprocessor symbols (e.g. after * (#include)ing in some config.h from another autoheader package */ #include #include /* * Define a sentinel preprocessor symbol _GFSM_CONFIG_H, just * in case someone wants to check whether we've already * (#include)d this file .... */ #ifndef _GFSM_CONFIG_H #define _GFSM_CONFIG_H #ifdef GFSM_INLINE_ENABLED # ifdef __cplusplus /** Macro for declaring small functions inline (inlining enabled, C++-style) */ # define GFSM_INLINE inline # else /** Macro for declaring small functions inline (inlining enabled, C98-style) */ # define GFSM_INLINE static inline # endif /* __cplusplus */ #else /** Macro for declaring small functions inline (inlining disabled) */ # define GFSM_INLINE #endif /* GFSM_INLINE_ENABLED */ #endif /* _GFSM_CONFIG_H */