mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
More stricter check for arm-wince Debian.
This commit is contained in:
parent
d6b33ffd6b
commit
76b81c7b35
|
@ -40,8 +40,8 @@
|
|||
#if ((ACC_OS_WIN32 || ACC_OS_WIN64) && ACC_CC_MWERKS) && defined(__MSL__)
|
||||
# undef HAVE_UTIME_H /* this pulls in <windows.h> */
|
||||
#endif
|
||||
// FIXME - quick hack for arm-wince-gcc-3.4 (Debian pocketpc*.deb packages)
|
||||
#if 1 && (ACC_ARCH_ARM) && defined(__pe__)
|
||||
// FIXME - quick hack for arm-wince-gcc-3.4 (Debian pocketpc-*.deb packages)
|
||||
#if 1 && (ACC_ARCH_ARM) && defined(__pe__) && !defined(_WIN32)
|
||||
# undef HAVE_CHMOD
|
||||
# undef HAVE_CHOWN
|
||||
# undef HAVE_LSTAT
|
||||
|
|
|
@ -577,8 +577,8 @@ unsigned get_ratio(unsigned u_len, unsigned c_len)
|
|||
|
||||
extern "C" {
|
||||
|
||||
// FIXME - quick hack for arm-wince-gcc-3.4 (Debian pocketpc*.deb packages)
|
||||
#if 1 && (ACC_ARCH_ARM) && defined(__pe__)
|
||||
// FIXME - quick hack for arm-wince-gcc-3.4 (Debian pocketpc-*.deb packages)
|
||||
#if 1 && (ACC_ARCH_ARM) && defined(__pe__) && !defined(__CEGCC__) && !defined(_WIN32)
|
||||
int dup(int fd) { UNUSED(fd); return -1; }
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user