]> git.pld-linux.org Git - packages/gnuplot.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:40:41 +0000 (23:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gnuplot-acfix.patch -> 1.4
    gnuplot-round.patch -> 1.2

gnuplot-acfix.patch [deleted file]
gnuplot-round.patch [deleted file]

diff --git a/gnuplot-acfix.patch b/gnuplot-acfix.patch
deleted file mode 100644 (file)
index 38337c5..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
---- gnuplot-3.7.2/configure.in.orig    Thu Jan 31 20:22:26 2002
-+++ gnuplot-3.7.2/configure.in Sun Aug  4 00:28:26 2002
-@@ -390,12 +390,12 @@
- [#ifdef sun
- yes
- #endif
--], AC_CHECK_LIB(suntool, window_create,
--    AC_CHECK_HEADER(suntool/sunview.h,
--    AC_DEFINE(SUN, 1,
-+], [AC_CHECK_LIB(suntool, window_create,
-+    [AC_CHECK_HEADER(suntool/sunview.h,
-+    [AC_DEFINE(SUN, 1,
-               [ Define if you want to use the sunview terminal (sun). ])
--    TERMLIBS="-lsuntool -lsunwindow -lpixrect $TERMLIBS"),,
--    [-lsunwindow -lpixrect]))
-+    TERMLIBS="-lsuntool -lsunwindow -lpixrect $TERMLIBS"])],,
-+    [-lsunwindow -lpixrect])])
- dnl Process enable options
diff --git a/gnuplot-round.patch b/gnuplot-round.patch
deleted file mode 100644 (file)
index 150cd73..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
---- gnuplot-3.7.1/graphics.c.round     Wed Sep 15 09:30:29 1999
-+++ gnuplot-3.7.1/graphics.c   Wed Jun  6 15:59:07 2001
-@@ -583,7 +583,8 @@
-     /* compute ytop from the various components
-      *     unless tmargin is explicitly specified  */
--    ytop = (int) ((ysize + yoffset) * (t->ymax));
-+    /* HBB 20010118: fix round-off bug */
-+    ytop = (int) (0.5 + (ysize + yoffset) * (t->ymax));
-     if (tmargin < 0) {
-       int top_margin = x2label_textheight + title_textheight;
-@@ -668,7 +669,7 @@
-     /* compute ybot from the various components
-      *     unless bmargin is explicitly specified  */
--    ybot = (int) ((t->ymax) * yoffset);
-+    ybot = (int) (0.5 + (t->ymax) * yoffset);
-     if (bmargin < 0) {
-       ybot += xtic_height + xtic_textheight;
-@@ -844,7 +845,7 @@
-     /* compute xleft from the various components
-      *     unless lmargin is explicitly specified  */
--    xleft = (int) ((t->xmax) * xoffset);
-+    xleft = (int) (0.5 + (t->xmax) * xoffset);
-     if (lmargin < 0) {
-       xleft += (timelabel_textwidth > ylabel_textwidth ? timelabel_textwidth : ylabel_textwidth)
-@@ -905,7 +906,7 @@
-     /* compute xright from the various components
-      *     unless rmargin is explicitly specified  */
--    xright = (int) ((t->xmax) * (xsize + xoffset));
-+    xright = (int) (0.5 + (t->xmax) * (xsize + xoffset));
-     if (rmargin < 0) {
-       /* xright -= y2label_textwidth + y2tic_width + y2tic_textwidth; */
This page took 0.189699 seconds and 4 git commands to generate.