1 /***************************************************************************
2                           config.h  -  Redirect to real config.h
3                              -------------------
4     begin                : Tues Dec 4 2001
5     copyright            : (C) 2001 by Simon White
6     email                : s_a_white@email.com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17 /***************************************************************************
18  *  $Log: config.h,v $
19  *  Revision 1.6  2001/12/07 00:40:22  s_a_white
20  *  Windows fixes.
21  *
22  *  Revision 1.5  2001/12/05 23:34:58  s_a_white
23  *  Now redirects to real config.h
24  *
25  ***************************************************************************/
26 
27 #if defined(HAVE_UNIX)
28 #   include "../unix/config.h"
29 #elif defined(HAVE_MSWINDOWS)
30 #   include "../win/VC/config.h"
31 #else
32 #   error Platform no supported!
33 #endif
34