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 2009/01/07 13:07:37 UTC

svn commit: r732312 - in /harmony/enhanced/classlib/trunk/modules/luni/src/main/native: fdlibm/unix/makefile luni/unix/makefile

Author: hindessm
Date: Wed Jan  7 04:07:36 2009
New Revision: 732312

URL: http://svn.apache.org/viewvc?rev=732312&view=rev
Log:
Minor aix porting fixes.

Modified:
    harmony/enhanced/classlib/trunk/modules/luni/src/main/native/fdlibm/unix/makefile
    harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/makefile

Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/native/fdlibm/unix/makefile
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/main/native/fdlibm/unix/makefile?rev=732312&r1=732311&r2=732312&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/main/native/fdlibm/unix/makefile (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/main/native/fdlibm/unix/makefile Wed Jan  7 04:07:36 2009
@@ -46,8 +46,10 @@
 
 # OPT is overriden except on zOS (fpic, for example, is not an option on zOS)
 ifneq ($(HY_OS),zos)
+ifneq ($(HY_OS),aix)
 OPT = -O0 -ffloat-store -fpic
 endif
+endif
 
 DEFINES += -D_IEEE_LIBM
 

Modified: harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/makefile
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/makefile?rev=732312&r1=732311&r2=732312&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/makefile (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/src/main/native/luni/unix/makefile Wed Jan  7 04:07:36 2009
@@ -21,8 +21,10 @@
 
 # CFLAGS += -fpic -Wall -Werror 
 ifneq ($(HY_OS),zos)
+ifneq ($(HY_OS),aix)
 CFLAGS += -Wall
 endif
+endif
 
 BUILDFILES = \
 	$(SHAREDSUB)luni_copyright.o $(SHAREDSUB)file.o procimpl.o \