packages/libs/postgresql/patches/850-uclibc_no_cbrt.patch
nico 8139f60ed2 remove the need for C99 math (closes: #1579)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@6929 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-04-10 22:51:12 +00:00

24 lines
673 B
Diff

diff -ruN postgresql-8.2.3-old/src/backend/utils/adt/float.c postgresql-8.2.3-new/src/backend/utils/adt/float.c
--- postgresql-8.2.3-old/src/backend/utils/adt/float.c 2006-10-05 03:40:45.000000000 +0200
+++ postgresql-8.2.3-new/src/backend/utils/adt/float.c 2007-04-10 23:13:16.000000000 +0200
@@ -110,7 +110,9 @@
static int float8_cmp_internal(float8 a, float8 b);
#ifndef HAVE_CBRT
-static double cbrt(double x);
+#undef cbrt
+#define cbrt(x) pg_cbrt(x)
+static double pg_cbrt(double x);
#endif /* HAVE_CBRT */
@@ -2831,7 +2833,7 @@
#ifndef HAVE_CBRT
static double
-cbrt(double x)
+pg_cbrt(double x)
{
int isneg = (x < 0.0);
double absx = fabs(x);