This commit is contained in:
Keith Packard 2003-10-09 01:48:22 +00:00
parent a7b519bf17
commit 0c9e4c7af3
11 changed files with 142 additions and 0 deletions

11
.cvsignore Normal file
View file

@ -0,0 +1,11 @@
Makefile
Makefile.in
aclocal.m4
autom4te.cache
config.log
config.status
configure
fixesext.pc
install-sh
missing
mkinstalldirs

0
AUTHORS Normal file
View file

22
COPYING Normal file
View file

@ -0,0 +1,22 @@
$Id: COPYING,v 1.1 2003-10-09 01:48:22 keithp Exp $
Copyright © 2001,2003 Keith Packard
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation, and that the name of Keith Packard not be used in
advertising or publicity pertaining to distribution of the software without
specific, written prior permission. Keith Packard makes no
representations about the suitability of this software for any purpose. It
is provided "as is" without express or implied warranty.
KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

9
ChangeLog Normal file
View file

@ -0,0 +1,9 @@
2003-09-16 Anders Carlsson <andersca@gnome.org>
* configure.ac:
* randr-uninstalled.pc.in:
Add uninstalled pc file.
2003-04-21 Keith Packard <keithp@keithp.com>
+ Added ChangeLog

8
INSTALL Normal file
View file

@ -0,0 +1,8 @@
Render is built with the traditional configure script:
$ ./configure --prefix=/usr/X11R6
This should generate valid Makefiles, then:
$ make
$ make install

37
Makefile.am Normal file
View file

@ -0,0 +1,37 @@
#
# $Id: Makefile.am,v 1.1 2003-10-09 01:48:22 keithp Exp $
#
# Copyright © 2003 Keith Packard, Noah Levitt
#
# Permission to use, copy, modify, distribute, and sell this software and its
# documentation for any purpose is hereby granted without fee, provided that
# the above copyright notice appear in all copies and that both that
# copyright notice and this permission notice appear in supporting
# documentation, and that the name of Keith Packard not be used in
# advertising or publicity pertaining to distribution of the software without
# specific, written prior permission. Keith Packard makes no
# representations about the suitability of this software for any purpose. It
# is provided "as is" without express or implied warranty.
#
# KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
# INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
# EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
# CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
fixesextincludedir = $(includedir)/X11/extensions
fixesextinclude_HEADERS = \
xfixesproto.h \
xfixeswire.h
fixesextdocdir = $(datadir)/doc/fixesext
fixesextdoc_DATA = protocol
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = fixesext.pc
EXTRA_DIST = autogen.sh fixesext.pc.in $(fixesextdoc_DATA)

0
NEWS Normal file
View file

10
README Normal file
View file

@ -0,0 +1,10 @@
RandR
X RandR Extension
Version 1.0
2002-10-4
This package contains header files and documentation for the X RandR
extension. Library and server implementations are separate.
Keith Packard
keithp@keithp.com

3
autogen.sh Executable file
View file

@ -0,0 +1,3 @@
#! /bin/sh
autoreconf -v --install || exit 1
./configure --enable-maintainer-mode "$@"

33
configure.ac Normal file
View file

@ -0,0 +1,33 @@
dnl
dnl $Id: configure.ac,v 1.1 2003-10-09 01:48:22 keithp Exp $
dnl
dnl Copyright © 2003 Keith Packard, Noah Levitt
dnl
dnl Permission to use, copy, modify, distribute, and sell this software and its
dnl documentation for any purpose is hereby granted without fee, provided that
dnl the above copyright notice appear in all copies and that both that
dnl copyright notice and this permission notice appear in supporting
dnl documentation, and that the name of Keith Packard not be used in
dnl advertising or publicity pertaining to distribution of the software without
dnl specific, written prior permission. Keith Packard makes no
dnl representations about the suitability of this software for any purpose. It
dnl is provided "as is" without express or implied warranty.
dnl
dnl KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
dnl EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
dnl PERFORMANCE OF THIS SOFTWARE.
dnl
dnl Process this file with autoconf to create configure.
AC_PREREQ([2.57])
AC_INIT([fixesext], [1.0], [keithp@keithp.com], fixesext)
AM_INIT_AUTOMAKE([dist-bzip2])
AM_MAINTAINER_MODE
AC_OUTPUT([Makefile
fixesext.pc])

9
fixesext.pc.in Normal file
View file

@ -0,0 +1,9 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: RandR
Description: RandR extension headers
Version: @PACKAGE_VERSION@
Cflags: -I${includedir}