File: configure.in

package info (click to toggle)
webmagick 1.44-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,456 kB
  • ctags: 677
  • sloc: perl: 5,659; sh: 466; makefile: 228
file content (269 lines) | stat: -rw-r--r-- 6,848 bytes parent folder | download
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/bin/sh
dnl
dnl Configure Script for WebMagick
dnl Copyright Bob Friesenhahn, 1997
dnl 
dnl $Id: configure.in,v 1.16 1997/07/03 15:25:37 bfriesen Exp $
AC_REVISION($Revision: 1.16 $)
dnl Process this file with autoconf to produce a configure script.
AC_INIT(webmagick.in)

dnl Set default prefix by looking for gcc
dnl Assumed to be where public domain programs live
AC_PREFIX_PROGRAM(gcc)

dnl Checks for programs.
AC_PROG_INSTALL
AC_PATH_PROG(PERL, perl, /usr/local/bin/perl )
AC_PATH_PROG(XLSFONTS, xlsfonts, xlsfonts )

dnl
dnl Find the X11 RGB database
dnl
AC_CACHE_CHECK(for RGB database,webmagick_cv_x_rgbdb,
[# Look for the header file in a standard set of common directories.
# Check X11 before X11Rn because it is often a symlink to the current release.
  for ac_dir in               \
    /lib/usr/lib/X11	  \
    /usr/X11/lib          \
    /usr/X11R4/lib        \
    /usr/X11R5/lib        \
    /usr/X11R6/lib        \
    /usr/X386/lib         \
    /usr/XFree86/lib/X11  \
    /usr/athena/lib       \
    /usr/lib              \
    /usr/lib/X11          \
    /usr/lib/X11R4        \
    /usr/lib/X11R5        \
    /usr/lib/X11R6        \
    /usr/local/X11/lib    \
    /usr/local/X11R4/lib  \
    /usr/local/X11R5/lib  \
    /usr/local/X11R6/lib  \
    /usr/local/lib        \
    /usr/local/lib/X11    \
    /usr/local/lib/X11R4  \
    /usr/local/lib/X11R5  \
    /usr/local/lib/X11R6  \
    /usr/local/x11r5/lib  \
    /usr/lpp/Xamples/lib  \
    /usr/openwin/lib      \
    /usr/openwin/share/lib \
    /usr/unsupported/lib  \
    /usr/x386/lib         \
    ; \
  do
    if test -f "$ac_dir/X11/rgb.txt"
    then
        webmagick_cv_x_rgbdb="$ac_dir/X11/rgb.txt"
	break
    elif test -f "$ac_dir/rgb.txt"
    then 
        webmagick_cv_x_rgbdb="$ac_dir/rgb.txt"
        break
    fi

  done])
RGBDB=$webmagick_cv_x_rgbdb
AC_SUBST(RGBDB)

dnl
dnl Check for available fonts
dnl
AC_CACHE_CHECK(for default font, webmagick_cv_defaultfont,
[
font1=''
font2=''
font3=''
font4=''
font5='fixed'
tmpfile="/tmp/configure$$"
$XLSFONTS > $tmpfile
exec < $tmpfile
while read font
do
    case "$font"
    in
    -*-lucida-medium-r-*-*-12-*-*-*-*-*-*-* )
	font1='-*-lucida-medium-r-*-*-12-*-*-*-*-*-*-*'
	;;
    -*-helvetica-medium-r-*-*-12-*-*-*-*-*-*-* )
	font2='-*-helvetica-medium-r-*-*-12-*-*-*-*-*-*-*'
	;;
    -*-helvetica-medium-r-*-*-11-*-*-*-*-*-*-* )
	font3='-*-helvetica-medium-r-*-*-11-*-*-*-*-*-*-*'
	;;
    6x13 )
	font4='6x13'
	;;
    fixed )
	font5='fixed'
	;;
    esac
done

exec < /dev/tty
rm $tmpfile

if test -n "$font1"
then
    webmagick_cv_defaultfont=$font1
elif test -n "$font2"
then
    webmagick_cv_defaultfont=$font2
elif test -n "$font3"
then
    webmagick_cv_defaultfont=$font3
elif test -n "$font4"
then
    webmagick_cv_defaultfont=$font4
elif test -n "$font5"
then
    webmagick_cv_defaultfont=$font5
else
    webmagick_cv_defaultfont='fixed'
fi

])

DEFAULTFONT=$webmagick_cv_defaultfont
AC_SUBST(DEFAULTFONT)

dnl
dnl Check for server root path
dnl
AC_MSG_CHECKING(for server root path)
AC_CACHE_VAL(webmagick_cv_rootpath,
[
echo '

In order to map paths into URLs, WebMagick must know the path to your
servers HTML files. For example, if your servers address is
"http://yourdomain/" and this path resolves to "/html" on the
system, then the appropriate answer is "/html".

What is the path to your servers root? '
read webmagick_cv_rootpath
])
if test -d "$webmagick_cv_rootpath"
then
   AC_MSG_RESULT($webmagick_cv_rootpath)
else
   AC_MSG_RESULT($webmagick_cv_rootpath)
   AC_MSG_WARN(directory $webmagick_cv_rootpath does not exist!)
fi
ROOTPATH=$webmagick_cv_rootpath
AC_SUBST(ROOTPATH)

dnl
dnl Check for WebMagick icon path
dnl
AC_MSG_CHECKING(for WebMagick icon path)
AC_CACHE_VAL(webmagick_cv_iconpath,
[
echo '

In order to find its navigation icons, WebMagick must know the
remaining path (in addition to the servers root path) to the WebMagick
icons. This should not contain any preceding or trailing "/". For
example, if the server root path is "/html" and the icons are
located in "/html/Images/webmagick" the appropriate answer would be
"Images/webmagick".

What is the remaining path to the WebMagick icons? '
read webmagick_cv_iconpath
echo ''
])
if test -d "$webmagick_cv_rootpath/$webmagick_cv_iconpath"
then
   AC_MSG_RESULT($webmagick_cv_rootpath/$webmagick_cv_iconpath)
else
   AC_MSG_RESULT($webmagick_cv_rootpath/$webmagick_cv_iconpath)
   AC_MSG_WARN(directory $webmagick_cv_rootpath/$webmagick_cv_iconpath does not exist!)
fi
ICONPATH=$webmagick_cv_iconpath
AC_SUBST(ICONPATH)

dnl
dnl Check for URL prefix
dnl
AC_MSG_CHECKING(for URL prefix)
AC_CACHE_VAL(webmagick_cv_prefixpath,
[
echo '

Sometimes the URL to the top of the HTML files is an offset past
the servers root. This is common for personal home directories
which are addressed as "http://yourdomain/~username" in which case
the appropriate answer would be "~username".

What prefix URL is required (if any)? '
read webmagick_cv_prefixpath
])
if test -z "$webmagick_cv_prefixpath"
then
   AC_MSG_RESULT(none)
else
   AC_MSG_RESULT($webmagick_cv_prefixpath)
fi
PREFIXPATH=$webmagick_cv_prefixpath
AC_SUBST(PREFIXPATH)

dnl
dnl Check for imagemap program path
dnl
AC_MSG_CHECKING(for imagemap program)
AC_CACHE_VAL(webmagick_cv_htimage,
[
echo '

This question concerns how your server handles server-side
imagemap processing. Recent servers provide built in support for
imagemaps. These include recent versions of NCSA, Apache, phttpd,
and others. Older servers may require an external CGI program to
handle imagemaps. CERN servers often name this program "htimage".
NCSA names this program "imagemap". WebMagick requires the relative
URL to this program if your server requires it. Typical answers
will be "/cgi-bin/htimage" or "/cgi-bin/imagemap". If your server
does not require an external program, just hit RETURN.

What is the URL to the program you use to handle imagemaps (if any)?'
read webmagick_cv_htimage
echo ''
])
if test -z "$webmagick_cv_htimage"
then
   AC_MSG_RESULT(none)
else
   AC_MSG_RESULT($webmagick_cv_htimage)
fi
HTIMAGE=$webmagick_cv_htimage
AC_SUBST(HTIMAGE)

dnl
dnl Check for server-side imagemap format
dnl
AC_MSG_CHECKING(for server-side imagemap format)
AC_CACHE_VAL(webmagick_cv_maptype,
[
echo '

There are two formats for imagemap files in common use, CERN and
NCSA.  NCSA & Apache use the NCSA format.  CERN uses the CERN format.
Phttpd can handle either format.  Appropriate answers to this question
are "cern" or "ncsa".

What format ("cern" or "ncsa") does your server use for imagemaps?'
read webmagick_cv_maptype
dnl Lower case string
webmagick_cv_maptype=`echo $webmagick_cv_maptype | tr '[A-Z]' '[a-z]'`
])

AC_MSG_RESULT($webmagick_cv_maptype)
MAPTYPE=$webmagick_cv_maptype
AC_SUBST(MAPTYPE)


AC_OUTPUT(Makefile webmagick webmagickrc doc/Makefile)
chmod 555 webmagick