blob: 83a0f76ac4ec1267f70caf67a2f82b91992308e6 (
plain) (
blame)
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
|
$FreeBSD$
--- configure.in.orig Fri Jan 5 22:18:17 2001
+++ configure.in Sun Jan 21 23:01:12 2001
@@ -600,6 +600,37 @@
fi
}
+dnl Find the VGL includes and libraries
+CheckVGL()
+{
+ AC_ARG_ENABLE(video-vgl,
+[ --enable-video-vgl use VGL video driver [default=no]],
+ , enable_video_vgl=no)
+ if test x$enable_video = xyes -a x$enable_video_vgl = xyes; then
+ AC_MSG_CHECKING(for libVGL support)
+ video_vgl=no
+ AC_TRY_COMPILE([
+ #include <sys/fbio.h>
+ #include <sys/consio.h>
+ #include <sys/kbio.h>
+ #include <vgl.h>
+ ],[
+ VGLBitmap bitmap;
+ exit(bitmap.PyxelBytes);
+ ],[
+ video_vgl=yes
+ ])
+ AC_MSG_RESULT($video_vgl)
+ if test x$video_vgl = xyes; then
+ CFLAGS="$CFLAGS -DENABLE_VGL"
+ SYSTEM_LIBS="$SYSTEM_LIBS -lvgl"
+
+ VIDEO_SUBDIRS="$VIDEO_SUBDIRS vgl"
+ VIDEO_DRIVERS="$VIDEO_DRIVERS vgl/libvideo_vgl.la"
+ fi
+ fi
+}
+
dnl Find the AAlib includes
CheckAAlib()
{
@@ -998,6 +1029,7 @@
CheckX11
CheckDGA
CheckSVGA
+ CheckVGL
CheckAAlib
CheckOpenGL
CheckPTHREAD
@@ -1659,6 +1691,7 @@
src/video/macdsp/Makefile
src/video/macrom/Makefile
src/video/svga/Makefile
+src/video/vgl/Makefile
src/video/aalib/Makefile
src/video/wincommon/Makefile
src/video/windib/Makefile
|