Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[xsrc/xorg]: xsrc/external/mit/xf86-video-vesa/dist initial import of xf86-vi...
details: https://anonhg.NetBSD.org/xsrc/rev/3475e1e95778
branches: xorg
changeset: 7377:3475e1e95778
user: mrg <mrg%NetBSD.org@localhost>
date: Sun Jan 08 21:32:53 2023 +0000
description:
initial import of xf86-video-vesa-2.6.0
diffstat:
external/mit/xf86-video-vesa/dist/ChangeLog | 102 +-
external/mit/xf86-video-vesa/dist/Makefile.in | 40 +-
external/mit/xf86-video-vesa/dist/README.md | 2 +-
external/mit/xf86-video-vesa/dist/aclocal.m4 | 20350 +++++++++----------
external/mit/xf86-video-vesa/dist/compile | 6 +-
external/mit/xf86-video-vesa/dist/config.guess | 1432 +-
external/mit/xf86-video-vesa/dist/config.h.in | 10 +-
external/mit/xf86-video-vesa/dist/config.sub | 700 +-
external/mit/xf86-video-vesa/dist/configure | 13964 +++++++------
external/mit/xf86-video-vesa/dist/configure.ac | 6 +-
external/mit/xf86-video-vesa/dist/depcomp | 2 +-
external/mit/xf86-video-vesa/dist/install-sh | 157 +-
external/mit/xf86-video-vesa/dist/ltmain.sh | 875 +-
external/mit/xf86-video-vesa/dist/man/Makefile.in | 11 +-
external/mit/xf86-video-vesa/dist/missing | 2 +-
external/mit/xf86-video-vesa/dist/src/Makefile.in | 13 +-
external/mit/xf86-video-vesa/dist/src/vesa.c | 44 +-
17 files changed, 19709 insertions(+), 18007 deletions(-)
diffs (truncated from 45273 to 300 lines):
diff -r 36c73968f42f -r 3475e1e95778 external/mit/xf86-video-vesa/dist/ChangeLog
--- a/external/mit/xf86-video-vesa/dist/ChangeLog Sun Jan 08 21:32:50 2023 +0000
+++ b/external/mit/xf86-video-vesa/dist/ChangeLog Sun Jan 08 21:32:53 2023 +0000
@@ -1,3 +1,97 @@
+commit f6f1013dec5fcef1dfb0f9ad4878e8af364e2c42
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Fri Dec 9 12:24:33 2022 -0800
+
+ xf86-video-vesa 2.6.0
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit f1895cc6dfdfcb0ac3b1250e88596938a5a664be
+Author: Jocelyn Falempe <jfalempe%redhat.com@localhost>
+Date: Thu Apr 14 14:39:37 2022 +0200
+
+ Refuse to run if framebuffer or dri devices are present
+
+ The simpledrm driver, introduced in kernel 5.14,
+ can replace efifb to provide the efi framebuffer.
+
+ This fixes a bug on Fedora 36 (first version to use simpledrm driver):
+ https://bugzilla.redhat.com/show_bug.cgi?id=2074789
+
+ v2: check for framebuffer or dri devices instead of efi framebuffer interface.
+
+ Reviewed-by: Adam Jackson <ajax%redhat.com@localhost>
+ Reviewed-by: Javier Martinez Canillas <javierm%redhat.com@localhost>
+ Signed-off-by: Jocelyn Falempe <jfalempe%redhat.com@localhost>
+
+commit e285658e60d9cf772dda4b2c713ad2a0d4cef569
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Mon Oct 17 11:48:57 2022 -0700
+
+ VESAValidMode: remove duplicate call to VESAGetRec
+
+ Found by cppcheck:
+
+ src/vesa.c:356:11: style: Redundant initialization for 'pVesa'. The initialized value is overwritten before it is read. [redundantInitialization]
+ pVesa = VESAGetRec(pScrn);
+ ^
+ src/vesa.c:350:19: note: pVesa is initialized
+ VESAPtr pVesa = VESAGetRec(pScrn);
+ ^
+ src/vesa.c:356:11: note: pVesa is overwritten
+ pVesa = VESAGetRec(pScrn);
+ ^
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 2f2436b4fe70a1f1a47c4ed112e8aefba3c8efe3
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Mon Oct 17 11:36:55 2022 -0700
+
+ VESADGASetMode: remove unused variable scrnIdx
+
+ vesa.c: In function ‘VESADGASetMode’:
+ vesa.c:1790:9: warning: unused variable ‘scrnIdx’ [-Wunused-variable]
+ int scrnIdx = pScrn->pScreen->myNum;
+ ^~~~~~~
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5dee3ce85addc06f5f051158c768b993ace86baa
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Thu Jul 28 17:30:21 2022 -0700
+
+ gitlab CI: stop requiring Signed-off-by in commits
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 942499a7510a4df645d4de29f634e33118f44109
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jan 30 08:57:14 2022 -0800
+
+ gitlab CI: add a basic build test
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5e8eb2d8c9e9a51a8015a15d268578482589549d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jan 30 08:53:56 2022 -0800
+
+ Fix spelling/wording issues
+
+ Found by using:
+ codespell --builtin clear,rare,usage,informal,code,names
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 782c9800be3d2d9973fe2131c10556d9971f2d00
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date: Sun Jan 30 08:52:56 2022 -0800
+
+ Build xz tarballs instead of bzip2
+
+ Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
commit 68f2589c687c132fc9abfd1501930bf191701165
Author: Adam Jackson <ajax%redhat.com@localhost>
Date: Thu Sep 10 18:01:44 2020 -0400
@@ -1212,7 +1306,7 @@
Update autogen.sh to one that does objdir != srcdir.
commit 3251a5e09646f88a80b40385d2bb8e5417bdc388
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Wed Aug 10 14:07:25 2005 +0000
Don\'t lose existing CFLAGS in all the input drivers and some of the video
@@ -1233,19 +1327,19 @@
- Update modular Xorg version
commit dfe2847e4720793b4ff80d717aba31079a065392
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Wed Jul 13 21:51:06 2005 +0000
add Makefile.am
commit 8100f70d79c0d1a405eeb576898a182cef8d4c3b
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Wed Jul 13 21:50:33 2005 +0000
add Makefile.am
commit be230c6144ff1dd12b0d7acce4a2a478c0be3527
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
Date: Wed Jul 13 21:46:36 2005 +0000
Build system for vesa video driver
diff -r 36c73968f42f -r 3475e1e95778 external/mit/xf86-video-vesa/dist/Makefile.in
--- a/external/mit/xf86-video-vesa/dist/Makefile.in Sun Jan 08 21:32:50 2023 +0000
+++ b/external/mit/xf86-video-vesa/dist/Makefile.in Sun Jan 08 21:32:53 2023 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.16.1 from Makefile.am.
+# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@
-# Copyright (C) 1994-2018 Free Software Foundation, Inc.
+# Copyright (C) 1994-2021 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -155,8 +155,8 @@
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
cscope distdir distdir-am dist dist-all distcheck
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
- $(LISP)config.h.in
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
+ config.h.in
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
@@ -173,13 +173,10 @@
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
-ETAGS = etags
-CTAGS = ctags
-CSCOPE = cscope
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
- ChangeLog INSTALL compile config.guess config.sub install-sh \
- ltmain.sh missing
+ ChangeLog INSTALL README.md compile config.guess config.sub \
+ install-sh ltmain.sh missing
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
@@ -215,9 +212,11 @@
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
-DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
+DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
GZIP_ENV = --best
-DIST_TARGETS = dist-bzip2 dist-gzip
+DIST_TARGETS = dist-xz dist-gzip
+# Exists only to be overridden by the user if desired.
+AM_DISTCHECK_DVI_TARGET = dvi
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
@@ -239,8 +238,9 @@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHANGELOG_CMD = @CHANGELOG_CMD@
-CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
+CSCOPE = @CSCOPE@
+CTAGS = @CTAGS@
CWARNFLAGS = @CWARNFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
@@ -255,8 +255,10 @@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
+ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
+FILECMD = @FILECMD@
FILE_MAN_DIR = @FILE_MAN_DIR@
FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
GREP = @GREP@
@@ -359,6 +361,7 @@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
+runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
@@ -537,7 +540,6 @@
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
-
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
@@ -611,6 +613,7 @@
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
+
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__post_remove_distdir)
@@ -618,11 +621,14 @@
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__post_remove_distdir)
-
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
$(am__post_remove_distdir)
+dist-zstd: distdir
+ tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
+ $(am__post_remove_distdir)
+
dist-tarZ: distdir
@echo WARNING: "Support for distribution archives compressed with" \
"legacy program 'compress' is deprecated." >&2
@@ -665,6 +671,8 @@
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
+ *.tar.zst*) \
+ zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
esac
chmod -R a-w $(distdir)
chmod u+w $(distdir)
@@ -680,7 +688,7 @@
$(DISTCHECK_CONFIGURE_FLAGS) \
--srcdir=../.. --prefix="$$dc_install_base" \
&& $(MAKE) $(AM_MAKEFLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) dvi \
+ && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
@@ -843,7 +851,7 @@
am--refresh check check-am clean clean-cscope clean-generic \
clean-libtool cscope cscopelist-am ctags ctags-am dist \
dist-all dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar \
- dist-tarZ dist-xz dist-zip distcheck distclean \
+ dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \
distclean-generic distclean-hdr distclean-libtool \
distclean-tags distcleancheck distdir distuninstallcheck dvi \
dvi-am html html-am info info-am install install-am \
diff -r 36c73968f42f -r 3475e1e95778 external/mit/xf86-video-vesa/dist/README.md
--- a/external/mit/xf86-video-vesa/dist/README.md Sun Jan 08 21:32:50 2023 +0000
+++ b/external/mit/xf86-video-vesa/dist/README.md Sun Jan 08 21:32:53 2023 +0000
@@ -6,7 +6,7 @@
https://lists.x.org/mailman/listinfo/xorg
-The master development code repository can be found at:
+The primary development code repository can be found at:
https://gitlab.freedesktop.org/xorg/driver/xf86-video-vesa
diff -r 36c73968f42f -r 3475e1e95778 external/mit/xf86-video-vesa/dist/aclocal.m4
--- a/external/mit/xf86-video-vesa/dist/aclocal.m4 Sun Jan 08 21:32:50 2023 +0000
+++ b/external/mit/xf86-video-vesa/dist/aclocal.m4 Sun Jan 08 21:32:53 2023 +0000
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
-
-# Copyright (C) 1996-2018 Free Software Foundation, Inc.
+# generated automatically by aclocal 1.16.5 -*- Autoconf -*-
+
+# Copyright (C) 1996-2021 Free Software Foundation, Inc.
# This file is free software; the Free Software Foundation
Home |
Main Index |
Thread Index |
Old Index