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
|
AC_PREREQ(2.59)
AC_INIT([dataplot], [20080225], [n.heckert@nist.gov])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_AUX_DIR(config)
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([foreign])
AC_PROG_CC
AC_PROG_F77
AC_F77_LIBRARY_LDFLAGS
case $F77 in
*gfortran*) FFLAGS+=" -w -fno-range-check" ;;
*) ;;
esac
AC_CANONICAL_HOST
case $host in
i?86*linux*) fdriv=dp1_linux
MAXOBV=100000 ;;
*64*linux*) fdriv=dp1_linux_64
MAXOBV=1000000 ;;
*-*-*) fdriv=dp1 ;;
*linux*) HOST=LINUX;;
esac
AC_CONFIG_LINKS([dp1_fdriv.f:$fdriv.f])
AC_SUBST(MAXOBV)
AC_SUBST(HOST)
AC_ARG_ENABLE(gd,
[AS_HELP_STRING([--enable-gd], [Enable the gd device driver])],
[enable_gd=$enableval],
[enable_gd=no])
AC_ARG_ENABLE(gl,
[AS_HELP_STRING([--enable-gl], [Enable the OpenGL device driver])],
[enable_gl=$enableval],
[enable_gl=no])
AC_ARG_ENABLE(X,
[AS_HELP_STRING([--enable-X], [Enable the X11 device driver])],
[enable_x11=$enableval],
[enable_x11=no])
AC_ARG_ENABLE(gs,
[AS_HELP_STRING([--enable-gs], [Enable the Ghostscript device driver])],
[enable_gs=$enableval],
[enable_gs=no])
if test x"$enable_gd" = x"yes"; then
AC_CHECK_PROG(enable_gd, [gdlib-config],,
[AC_MSG_ERROR([GD driver requested but gdlib-config not found])])
GD_LIBS="`gdlib-config --libs` -lgd"
GD_CFLAGS="`gdlib-config --cflags`"
AC_SUBST(GD_LIBS)
AC_SUBST(GD_CFLAGS)
fi
AM_CONDITIONAL(ENABLE_GD, [test x"$enable_gd" = x"yes"] )
if test x"$enable_gl" = x"yes"; then
dnl hardcoded opengl libs (should be host/implementation dependent)
AC_CHECK_HEADER(GL/gl.h,,
[AC_MSG_ERROR([OpenGL driver requested but header gl.h not found])])
AC_CHECK_HEADER(GL/glu.h,,
[AC_MSG_ERROR([OpenGL driver requested but header glu.h not found])])
GL_CFLAGS="-DUNIX_OS -DAPPEND_UNDERSCORE -DSUBROUTINE_CASE"
AC_SUBST(GL_CFLAGS)
AC_CHECK_LIB(GL, glXCreateContext, GL_LIBS="-lGL",
[AC_MSG_ERROR([OpenGL driver requested but libraries not found])])
AC_CHECK_LIB(GLU, gluPerspective, GL_LIBS="-lGL -lGLU",
[AC_MSG_ERROR([OpenGL driver requested but libraries not found])])
GL_LIBS="-lGL -lGLU"
AC_SUBST(GL_LIBS)
fi
AM_CONDITIONAL(ENABLE_GL, [ test x"$enable_gl" = x"yes" ])
if test x"$enable_x11" = x"yes"; then
PKG_CHECK_MODULES(X11, x11,,
[AC_MSG_ERROR([X11 driver requested but pkgconfig module not found])])
fi
AM_CONDITIONAL(ENABLE_X11, [ test x"$enable_x11" = x"yes" ])
if test x"$enable_gs" = x"yes"; then
AC_CHECK_PROG(enable_gs, [gs],,
[AC_MSG_ERROR([Ghostscript driver requested but gs not found])])
AC_CHECK_PROG(enable_gd, [gdlib-config],,
[AC_MSG_ERROR([Ghostscript driver requested, which requires gd,
but gdlib-config not found])])
GS_LIBS="-lgs `gdlib-config --libs` -lgd"
GS_CFLAGS="-lgs `gdlib-config --cflags`"
AC_SUBST(GS_LIBS)
AC_SUBST(GS_CFLAGS)
fi
AM_CONDITIONAL(ENABLE_GS, [ test x"$enable_gs" = x"yes" ])
AC_CONFIG_FILES([Makefile DPCOPA.INC $fdriv.f])
AC_OUTPUT
|