import glproto version 1.4.8

This commit is contained in:
matthieu 2007-03-03 11:22:41 +00:00
parent 8d298bc0f7
commit c4b996b833
5 changed files with 42 additions and 15 deletions

View File

@ -1,3 +1,7 @@
2006-06-28 Kristian Høgsberg <krh@redhat.com>
* glxproto.h (__GLX_NUMBER_ERRORS): There are 13 GLX errors.
2006-04-30 Adam Jackson <ajax@freedesktop.org>
* glxtokens.h:

View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for GLProto 1.4.7.
# Generated by GNU Autoconf 2.59 for GLProto 1.4.8.
#
# Report bugs to <https://bugs.freedesktop.org/enter_bug.cgi?product=xorg>.
#
@ -269,8 +269,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='GLProto'
PACKAGE_TARNAME='glproto'
PACKAGE_VERSION='1.4.7'
PACKAGE_STRING='GLProto 1.4.7'
PACKAGE_VERSION='1.4.8'
PACKAGE_STRING='GLProto 1.4.8'
PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg'
ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar LIBOBJS LTLIBOBJS'
@ -722,7 +722,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures GLProto 1.4.7 to adapt to many kinds of systems.
\`configure' configures GLProto 1.4.8 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -784,7 +784,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of GLProto 1.4.7:";;
short | recursive ) echo "Configuration of GLProto 1.4.8:";;
esac
cat <<\_ACEOF
@ -890,7 +890,7 @@ fi
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
GLProto configure 1.4.7
GLProto configure 1.4.8
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@ -904,7 +904,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by GLProto $as_me 1.4.7, which was
It was created by GLProto $as_me 1.4.8, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@ -1547,7 +1547,7 @@ fi
# Define the identity of the package.
PACKAGE='glproto'
VERSION='1.4.7'
VERSION='1.4.8'
cat >>confdefs.h <<_ACEOF
@ -1694,6 +1694,29 @@ fi;
echo "$as_me: Building with package name set to $PACKAGE" >&6;}
fi
cat >>confdefs.h <<_ACEOF
#define PACKAGE_VERSION_MAJOR `echo $PACKAGE_VERSION | cut -d . -f 1`
_ACEOF
PVM=`echo $PACKAGE_VERSION | cut -d . -f 2`
if test "x$PVM" = "x"; then
PVM="0"
fi
cat >>confdefs.h <<_ACEOF
#define PACKAGE_VERSION_MINOR $PVM
_ACEOF
PVP=`echo $PACKAGE_VERSION | cut -d . -f 3`
if test "x$PVP" = "x"; then
PVP="0"
fi
cat >>confdefs.h <<_ACEOF
#define PACKAGE_VERSION_PATCHLEVEL $PVP
_ACEOF
ac_config_files="$ac_config_files Makefile glproto.pc"
cat >confcache <<\_ACEOF
@ -2089,7 +2112,7 @@ _ASBOX
} >&5
cat >&5 <<_CSEOF
This file was extended by GLProto $as_me 1.4.7, which was
This file was extended by GLProto $as_me 1.4.8, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -2144,7 +2167,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
GLProto config.status 1.4.7
GLProto config.status 1.4.8
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"

View File

@ -1,5 +1,5 @@
AC_PREREQ([2.57])
AC_INIT([GLProto], [1.4.7], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
AC_INIT([GLProto], [1.4.8], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg])
AM_INIT_AUTOMAKE([foreign dist-bzip2])
XORG_RELEASE_VERSION

View File

@ -1,7 +1,7 @@
#ifndef _GLX_glxmd_h_
#define _GLX_glxmd_h_
/* $XFree86: xc/include/GL/glxmd.h,v 1.2 1999/06/14 07:23:28 dawes Exp $ */
/* $XFree86: xc/include/GL/glxmd.h,v 1.3 2001/03/21 15:51:38 dawes Exp $ */
/*
** License Applicability. Except to the extent portions of this file are
** made subject to an alternative license as permitted in the SGI Free

View File

@ -57,7 +57,7 @@
#define GLXBadCurrentDrawable 11
#define GLXBadWindow 12
#define __GLX_NUMBER_ERRORS 12
#define __GLX_NUMBER_ERRORS 13
/*
** Events.
@ -2369,6 +2369,8 @@ typedef struct {
/* Opcodes for GLX vendor private commands */
#define X_GLXvop_QueryContextInfoEXT 1024
#define X_GLXvop_BindTexImageEXT 1330
#define X_GLXvop_ReleaseTexImageEXT 1331
#define X_GLXvop_SwapIntervalSGI 65536
#define X_GLXvop_MakeCurrentReadSGI 65537
#define X_GLXvop_CreateGLXVideoSourceSGIX 65538
@ -2387,8 +2389,6 @@ typedef struct {
#define X_GLXvop_QueryHyperpipeConfigSGIX 65551
#define X_GLXvop_HyperpipeConfigSGIX 65552
#define X_GLXvop_DestroyHyperpipeConfigSGIX 65553
#define X_GLXvop_BindTexImageEXT 5152
#define X_GLXvop_ReleaseTexImageEXT 5153
/* ARB extension opcodes */