Commit 38cb5af01f4050b075749c731a4eb18196f84956

David Turner 2000-08-22T22:51:57

changed the "devel" setup targets to use "builds/<system>/devel" as the build directory. This is used to specify a specific "ftoption.h" that toggles all traces and logging on. Hence, the default build doesn't need the traces

diff --git a/builds/unix/unix-dev.mk b/builds/unix/unix-dev.mk
index 6f24a58..3454330 100644
--- a/builds/unix/unix-dev.mk
+++ b/builds/unix/unix-dev.mk
@@ -25,7 +25,7 @@ endif
 DELETE   := rm -f
 SEP      := /
 HOSTSEP  := $(SEP)
-BUILD    := $(TOP)/builds/unix
+BUILD    := $(TOP)/builds/unix/devel
 PLATFORM := unixdev  # do not set it to "unix", or libtool will trick you..
 CC       := gcc
 
diff --git a/builds/win32/w32-dev.mk b/builds/win32/w32-dev.mk
index 278a600..fa91cc4 100644
--- a/builds/win32/w32-dev.mk
+++ b/builds/win32/w32-dev.mk
@@ -25,7 +25,7 @@ endif
 DELETE   := del
 SEP      := /
 HOSTSEP  := $(strip \ )
-BUILD    := $(TOP)/builds/win32
+BUILD    := $(TOP)/builds/win32/devel
 PLATFORM := win32
 CC       := gcc
 
diff --git a/include/freetype/config/ftoption.h b/include/freetype/config/ftoption.h
index fd31bef..b93187c 100644
--- a/include/freetype/config/ftoption.h
+++ b/include/freetype/config/ftoption.h
@@ -199,8 +199,8 @@
   /*                                                                       */
   /*   Don't define any of these macros to compile in `release' mode!      */
   /*                                                                       */
-#define FT_DEBUG_LEVEL_ERROR
-#define FT_DEBUG_LEVEL_TRACE
+#undef  FT_DEBUG_LEVEL_ERROR
+#undef  FT_DEBUG_LEVEL_TRACE
 
 
   /*************************************************************************/