/**************************************************************************** CONFIG.H - Midnight Commander Configuration for OS/2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ---------------------------------------------------------------------------- Changes: - Created 951204/jfg - Changed from Alexander Dong (ado) for OS/2 ---------------------------------------------------------------------------- Contents: - Headers flags - Library flags - Typedefs - etc. ****************************************************************************/ #ifndef __CONFIG_H //Prevent multiple includes #define __CONFIG_H #ifndef __BORLANDC__ # include <../VERSION> #else # include <../VERSION.> #endif #ifndef OS2 # define OS2 #endif #ifndef __os2__ # define __os2__ #endif #ifndef pc_system # define pc_system #endif #define OS2_NT #define FLOAT_TYPE #define MIDNIGHT // --------------------------------------------------------------------------- // Headers #define STDC_HEADERS #define HAVE_STRING_H #define HAVE_DIRENT_H #define HAVE_LIMITS_H #define NO_UNISTD_H // --------------------------------------------------------------------------- // "Standard" Library #define HAVE_MEMSET #define HAVE_MEMCHR #define HAVE_MEMCPY #define HAVE_MEMCMP #define HAVE_MEMMOVE #define HAVE_STRDUP #define HAVE_STRERROR #define HAVE_TRUNCATE #define REGEX_MALLOC #define NO_TERM #define NO_INFOMOUNT #ifndef __EMX__ #define HAVE_SHORT_MKDIR #endif // --------------------------------------------------------------------------- // Windowing library #if !defined(HAVE_SLANG) && !defined (USE_NCURSES) #define HAVE_SLANG #endif #ifdef USE_NCURSES #define RENAMED_NCURSES #endif // --------------------------------------------------------------------------- // Typedefs (some useless under NT) typedef unsigned int umode_t; #ifndef __EMX__ typedef int gid_t; // Not defined in typedef int uid_t; typedef int mode_t; typedef int pid_t; typedef unsigned int nlink_t; #define INLINE #define inline #define ENOTDIR -1 #endif /* not __EMX__ */ // --------------------------------------------------------------------------- // File attributes #define S_ISBLK(m) 0 /* Some of these are not actual values*/ #define S_ISLNK(x) 0 #ifndef __EMX__ #define S_ISFIFO(x) 0 #define S_IFBLK 0010000 /* but don't worry, these are yet not possible on NT */ #define S_IFLNK 0010000 #define S_IRWXU 0000700 #define S_IRUSR 0000400 #define S_IWUSR 0000200 #define S_IXUSR 0000100 #define S_IRWXG 0000070 #define S_IRGRP 0000040 #define S_IWGRP 0000020 #define S_IXGRP 0000010 #define S_IRWXO 0000007 #define S_IROTH 0000004 #define S_IWOTH 0000002 #define S_IXOTH 0000001 #define S_ISUID 0004000 #define S_ISGID 0002000 #define S_ISVTX 0001000 #define S_IFMT 0xFF00 #ifndef FILE_DIRECTORY # define FILE_DIRECTORY 0x0010 #endif #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) #define S_ISDIR(m) ( (m & 0xF000) ? m & S_IFDIR : m & FILE_DIRECTORY) /* .ado: 0x8000 is regular file. 0x4xxx is DIR */ #define S_ISREG(m) (((m) & 0x8000) == S_IFREG) /* #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) */ /* Symbolic constants for the access() function */ #define R_OK 4 /* Test for read permission */ #define W_OK 2 /* Test for write permission */ #define X_OK 1 /* Test for execute permission */ #define F_OK 0 /* Test for existence of file */ #endif /* __EMX__ */ // --------------------------------------------------------------------------- // Inline definitions // Pipes #ifndef __EMX__ #define popen _popen #define pclose _pclose #define pipe(p) _pipe(p, 4096, 0x8000 /*_O_BINARY*/) #endif #ifndef MAX_PATH # define MAX_PATH 260 #endif #endif /* Config.h */