summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-12-03xvinfo 1.1.5HEADxvinfo-1.1.5masterAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-13Handle -Wdouble-promotion warning from clangAlan Coopersmith1-2/+2
xvinfo.c:217:73: warning: implicit conversion increases floating-point precision: 'float' to 'double' [-Wdouble-promotion] (float) encodings[n].rate.numerator / ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-13Variable scope reductionAlan Coopersmith1-7/+13
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-13gitlab CI: stop requiring Signed-off-by in commitsAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-07Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-07gitlab CI: add a basic build testAlan Coopersmith1-0/+98
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2019-02-19xvinfo 1.1.4xvinfo-1.1.4Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-21Update configure.ac bug URL for gitlab migrationAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-16Update README for gitlab migrationAlan Coopersmith3-27/+19
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-09-22Fix sign mismatch warnings for loop index comparisonsAlan Coopersmith1-10/+9
xvinfo.c: In function ‘main’: xvinfo.c:99:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (j = 0; j < nadaptors; j++) { ^ xvinfo.c:129:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (k = 0; k < ainfo[j].num_formats; k++, format++) { ^ xvinfo.c:198:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (n = 0; n < nencode; n++) { ^ xvinfo.c:207:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (n = 0; n < nencode; n++) { ^ xvinfo.c:222:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (n = 0; n < nencode; n++) { ^ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-09-22Make xvinfo not exit with error in normal operationAlan Coopersmith1-1/+1
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=74227 aka https://gitlab.freedesktop.org/xorg/app/xvinfo/issues/1 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-03-24Properly handle failures of Xv query functions.Tobias Stoeckmann1-3/+15
If one of the query functions fail, xvinfo does not properly handle these cases and will most likely run into a segmentation fault due to accessing uninitialized variables (which includes pointers). Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2017-01-26autogen: add default patch prefixMihail Konev1-0/+3
Signed-off-by: Mihail Konev <k.mvc@ya.ru>
2017-01-26autogen.sh: use quoted string variablesEmil Velikov1-4/+4
Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2017-01-26autogen.sh: use exec instead of waiting for configure to finishPeter Hutterer1-1/+1
Syncs the invocation of configure with the one from the server. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
2015-04-30xvinfo 1.1.3xvinfo-1.1.3Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-03Print which option was in error along with usage messageAlan Coopersmith2-5/+12
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-03autogen.sh: Honor NOCONFIGURE=1Alan Coopersmith1-2/+3
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-03configure: Drop AM_MAINTAINER_MODEAlan Coopersmith2-2/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-10-18Make ImageEncodings unsignedAlan Coopersmith1-1/+1
Starts at 0 and increments to count encodings - should never go negative. Fixes clang warnings: xvinfo.c:184:31: warning: implicit conversion changes signedness: 'int' to 'unsigned int' [-Wsign-conversion] if (nencode - ImageEncodings) { ~ ^~~~~~~~~~~~~~ xvinfo.c:186:39: warning: implicit conversion changes signedness: 'int' to 'unsigned int' [-Wsign-conversion] nencode - ImageEncodings); ~ ^~~~~~~~~~~~~~ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-10-18Convert sprintf call to use snprintfAlan Coopersmith1-3/+4
Should be impossible to overflow with previous sprintf code, but still safer to avoid bugs if something changes in the future. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-07-07Use progname for error messages as wellAlan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-07-07Use real program name for help messageStéphane Aulery1-1/+5
Signed-off-by: Stéphane Aulery <lkppo@free.fr> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-02-10xvinfo 1.1.2xvinfo-1.1.2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-13Add -version optionAlan Coopersmith2-1/+12
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-13add explicit braces to clarify which if the else goes withAlan Coopersmith1-1/+2
Suggested by clang: xvinfo.c:125:25: warning: add explicit braces to avoid dangling else [-Wdangling-else] else ^ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-13Convert from haphazard indenting to X.Org common styleAlan Coopersmith1-249/+256
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-13Add _X_NORETURN to PrintUsage to clear gcc/clang warningsAlan Coopersmith2-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-13config: Add missing AC_CONFIG_SRCDIRAlan Coopersmith1-3/+5
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-01-19config: move man pages into their own directoryGaetan Nadon4-15/+17
Use services provided by XORG_MANPAGE_SECTIONS. Use standard Makefile for man pages. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-13man: remove trailing spaces and tabsGaetan Nadon1-2/+2
Using s/[ \t]*$// Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
This silences an Autoconf warning
2010-11-06xvinfo 1.1.1xvinfo-1.1.1Alan Coopersmith1-1/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-06Purge cvs tags.Jesse Adkins2-5/+0
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-26config: Remove unnecessary calls from configure.acAlan Coopersmith1-5/+0
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-26config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-22/+4
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS Enables use of platform appropriate version of sed. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-26config: update AC_PREREQ statement to 2.60Gaetan Nadon1-1/+1
Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-11-26Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon4-2/+5
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet.
2009-10-26Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon1-2/+1
ChangeLog filename is known to Automake and requires no further coding in the makefile.
2009-10-22.gitignore: use common defaults with custom section # 24239Gaetan Nadon1-11/+66
Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults.
2009-10-21This is not a GNU project, so declare it foreign.Jeremy Huddleston1-1/+1
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: > > I noticed an INSTALL file in xlsclients and libXvMC today, and it > > was quite annoying to work around since 'autoreconf -fvi' replaces > > it and git wants to commit it. Should these files even be in git? > > Can I nuke them for the betterment of humanity and since they get > > created by autoreconf anyways? > > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation of the INSTALL file. It is also part of the 24206 solution. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-10-16xvinfo 1.1.0xvinfo-1.1.0Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-16Add XFree86 generic copyright/license notice to COPYINGAlan Coopersmith1-8/+22
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-16Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith2-11/+9
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-01Add README with pointers to mailing lists, bugzilla, & gitAlan Coopersmith1-0/+26
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-08-03added -short optionArthur HUILLET2-37/+59
2009-01-26Correct make distcheck.Paulo Cesar Pereira de Andrade3-2/+11
2007-08-16Version bump: 1.0.2xvinfo-1.0.2Alan Coopersmith1-1/+1
2007-08-16Replace static ChangeLog with dist-hook to generate from git logAlan Coopersmith2-26/+9