diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-12-03 15:17:05 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 16:26:20 +0100 |
commit | 1bb4822dca6113f73e3bc89e2acf15935e6f8e92 (patch) | |
tree | 35e16f100466e4e00657199b38bb3d87d52bf73f /libs/nixio/src/mingw-compat.h | |
parent | 9edd0e46c3f880727738ce8ca6ff1c8b85f99ef4 (diff) |
Rework LuCI build system
* Rename subdirectories to their repective OpenWrt package names
* Make each LuCI module its own standalone package
* Deploy a shared luci.mk which is used by each module Makefile
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'libs/nixio/src/mingw-compat.h')
-rw-r--r-- | libs/nixio/src/mingw-compat.h | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/libs/nixio/src/mingw-compat.h b/libs/nixio/src/mingw-compat.h deleted file mode 100644 index a26a4beec..000000000 --- a/libs/nixio/src/mingw-compat.h +++ /dev/null @@ -1,112 +0,0 @@ -#ifndef NIXIO_MINGW_COMPAT_H_ -#define NIXIO_MINGW_COMPAT_H_ - -#include <winsock2.h> -#include <ws2tcpip.h> -#include <io.h> -#include <process.h> -#include <stdint.h> -#include <sys/stat.h> -#include <errno.h> - -typedef unsigned int uint; -typedef unsigned long ulong; - -#define S_ISLNK(m) 0 -#define S_ISSOCK(m) 0 - -#define EWOULDBLOCK WSAEWOULDBLOCK -#define EAFNOSUPPORT WSAEAFNOSUPPORT -#define ENOPROTOOPT WSAENOPROTOOPT - -#define SHUT_RD SD_RECEIVE -#define SHUT_WR SD_SEND -#define SHUT_RDWR SD_BOTH - -#define pipe(fds) _pipe(fds, 65536, 0) -#define fsync _commit -#define lseek lseek64 -#define stat _stati64 -#define lstat _stati64 -#define fstat _fstati64 - - -#define F_LOCK 1 -#define F_ULOCK 0 -#define F_TLOCK 2 -#define F_TEST 3 -int nixio__mgw_lockf(int fd, int cmd, off_t len); -#define lockf nixio__mgw_lockf - -const char* nixio__mgw_inet_ntop -(int af, const void *src, char *dst, socklen_t size); -#define inet_ntop nixio__mgw_inet_ntop - -int nixio__mgw_inet_pton (int af, const char *src, void *dst); -#define inet_pton nixio__mgw_inet_pton - - -#ifndef POLLIN -#define POLLIN 0x001 -#define POLLOUT 0x004 -#define POLLERR 0x008 -struct pollfd { - int fd; - short events; - short revents; -}; -#endif - -typedef int nfds_t; -int nixio__mgw_poll(struct pollfd *fds, nfds_t nfds, int timeout); -#define poll nixio__mgw_poll - - -struct timespec { - time_t tv_sec; - long tv_nsec; -}; - -int nixio__mgw_nanosleep(const struct timespec *req, struct timespec *rem); -#define nanosleep nixio__mgw_nanosleep - - -char* nixio__mgw_realpath(const char *path, char *resolved); -#define realpath nixio__mgw_realpath - - -int nixio__mgw_link(const char *oldpath, const char *newpath); -#define link nixio__mgw_link - - -int nixio__mgw_utimes(const char *filename, const struct timeval times[2]); -#define utimes nixio__mgw_utimes - - -#define setenv(k, v, o) !SetEnvironmentVariable(k, v) -#define unsetenv(k) !SetEnvironmentVariable(k, NULL) - -#define execv(p, a) execv(p, (const char* const*)a) -#define execvp(p, a) execvp(p, (const char* const*)a) -#define execve(p, a, e) execve(p, (const char* const*)a, (const char* const*)e) - -#define mkdir(p, m) mkdir(p) - - -#define nixio__perror_s(L) \ - errno = WSAGetLastError(); \ - return nixio__perror(L); - -#define nixio__pstatus_s(L, c) \ - errno = WSAGetLastError(); \ - return nixio__pstatus(L, c); - - - -#define NIXIO_WSA_CONSTANT(x) \ - lua_pushinteger(L, x); \ - lua_setfield(L, -2, #x+3); - -void nixio_open__mingw(lua_State *L); - -#endif /* NIXIO_MINGW_COMPAT_H_ */ |