Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more protection for non linux builds
authorAugustin Degomme <adegomme@users.noreply.github.com>
Mon, 25 Jul 2022 19:15:13 +0000 (21:15 +0200)
committerAugustin Degomme <adegomme@users.noreply.github.com>
Mon, 25 Jul 2022 19:15:13 +0000 (21:15 +0200)
src/smpi/internals/smpi_config.cpp

index 0f2b3a9..a0c13a9 100644 (file)
@@ -3,16 +3,18 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#ifdef _GNU_SOURCE
+#if defined(_GNU_SOURCE)
   #define DEFINED_GNUSOURCE 1
 #else
   #define _GNU_SOURCE
 #endif
 
-#include <features.h>
+#if defined(__linux__)
+  #include <features.h>
 //inspired by https://stackoverflow.com/a/70211227
-#if defined(__linux__) and not defined(__USE_GNU)
-  #define __MUSL__
+  #if not defined(__USE_GNU)
+    #define __MUSL__
+  #endif
 #endif
 
 #ifndef DEFINED_GNUSOURCE