2002-09-06 06:41:02 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Daniel Stenberg
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2002-09-06 07:35:40 +00:00
|
|
|
#ifndef __OPTIONS_H__
|
|
|
|
#define __OPTIONS_H__
|
2002-09-06 06:41:02 +00:00
|
|
|
|
2002-09-06 22:28:28 +00:00
|
|
|
#ifndef DISABLE_DEMOS
|
|
|
|
#undef USE_DEMOS /* since older Makefiles set the define */
|
|
|
|
#define USE_DEMOS
|
2002-09-06 06:41:02 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DISABLE_GAMES
|
2002-09-06 08:14:56 +00:00
|
|
|
#undef USE_GAMES /* since older Makefiles set the define */
|
2002-09-06 06:41:02 +00:00
|
|
|
#define USE_GAMES
|
|
|
|
#endif
|
|
|
|
|
2002-09-06 07:35:40 +00:00
|
|
|
#endif /* End __OPTIONS_H__ */
|