File: configure-gl.m4

package info (click to toggle)
scorched3d 44%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112,600 kB
  • sloc: cpp: 135,985; xml: 36,739; makefile: 4,715; sh: 3,172; ansic: 1,407; perl: 541; java: 209; python: 188; sql: 159
file content (57 lines) | stat: -rw-r--r-- 1,227 bytes parent folder | download | duplicates (4)
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
dnl Checks for OpenGL
AC_ARG_ENABLE(opengltest, 
	[  --disable-opengltest    Do not try to compile and run a test OpenGL program],
		    , enable_opengltest=yes)
AC_MSG_CHECKING(for OpenGL support)
have_opengl=yes
if test "x$enable_opengltest" = "xyes" ; then
	AC_TRY_COMPILE([
		#include <GL/gl.h>
		#include <GL/glu.h>
		],[
		],[
		have_opengl=yes
		],[
		have_opengl=no
	])
fi

AC_MSG_RESULT($have_opengl)
if test x$have_opengl != xyes; then
    AC_MSG_ERROR([*** Can't find the OpenGL library Try: http://www.opengl.org])
fi

dnl Checks for GLEW
AC_ARG_ENABLE(glewtest, 
	[  --disable-glewtest    Do not try to compile and run a test GLEW program],
		    , enable_glewtest=yes)
AC_MSG_CHECKING(for GLEW support)
have_glew=yes
if test "x$enable_glewtest" = "xyes" ; then
	AC_TRY_COMPILE([
		#include <GL/glew.h>
		],[
		],[
		have_glew=yes
		],[
		have_glew=no
	])
fi

AC_MSG_RESULT($have_glew)
if test x$have_glew != xyes; then
    AC_MSG_ERROR([*** Can't find the GLEW library])
fi

if test `uname -s` == FreeBSD; then 
    GL_LIBS="-lGL -lGLU -lGLEW"
else 
    if test `uname -s` == Darwin; then 
        GL_LIBS="-framework OpenGL"
    else
        GL_LIBS="-lGL -lGLU -lpthread -lGLEW" 
    fi
fi 

AC_SUBST(GL_LIBS)