ecere/com/containers/Map: Fixed issues deleting maps of struct to struct
[sdk] / default.cf
index d9927a6..b5653a6 100644 (file)
@@ -40,6 +40,15 @@ TARGET_ARCH :=$(shell $(CC) -dumpmachine)
   else
      TARGET_ARCH := i386
   endif
+ else
+  ifdef LINUX_TARGET
+   ifneq ($(filter x86_64-pc-linux-gnu,$(TARGET_ARCH)),)    # Fix for PREFIXLIBDIR / DEB_HOST_MULTIARCH with Clang on Debian
+      TARGET_ARCH := x86_64-linux-gnu
+   endif
+   ifneq ($(filter i586-linux-gnu,$(TARGET_ARCH)),)
+      TARGET_ARCH := i386-linux-gnu
+   endif
+  endif
  endif
 endif
 
@@ -83,4 +92,6 @@ ifdef DISABLE_GL
 CFLAGS += -DECERE_NOGL
 endif
 
+ifndef ENABLE_SSL
 CFLAGS += -DECERE_NOSSL
+endif