/usr/share/aclocal/ax_check_glut.m4 is in autoconf-archive 20170928-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | # ===========================================================================
# https://www.gnu.org/software/autoconf-archive/ax_check_glut.html
# ===========================================================================
#
# SYNOPSIS
#
# AX_CHECK_GLUT([ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND])
#
# DESCRIPTION
#
# Checks for GLUT. If a valid GLUT implementation is found, the configure
# script would export the C preprocessor symbol "HAVE_GLUT=1".
#
# If either a valid GLUT header or library was not found, by default the
# configure script would exit on error. This behavior can be overwritten
# by providing a custom "ACTION-IF-NOT-FOUND" hook.
#
# If the header, library was found, and been tested for compiling and
# linking the configuration would export the required compiler flags to
# "GLUT_CFLAGS" and "GLUT_LIBS" environment variables. These two variables
# can also be overwritten by defining the environment variables before
# executing the configure program. If it was predefined, configure would
# not try to overwrite it, but it would still perform the compile and link
# test. Only when the tests succeeded does the configure script to export
# "HAVE_GLUT=1" and to run "ACTION-IF-FOUND" hook.
#
# If user didn't specify the "ACTION-IF-FOUND" hook, the configuration
# would prepend "GLUT_CFLAGS" and "GLUT_LIBS" to "CFLAGS" and "LIBS", like
# many other autoconf macros do.
#
# If the header "GL/glut.h" is found, "HAVE_GL_GLUT_H" is defined. If the
# header "GLUT/glut.h" is found, HAVE_GLUT_GLUT_H is defined.
#
# You should use something like this in your headers:
#
# # if HAVE_WINDOWS_H && defined(_WIN32)
# # include <windows.h>
# # endif
# # if defined(HAVE_GL_GLUT_H)
# # include <GL/glut.h>
# # elif defined(HAVE_GLUT_GLUT_H)
# # include <GLUT/glut.h>
# # else
# # error no glut.h
# # endif
#
# On the OSX platform, you can use the option --with-xquartz-gl to use
# X11/Xquartz GLUT implementation instead of the system built in GLUT
# framework.
#
# LICENSE
#
# Copyright (c) 2009 Braden McDaniel <braden@endoframe.com>
# Copyright (c) 2013 Bastien Roucaries <roucaries.bastien+autoconf@gmail.com>
# Copyright (c) 2016 Felix Chern <idryman@gmail.com>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
#
# As a special exception, the respective Autoconf Macro's copyright owner
# gives unlimited permission to copy, distribute and modify the configure
# scripts that are the output of Autoconf when processing the Macro. You
# need not follow the terms of the GNU General Public License when using
# or distributing such scripts, even though portions of the text of the
# Macro appear in them. The GNU General Public License (GPL) does govern
# all other use of the material that constitutes the Autoconf Macro.
#
# This special exception to the GPL applies to versions of the Autoconf
# Macro released by the Autoconf Archive. When you make and distribute a
# modified version of the Autoconf Macro, you may extend this special
# exception to the GPL to apply to your modified version as well.
#serial 17
AC_DEFUN([_AX_CHECK_GLUT_SAVE_FLAGS], [
AX_SAVE_FLAGS_WITH_PREFIX([GLUT],[$1]) dnl defined in ax_check_gl
AC_LANG_PUSH([C])
])
AC_DEFUN([_AX_CHECK_GLUT_RESTORE_FLAGS], [
AX_RESTORE_FLAGS_WITH_PREFIX([GLUT],[$1]) dnl defined in ax_check_gl
AC_LANG_POP([C])
])
dnl Default include : add windows.h
dnl see http://www.opengl.org/wiki/Platform_specifics:_Windows
dnl (acceded 20120801)
AC_DEFUN([_AX_CHECK_GLUT_INCLUDES_DEFAULT],dnl
[
AC_INCLUDES_DEFAULT
[
# if defined(HAVE_WINDOWS_H) && defined(_WIN32)
# include <windows.h>
# endif
]
])
m4_define([_AX_CHECK_GLUT_PROGRAM],
[AC_LANG_PROGRAM([[
# if HAVE_WINDOWS_H && defined(_WIN32)
# include <windows.h>
# endif
# ifdef HAVE_GL_GLUT_H
# include <GL/glut.h>
# elif defined(HAVE_GLUT_GLUT_H)
# include <GLUT/glut.h>
# else
# error no glut.h
# endif]],
[[glutMainLoop()]])])
# _AX_CHECK_GLUT_MANUAL_LIBS_GENERIC(LIST-OF-LIBS)
# ------------------------------------------------
# Searches libraries provided in $1, and export variable
# $ax_check_glut_lib_glut
AC_DEFUN([_AX_CHECK_GLUT_MANUAL_LIBS_GENERIC],
[
_AX_CHECK_GLUT_SAVE_FLAGS([[CFLAGS],[LIBS]])
AC_SEARCH_LIBS([glutMainLoop],[$1],
[GLUT_LIBS="${GLUT_LIBS:-$ac_cv_search_glutMainLoop}"])
_AX_CHECK_GLUT_RESTORE_FLAGS([[CFLAGS],[LIBS]])
])
# Wrapper macro to check GLUT header
AC_DEFUN([_AX_CHECK_GLUT_HEADER],[
_AX_CHECK_GLUT_SAVE_FLAGS([CFLAGS])
AC_CHECK_HEADERS([$1],
[ax_check_glut_have_headers=yes])
_AX_CHECK_GLUT_RESTORE_FLAGS([CFLAGS])
])
# AX_CHECK_GLUT_LIB([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
# ---------------------------------------------------------
# Checks GLUT headers and library and provides hooks for success and failures.
AC_DEFUN([AX_CHECK_GLUT],
[AC_REQUIRE([AC_CANONICAL_HOST])
AC_REQUIRE([_WITH_XQUARTZ_GL])
AC_ARG_VAR([GLUT_CFLAGS],[C compiler flags for GLUT, overriding configure script defaults])
AC_ARG_VAR([GLUT_LIBS],[Linker flags for GLUT, overriding configure script defaults])
AS_CASE([${host}],
[*-darwin*],[AS_IF([test "x$with_xquartz_gl" != "xno"],
[GLUT_LIBS="${GLUT_LIBS:--lGLUT}"],
[GLUT_LIBS="${GLUT_LIBS:--framework GLUT}"])],
[*-cygwin*|*-mingw*],[
_AX_CHECK_GLUT_MANUAL_LIBS_GENERIC([glut32 glut])
AC_CHECK_HEADERS([windows.h])
],
[_AX_CHECK_GLUT_MANUAL_LIBS_GENERIC([glut])
]) dnl host specific checks
dnl checks header
AS_CASE([${host}],
[*-darwin*],[AS_IF([test "x$with_xquartz_gl" = "xno"],
[_AX_CHECK_GLUT_HEADER([GLUT/glut.h])],
[_AX_CHECK_GLUT_HEADER([GL/glut.h])]
)],
[_AX_CHECK_GLUT_HEADER([GL/glut.h])])
dnl compile
AS_IF([test "X$ax_check_glut_have_headers" = "Xyes"],
[AC_CACHE_CHECK([for compiling a minimal GLUT program],
[ax_cv_check_glut_compile],
[_AX_CHECK_GLUT_SAVE_FLAGS([CFLAGS])
AC_COMPILE_IFELSE([_AX_CHECK_GLUT_PROGRAM],
[ax_cv_check_glut_compile="yes"],
[ax_cv_check_glut_compile="no"])
_AX_CHECK_GLUT_RESTORE_FLAGS([CFLAGS])
])
])
dnl link
AS_IF([test "X$ax_cv_check_glut_compile" = "Xyes"],
[AC_CACHE_CHECK([for linking a minimal GLUT program],
[ax_cv_check_glut_link],
[_AX_CHECK_GLUT_SAVE_FLAGS([[CFLAGS],[LIBS]])
AC_LINK_IFELSE([_AX_CHECK_GLUT_PROGRAM],
[ax_cv_check_glut_link="yes"],
[ax_cv_check_glut_link="no"])
_AX_CHECK_GLUT_RESTORE_FLAGS([[CFLAGS],[LIBS]])
])
])
dnl hook
AS_IF([test "X$ax_cv_check_glut_link" = "Xyes"],
[AC_DEFINE([HAVE_GLUT], [1], [Defined if a valid GLUT implementation is found])
m4_ifval([$1],
[$1],
[CFLAGS="$GLUT_CFLAGS $CFLAGS"
LIBS="$GLUT_LIBS $LIBS"])
],
[m4_ifval([$2],
[$2],
[AC_MSG_ERROR([Could not find a valid GLUT implementation])]
)
])
])
|