1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/* --*-c-*--
*
* Copyright (c) mjh-EDV Beratung, 1996-1999
* mjh-EDV Beratung - 63263 Neu-Isenburg - Rosenstrasse 12
* Tel +49 6102 328279 - Fax +49 6102 328278
* Email info@mjh.teddy-net.com
*
* Author: Jordan Hrycaj <jordan@mjh.teddy-net.com>
*
* $Id: peks-config.w32,v 1.3 1999/12/09 22:05:23 jordan Exp $
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* ------------------------------------------------------------------
*
* @(#) config file to be used on intel nt and win9x
*/
/* do not use any c++ extensions, here */
#ifndef __STDC__
# define __STDC__ 1
#endif
/* memory model, system architecture */
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG 4
/* check the alignment, necessary */
#define HAVE_32ALIGN 1
/* do you want commpression ? */
#define USE_ZLIB_COMPRESSION 1
/* missing typedefs and symbols */
typedef unsigned pid_t ;
/* library functions/structures */
#define HAVE_RAND 1
#define HAVE_STRCHR 1
#define HAVE_MEMCPY 1
#define HAVE_MEMMOVE 1
#define HAVE_TIMEVAL 1
#define HAVE__STRICMP 1
#define HAVE__STAT 1
#define HAVE_SELECT 1
#define HAVE_REMOVE 1
#define HAVE__GETPID 1
#define HAVE__SYSNERR 1
#define HAVE_PRAGMA_MESSAGE 1
/* header files to be checked, for */
#define HAVE_FCNTL_H 1
#define HAVE_ERRNO_H 1
#define HAVE_MEMORY_H 1
#define HAVE_PROCESS_H 1
#define HAVE_TIME_H 1
#define HAVE_STDIO_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_FILE_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
|