Fix windows build of bitforce blindly. Hopefully it works.
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
diff --git a/bitforce.c b/bitforce.c
index f548b07..82b3f77 100644
--- a/bitforce.c
+++ b/bitforce.c
@@ -13,7 +13,11 @@
#include <sys/time.h>
#include <sys/types.h>
#include <dirent.h>
+#ifndef WIN32
#include <termios.h>
+#else
+#define NAME_MAX 255
+#endif
#include <unistd.h>
#include "elist.h"
@@ -46,7 +50,7 @@ static bool bitforce_detect_one(const char *devpath)
fclose(fileDev);
if (unlikely(!strstr(pdevbuf, "SHA256")))
{
- applog(LOG_DEBUG, "BitForce Detect: Didn't recognize BitForce on %s", devpath);
+ applog(LOG_DEBUG, "BitForce Detect: Didn't recognise BitForce on %s", devpath);
return false;
}
@@ -110,9 +114,11 @@ static bool bitforce_thread_prepare(struct thr_info *thr)
return false;
}
+#ifndef WIN32
{
int nDevFD = fileno(fileDev);
struct termios pattr;
+
tcgetattr(nDevFD, &pattr);
pattr.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON);
pattr.c_oflag &= ~OPOST;
@@ -121,6 +127,7 @@ static bool bitforce_thread_prepare(struct thr_info *thr)
pattr.c_cflag |= CS8;
tcsetattr(nDevFD, TCSANOW, &pattr);
}
+#endif
setbuf(fileDev, NULL);
bitforce->device_file = fileDev;