• R/O
  • HTTP
  • SSH
  • HTTPS

SlunkCrypt: Commit

Official SlunkCrypt repository


Commit MetaInfo

Revisãoe4c3343d0c866cc6e26a17d2d5af9b3f26696f8c (tree)
Hora2022-09-30 05:44:19
AutorLoRd_MuldeR <mulder2@gmx....>
CommiterLoRd_MuldeR

Mensagem de Log

Fixed detection of 32-Bit (x86) version of Haiku OS.

Mudança Sumário

Diff

--- a/Makefile
+++ b/Makefile
@@ -92,7 +92,7 @@ else
9292 CFLAGS += -DSLUNKBUILD_NOTHREADS
9393 endif
9494
95-ifneq (,$(firstword $(filter %-unknown-haiku,$(MACHINE))))
95+ifneq (,$(firstword $(filter %-pc-haiku %-unknown-haiku,$(MACHINE))))
9696 LDFLGS += -lbsd
9797 endif
9898
--- a/frontend/res/version.rc
+++ b/frontend/res/version.rc
@@ -8,9 +8,9 @@
88
99 #include "../../libslunkcrypt/src/version.h"
1010
11-#define VERSION_HELPER1(X,Y,Z) #X "." #Y "." #Z
12-#define VERSION_HELPER2(X,Y,Z) VERSION_HELPER1(X,Y,Z)
13-#define VERSION_STRING VERSION_HELPER2(LIB_VERSION_MAJOR,LIB_VERSION_MINOR,LIB_VERSION_PATCH)
11+#define _VERSION_STRING_HELPER1(W,X,Y,Z) #W "." #X "." #Y "." #Z
12+#define _VERSION_STRING_HELPER2(W,X,Y,Z) _VERSION_STRING_HELPER1(W,X,Y,Z)
13+#define VERSION_STRING _VERSION_STRING_HELPER2(LIB_VERSION_MAJOR,LIB_VERSION_MINOR,0,LIB_VERSION_PATCH)
1414
1515 /////////////////////////////////////////////////////////////////////////////
1616 //
Show on old repository browser