summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2022-01-27Fix spelling/wording issuesHEADmasterAlan Coopersmith4-8/+8
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-01-27Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2019-07-25Version bumped to 0.7.0xf86-video-s3-0.7.0Kevin Brace1-1/+1
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
2018-12-18Eliminate unused variable compilation warningKevin Brace1-1/+0
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
2018-12-18Eliminate set but not used variable compilation warningsKevin Brace2-5/+2
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
2018-12-18Use const char for xf86GetOptValString return typeKevin Brace1-1/+1
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
2018-12-18Discontinue the use of xf86PciInfo.hKevin Brace3-3/+18
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
2018-12-07Update configure.ac bug URL for gitlab migrationAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-18Update README for gitlab migrationAlan Coopersmith3-20/+21
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>
2017-01-26autogen.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>
2017-01-26configure: Drop AM_MAINTAINER_MODEAlan Coopersmith2-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2016-09-10Remove unused BIOS size & address macrosAlan Coopersmith1-3/+0
Use of them was removed by 82bd67a255fb Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2016-03-17s3_bios.c: Simplify code for choosing between 16000 & 16000 for RefClockAlan Coopersmith1-67/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2016-03-12When checking malloc for success, it helps to use == NULL, instead of =Alan Coopersmith1-1/+1
Fixes gcc 5.3 compiler warning: s3_bios.c: In function 'find_bios_string': s3_bios.c:49:2: warning: suggest parentheses around assignment used as truth value [-Wparentheses] if (bios = NULL) ^ [Tested by compiling only, as I have no S3 hardware, but clearly no one else has tested this code since commit c41a1188ce53 in 2009, as it would be segfaulting if run.] Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-01-09Remove mibstore.hGaetan Nadon1-2/+0
As it was done in numerous other drivers. Fixes compile error. Tested-by: Trevor Woerner <trevor.woerner@linaro.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2012-08-23Fix malformed list syntax.Eric S. Raymond1-2/+2
TP without a body shouldn't really be used for an item list. Fixing this makes structural translation to DocBook possible. Signed-off-by: Eric S. Raymond <esr@thyrsus.com>
2012-07-17xf86-video-s3: bump to version 0.6.5xf86-video-s3-0.6.5Dave Airlie1-1/+1
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-07-17s3: fixup scrn/screen conversion.Dave Airlie6-10/+10
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-07-17s3: port to new X server compat APIDave Airlie6-34/+133
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-07-17s3: convert to XAA-less server world.Dave Airlie5-4/+42
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-05-12xf86-video-s3 0.6.4xf86-video-s3-0.6.4Julien Cristau1-1/+1
2012-05-12Include unistd.h for usleepJulien Cristau1-0/+2
Signed-off-by: Julien Cristau <jcristau@debian.org>
2012-05-12Use standard allocation functionsJulien Cristau4-21/+16
Signed-off-by: Julien Cristau <jcristau@debian.org>
2011-12-28If it couldn't allocate memory, don't attempt to write a bunch of valuesAlan Coopersmith1-0/+2
to the NULL pointer before returning it, but just pass the NULL along right away. Resolves parfait warnings of the form: Error: Null pointer dereference (CWE 476) Write to null pointer 'adapt' at line 248 of driver/xf86-video-s3/src/s3_video.c in function 'S3SetupImageVideoOverlay'. Function 'S3AllocAdaptor' may return constant 'NULL' at line 218, called at line 246. Null pointer introduced at line 218 in function 'S3AllocAdaptor'. repeated for every line writing to the adapt pointer in the function. [ This bug was found by the Parfait 0.4.2 bug checking tool. For more information see http://labs.oracle.com/projects/parfait/ ] Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-12-19Fix for new vgahw ABIAdam Jackson1-0/+1
Signed-off-by: Adam Jackson <ajax@redhat.com>
2011-12-19Fall back to shadowfb if XAA is unavailableAdam Jackson1-5/+9
Signed-off-by: Adam Jackson <ajax@redhat.com>
2011-02-28Add missing call to vbeFree (bug 4417)Matt Turner2-2/+3
Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Matt Turner <mattst88@gmail.com>
2010-07-23config: add AM_PROG_CC_C_O for per-target compilation flagsGaetan Nadon1-0/+3
The use of per-target compilation flags with C sources requires that the macro AM_PROG_CC_C_O be called from configure.ac If the C compiler does not accept the -c and -o options simultaneously, define NO_MINUS_C_MINUS_O. This macro actually tests both the compiler found by AC_PROG_CC, and, if different, the first cc in the path. The test fails if one fails. This macro was created for GNU Make to choose the default C compilation rule. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-22config: add comments for main statementsGaetan Nadon1-6/+6
2010-07-21config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILESGaetan Nadon1-4/+5
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21config: replace deprecated AC_HELP_STRING with AS_HELP_STRINGGaetan Nadon1-1/+1
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-21config: complete AC_INIT m4 quotingGaetan Nadon1-2/+2
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: remove unrequired AC_SUBST([XORG_CFLAGS])Gaetan Nadon1-1/+0
This macro is called by PKG_CHECK_MODULES Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: remove unrequired AC_HEADER_STDCGaetan Nadon1-2/+0
Autoconf says: "This macro is obsolescent, as current systems have conforming header files. New programs need not use this macro". Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: remove AC_PROG_CC as it overrides AC_PROG_C_C99Gaetan Nadon1-1/+0
XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls AC_PROG_C_C99. This sets gcc with -std=gnu99. If AC_PROG_CC macro is called afterwards, it resets CC to gcc. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-20config: 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>
2010-07-20config: upgrade to util-macros 1.8 for additional man page supportGaetan Nadon2-21/+7
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages.
2010-06-13COPYING: replace stub file with actual Copyright notices.Gaetan Nadon1-8/+66
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-01-29config: remove dead LINUXDOC macro usageGaetan Nadon1-2/+0
This module does not generate LINUXDOC documentation. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-01-15Update Sun license notices to current X.Org standard formAlan Coopersmith1-22/+19
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-12-30configure.ac: remove unused sdkdir=$(pkg-config...) statementGaetan Nadon1-1/+0
The sdkdir variable isn't use, so remove the statement. Acked-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-11-23Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28Remove .cvsignore #23776Gaetan Nadon1-6/+0
X.Org no longer use CVS
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon1-1/+0
Automake 'foreign' option is specified in configure.ac. Remove from Makefile.am
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon2-3/+6
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-26Several driver modules do not have a ChangeLog target in Makefile.am #23814Gaetan Nadon3-136/+13
The git generated ChangeLog replaces the hand written one. Update configure.ac to xorg-macros level 1.3. Use XORG_DEFAULT_OPTIONS which replaces four XORG_* macros Update Makefile.am to add ChangeLog target if missing Remove ChangeLog from EXTRA_DIST or *CLEAN variables This is a pre-req for the INSTALL_CMD