You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2007/02/12 09:22:56 UTC

svn commit: r506368 - in /harmony/enhanced/classlib/trunk: depends/build/defines.mk modules/awt/src/main/native/gl/unix/makefile modules/awt/src/main/native/oglwrapper/unix/makefile modules/awt/src/main/native/x11wrapper/unix/makefile

Author: hindessm
Date: Mon Feb 12 00:22:56 2007
New Revision: 506368

URL: http://svn.apache.org/viewvc?view=rev&rev=506368
Log:
Move references to libstdc++ to top-level so that it can be overriden
by platforms that provide this in a different way (Aix for example).

Modified:
    harmony/enhanced/classlib/trunk/depends/build/defines.mk
    harmony/enhanced/classlib/trunk/modules/awt/src/main/native/gl/unix/makefile
    harmony/enhanced/classlib/trunk/modules/awt/src/main/native/oglwrapper/unix/makefile
    harmony/enhanced/classlib/trunk/modules/awt/src/main/native/x11wrapper/unix/makefile

Modified: harmony/enhanced/classlib/trunk/depends/build/defines.mk
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/build/defines.mk?view=diff&rev=506368&r1=506367&r2=506368
==============================================================================
--- harmony/enhanced/classlib/trunk/depends/build/defines.mk (original)
+++ harmony/enhanced/classlib/trunk/depends/build/defines.mk Mon Feb 12 00:22:56 2007
@@ -24,6 +24,7 @@
 ARFLAGS = rcv
 DLL_LD = $(CC)
 CXX_DLL_LD = $(CXX)
+STDCLIBS = -lstdc++
 OSLIBS = -lc -lm
 XLIBS = -L/usr/X11R6/lib -lX11 -lXft
 

Modified: harmony/enhanced/classlib/trunk/modules/awt/src/main/native/gl/unix/makefile
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/awt/src/main/native/gl/unix/makefile?view=diff&rev=506368&r1=506367&r2=506368
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/awt/src/main/native/gl/unix/makefile (original)
+++ harmony/enhanced/classlib/trunk/modules/awt/src/main/native/gl/unix/makefile Mon Feb 12 00:22:56 2007
@@ -32,7 +32,7 @@
 	$(DLLPATH)libhysig.so $(LIBPATH)libhyzip.a $(DLLPATH)libhyzlib.so $(LIBPATH)libhycommon.a \
 	$(LIBPATH)libhypool.a $(LIBPATH)libhyfdlibm.a $(DLLPATH)libhythr.so $(LIBPATH)libvmi.so
 
-OSLIBS += -lstdc++
+OSLIBS += $(STDCLIBS)
 
 DLLNAME=../libgl.so
 EXPNAME=HYGL_0.1

Modified: harmony/enhanced/classlib/trunk/modules/awt/src/main/native/oglwrapper/unix/makefile
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/awt/src/main/native/oglwrapper/unix/makefile?view=diff&rev=506368&r1=506367&r2=506368
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/awt/src/main/native/oglwrapper/unix/makefile (original)
+++ harmony/enhanced/classlib/trunk/modules/awt/src/main/native/oglwrapper/unix/makefile Mon Feb 12 00:22:56 2007
@@ -25,7 +25,7 @@
 	$(DLLPATH)libhysig.so $(LIBPATH)libhyzip.a $(DLLPATH)libhyzlib.so $(LIBPATH)libhycommon.a \
 	$(LIBPATH)libhypool.a $(LIBPATH)libhyfdlibm.a $(DLLPATH)libhythr.so $(LIBPATH)libvmi.so
 
-OSLIBS += -lstdc++
+OSLIBS += $(STDCLIBS)
 
 DLLNAME=../liboglwrapper.so
 EXPNAME=HYOGLWRAPPER_0.1

Modified: harmony/enhanced/classlib/trunk/modules/awt/src/main/native/x11wrapper/unix/makefile
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/awt/src/main/native/x11wrapper/unix/makefile?view=diff&rev=506368&r1=506367&r2=506368
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/awt/src/main/native/x11wrapper/unix/makefile (original)
+++ harmony/enhanced/classlib/trunk/modules/awt/src/main/native/x11wrapper/unix/makefile Mon Feb 12 00:22:56 2007
@@ -28,7 +28,7 @@
 	$(DLLPATH)libhysig.so $(LIBPATH)libhyzip.a $(DLLPATH)libhyzlib.so $(LIBPATH)libhycommon.a \
 	$(LIBPATH)libhypool.a $(LIBPATH)libhyfdlibm.a $(DLLPATH)libhythr.so $(LIBPATH)libvmi.so
 
-OSLIBS += -lstdc++ $(XLIBS)
+OSLIBS += $(STDCLIBS) $(XLIBS)
 
 DLLNAME=../libX11Wrapper.so
 EXPNAME=HYX11WRAPPER_0.1