From afee8048bacd3a16418dcbf52185204a06786c4e Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 21 Sep 2013 14:56:54 -0700 Subject: [PATCH] Remove obsolete glapi.def file The glapi.def file was originally created as a simple stub during the development of the GLAZE_API ifunc-creating macros. This file has been obsolete since commit c06f006c64765 which generates a complete gl.def file from the XML description of the OpenGL interface. It's just that we neglected to delete the glapi.def file at that time. We fix that by actually removing it now. --- Makefile | 2 +- glapi.def | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 glapi.def diff --git a/Makefile b/Makefile index ab5683a..0984ce3 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ $(LIBGLAZE_32_LIBNAME): glaze.c $(LIBGLAZE_LIBNAME): glaze.c $(CC) $(GLAZE_CFLAGS) -m64 -fPIC -shared -Wl,-Bsymbolic,-soname=$(LIBGLAZE_SONAME) -ldl -ltalloc -o $@ $< -$(LIB64_DIR)/libGL.so.1: glaze-gl.c glapi.def +$(LIB64_DIR)/libGL.so.1: glaze-gl.c mkdir -p $(LIB64_DIR) $(CC) $(GLAZE_CFLAGS) -DGLAZE_BITS=64 -m64 -fPIC -shared -Wl,-Bsymbolic -o $@ $< diff --git a/glapi.def b/glapi.def deleted file mode 100644 index 97372a2..0000000 --- a/glapi.def +++ /dev/null @@ -1 +0,0 @@ -GLAZE_API(glClear) -- 2.43.0