diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-04-24 19:49:05 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2010-04-24 19:49:05 +0000 |
commit | 98c96cd368d69c2e1e970aa162fd52297a408c34 (patch) | |
tree | 8faccf704bbc335ea4c74ff2175b610c9791f177 /proto/compositeproto/configure.ac | |
parent | cb48a5f9bf0e453c6d7f9f8de35f5b3a68922f1e (diff) |
Update to compositeproto 0.4.1
Diffstat (limited to 'proto/compositeproto/configure.ac')
-rw-r--r-- | proto/compositeproto/configure.ac | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/proto/compositeproto/configure.ac b/proto/compositeproto/configure.ac index 9af031e45..0794f25f3 100644 --- a/proto/compositeproto/configure.ac +++ b/proto/compositeproto/configure.ac @@ -1,8 +1,39 @@ +dnl +dnl $Id: configure.ac,v 1.2 2010/04/24 19:49:04 matthieu 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([CompositeProto], [0.3.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) +AC_INIT([CompositeProto], [0.4.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) +AM_MAINTAINER_MODE + +# Require xorg-macros: XORG_DEFAULT_OPTIONS +m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.3 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.3) -XORG_RELEASE_VERSION +XORG_DEFAULT_OPTIONS AC_OUTPUT([Makefile compositeproto.pc]) + |