svn commit: trunk/uClibc: extra/Configs libm

vapier at uclibc.org vapier at uclibc.org
Wed Jan 18 23:49:14 UTC 2006


Author: vapier
Date: 2006-01-18 15:49:13 -0800 (Wed, 18 Jan 2006)
New Revision: 13403

Log:
change HAS_FPU to UCLIBC_HAS_FPU since the define will be exported into C namespace

Modified:
   trunk/uClibc/extra/Configs/Config.in.arch
   trunk/uClibc/libm/Makefile.in


Changeset:
Modified: trunk/uClibc/extra/Configs/Config.in.arch
===================================================================
--- trunk/uClibc/extra/Configs/Config.in.arch	2006-01-18 23:46:57 UTC (rev 13402)
+++ trunk/uClibc/extra/Configs/Config.in.arch	2006-01-18 23:49:13 UTC (rev 13403)
@@ -48,7 +48,7 @@
 	  Answering N to this option can reduce the size of uClibc.  Most people
 	  will answer Y.
 
-config HAS_FPU
+config UCLIBC_HAS_FPU
 	bool "Target CPU has a floating point unit (FPU)"
 	depends on UCLIBC_HAS_FLOATS
 	default y
@@ -64,7 +64,7 @@
 
 config UCLIBC_HAS_SOFT_FLOAT
 	bool
-	depends on UCLIBC_HAS_FLOATS && !HAS_FPU
+	depends on UCLIBC_HAS_FLOATS && !UCLIBC_HAS_FPU
 	default y
 
 config DO_C99_MATH

Modified: trunk/uClibc/libm/Makefile.in
===================================================================
--- trunk/uClibc/libm/Makefile.in	2006-01-18 23:46:57 UTC (rev 13402)
+++ trunk/uClibc/libm/Makefile.in	2006-01-18 23:49:13 UTC (rev 13403)
@@ -33,7 +33,7 @@
 
 libm_FULL_NAME := libm-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
 
-ifeq ($(HAS_FPU),y)
+ifeq ($(UCLIBC_HAS_FPU),y)
 -include $(top_srcdir)libm/$(TARGET_ARCH)/Makefile.arch
 endif
 
@@ -84,7 +84,7 @@
 libm_OUT := $(top_builddir)libm
 
 # assume that arch specific versions are provided as single sources/objects
-ifeq ($(HAS_FPU),y)
+ifeq ($(UCLIBC_HAS_FPU),y)
 ifneq ($(strip $(libm_ARCH_OBJS)),)
 
 # remove generic sources, if arch specific version is present




More information about the uClibc-cvs mailing list