You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.8 KiB

Index: doc/Makefile.in
--- doc/Makefile.in.orig 2010-04-21 12:03:14.000000000 +0200
+++ doc/Makefile.in 2010-05-02 20:25:42.000000000 +0200
@@ -936,7 +936,7 @@
install-data-local: install-man
rm -f $(DESTDIR)$(man1dir)/gst-reload.1
- $(LN_S) $(DESTDIR)$(man1dir)/gst-load.1 $(DESTDIR)$(man1dir)/gst-reload.1
+ $(LN_S) $(man1dir)/gst-load.1 $(DESTDIR)$(man1dir)/gst-reload.1
$(srcdir)/blox.texi: $(top_srcdir)/packages/blox/tk/stamp-classes
$(GST_PACKAGE) $(patsubst %, %/package.xml, $(^D)) \
Index: libgst/prims.def
--- libgst/prims.def.orig 2010-04-21 11:25:01.000000000 +0200
+++ libgst/prims.def 2010-05-02 20:25:42.000000000 +0200
@@ -1928,7 +1928,11 @@
long double oopValue = FLOATQ_OOP_VALUE (oop1);
if COMMON (oopValue >= MIN_ST_INT && oopValue <= MAX_ST_INT)
{
+#if defined(__FreeBSD__)
+ PUSH_INT (lrint ((double)truncl (oopValue)));
+#else
PUSH_INT (lrintl (truncl (oopValue)));
+#endif
PRIM_SUCCEEDED;
}
}
Index: snprintfv/snprintfv/format.c
--- snprintfv/snprintfv/format.c.orig 2010-01-26 12:49:38.000000000 +0100
+++ snprintfv/snprintfv/format.c 2010-05-02 20:25:42.000000000 +0200
@@ -55,7 +55,7 @@
# define isinfl(x) isnanl ((x) - (x))
# endif
# ifndef HAVE_MODFL
-static snv_long_double modfl (long double x, long double *exp);
+snv_long_double modfl (long double x, long double *exp);
# endif
# ifndef HAVE_COPYSIGNL
static snv_long_double copysignl (long double x, long double y);
@@ -1098,7 +1098,7 @@
#if !defined NO_FLOAT_PRINTING && defined HAVE_LONG_DOUBLE
# ifndef HAVE_MODFL
-static long double modfl (long double x, long double *exp)
+long double modfl (long double x, long double *exp)
{
/* To compute the integer part of a positive integer (in this case
abs(X)), sum a big enough integer to the absolute value, so that