00001 /* 00002 wefts_os.h 00003 Select correct OS dependant libraries. 00004 00005 $Id: wefts_os.h,v 1.2 2003/08/16 13:23:58 jonnymind Exp $ 00006 --------------------------------------------- 00007 Begin : 2003-08-03 17:50 00008 Author : Giancarlo Niccolai 00009 00010 Last modified because: 00011 00012 */ 00013 00014 /************************************************************************** 00015 * This program is free software; you can redistribute it and/or modify * 00016 * it under the terms of the GNU Library General Public License as * 00017 * published by the Free Software Foundation; either version 2.1 of the * 00018 * License, or (at your option) any later version. * 00019 ***************************************************************************/ 00020 00021 00022 #ifndef WT_OS_H 00023 #define WT_OS_H 00024 00025 #include <wefts_config.h> 00026 00027 #if defined( HAVE_LIBPTHREAD ) 00028 #include <wefts_os_pthread.h> 00029 #else 00030 #error "Current system still not implemented" 00031 #endif 00032 00033 #endif 00034 /* end of wefts_os_pthread.h */