Skip to content

Commit

Permalink
Merge pull request NVIDIA#10 from bnguyen0/master
Browse files Browse the repository at this point in the history
Various libglvnd fixes/cleanups, and an ABI update
  • Loading branch information
brnguyen2 committed Nov 27, 2013
2 parents acb5f98 + 39d839d commit 46e8cc9
Show file tree
Hide file tree
Showing 92 changed files with 687 additions and 12,744 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
SUBDIRS = src tests
noinst_HEADERS = include
ACLOCAL_AMFLAGS = -I m4
10 changes: 1 addition & 9 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dnl configure.ac
dnl Process this file with autoconf to produce a configure script.

AC_PREREQ([2.68])
AC_PREREQ([2.63])
AC_INIT([libglvnd], [0.0.0], [[email protected]])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADERS([config.h])
Expand Down Expand Up @@ -99,14 +99,6 @@ fi
dnl Various conditionals.
AM_CONDITIONAL([GCC], [test x$GCC = xyes ])

AM_CONDITIONAL(HAVE_VND_GLAPI, true)
dnl HACK FIXME TODO
AM_CONDITIONAL(HAVE_SHARED_GLAPI, false)
AM_CONDITIONAL(HAVE_OPENGL, false)
AM_CONDITIONAL(HAVE_OPENGL_ES1, false)
AM_CONDITIONAL(HAVE_OPENGL_ES2, false)
AM_CONDITIONAL(HAVE_OPENVG, false)

dnl
dnl mapi top-relative paths: defined here so mapi can be used elsewhere
dnl
Expand Down
3 changes: 1 addition & 2 deletions include/glheader.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ extern "C" {


/**
* GL_FIXED is defined in glext.h version 64 but these typedefs aren't (yet).
* GL_FIXED is defined in glext.h version 64 but this typedef isn't (yet).
*/
typedef int GLfixed;
typedef int GLclampx;


Expand Down
2 changes: 1 addition & 1 deletion src/GL/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ glapitemp.h : $(GLAPI)/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps)
libGL_la_CFLAGS = \
-I$(top_srcdir)/include

libGL_la_LDFLAGS = -shared -Wl,--auxiliary=libGLdispatch.so.0 -Wl,--auxiliary=libGLX.so.0
libGL_la_LDFLAGS = -shared -Wl,--auxiliary=libGLdispatch.so.0 -Wl,--auxiliary=libGLX.so.0 -version-info 1

libGL_la_LIBADD = ../GLX/libGLX.la ../GLdispatch/libGLdispatch.la
4 changes: 1 addition & 3 deletions src/GLX/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ noinst_HEADERS = \
libglxabi.h \
libglxabipriv.h \
libglxcurrent.h \
libglxgldispatch.h \
libglxmapping.h \
libglxnoop.h \
libglxnoopdefs.h \
Expand Down Expand Up @@ -71,5 +70,4 @@ libGLX_la_LDFLAGS = -shared
libGLX_la_SOURCES = \
libglx.c \
libglxmapping.c \
libglxnoop.c \
libglxgldispatch.c
libglxnoop.c
Loading

0 comments on commit 46e8cc9

Please sign in to comment.