From 656155c800f88e9b808c5b02807450a6ea158e14 Mon Sep 17 00:00:00 2001
From: scuri <scuri>
Date: Fri, 25 Jun 2010 22:40:21 +0000
Subject: *** empty log message ***

---
 src/cdgl.mak       |  6 ++--
 src/make_uname.bat |  4 +++
 src/tecmake.mak    | 91 ++++++++++++++++++++++++++++++++++--------------------
 3 files changed, 64 insertions(+), 37 deletions(-)

diff --git a/src/cdgl.mak b/src/cdgl.mak
index 7b5f8e6..1bba4b0 100644
--- a/src/cdgl.mak
+++ b/src/cdgl.mak
@@ -16,15 +16,15 @@ USE_CD = YES
 CD = ..
 
 ifneq ($(findstring AIX, $(TEC_UNAME)), )
-  NO_FONTCONFIG = Yes
+  DEFINES += NO_FONTCONFIG
 endif
 
 ifneq ($(findstring IRIX, $(TEC_UNAME)), )
-  NO_FONTCONFIG = Yes
+  DEFINES += NO_FONTCONFIG
 endif
 
 ifneq ($(findstring SunOS, $(TEC_UNAME)), )
-  NO_FONTCONFIG = Yes
+  DEFINES += NO_FONTCONFIG
 endif
 
 ifneq ($(findstring MacOS, $(TEC_UNAME)), )
diff --git a/src/make_uname.bat b/src/make_uname.bat
index 025b94e..5c861cf 100644
--- a/src/make_uname.bat
+++ b/src/make_uname.bat
@@ -2,14 +2,18 @@
 REM This builds all the libraries of the folder for 1 uname
 
 call tecmake %1 "MF=cd_freetype" %2 %3 %4 %5 %6 %7 %8
+call tecmake %1 "MF=cd_ftgl" %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 "USE_GDK=Yes" %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 "MF=cd_pdflib" %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 "MF=cdpdf" %2 %3 %4 %5 %6 %7 %8
+call tecmake %1 "MF=cdgl" %2 %3 %4 %5 %6 %7 %8
 REM call tecmake %1 "MF=cdlua3" %2 %3 %4 %5 %6 %7 %8
 REM call tecmake %1 "MF=cdluapdf3" %2 %3 %4 %5 %6 %7 %8
+REM call tecmake %1 "MF=cdluagl3" %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 "MF=cdlua5" %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 "MF=cdluapdf5" %2 %3 %4 %5 %6 %7 %8
+call tecmake %1 "MF=cdluagl5" %2 %3 %4 %5 %6 %7 %8
 call tecmake %1 "MF=cdluaim5" %2 %3 %4 %5 %6 %7 %8
 
 REM GDI+ and Cairo are NOT available in some compilers
diff --git a/src/tecmake.mak b/src/tecmake.mak
index f894aa9..84c7dfe 100644
--- a/src/tecmake.mak
+++ b/src/tecmake.mak
@@ -8,7 +8,6 @@
 # Tecmake Version
 VERSION = 4.1
 
-
 #---------------------------------#
 # First target 
 .PHONY: build
@@ -419,6 +418,7 @@ else
 endif
 
 ifneq ($(findstring Linux, $(TEC_UNAME)), )
+  UNIX_LINUX = Yes
   ifdef BUILD_64
     ifeq ($(TEC_SYSARCH), ia64)
       STDFLAGS += -fPIC
@@ -435,6 +435,7 @@ ifneq ($(findstring Linux, $(TEC_UNAME)), )
 endif
 
 ifneq ($(findstring IRIX, $(TEC_UNAME)), )
+  UNIX_POSIX = Yes
   LD = ld
   STDLDFLAGS := -elf -shared -rdata_shared -soname lib$(TARGETNAME).so
   RANLIB := /bin/true
@@ -455,6 +456,7 @@ ifneq ($(findstring IRIX, $(TEC_UNAME)), )
 endif
 
 ifneq ($(findstring AIX, $(TEC_UNAME)), ) 
+  UNIX_POSIX = Yes
   NO_DYNAMIC ?= Yes
   ifdef BUILD_64
     ifdef USE_CC  
@@ -467,6 +469,7 @@ ifneq ($(findstring AIX, $(TEC_UNAME)), )
 endif
 
 ifneq ($(findstring HP-UX, $(TEC_UNAME)), )
+  UNIX_POSIX = Yes
   NO_DYNAMIC ?= Yes
   MOTIF_INC := /usr/include/Motif2.1
   X11_LIBS := Xt Xext X11
@@ -479,6 +482,7 @@ ifneq ($(findstring HP-UX, $(TEC_UNAME)), )
 endif
 
 ifneq ($(findstring SunOS, $(TEC_UNAME)), )
+  UNIX_POSIX = Yes
   LD = ld
   STDLDFLAGS := -G
   X11_INC := /usr/openwin/share/include
@@ -499,6 +503,7 @@ ifneq ($(findstring SunOS, $(TEC_UNAME)), )
 endif
 
 ifneq ($(findstring MacOS, $(TEC_UNAME)), )
+  UNIX_BSD = Yes
   X11_LIBS := Xmu Xp Xt Xext X11
   X11_LIB := /usr/X11R6/lib
   X11_INC := /usr/X11R6/include
@@ -514,6 +519,7 @@ ifneq ($(findstring MacOS, $(TEC_UNAME)), )
 endif
 
 ifneq ($(findstring FreeBSD, $(TEC_UNAME)), )
+  BSD = Yes
   X11_LIB := /usr/X11R6/lib
   X11_INC := /usr/X11R6/include
 endif
@@ -591,7 +597,7 @@ ifdef USE_IUP3
   override USE_IUP = Yes
 # Inside Tecgraf only  
   ifndef IUP3_BUILD
-#  IUP := $(IUP)3
+#    IUP := $(IUP)3
   endif
 endif 
 
@@ -747,7 +753,8 @@ endif
 ifdef USE_CD
   CDSUFX := 
   override USE_X11 = Yes
-  ifdef USE_IUP3
+  USE_CD_NEW := Yes
+  ifdef USE_CD_NEW
     ifdef USE_GDK
       ifndef GTK_DEFAULT
         CDSUFX := gdk
@@ -760,6 +767,7 @@ ifdef USE_CD
   endif
   ifdef USE_STATIC
     ifdef USE_XRENDER
+      CHECK_XRENDER = Yes
       SLIB += $(CD)/lib/$(TEC_UNAME_LIB_DIR)/libcdcontextplus.a
       LIBS += Xrender Xft
     endif
@@ -776,6 +784,7 @@ ifdef USE_CD
     endif
   else
     ifdef USE_XRENDER
+      CHECK_XRENDER = Yes
       LIBS += cdcontextplus
       LIBS += Xrender Xft
     endif
@@ -837,6 +846,7 @@ ifdef USE_MOTIF
 endif
 
 ifdef USE_GTK
+  CHECK_GTK = Yes
   ifneq ($(findstring MacOS, $(TEC_UNAME)), )
 # Option 1 - Fink GTK port
     LDIR += $(GTK)/lib
@@ -899,6 +909,8 @@ endif
 LIBS += m
 
 ifneq ($(findstring cygw, $(TEC_UNAME)), )
+  WIN_OTHER := Yes
+  
   # INCLUDES for dependencies, remove references to "c:" and similars
   DEPINCS := $(patsubst c:%, /cygdrive/c%, $(INCLUDES))
   DEPINCS := $(patsubst d:%, /cygdrive/d%, $(DEPINCS))
@@ -1001,15 +1013,15 @@ VPATH = .:$(foreach dir,$(P-SRC),$(if $(dir)="./",:$(dir)))
 
 .PHONY: tecmake 
 ifeq ($(MAKETYPE), APP)
-  tecmake: print-start directories application scripts
+  tecmake: print-start system-check directories application scripts
 else
   ifeq ($(NO_DYNAMIC), Yes) 
-    tecmake: print-start directories static-lib
+    tecmake: print-start system-check directories static-lib
   else
   ifeq ($(NO_STATIC), Yes) 
-    tecmake: print-start directories dynamic-lib
+    tecmake: print-start system-check directories dynamic-lib
   else
-    tecmake: print-start directories static-lib dynamic-lib
+    tecmake: print-start system-check directories static-lib dynamic-lib
   endif
   endif
 endif
@@ -1018,6 +1030,29 @@ endif
 print-start:
 	@echo ''; echo 'Tecmake: starting [ $(TARGETNAME):$(TEC_UNAME) ]'
 
+.PHONY: system-check
+system-check:
+  ifdef CHECK_XRENDER
+    ifdef UNIX_POSIX
+			@echo ''; echo 'Tecmake: check failed, XRender NOT available in this system.'; echo ''; exit 1;
+    endif
+  endif
+  ifdef CHECK_GTK
+    ifdef UNIX_POSIX
+		@echo ''; echo 'Tecmake: check failed, GTK NOT available in this system.'; echo ''; exit 1;
+    else
+      ifneq ($(findstring Linux24, $(TEC_UNAME)), )
+        ifndef GTK_BASE
+					@echo ''; echo 'Tecmake: check failed, GTK too OLD in this system.'; echo ''; exit 1;
+        endif  
+      endif  
+    endif
+  endif
+  ifdef CHECK_GDIPLUS
+    ifdef WIN_OTHER
+			@echo ''; echo 'Tecmake: check failed, GDI+ NOT available in this system.'; echo ''; exit 1;
+    endif
+  endif
   
 #---------------------------------#
 # Dynamic Library Build
@@ -1026,7 +1061,7 @@ print-start:
 dynamic-lib: $(TARGETDIR)/$(TARGETDLIBNAME)
 
 $(TARGETDIR)/$(TARGETDLIBNAME) : $(LOHS) $(OBJS) $(EXTRADEPS)
-	@echo ''; echo Tecmake: linking $(<F)...
+	@echo ''; echo Tecmake: linking $(@F) ...
 	$(ECHO)$(LD) $(STDLDFLAGS) -o $@ $(OBJS) $(SLIB) $(LFLAGS)
 	@echo ''; echo 'Tecmake: Dynamic Library ($@) Done.'; echo ''
 
@@ -1038,9 +1073,9 @@ $(TARGETDIR)/$(TARGETDLIBNAME) : $(LOHS) $(OBJS) $(EXTRADEPS)
 static-lib: $(TARGETDIR)/$(TARGETSLIBNAME)
 
 $(TARGETDIR)/$(TARGETSLIBNAME) : $(LOHS) $(OBJS) $(EXTRADEPS)
-	@echo ''; echo Tecmake: librarian $(<F)...
+	@echo ''; echo Tecmake: librarian $(@F) ...
 	$(ECHO)$(AR) $(STDLFLAGS) $@ $(OBJS) $(SLIB) $(LCFLAGS)
-	@echo ''; echo Tecmake: updating lib TOC $(<F)...
+	@echo ''; echo Tecmake: updating lib TOC $(@F) ...
 	$(ECHO)-$(RANLIB) $@
 	@echo ''; echo 'Tecmake: Static Library ($@) Done.'; echo ''
 
@@ -1052,7 +1087,7 @@ $(TARGETDIR)/$(TARGETSLIBNAME) : $(LOHS) $(OBJS) $(EXTRADEPS)
 application: $(TARGETDIR)/$(TARGETAPPNAME)
 
 $(TARGETDIR)/$(TARGETAPPNAME) : $(LOHS) $(OBJS) $(EXTRADEPS)
-	@echo ''; echo Tecmake: linking $(<F)...
+	@echo ''; echo Tecmake: linking $(@F) ...
 	$(ECHO)$(LINKER) -o $@ $(OBJS) $(SLIB) $(LFLAGS)
 	@if [ ! -z "$(STRIP)" ]; then \
 	   echo ''; echo 'Tecmake: striping debug information' ;\
@@ -1113,44 +1148,44 @@ endif
 # Compilation Rules
 
 $(OBJDIR)/%.o:  $(SRCDIR)/%.c
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(CC) -c $(CFLAGS) -o $@ $<
 
 $(OBJDIR)/%.o:  $(SRCDIR)/%.cpp
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(CPPC) -c $(CXXFLAGS) -o $@ $<
 
 $(OBJDIR)/%.o:  $(SRCDIR)/%.cxx
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(CPPC) -c $(CXXFLAGS) -o $@ $<
 
 $(OBJDIR)/%.o:  $(SRCDIR)/%.cc
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(CPPC) -c $(CXXFLAGS) -o $@ $<
 
 $(OBJDIR)/%.o: $(SRCDIR)/%.f
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(FC) -c $(FFLAGS) -o $@ $<
 
 $(OBJDIR)/%.o: $(SRCDIR)/%.for
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(FC) -c $(FFLAGS) -o $@ $<
 
 $(OBJDIR)/%.ro:  $(SRCDIR)/%.rc
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(RCC) $(RCFLAGS) -O coff -o $@ $<
 
 $(LOHDIR)/%.loh:  $(OBJROOT)/%.lo
-	@echo ''; echo Tecmake: generating $(<F)...
+	@echo ''; echo Tecmake: generating $(<F) ...
 	$(ECHO)$(BIN2C) $< > $@
 
 $(OBJROOT)/%$(LO_SUFFIX).lo:  $(SRCLUADIR)/%.lua
-	@echo ''; echo Tecmake: compiling $(<F)...
+	@echo ''; echo Tecmake: compiling $(<F) ...
 	$(ECHO)$(LUAC) -o $@ $<
 
 ifdef LOHPACK
 $(LOHDIR)/$(LOHPACK):  $(SRCLUA)
-	@echo ''; echo Tecmake: generating $(<F)...
+	@echo ''; echo Tecmake: generating $(<F) ...
 	$(ECHO)$(LUABIN) $(LUAPRE) $(LUAPREFLAGS) -l $(SRCLUADIR) -o $@ $(SRCLUA)
 endif
 
@@ -1158,7 +1193,6 @@ endif
 #---------------------------------#
 # Dependencies
 
-# make depend
 #   Build dependencies
 .PHONY: depend
 depend: $(DEPEND)
@@ -1168,7 +1202,7 @@ $(DEPEND): $(MAKENAME)
 	  @echo "" > $(DEPEND)
 	  @which $(CPPC) 2> /dev/null 1>&2 ;\
 	  if [ $$? -eq 0 ]; then \
-	    echo "Tecmake: Building Dependencies... (can be slow)" ;\
+	    echo "Tecmake: Building Dependencies ... [ $(DEPEND) ] (can be slow)" ;\
 	    $(CPPC) $(DEPINCS) $(DEFINES) $(STDDEFS) -MM $(SOURCES) | \
 	    sed -e '1,$$s/^\([^ ]\)/$$(OBJDIR)\/\1/' > $(DEPEND) ;\
 	  else \
@@ -1190,57 +1224,47 @@ endif
 #---------------------------------#
 # Management Rules
 
-# make clean-extra
 #   Remove extra files
 .PHONY: clean-extra
 clean-extra:
 	rm -f $(DEPEND) $(SRELEASE) so_locations
 	
-# make clean-lohs
 #   Remove Lua object inclusion files
 .PHONY: clean-lohs
 clean-lohs:
 	rm -f $(LOS) $(LOHS)
 	
-# make clean-obj
 #   Remove object files
 .PHONY: clean-obj
 clean-obj:
 	rm -f $(OBJS)
 
-# make clean-target
 #   Remove target
 .PHONY: clean-target
 clean-target:
 	rm -f $(TARGET)
 
-# make clean-dir
 .PHONY: clean-dir
 clean-dir:
 	rm -fr $(OBJROOT) $(TARGETROOT)
 
-# make clean
 #   Remove target and object files
 .PHONY: clean
 clean: clean-target clean-obj
 
-# make strip
 #   Remove symbols from executables
 .PHONY: strip
 strip:
 	test -r $(TARGETDIR)/$(TARGETAPPNAME) && strip $(TARGETDIR)/$(TARGETAPPNAME)
 
-# make rebuild
 #   Rebuild target and object files 
 .PHONY: rebuild
 rebuild: clean-extra clean-lohs clean-obj clean-target tecmake
 
-# make relink
 #   Rebuild target without rebuilding object files 
 .PHONY: relink
 relink: clean-target tecmake
 
-# make clean-all-obj
 #   Remove target and object files
 .PHONY: clean-all-obj
 clean-all-obj:
@@ -1248,7 +1272,6 @@ clean-all-obj:
 	  (cd $(OBJROOT)/$$d; echo $(OBJ) | xargs rm -f) ;\
 	done
 
-# make clean-all-target
 #   Remove libraries and executables for all platforms
 .PHONY: clean-all-target
 clean-all-target:
-- 
cgit v1.2.3