109 lines
2.6 KiB
Plaintext
109 lines
2.6 KiB
Plaintext
$NetBSD: patch-configs_autoconf.in,v 1.1 2015/04/03 01:00:52 tnn Exp $
|
|
|
|
Patch from FDO git to bring the package up to 8.0.1.
|
|
|
|
--- configs/autoconf.in.orig 2015-04-02 23:45:08.000000000 +0000
|
|
+++ configs/autoconf.in
|
|
@@ -0,0 +1,101 @@
|
|
+# Autoconf configuration
|
|
+
|
|
+# Pull in the defaults
|
|
+include $(TOP)/configs/default
|
|
+
|
|
+# This is generated by configure
|
|
+CONFIG_NAME = autoconf
|
|
+
|
|
+# Compiler and flags
|
|
+CC = @CC@
|
|
+CXX = @CXX@
|
|
+OPT_FLAGS = @OPT_FLAGS@
|
|
+ARCH_FLAGS = @ARCH_FLAGS@
|
|
+PIC_FLAGS = @PIC_FLAGS@
|
|
+DEFINES = @DEFINES@
|
|
+API_DEFINES = @API_DEFINES@
|
|
+SHARED_GLAPI = @SHARED_GLAPI@
|
|
+CFLAGS_NOVISIBILITY = @CPPFLAGS@ @CFLAGS@ \
|
|
+ $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES)
|
|
+CXXFLAGS_NOVISIBILITY = @CPPFLAGS@ @CXXFLAGS@ \
|
|
+ $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES)
|
|
+CFLAGS = $(CFLAGS_NOVISIBILITY) @VISIBILITY_CFLAGS@
|
|
+CXXFLAGS = $(CXXFLAGS_NOVISIBILITY) @VISIBILITY_CXXFLAGS@
|
|
+LDFLAGS = @LDFLAGS@
|
|
+EXTRA_LIB_PATH = @EXTRA_LIB_PATH@
|
|
+X11_LIBS = @X11_LIBS@
|
|
+X11_CFLAGS = @X11_CFLAGS@
|
|
+GLUT_CFLAGS = @GLUT_CFLAGS@
|
|
+
|
|
+# dlopen
|
|
+DLOPEN_LIBS = @DLOPEN_LIBS@
|
|
+
|
|
+# Source selection
|
|
+
|
|
+# Misc tools and flags
|
|
+MAKE = @MAKE@
|
|
+SHELL = @SHELL@
|
|
+MKLIB_OPTIONS = @MKLIB_OPTIONS@
|
|
+MKDEP = @MKDEP@
|
|
+MKDEP_OPTIONS = @MKDEP_OPTIONS@
|
|
+INSTALL = @INSTALL@
|
|
+
|
|
+# Python and flags (generally only needed by the developers)
|
|
+PYTHON2 = @PYTHON2@
|
|
+
|
|
+# Flex and Bison for GLSL compiler
|
|
+FLEX = @FLEX@
|
|
+BISON = @BISON@
|
|
+
|
|
+# Library names (base name)
|
|
+GL_LIB = GL
|
|
+GLU_LIB = GLU
|
|
+GLUT_LIB = glut
|
|
+GLAPI_LIB = glapi
|
|
+
|
|
+# Library names (actual file names)
|
|
+GL_LIB_NAME = @GL_LIB_NAME@
|
|
+GLU_LIB_NAME = @GLU_LIB_NAME@
|
|
+GLUT_LIB_NAME = @GLUT_LIB_NAME@
|
|
+GLAPI_LIB_NAME = @GLAPI_LIB_NAME@
|
|
+
|
|
+# Globs used to install the lib and all symlinks
|
|
+GL_LIB_GLOB = @GL_LIB_GLOB@
|
|
+GLU_LIB_GLOB = @GLU_LIB_GLOB@
|
|
+GLUT_LIB_GLOB = @GLUT_LIB_GLOB@
|
|
+GLAPI_LIB_GLOB = @GLAPI_LIB_GLOB@
|
|
+
|
|
+# Directories to build
|
|
+LIB_DIR = @LIB_DIR@
|
|
+SRC_DIRS = @SRC_DIRS@
|
|
+GLU_DIRS = @GLU_DIRS@
|
|
+
|
|
+# Dependencies
|
|
+X11_INCLUDES = @X11_INCLUDES@
|
|
+
|
|
+# Library/program dependencies
|
|
+GL_LIB_DEPS = $(EXTRA_LIB_PATH) @GL_LIB_DEPS@
|
|
+
|
|
+# Autoconf directories
|
|
+prefix = @prefix@
|
|
+exec_prefix = @exec_prefix@
|
|
+libdir = @libdir@
|
|
+includedir = @includedir@
|
|
+
|
|
+# Installation directories (for make install)
|
|
+INSTALL_DIR = $(prefix)
|
|
+INSTALL_LIB_DIR = $(libdir)
|
|
+INSTALL_INC_DIR = $(includedir)
|
|
+
|
|
+# pkg-config substitutions
|
|
+GL_PC_REQ_PRIV = @GL_PC_REQ_PRIV@
|
|
+GL_PC_LIB_PRIV = @GL_PC_LIB_PRIV@
|
|
+GL_PC_CFLAGS = @GL_PC_CFLAGS@
|
|
+GLU_PC_REQ = @GLU_PC_REQ@
|
|
+GLU_PC_REQ_PRIV = @GLU_PC_REQ_PRIV@
|
|
+GLU_PC_LIB_PRIV = @GLU_PC_LIB_PRIV@
|
|
+GLU_PC_CFLAGS = @GLU_PC_CFLAGS@
|
|
+GLUT_PC_REQ_PRIV = @GLUT_PC_REQ_PRIV@
|
|
+GLUT_PC_LIB_PRIV = @GLUT_PC_LIB_PRIV@
|
|
+GLUT_PC_CFLAGS = @GLUT_PC_CFLAGS@
|
|
+
|