| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/biology/plink/files/ |
Upload File : |
--- plink_common.h.orig 2020-01-22 01:51:56 UTC
+++ plink_common.h
@@ -122,7 +122,7 @@
#define EOLN_STR "\n"
#define FOPEN_RB "r"
#define FOPEN_WB "w"
- #ifndef __APPLE__
+ #if !defined(__APPLE__) && !defined(__FreeBSD__)
// argh
// not sure what the right threshold actually is, but this works for now
// (may break on gcc <3.0? but that shouldn't matter anymore)
@@ -143,7 +143,7 @@
#define CLZLU __builtin_clzl
#ifndef __LP64__
// attempt to patch GCC 6 build failure
- #if (__GNUC__ <= 4) && (__GNUC_MINOR__ < 8)
+ #if !defined(__FreeBSD__) && (__GNUC__ <= 4) && (__GNUC_MINOR__ < 8)
#ifndef uintptr_t
#define uintptr_t unsigned long
#endif