forked from bolidozor/js9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
executable file
·298 lines (273 loc) · 7.78 KB
/
configure.ac
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# This file is an input file used by the GNU "autoconf" program to
# generate the file "configure", which is run during XPA installation
# to configure the system for the local environment.
AC_INIT(js9, 1.8, [email protected], js9)
AC_MSG_CHECKING(for web install directory)
AC_ARG_WITH(webdir,
[ --with-webdir=<path> web install directory e.g. /var/www/public_html/js9], haveweb=1, haveweb=0)
if test x"$haveweb" = x1 ; then
WEBDIR=$withval
AC_MSG_RESULT(yes ($WEBDIR))
else
AC_MSG_ERROR([--with-webdir=<path> is required to specify the Web install directory])
fi
AC_SUBST(WEBDIR)
AC_MSG_CHECKING(for server-side helper type)
AC_ARG_WITH(helper,
[ --with-helper=<type> i.e. none, nodejs, get, or post], havebe=1, havebe=0)
if test x"$havebe" = x1 ; then
HELPER=$withval
USEHELPER=yes
AC_MSG_RESULT(yes ($HELPER))
else
HELPER=none
USEHELPER=no
AC_MSG_RESULT(no)
fi
AC_SUBST(HELPER)
AC_SUBST(USEHELPER)
# if no back-end, we don't need a compiler, etc.
if [ test x"$USEHELPER" = xyes ]; then
AC_CONFIG_SRCDIR(./tpos.c)
AC_CANONICAL_HOST
AC_PROG_CC
AC_MSG_CHECKING([C compiler flags])
case $CC in
*icc* )
CFLAGS="-axW $CFLAGS"
;;
esac
AC_MSG_RESULT(OK)
# check for rflag
case $host_os in
*solaris*|*Solaris* )
RFLAG="-R"
;;
*linux*|*Linux* )
RFLAG="-Wl,-R"
;;
* )
RFLAG=""
;;
esac
AC_PROG_RANLIB
AC_CHECK_SIZEOF([void *])
case $ac_cv_sizeof_void_p in
8) LSUFFIX="64";;
esac
AC_HEADER_STDC
AC_CHECK_HEADERS(malloc.h)
AC_CHECK_HEADERS(getopt.h)
AC_CHECK_HEADERS(pwd.h)
AC_CHECK_HEADERS(dlfcn.h)
AC_CHECK_HEADERS(setjmp.h)
AC_CHECK_HEADERS(values.h)
AC_MSG_CHECKING(for cgi install directory)
AC_ARG_WITH(cgidir,
[ --with-cgidir=<path> cgi install directory e.g. /var/www/public_html/cgi-bin], havecgi=1, havecgi=0)
if test x"$havecgi" = x1 ; then
CGIDIR=$withval
# make sure this directory is present
if test -d $CGIDIR; then
AC_MSG_RESULT(yes ($CGIDIR))
else
AC_MSG_RESULT(no)
AC_MSG_ERROR([can't find cgi install dir: $CGIDIR])
fi
else
AC_MSG_RESULT(no)
fi
AC_SUBST(CGIDIR)
AC_MSG_CHECKING(for cgi url)
AC_ARG_WITH(cgiurl,
[ --with-cgiurl=<url> cgi relative url e.g. ./cgi-bin], havecgi=1, havecgi=0)
if test x"$havecgi" = x1 ; then
CGIURL=$withval
AC_MSG_RESULT(yes ($CGIURL))
else
AC_MSG_RESULT(no)
fi
AC_SUBST(CGIURL)
AC_MSG_CHECKING(for extra directories for cgi path)
AC_ARG_WITH(cgixpath,
[ --with-cgixpath=<dir1;dir2;...> directories to add to cgi path], havecgi=1, havecgi=0)
if test x"$havecgi" = x1 ; then
CGIXPATH=$withval
AC_MSG_RESULT(yes ($CGIXPATH))
else
AC_MSG_RESULT(no)
fi
AC_SUBST(CGIXPATH)
# check for external funtools libraries
FITSLIB="none"
AC_MSG_CHECKING(for funtools)
AC_ARG_WITH(funtools,
[ --with-funtools=<path> funtools directory e.g. /soft/funtools], havelib=1, havelib=0)
if test x"$havelib" = x1 ; then
FUNTOOLSBASE=$withval
# make sure essential libraries are present
if test -r $FUNTOOLSBASE/lib$LSUFFIX/libfuntools.a -o \
-r $FUNTOOLSBASE/lib$LSUFFIX/libfuntools.so -o \
-r $FUNTOOLSBASE/lib$LSUFFIX/libfuntools.dylib; then
FUNTOOLSLIB=$FUNTOOLSBASE/lib$LSUFFIX
FUNTOOLSINC=$FUNTOOLSBASE/include
AC_MSG_RESULT(yes ($FUNTOOLSBASE))
elif test -r $FUNTOOLSBASE/lib/libfuntools.a -o \
-r $FUNTOOLSBASE/lib/libfuntools.so -o \
-r $FUNTOOLSBASE/lib/libfuntools.dylib; then
FUNTOOLSLIB=$FUNTOOLSBASE/lib
FUNTOOLSINC=$FUNTOOLSBASE/include
AC_MSG_RESULT(yes ($FUNTOOLSBASE))
else
AC_MSG_RESULT(no)
fi
else
AC_MSG_RESULT(no)
fi
# make up the final switches
if test x$FUNTOOLSINC != x; then
FUNINC="-I$FUNTOOLSINC -DHAVE_FUNTOOLS"
fi
if test x$FUNTOOLSLIB != x; then
FUNLIB="-L $FUNTOOLSLIB -lfuntools"
FITSLIB="funtools"
fi
# results from funtools search
AC_SUBST(FUNINC)
AC_SUBST(FUNLIB)
# check for external cfitsio libraries
AC_MSG_CHECKING(for cfitsio)
AC_ARG_WITH(cfitsio,
[ --with-cfitsio=<path> cfitsio directory e.g. /soft/cfitsio], havelib=1, havelib=0)
if test x"$havelib" = x1 ; then
CFITSIOBASE=$withval
# make sure essential libraries are present
if test -r $CFITSIOBASE/lib$LSUFFIX/libcfitsio.a -o \
-r $CFITSIOBASE/lib$LSUFFIX/libcfitsio.so -o \
-r $CFITSIOBASE/lib$LSUFFIX/libcfitsio.dylib; then
CFITSIOLIB=$CFITSIOBASE/lib$LSUFFIX
CFITSIOINC=$CFITSIOBASE/include
AC_MSG_RESULT(yes ($CFITSIOBASE))
elif test -r $CFITSIOBASE/lib/libcfitsio.a -o \
-r $CFITSIOBASE/lib/libcfitsio.so -o \
-r $CFITSIOBASE/lib/libcfitsio.dylib; then
CFITSIOLIB=$CFITSIOBASE/lib
CFITSIOINC=$CFITSIOBASE/include
AC_MSG_RESULT(yes ($CFITSIOBASE))
else
AC_MSG_RESULT(no)
fi
else
AC_MSG_RESULT(no)
fi
# make up the final switches
if test x$CFITSIOINC != x; then
CFITSIOINC="-I$CFITSIOINC -DHAVE_CFITSIO"
fi
if test x$CFITSIOLIB != x; then
CFITSIOLIB="-L $CFITSIOLIB -lcfitsio"
CFITSIOOBJS="jsfitsio.o"
FITSLIB="cfitsio"
fi
# results from cfitsio search
AC_SUBST(CFITSIOINC)
AC_SUBST(CFITSIOLIB)
AC_SUBST(CFITSIOOBJS)
# which fits library (if any)
AC_SUBST(FITSLIB)
if test x"${CFITSIOINC}${FUNINC}" = x; then
AC_MSG_RESULT(no funtools or cfitsio: back-end programs will not be built)
USEHELPER="no"
fi
# check for external png libraries
AC_MSG_CHECKING(for png)
AC_ARG_WITH(png,
[ --with-png=<path> directory containing lib/libpng e.g. /usr/local], havelib=1, havelib=0)
if test x"$havelib" = x1 ; then
PNGBASE=$withval
# make sure essential libraries are present
if test -r $PNGBASE/lib$LSUFFIX/libpng.a -o \
-r $PNGBASE/lib$LSUFFIX/libpng.so -o \
-r $PNGBASE/lib$LSUFFIX/libpng.dylib; then
PNGLIB="-L $PNGBASE/lib$LSUFFIX -lpng"
if test x"$RFLAG" != x; then
PNGLIB="$RFLAG $PNGBASE/lib$LSUFFIX $PNGLIB"
fi
PNGINC="-I$PNGBASE/include"
AC_MSG_RESULT(yes ($PNGBASE))
elif test -r $PNGBASE/lib/libpng.a -o \
-r $PNGBASE/lib/libpng.so -o \
-r $PNGBASE/lib/libpng.dylib; then
PNGLIB="-L $PNGBASE/lib -lpng"
if test x"$RFLAG" != x; then
PNGLIB="$RFLAG $PNGBASE/lib $PNGLIB"
fi
PNGINC="-I$PNGBASE/include"
AC_MSG_RESULT(yes ($PNGBASE))
else
AC_MSG_RESULT(no)
AC_MSG_ERROR([can't find png library])
fi
else
AC_CHECK_LIB(png, png_create_write_struct, have_png=yes, have_png=no)
if test "$have_png" = yes; then
PNGLIB="-lpng"
PNGINC=""
else
AC_MSG_ERROR([png library is required (visit: http://www.libpng.org)])
fi
fi
# results from png search
AC_SUBST(PNGLIB)
AC_SUBST(PNGINC)
AC_CHECK_FUNC(connect)
if test $ac_cv_func_connect = no; then
AC_CHECK_LIB(socket, connect, EXTRA_LIBS="$EXTRA_LIBS -lsocket")
fi
AC_CHECK_FUNC(gethostbyname)
if test $ac_cv_func_gethostbyname = no; then
AC_CHECK_LIB(nsl, gethostbyname, EXTRA_LIBS="$EXTRA_LIBS -lnsl")
fi
AC_CHECK_LIB(dl, dlopen, EXTRA_LIBS="$EXTRA_LIBS -ldl")
AC_MSG_CHECKING([$host_os configuration])
case $host_os in
*cygwin*|*Cygwin* )
AC_DEFINE(HAVE_CYGWIN)
AC_MSG_RESULT(flagging Cygwin)
;;
*mingw32*|*Mingw32*)
CFLAGS="$CFLAGS -mconsole"
EXTRA_LIBS="$EXTRA_LIBS -lwsock32"
AC_DEFINE(HAVE_MINGW32)
AC_MSG_RESULT(flagging MinGW)
;;
* )
if test x"$fpic" = x"yes" ; then
if test "$CC" = "gcc" -o `$CC -v 2>&1 | grep -c gcc` != "0" ; then
CFLAGS="$CFLAGS -fPIC"
AC_MSG_RESULT(adding -fPIC to gcc)
else
AC_MSG_RESULT(none)
fi
else
AC_MSG_RESULT(none)
fi
;;
esac
AC_SUBST(EXTRA_LIBS)
fi
AC_MSG_CHECKING(for sao top-level install directory)
AC_ARG_WITH(saodir,
[ --with-saodir=<path> top install directory e.g. /var/www/public_html], havetop=1, havetop=0)
if test x"$havetop" = x1 ; then
SAODIR=$withval
AC_MSG_RESULT(yes ($SAODIR))
else
SAODIR=""
AC_MSG_RESULT(no)
fi
AC_SUBST(SAODIR)
AC_CONFIG_FILES(Makefile)
# generate pkg-config meta-data file
AC_CONFIG_FILES(js9helper.pc)
AC_OUTPUT