Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package bitmap for openSUSE:Factory checked 
in at 2024-02-05 22:01:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bitmap (Old)
 and      /work/SRC/openSUSE:Factory/.bitmap.new.1815 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bitmap"

Mon Feb  5 22:01:05 2024 rev:11 rq:1144046 version:1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/bitmap/bitmap.changes    2022-05-01 
18:53:55.771181940 +0200
+++ /work/SRC/openSUSE:Factory/.bitmap.new.1815/bitmap.changes  2024-02-05 
22:01:09.394917219 +0100
@@ -1,0 +2,10 @@
+Sun Feb  4 20:54:56 UTC 2024 - Stefan Dirsch <sndir...@suse.com>
+
+- update to version 1.1.1
+  * configure: Use AC_SYS_LARGEFILE to enable large file support
+  * Ensure all *.c files include config.h before any other headers
+  * atobm, bmtoa, bitmap: Add -help and -version options
+  * bitmap: Print which option was in error along with usage message
+  * Remove "All rights reserved" from Oracle copyright notices
+
+-------------------------------------------------------------------

Old:
----
  bitmap-1.1.0.tar.xz

New:
----
  bitmap-1.1.1.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ bitmap.spec ++++++
--- /var/tmp/diff_new_pack.W3jrFN/_old  2024-02-05 22:01:10.058941241 +0100
+++ /var/tmp/diff_new_pack.W3jrFN/_new  2024-02-05 22:01:10.062941386 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bitmap
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           bitmap
-Version:        1.1.0
+Version:        1.1.1
 Release:        0
 Summary:        X bitmap editor and converter utilities
 License:        X11

++++++ bitmap-1.1.0.tar.xz -> bitmap-1.1.1.tar.xz ++++++
++++ 22884 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/BitEdit.c new/bitmap-1.1.1/BitEdit.c
--- old/bitmap-1.1.0/BitEdit.c  2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/BitEdit.c  2024-02-03 19:23:45.000000000 +0100
@@ -30,8 +30,9 @@
  * Author:  Davor Matic, MIT X Consortium
  */
 
-
-
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -67,6 +68,8 @@
      -stipple filename\n\
      -hl color\n\
      -fr color\n\
+     -help\n\
+     -version\n\
 \n\
 The default WIDTHxHEIGHT is 16x16.\n";
 
@@ -977,13 +980,41 @@
     Widget w;
     Widget radio_group = NULL;
     XtPointer radio_data = NULL;
+    const char *filename = NULL;
+
+    /* Handle args that don't require opening a display */
+    for (int a = 1; a < argc; a++) {
+       const char *argn = argv[a];
+       /* accept single or double dash for -help & -version */
+       if (argn[0] == '-' && argn[1] == '-') {
+           argn++;
+       }
+       if (strcmp(argn, "-help") == 0) {
+           fprintf(stderr, "usage: %s %s", argv[0], usage);
+           exit(0);
+       }
+       if (strcmp(argn, "-version") == 0) {
+           puts(PACKAGE_STRING);
+           exit(0);
+       }
+    }
 
     top_widget = XtInitialize(NULL, "Bitmap",
                              options, XtNumber(options), &argc, argv);
 
-    if (argc > 2) {
-       fputs(usage, stderr);
-       exit (0);
+    if (argc > 1) {
+       if ((argv[argc - 1][0] != '-') && (argv[argc - 1][0] != '+')) {
+           filename = argv[--argc];
+       }
+       if (argc > 1) {
+           fputs("Unknown argument(s):", stderr);
+           for (int a = 1; a < argc; a++) {
+               fprintf(stderr, " %s", argv[a]);
+           }
+           fputs("\n\n", stderr);
+           fprintf(stderr, "usage: %s %s", argv[0], usage);
+           exit (1);
+       }
     }
 
     check_mark = XCreateBitmapFromData(XtDisplay(top_widget),
@@ -1075,8 +1106,8 @@
     bitmap_widget = XtCreateManagedWidget("bitmap", bitmapWidgetClass,
                                          pane_widget, NULL, 0);
     XtRealizeWidget(top_widget);
-    if (argc > 1)
-      if (BWReadFile(bitmap_widget, argv[1], NULL))
+    if (filename != NULL)
+        BWReadFile(bitmap_widget, filename, NULL);
 
     wm_delete_window = XInternAtom(XtDisplay(top_widget), "WM_DELETE_WINDOW",
                                   False);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/Bitmap.c new/bitmap-1.1.1/Bitmap.c
--- old/bitmap-1.1.0/Bitmap.c   2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/Bitmap.c   2024-02-03 19:23:45.000000000 +0100
@@ -30,6 +30,10 @@
  * Author:  Davor Matic, MIT X Consortium
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <X11/IntrinsicP.h>
 #include <X11/StringDefs.h>
 #include <X11/Xaw/XawInit.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/ChangeLog new/bitmap-1.1.1/ChangeLog
--- old/bitmap-1.1.0/ChangeLog  2022-04-30 22:26:18.000000000 +0200
+++ new/bitmap-1.1.1/ChangeLog  2024-02-03 19:23:56.000000000 +0100
@@ -1,3 +1,59 @@
+commit 8330c04c89b5983a4c8a32a78a812343dba8ac05
+Author: Alan Coopersmith <alan.coopersm...@oracle.com>
+Date:   Sat Feb 3 09:55:48 2024 -0800
+
+    bitmap 1.1.1
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com>
+
+commit ab9f888fa8158ba9b930abc58ca1aa5ff57f6556
+Author: Alan Coopersmith <alan.coopersm...@oracle.com>
+Date:   Sat Feb 25 08:53:46 2023 -0800
+
+    Remove "All rights reserved" from Oracle copyright notices
+    
+    Oracle no longer includes this term in our copyright & license notices.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com>
+
+commit 03579181022489d95b6a1361a1d3568a1d4b47e0
+Author: Alan Coopersmith <alan.coopersm...@oracle.com>
+Date:   Sun Feb 5 18:52:45 2023 -0800
+
+    bitmap: Print which option was in error along with usage message
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com>
+
+commit a53f6c680d78e41e17e1b6af05d588f5d0083f2d
+Author: Alan Coopersmith <alan.coopersm...@oracle.com>
+Date:   Sun Feb 5 18:38:18 2023 -0800
+
+    atobm, bmtoa, bitmap: Add -help and -version options
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com>
+
+commit da8af2618143577c36ba7fe7656bb6e296616438
+Author: Alan Coopersmith <alan.coopersm...@oracle.com>
+Date:   Sun Feb 5 18:01:35 2023 -0800
+
+    Ensure all *.c files include config.h before any other headers
+    
+    Makes sure that any flags set in config.h that affect system headers
+    are applied equally across all source files.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com>
+
+commit af15f44aabf3fccf096e04d73f4e6e2fd8ca3771
+Author: Alan Coopersmith <alan.coopersm...@oracle.com>
+Date:   Wed Nov 23 10:29:44 2022 -0800
+
+    configure: Use AC_SYS_LARGEFILE to enable large file support
+    
+    While X bitmap files should never be more than 2gb in size,
+    they may be stored on filesystems with large inodes.
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersm...@oracle.com>
+
 commit b3e36bd9e5c72f4d8045b13ec066826545560361
 Author: Alan Coopersmith <alan.coopersm...@oracle.com>
 Date:   Sat Apr 30 13:22:09 2022 -0700
@@ -1071,7 +1127,7 @@
     Add bitmap.icon to EXTRA_DIST
 
 commit c3f282e1aa6176896089ea79be84b7250888a65c
-Author: Kristian Høgsberg  <k...@redhat.com>
+Author: Kristian Høgsberg <k...@redhat.com>
 Date:   Thu Sep 29 18:22:01 2005 +0000
 
     Add Bitmap-nocase app default file to APPDEFAULTFILES.
@@ -1124,13 +1180,13 @@
         against tempfile race conditions in many places)
 
 commit cc48a5df41c59071eab0f58818366e10cb1ff4ac
-Author: Søren Sandmann Pedersen  <sandm...@daimi.au.dk>
+Author: Søren Sandmann Pedersen <sandm...@daimi.au.dk>
 Date:   Fri Jul 15 16:52:07 2005 +0000
 
     Add dependency on xbitmaps
 
 commit c6129c090ad25cd2f8b191f503ac6e8cd452a31d
-Author: Søren Sandmann Pedersen  <sandm...@daimi.au.dk>
+Author: Søren Sandmann Pedersen <sandm...@daimi.au.dk>
 Date:   Wed Jul 6 15:47:38 2005 +0000
 
     Build system for bitmap
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/CutPaste.c new/bitmap-1.1.1/CutPaste.c
--- old/bitmap-1.1.0/CutPaste.c 2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/CutPaste.c 2024-02-03 19:23:45.000000000 +0100
@@ -30,6 +30,10 @@
  * Author:  Davor Matic, MIT X Consortium
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <X11/IntrinsicP.h>
 #include <X11/StringDefs.h>
 #include <X11/Xatom.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/Dialog.c new/bitmap-1.1.1/Dialog.c
--- old/bitmap-1.1.0/Dialog.c   2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/Dialog.c   2024-02-03 19:23:45.000000000 +0100
@@ -30,6 +30,10 @@
  * Author:  Davor Matic, MIT X Consortium
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <X11/Intrinsic.h>
 #include <X11/StringDefs.h>
 #include <X11/Shell.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/Handlers.c new/bitmap-1.1.1/Handlers.c
--- old/bitmap-1.1.0/Handlers.c 2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/Handlers.c 2024-02-03 19:23:45.000000000 +0100
@@ -30,6 +30,10 @@
  * Author:  Davor Matic, MIT X Consortium
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <X11/IntrinsicP.h>
 #include <X11/StringDefs.h>
 #include "BitmapP.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/ReqMach.c new/bitmap-1.1.1/ReqMach.c
--- old/bitmap-1.1.0/ReqMach.c  2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/ReqMach.c  2024-02-03 19:23:45.000000000 +0100
@@ -30,6 +30,10 @@
  * Author:  Davor Matic, MIT X Consortium
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <X11/IntrinsicP.h>
 #include <X11/StringDefs.h>
 #include <X11/Xfuncs.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/atobm.c new/bitmap-1.1.1/atobm.c
--- old/bitmap-1.1.0/atobm.c    2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/atobm.c    2024-02-03 19:23:45.000000000 +0100
@@ -31,6 +31,10 @@
  * Author:  Jim Fulton, MIT X Consortium
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <ctype.h>
 #include <X11/Xos.h>
@@ -43,7 +47,7 @@
                 int xhot, int yhot, const char *name);
 
 static void _X_NORETURN _X_COLD
-usage (const char *msg)
+usage (const char *msg, int exitval)
 {
     if (msg)
        fprintf(stderr, "%s: %s\n", ProgramName, msg);
@@ -51,10 +55,12 @@
             ProgramName,
              "where options include:\n"
              "    -chars cc        chars to use for 0 and 1 bits, 
respectively\n"
+             "    -help            print this message\n"
              "    -name variable   name to use in bitmap file\n"
+             "    -version         print version info\n"
              "    -xhot number     x position of hotspot\n"
              "    -yhot number     y position of hotspot\n");
-    exit (1);
+    exit(exitval);
 }
 
 static void _X_NORETURN _X_COLD
@@ -63,7 +69,7 @@
     char msg[32];
 
     snprintf(msg, sizeof(msg), "%s requires an argument", option);
-    usage(msg);
+    usage(msg, 1);
 }
 
 static char *
@@ -119,10 +125,21 @@
                if (++i >= argc) missing_arg("-chars");
                chars = argv[i];
                continue;
+             case 'h':
+               if (strcmp(arg, "-help") == 0) {
+                   usage(NULL, 0);
+               }
+               goto unknown;
              case 'n':
                if (++i >= argc) missing_arg("-name");
                name = argv[i];
                continue;
+             case 'v':
+               if (strcmp(arg, "-version") == 0) {
+                   puts(PACKAGE_STRING);
+                   exit(0);
+               }
+               goto unknown;
              case 'x':
                if (++i >= argc) missing_arg("-xhot");
                xhot = atoi (argv[i]);
@@ -132,9 +149,10 @@
                yhot = atoi (argv[i]);
                continue;
              default:
+             unknown:
                fprintf(stderr, "%s: unrecognized option '%s'\n",
                        ProgramName, argv[i]);
-               usage (NULL);
+               usage(NULL, 1);
            }
        } else {
            filename = arg;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/bmtoa.c new/bitmap-1.1.1/bmtoa.c
--- old/bitmap-1.1.0/bmtoa.c    2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/bmtoa.c    2024-02-03 19:23:45.000000000 +0100
@@ -54,13 +54,16 @@
                            unsigned const char *data, const char *chars);
 
 static void _X_NORETURN
-usage (void)
+usage (int exitval)
 {
     fprintf (stderr, "usage:  %s [-options ...] [filename]\n\n%s\n",
             ProgramName,
        "where options include:\n"
-       "    -chars cc        chars to use for 0 and 1 bits, respectively\n");
-    exit (1);
+       "    -chars cc        chars to use for 0 and 1 bits, respectively\n"
+       "    -help            print this usage message\n"
+       "    -version         print version information\n"
+        );
+    exit (exitval);
 }
 
 static char *
@@ -133,14 +136,26 @@
                if (++i >= argc) {
                    fprintf(stderr, "%s: -chars requires an argument\n",
                            ProgramName);
-                   usage ();
+                   usage(1);
                }
                chars = argv[i];
                continue;
+             case 'h':
+               if (strcmp(arg, "-help") == 0) {
+                   usage(0);
+               }
+               goto unknown;
+             case 'v':
+               if (strcmp(arg, "-version") == 0) {
+                   puts(PACKAGE_STRING);
+                   exit(0);
+               }
+                goto unknown;
              default:
+             unknown:
                fprintf(stderr, "%s: unrecognized option '%s'\n",
                        ProgramName, argv[i]);
-               usage ();
+               usage(1);
            }
        } else {
            filename = arg;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/compile new/bitmap-1.1.1/compile
--- old/bitmap-1.1.0/compile    2022-04-30 22:26:08.000000000 +0200
+++ new/bitmap-1.1.1/compile    2024-02-03 19:23:50.000000000 +0100
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Wrapper for compilers which do not understand '-c -o'.
 
-scriptversion=2012-10-14.11; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
+# Copyright (C) 1999-2021 Free Software Foundation, Inc.
 # Written by Tom Tromey <tro...@cygnus.com>.
 #
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -53,7 +53,7 @@
          MINGW*)
            file_conv=mingw
            ;;
-         CYGWIN*)
+         CYGWIN* | MSYS*)
            file_conv=cygwin
            ;;
          *)
@@ -67,7 +67,7 @@
        mingw/*)
          file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
          ;;
-       cygwin/*)
+       cygwin/* | msys/*)
          file=`cygpath -m "$file" || echo "$file"`
          ;;
        wine/*)
@@ -255,7 +255,8 @@
     echo "compile $scriptversion"
     exit $?
     ;;
-  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
+  cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
+  icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
     func_cl_wrapper "$@"      # Doesn't return...
     ;;
 esac
@@ -339,9 +340,9 @@
 # Local Variables:
 # mode: shell-script
 # sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/config.h.in new/bitmap-1.1.1/config.h.in
--- old/bitmap-1.1.0/config.h.in        2022-04-30 22:26:07.000000000 +0200
+++ new/bitmap-1.1.1/config.h.in        2024-02-03 19:23:50.000000000 +0100
@@ -3,18 +3,18 @@
 /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H
 
-/* Define to 1 if you have the `lrint' function. */
+/* Define to 1 if you have the 'lrint' function. */
 #undef HAVE_LRINT
 
-/* Define to 1 if you have the <memory.h> header file. */
-#undef HAVE_MEMORY_H
-
-/* Define to 1 if you have the `mkstemp' function. */
+/* Define to 1 if you have the 'mkstemp' function. */
 #undef HAVE_MKSTEMP
 
 /* Define to 1 if you have the <stdint.h> header file. */
 #undef HAVE_STDINT_H
 
+/* Define to 1 if you have the <stdio.h> header file. */
+#undef HAVE_STDIO_H
+
 /* Define to 1 if you have the <stdlib.h> header file. */
 #undef HAVE_STDLIB_H
 
@@ -63,8 +63,22 @@
 /* Patch version of this package */
 #undef PACKAGE_VERSION_PATCHLEVEL
 
-/* Define to 1 if you have the ANSI C header files. */
+/* Define to 1 if all of the C89 standard headers exist (not just the ones
+   required in a freestanding environment). This macro is provided for
+   backward compatibility; new code need not use it. */
 #undef STDC_HEADERS
 
 /* Version number of package */
 #undef VERSION
+
+/* Number of bits in a file offset, on hosts where this is settable. */
+#undef _FILE_OFFSET_BITS
+
+/* Define to 1 on platforms where this makes off_t a 64-bit type. */
+#undef _LARGE_FILES
+
+/* Number of bits in time_t, on hosts where this is settable. */
+#undef _TIME_BITS
+
+/* Define to 1 on platforms where this makes time_t a 64-bit type. */
+#undef __MINGW_USE_VC2005_COMPAT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/configure.ac new/bitmap-1.1.1/configure.ac
--- old/bitmap-1.1.0/configure.ac       2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/configure.ac       2024-02-03 19:23:45.000000000 +0100
@@ -23,7 +23,7 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([bitmap], [1.1.0],
+AC_INIT([bitmap], [1.1.1],
        [https://gitlab.freedesktop.org/xorg/app/bitmap/issues], [bitmap])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])
@@ -39,6 +39,10 @@
 
 AM_PROG_CC_C_O
 
+# Checks for typedefs, structures, and compiler characteristics.
+AC_SYS_LARGEFILE
+
+# Checks for library functions.
 AC_CHECK_FUNCS([mkstemp])
 
 # Math libraries & functions
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/man/Makefile.am new/bitmap-1.1.1/man/Makefile.am
--- old/bitmap-1.1.0/man/Makefile.am    2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/man/Makefile.am    2024-02-03 19:23:45.000000000 +0100
@@ -1,5 +1,5 @@
 #
-# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2010, Oracle and/or its affiliates.
 #
 # Permission is hereby granted, free of charge, to any person obtaining a
 # copy of this software and associated documentation files (the "Software"),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/man/bitmap.man new/bitmap-1.1.1/man/bitmap.man
--- old/bitmap-1.1.0/man/bitmap.man     2022-04-30 22:26:02.000000000 +0200
+++ new/bitmap-1.1.1/man/bitmap.man     2024-02-03 19:23:45.000000000 +0100
@@ -152,6 +152,14 @@
 .B \-yhot \fInumber\fP
 This option specifies the Y coordinate of the hotspot.  Only positive values
 are allowed.  By default, no hotspot information is included.
+.PP
+All three commands also accept these options:
+.TP 4
+.B \-help
+Prints a usage message and exits.
+.TP 4
+.B \-version
+Prints version info and exits.
 .SH USAGE
 \fIBitmap\fP displays grid in which each square represents a single
 bit in the picture being edited.  Actual size of the bitmap image, as
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/missing new/bitmap-1.1.1/missing
--- old/bitmap-1.1.0/missing    2022-04-30 22:26:08.000000000 +0200
+++ new/bitmap-1.1.1/missing    2024-02-03 19:23:50.000000000 +0100
@@ -1,9 +1,9 @@
 #! /bin/sh
 # Common wrapper for a few potentially missing GNU programs.
 
-scriptversion=2013-10-28.13; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2021 Free Software Foundation, Inc.
 # Originally written by Fran,cois Pinard <pin...@iro.umontreal.ca>, 1996.
 
 # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@
 # GNU General Public License for more details.
 
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -101,9 +101,9 @@
   exit $st
 fi
 
-perl_URL=http://www.perl.org/
-flex_URL=http://flex.sourceforge.net/
-gnu_software_URL=http://www.gnu.org/software
+perl_URL=https://www.perl.org/
+flex_URL=https://github.com/westes/flex
+gnu_software_URL=https://www.gnu.org/software
 
 program_details ()
 {
@@ -207,9 +207,9 @@
 exit $st
 
 # Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/bitmap-1.1.0/test-driver new/bitmap-1.1.1/test-driver
--- old/bitmap-1.1.0/test-driver        2022-04-30 22:26:08.000000000 +0200
+++ new/bitmap-1.1.1/test-driver        2024-02-03 19:23:50.000000000 +0100
@@ -1,9 +1,9 @@
 #! /bin/sh
 # test-driver - basic testsuite driver script.
 
-scriptversion=2013-07-13.22; # UTC
+scriptversion=2018-03-07.03; # UTC
 
-# Copyright (C) 2011-2014 Free Software Foundation, Inc.
+# Copyright (C) 2011-2021 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -42,11 +42,13 @@
 {
   cat <<END
 Usage:
-  test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
-              [--expect-failure={yes|no}] [--color-tests={yes|no}]
-              [--enable-hard-errors={yes|no}] [--]
+  test-driver --test-name NAME --log-file PATH --trs-file PATH
+              [--expect-failure {yes|no}] [--color-tests {yes|no}]
+              [--enable-hard-errors {yes|no}] [--]
               TEST-SCRIPT [TEST-SCRIPT-ARGUMENTS]
+
 The '--test-name', '--log-file' and '--trs-file' options are mandatory.
+See the GNU Automake documentation for information.
 END
 }
 
@@ -103,8 +105,11 @@
 trap "st=141; $do_exit" 13
 trap "st=143; $do_exit" 15
 
-# Test script is run here.
-"$@" >$log_file 2>&1
+# Test script is run here. We create the file first, then append to it,
+# to ameliorate tests themselves also writing to the log file. Our tests
+# don't, but others can (automake bug#35762).
+: >"$log_file"
+"$@" >>"$log_file" 2>&1
 estatus=$?
 
 if test $enable_hard_errors = no && test $estatus -eq 99; then
@@ -126,7 +131,7 @@
 # know whether the test passed or failed simply by looking at the '.log'
 # file, without the need of also peaking into the corresponding '.trs'
 # file (automake bug#11814).
-echo "$res $test_name (exit status: $estatus)" >>$log_file
+echo "$res $test_name (exit status: $estatus)" >>"$log_file"
 
 # Report outcome to console.
 echo "${col}${res}${std}: $test_name"
@@ -140,9 +145,9 @@
 # Local Variables:
 # mode: shell-script
 # sh-indentation: 2
-# eval: (add-hook 'write-file-hooks 'time-stamp)
+# eval: (add-hook 'before-save-hook 'time-stamp)
 # time-stamp-start: "scriptversion="
 # time-stamp-format: "%:y-%02m-%02d.%02H"
-# time-stamp-time-zone: "UTC"
+# time-stamp-time-zone: "UTC0"
 # time-stamp-end: "; # UTC"
 # End:

Reply via email to