source: trunk/configure.in @ 6685

Last change on this file since 6685 was 6683, checked in by dkearney, 7 years ago

adding an example of using a loader to allow users to chose an example excel spreadsheet or upload their own. the uploaded file data is stored in the driver.xml. the simulation checks whether the user chose an example excel spreadsheet or uploaded thier own. if the user uploaded their own file, we write it to disk, then parse it using a pandas dataframe and finally load it into a Rappture Curve.

File size: 17.8 KB
Line 
1
2AC_INIT([Rappture],[1.9],[rappture@nanohub.org])
3AC_CONFIG_AUX_DIR(cf)
4AC_CONFIG_HEADER(src/core/config.h)
5
6#------------------------------------------------------------------------
7# Handle the --prefix=... option
8#------------------------------------------------------------------------
9
10if test "${prefix}" = "NONE"; then
11    prefix=/usr/local
12fi
13if test "${exec_prefix}" = "NONE"; then
14    exec_prefix=$prefix
15fi
16
17AC_ARG_WITH(
18    [install],
19    [AS_HELP_STRING([--with-install[=DIR]],
20        [location of installation @<:@default=yes@:>@])],
21    [],
22    [with_install=yes])
23
24if test "$with_install" != "yes"; then
25    INSTALL_PREFIX=$with_install
26else
27    INSTALL_PREFIX=$prefix
28fi
29
30
31if test "${libdir}" != "${prefix}/lib"; then
32    LIB_SEARCH_DIRS="-L${prefix}/lib -L${libdir}"
33else
34    LIB_SEARCH_DIRS="-L${libdir}"
35fi
36
37
38AC_PROG_INSTALL
39AC_PROG_INSTALL
40AC_PROG_RANLIB
41AC_PROG_LN_S
42AC_PROG_MKDIR_P
43AC_PROG_MAKE_SET
44
45# Check for C, C++, and FORTRAN
46AC_PROG_CC
47AC_PROG_CXX
48# Avoid g95
49AC_PROG_F77([g77 gfortran f77 fort77 f90 xlf xlf90 fl32])
50
51AC_LANG([C])
52
53AC_HEADER_STDC
54AC_CHECK_FUNC(atol,,AC_MSG_ERROR(oops! no atol ?!?))
55
56AC_LANG([C++])
57
58AC_CHECK_FUNCS(sysinfo)
59AC_CHECK_FUNCS(gettimeofday)
60AC_CHECK_FUNC(localtime,,AC_MSG_ERROR(oops! no localtime ?!?))
61AC_CHECK_FUNC(getenv,,AC_MSG_ERROR(oops! no getenv ?!?))
62
63AC_CHECK_HEADERS(sys/sysinfo.h)
64
65AC_CHECK_LIB(ncurses, clrtoeol,,AC_MSG_ERROR([ncurses library missing?]))
66AC_CHECK_HEADERS(ncurses.h,,AC_MSG_WARN(ncurses headers missing ?))
67
68AC_CHECK_LIB(stdc++, main,,AC_MSG_ERROR(librappture requires libstdc++))
69AC_CHECK_HEADERS(algorithm,,AC_MSG_WARN(STL classes missing ?))
70AC_CHECK_HEADERS(cctype,,AC_MSG_WARN(STL classes missing ?))
71AC_CHECK_HEADERS(cfloat,,AC_MSG_WARN(STL classes missing ?))
72AC_CHECK_HEADERS(cmath,,AC_MSG_WARN(STL classes missing ?))
73AC_CHECK_HEADERS(cstdio,,AC_MSG_WARN(STL classes missing ?))
74AC_CHECK_HEADERS(cstdlib,,AC_MSG_WARN(STL classes missing ?))
75AC_CHECK_HEADERS(cstring,,AC_MSG_WARN(STL classes missing ?))
76AC_CHECK_HEADERS(fstream,,AC_MSG_WARN(STL classes missing ?))
77AC_CHECK_HEADERS(list,,AC_MSG_WARN(STL classes missing ?))
78AC_CHECK_HEADERS(iostream,,AC_MSG_WARN(STL classes missing ?))
79AC_CHECK_HEADERS(iterator,,AC_MSG_WARN(STL classes missing ?))
80AC_CHECK_HEADERS(sstream,,AC_MSG_WARN(STL classes missing ?))
81AC_CHECK_HEADERS(stack,,AC_MSG_WARN(STL classes missing ?))
82AC_CHECK_HEADERS(string,,AC_MSG_WARN(STL classes missing ?))
83AC_CHECK_HEADERS(vector,,AC_MSG_WARN(STL classes missing ?))
84
85AC_CHECK_HEADERS(assert.h,,AC_MSG_WARN(C headers missing ?))
86AC_CHECK_HEADERS(ctype.h,,AC_MSG_WARN(C headers missing ?))
87AC_CHECK_HEADERS(errno.h,,AC_MSG_WARN(C headers missing ?))
88AC_CHECK_HEADERS(limits.h,,AC_MSG_WARN(C headers missing ?))
89AC_CHECK_HEADERS(string.h,,AC_MSG_WARN(C headers missing ?))
90AC_CHECK_HEADERS(stdlib.h,,AC_MSG_WARN(C headers missing ?))
91AC_CHECK_HEADERS(stddef.h,,AC_MSG_WARN(C headers missing ?))
92AC_CHECK_HEADERS(float.h,,AC_MSG_WARN(C headers missing ?))
93AC_CHECK_HEADERS(math.h,,AC_MSG_WARN(C headers missing ?))
94dnl AC_CHECK_HEADERS(ieeefp.h,,AC_MSG_WARN(C headers missing ?))
95AC_CHECK_HEADERS(malloc.h,,AC_MSG_WARN(C headers missing ?))
96AC_CHECK_HEADERS(memory.h,,AC_MSG_WARN(C headers missing ?))
97AC_CHECK_HEADERS(unistd.h,,AC_MSG_WARN(C headers missing ?))
98
99AC_CHECK_HEADERS(inttypes.h,,AC_MSG_WARN(C headers missing ?))
100if test "${ac_cv_header_inttypes_h}" = "yes" ; then
101  HAVE_INTTYPES_H=1
102else
103  HAVE_INTTYPES_H=0
104fi
105
106
107SC_CONFIG_CFLAGS
108
109SVN_VERSION=`svnversion $srcdir | sed 's/Unversioned directory/unknown/'`
110SVN_URL=`readlink -e $srcdir | xargs svn info | sed -ne 's/^URL: //p'`
111
112make_command=""
113for m in "$MAKE" make gmake gnumake ; do
114  if test "x${m}" != "x" ; then
115    if  ( sh -c "$m --version" 2>/dev/null | grep GNU >/dev/null ) ; then
116      make_command=$m; break;
117    fi
118  fi
119done
120if test "x${make_command}" = "x" ; then
121  AC_MSG_ERROR([Requires GNU make. You can specify a version with \$MAKE])
122fi
123
124AC_ARG_ENABLE(
125    [lang],
126    [AS_HELP_STRING([--enable-lang], [build language bindings @<:@default=yes@:>@])],
127    [],
128    [enable_lang=yes])
129
130ENABLE_LANG=
131if test "$enable_lang" != "no" ; then
132    ENABLE_LANG="yes"
133fi
134
135AC_ARG_ENABLE(
136    [gui],
137    [AS_HELP_STRING([--enable-gui], [build code related to the graphical user interface @<:@default=yes@:>@])],
138    [],
139    [enable_gui=yes])
140
141ENABLE_GUI=
142if test "$enable_gui" != "no" ; then
143    ENABLE_GUI="yes"
144fi
145
146TCL_VERSION="8.4"
147for dir in \
148 ${exec_prefix} \
149 ${exec_prefix}/lib ; do
150  tclconfig="${dir}/tclConfig.sh"
151  if test -f "$tclconfig" ; then
152    . $tclconfig
153    break
154  fi
155done
156
157TK_VERSION="8.4"
158for dir in \
159 ${exec_prefix} \
160 ${exec_prefix}/lib ; do
161  tkconfig="${dir}/tkConfig.sh"
162  if test -f "$tkconfig" ; then
163    . $tkconfig
164    break
165  fi
166done
167
168AC_ARG_WITH(
169    [ffmpeg],
170    [AS_HELP_STRING([--with-ffmpeg[=DIR]],
171      [location of ffmpeg @<:@default=yes@:>@])],
172    [],
173    [with_ffmpeg=yes])
174
175AC_ARG_WITH(
176    [tclsh],
177    [AS_HELP_STRING([--with-tclsh[=DIR]],
178        [location of tclsh @<:@default=yes@:>@])],
179    [],
180    [with_tclsh=yes])
181
182TCLSH=""
183if test "${with_tclsh}" != "no" ; then
184  tclsh="tclsh${TCL_VERSION}"
185  if test "${with_tclsh}" = "yes" ; then
186    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${exec_prefix}/bin:${PATH}])
187  else
188    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${with_tclsh}/bin:${with_tclsh}])
189  fi
190  if test "x${TCLSH}" = "x" ; then
191    AC_ERROR([can't find tclsh])
192  fi
193fi
194
195
196TCL_INC_SPEC="$TCL_INCLUDE_SPEC"
197
198AC_ARG_WITH(
199    [vtk],
200    [AS_HELP_STRING([--with-vtk[=version]],
201        [VTK library version @<:@default=6.2@:>@])],
202    [],
203    [with_vtk=yes])
204
205AC_MSG_CHECKING([for vtk])
206VTK_VERSION=6.2
207VTK_TCL_DIR=""
208
209ENABLE_VTK=
210if test "$with_vtk" != "no" ; then
211  if test "$with_vtk" != "yes" ; then
212    VTK_VERSION=$with_vtk
213  fi
214  if test "x$with_vtk" != "x" ; then
215    ENABLE_VTK=yes
216    for path in \
217     $libdir/tcltk \
218     $exec_prefix/lib/tcltk \
219     $prefix/lib/tcltk \
220     $libdir \
221     $prefix/lib \
222     $exec_prefix/lib \
223     /usr/lib
224    do
225      if test -d "$path/vtk-$VTK_VERSION" ; then
226        VTK_TCL_DIR="$path/vtk-$VTK_VERSION"
227      fi
228      if test "x${VTK_TCL_DIR}" != "x" ; then
229        break
230      fi
231    done
232  fi
233else
234  if test "${ENABLE_GUI}" = "yes" ; then
235    AC_MSG_WARN([VTK missing: Rappture GUI requires VTK for some features])
236  fi
237fi
238AC_MSG_RESULT([$VTK_TCL_DIR])
239
240AC_ARG_ENABLE(
241    [vtkdicom],
242    [AS_HELP_STRING([--enable-vtkdicom],
243        [Use vtkDICOM package @<:@default=no@:>@])],
244    [],
245    [enable_vtkdicom=no])
246
247AC_MSG_CHECKING([for vtkDICOM])
248ENABLE_VTK_DICOM=
249if test "$enable_vtkdicom" != "no" ; then
250    ENABLE_VTK_DICOM="yes"
251fi
252AC_MSG_RESULT([$enable_vtkdicom])
253
254RP_LANG_MATLAB
255RP_LANG_OCTAVE
256RP_LANG_PERL
257RP_LANG_PYTHON
258RP_LANG_JAVA
259RP_LANG_R
260RP_LANG_RUBY
261
262RP_BASE=`pwd`
263
264SC_ENABLE_SHARED
265
266#--------------------------------------------------------------------
267# This macro figures out what flags to use with the compiler/linker
268# when building shared/static debug/optimized objects.  This information
269# is all taken from the tclConfig.sh file.
270#--------------------------------------------------------------------
271
272if test -f "${exec_prefix}/lib/tclConfig.sh" ; then
273  . ${exec_prefix}/lib/tclConfig.sh
274fi
275if test -f "${exec_prefix}/lib/tkConfig.sh" ; then
276  . ${exec_prefix}/lib/tkConfig.sh
277fi
278
279# -----------------------------------------------------------------------
280#
281# Compiler characteristics:
282#   Check for existence of types of size_t and pid_t
283#
284# -----------------------------------------------------------------------
285
286AC_C_BIGENDIAN
287AC_CHECK_SIZEOF(int)
288AC_CHECK_SIZEOF(long)
289AC_CHECK_SIZEOF(long long)
290AC_CHECK_SIZEOF(void *)
291
292SIZEOF_LONG="${ac_cv_sizeof_long}"
293SIZEOF_LONG_LONG="${ac_cv_sizeof_long_long}"
294SIZEOF_VOID_P="${ac_cv_sizeof_void_p}"
295SIZEOF_INT="${ac_cv_sizeof_int}"
296
297
298#--------------------------------------------------------------------
299# Set the default compiler switches based on the --enable-symbols
300# option.
301#--------------------------------------------------------------------
302
303SC_ENABLE_SYMBOLS
304
305
306#--------------------------------------------------------------------
307# search for ffmpeg libraries libavcodec, libavformat, libswscale
308#--------------------------------------------------------------------
309if test "${with_ffmpeg}" != "no" ; then
310  if test "${with_ffmpeg}" = "yes" ; then
311    AC_PATH_PROG(FFMPEG, ffmpeg, [], $PATH)
312  else
313    AC_PATH_PROG(FFMPEG, ffmpeg, [], [${with_ffmpeg}/bin:${with_ffmpeg}])
314  fi
315  if test "${FFMPEG}x" != "x" ; then
316    AC_DEFINE(HAVE_FFMPEG, 1, [Render servers can use ffmpeg])
317  fi
318fi
319
320AC_CHECK_HEADERS([ffmpeg/avcodec.h libavcodec/avcodec.h ffmpeg/avformat.h libavformat/avformat.h ffmpeg/avutil.h libavutil/avutil.h libavutil/mathematics.h ffmpeg/swscale.h libswscale/swscale.h],,,[
321#define __STDC_CONSTANT_MACROS 1
322])
323
324HAVE_FFMPEG_LIBS=""
325if test "${with_ffmpeg}" != "no"; then
326  if [[ \( "${ac_cv_header_ffmpeg_avcodec_h}" = "yes" -o \
327        "${ac_cv_header_libavcodec_avcodec_h}" = "yes" \) -a \
328     \( "${ac_cv_header_ffmpeg_avformat_h}" = "yes" -o \
329        "${ac_cv_header_libavformat_avformat_h}" = "yes" \) -a \
330     \( "${ac_cv_header_ffmpeg_avutil_h}" = "yes" -o \
331        "${ac_cv_header_libavutil_avutil_h}" = "yes" \) -a \
332     \( "${ac_cv_header_ffmpeg_swscale_h}" = "yes" -o \
333        "${ac_cv_header_libswscale_swscale_h}" = "yes" \) ]] ; then
334    HAVE_FFMPEG_LIBS="yes"
335    AC_DEFINE(BUILD_with_ffmpeg, 1, [Build rappture with ffmpeg widgets])
336  fi
337  AC_CHECK_LIB(avcodec, main,,AC_MSG_ERROR(librappture requires libavcodec))
338  AC_CHECK_LIB(avutil, main,,AC_MSG_ERROR(librappture requires libavutil))
339  AC_CHECK_LIB(avformat, main,,AC_MSG_ERROR(librappture requires libavformat))
340  AC_CHECK_LIB(swscale, main)
341  AC_CHECK_FUNCS(av_find_stream_info)
342  AC_CHECK_FUNCS(av_open_input_file)
343  AC_CHECK_FUNCS(avcodec_decode_video)
344  AC_CHECK_FUNCS(avcodec_decode_video2)
345  AC_CHECK_FUNCS(avcodec_open)
346  AC_CHECK_FUNCS(avcodec_open2)
347  AC_CHECK_FUNCS(avformat_find_stream_info)
348  AC_CHECK_FUNCS(avformat_open_input)
349  AC_CHECK_FUNCS(avio_close)
350  AC_CHECK_FUNCS(img_convert)
351  AC_CHECK_FUNCS(sws_getCachedContext)
352  AC_CHECK_FUNCS(sws_scale)
353  AC_CHECK_FUNCS(url_close)
354  AC_CHECK_FUNCS(av_close_input_file)
355  AC_CHECK_FUNCS(avformat_close_input)
356
357  AC_CHECK_FUNC(avcodec_find_decoder,,
358    AC_MSG_ERROR(oops! no av_codec_find_decoder ?!?))
359  AC_CHECK_FUNC(avcodec_alloc_frame,,
360    AC_MSG_ERROR(oops! no avcode_alloc_frame ?!?))
361  AC_CHECK_FUNC(av_rescale_q,,AC_MSG_ERROR(oops! no av_rescale_q ?!?))
362  AC_CHECK_FUNC(av_read_frame,,AC_MSG_ERROR(oops! av_read_frame ?!?))
363  AC_CHECK_FUNC(av_free,,AC_MSG_ERROR(oops! no av_frame ?!?))
364  AC_CHECK_FUNC(avcodec_default_release_buffer,,
365    AC_MSG_ERROR(oops! no avcode_default_release_buffer ?!?))
366  AC_CHECK_FUNC(avpicture_get_size,,
367    AC_MSG_ERROR(oops! no avpicture_get_size ?!?))
368  AC_CHECK_FUNC(avpicture_fill,,AC_MSG_ERROR(oops! no avpicture_fill ?!?))
369  AC_CHECK_FUNCS(sws_getCachedContext)
370  AC_CHECK_FUNCS(img_convert)
371  AC_CHECK_FUNCS(sws_scale)
372  AC_TRY_COMPILE([
373#define __STDC_CONSTANT_MACROS 1
374#include <stdlib.h>
375#ifdef HAVE_FFMPEG_AVCODEC_H
376# include <ffmpeg/avcodec.h>
377#endif
378#ifdef HAVE_LIBAVCODEC_AVCODEC_H
379# include <libavcodec/avcodec.h>
380#endif
381int x = AVMEDIA_TYPE_VIDEO;
382],, ac_avmedia_type_video="yes", ac_avmedia_type_video="no")
383  if test "$ac_avmedia_type_video" == "yes" ; then
384    AC_DEFINE(HAVE_AVMEDIA_TYPE_VIDEO,1,[Define if AVMEDIA_TYPE_VIDEO enum exists. ])
385  fi
386fi
387
388AC_SUBST(CFLAGS_DEBUG)
389AC_SUBST(CFLAGS_OPTIMIZE)
390AC_SUBST(ENABLE_LANG)
391AC_SUBST(ENABLE_GUI)
392AC_SUBST(ENABLE_VTK)
393AC_SUBST(ENABLE_VTK_DICOM)
394AC_SUBST(FFMPEG)
395AC_SUBST(HAVE_FFMPEG_LIBS)
396AC_SUBST(HAVE_INTTYPES_H)
397AC_SUBST(HAVE_RUBY_DEVEL)
398AC_SUBST(INSTALL_PREFIX)
399AC_SUBST(JAVA)
400AC_SUBST(JAVAC)
401AC_SUBST(JAVAH)
402AC_SUBST(JAVA_HOME)
403AC_SUBST(JAVA_INC_DIR)
404AC_SUBST(JAVA_INC_SPEC)
405AC_SUBST(LIB_SEARCH_DIRS)
406AC_SUBST(MAKE, ${make_command})
407AC_SUBST(MATLAB)
408AC_SUBST(MCC)
409AC_SUBST(MEX)
410AC_SUBST(MEXEXT)
411AC_SUBST(MEX_ARCH)
412AC_SUBST(MKOCTFILE2)
413AC_SUBST(MKOCTFILE3)
414AC_SUBST(OCTAVE_VERSION)
415AC_SUBST(OCTAVE_VERSION_MAJOR)
416AC_SUBST(PERL)
417AC_SUBST(PERL_ARCHLIB)
418AC_SUBST(PERL_ARCHLIBEXP)
419AC_SUBST(PERL_CCFLAGS)
420AC_SUBST(PERL_CPPFLAGS)
421AC_SUBST(PERL_INCLUDES)
422AC_SUBST(PERL_INSTALLARCHLIB)
423AC_SUBST(PERL_LIBSPEC)
424AC_SUBST(PERL_PRIVLIB)
425AC_SUBST(PERL_VENDORLIB)
426AC_SUBST(PERL_VERSION)
427AC_SUBST(PERL_VERSION_RV)
428AC_SUBST(PYTHON)
429AC_SUBST(PYTHON_CFLAGS)
430AC_SUBST(PYTHON_DISTUTILS)
431AC_SUBST(PYTHON_INCDIR)
432AC_SUBST(PYTHON_INCLUDES)
433AC_SUBST(PYTHON_LDFLAGS)
434AC_SUBST(PYTHON_LIB)
435AC_SUBST(PYTHON_LIBDIR)
436AC_SUBST(PYTHON_SITE_DIR)
437AC_SUBST(PYTHON_SITE_PACKAGES)
438AC_SUBST(PYTHON_VERSION)
439AC_SUBST(R)
440AC_SUBST(RP_BASE)
441AC_SUBST(RUBY)
442AC_SUBST(RUBY_PLATFORM)
443AC_SUBST(RUBY_VERSION_RV)
444AC_SUBST(SHLIB_CFLAGS)
445AC_SUBST(SHLIB_LD)
446AC_SUBST(SHLIB_LDFLAGS)
447AC_SUBST(SHLIB_SUFFIX)
448AC_SUBST(SIZEOF_INT)
449AC_SUBST(SIZEOF_LONG)
450AC_SUBST(SIZEOF_LONG_LONG)
451AC_SUBST(SIZEOF_VOID_P)
452AC_SUBST(STLIB_LD)
453AC_SUBST(SVN_URL)
454AC_SUBST(SVN_VERSION)
455AC_SUBST(TCLSH)
456AC_SUBST(TCL_CFLAGS_DEBUG)
457AC_SUBST(TCL_CFLAGS_OPTIMIZE)
458AC_SUBST(TCL_INC_SPEC)
459AC_SUBST(TCL_LIB_SPEC)
460AC_SUBST(TCL_SHLIB_CFLAGS)
461AC_SUBST(TCL_SHLIB_LD)
462AC_SUBST(TCL_SHLIB_LDFLAGS)
463AC_SUBST(TCL_SHLIB_SUFFIX)
464AC_SUBST(TCL_SRC_DIR)
465AC_SUBST(TCL_VERSION)
466AC_SUBST(TK_INC_SPEC)
467AC_SUBST(TK_LIB_SPEC)
468AC_SUBST(TK_SRC_DIR)
469AC_SUBST(TK_VERSION)
470AC_SUBST(TK_XLIBSW)
471AC_SUBST(VTK_TCL_DIR)
472AC_SUBST(VTK_VERSION)
473AC_SUBST(XSUBPP)
474
475ac_configure_args="--disable-threads --enable-shared"
476AC_CONFIG_SUBDIRS( [packages/optimizer/src] )
477
478dnl read Makefile.in and write Makefile
479AC_CONFIG_FILES([
480    Makefile
481    packages/Makefile
482    src/Makefile
483    src/core/Makefile
484    src/core2/Makefile
485    src/objects/Makefile
486    src/objects/RpHash.h
487    gui/Makefile
488    gui/apps/Makefile
489    gui/apps/about
490    gui/apps/copy_rappture_examples
491    gui/apps/encodedata
492    gui/apps/rappture
493    gui/apps/rappture-csh.env
494    gui/apps/rappture.env
495    gui/apps/rappture.use
496    gui/apps/rerun
497    gui/apps/simsim
498    gui/apps/xmldiff
499    gui/pkgIndex.tcl
500    gui/scripts/Makefile
501    gui/src/Makefile
502    builder/Makefile
503    builder/pkgIndex.tcl
504    builder/scripts/Makefile
505    tester/Makefile
506    tester/pkgIndex.tcl
507    tester/scripts/Makefile
508    lang/Makefile
509    lang/java/Makefile
510    lang/java/rappture/Makefile
511    lang/perl/Makefile
512    lang/perl/Makefile.PL
513    lang/python/Makefile
514    lang/python/setup.py
515    lang/matlab/Makefile
516    lang/octave/Makefile
517    lang/octave/octave2/Makefile
518    lang/octave/octave3/Makefile
519    lang/R/Makefile
520    lang/ruby/Makefile
521    lang/ruby/build.rb
522    lang/tcl/Makefile
523    lang/tcl/pkgIndex.tcl
524    lang/tcl/scripts/Makefile
525    lang/tcl/src/Makefile
526    lang/tcl/tests/Makefile
527    lib/Makefile
528    examples/3D/Makefile
529    examples/Makefile
530    examples/app-fermi/2.0/Makefile
531    examples/app-fermi/Makefile
532    examples/app-fermi/cee/Makefile
533    examples/app-fermi/fortran/Makefile
534    examples/app-fermi/java/Makefile
535    examples/app-fermi/matlab/Makefile
536    examples/app-fermi/matlab/compiled/Makefile
537    examples/app-fermi/matlab/uncompiled/Makefile
538    examples/app-fermi/octave/octave2/Makefile
539    examples/app-fermi/octave/octave3/Makefile
540    examples/app-fermi/octave/Makefile
541    examples/app-fermi/perl/Makefile
542    examples/app-fermi/python/Makefile
543    examples/app-fermi/ruby/Makefile
544    examples/app-fermi/tcl/Makefile
545    examples/app-fermi/wrapper/Makefile
546    examples/app-fermi/wrapper/cee/Makefile
547    examples/app-fermi/wrapper/perl/Makefile
548    examples/app-fermi/wrapper/python/Makefile
549    examples/app-fermi/wrapper/tcl/Makefile
550    examples/app-fermi/R/Makefile
551    examples/c-example/Makefile
552    examples/canvas/Makefile
553    examples/demo.bash
554    examples/flow/Makefile
555    examples/flow/demo1/Makefile
556    examples/flow/demo2/Makefile
557    examples/flow/demo3/Makefile
558    examples/graph/Makefile
559    examples/mapviewer/Makefile
560    examples/mapviewer/camera/Makefile
561    examples/mapviewer/colorramp/Makefile
562    examples/mapviewer/common/Makefile
563    examples/mapviewer/feature/Makefile
564    examples/mapviewer/gdal/Makefile
565    examples/mapviewer/layers/Makefile
566    examples/mapviewer/ogr/Makefile
567    examples/mapviewer/placard/Makefile
568    examples/mapviewer/select/Makefile
569    examples/mapviewer/tms/Makefile
570    examples/mapviewer/wms/Makefile
571    examples/mapviewer/xyz/Makefile
572    examples/objects/Makefile
573    examples/objects/axis/Makefile
574    examples/objects/curve/Makefile
575    examples/objects/dxWriter/Makefile
576    examples/objects/floatBuffer/Makefile
577    examples/objects/histogram/Makefile
578    examples/objects/library/Makefile
579    examples/objects/number/Makefile
580    examples/objects/path/Makefile
581    examples/objects/plot/Makefile
582    examples/objects/scatter/Makefile
583    examples/objects/string/Makefile
584    examples/objects/tree/Makefile
585    examples/objects/xmlparser/Makefile
586    examples/zoo/Makefile
587    examples/zoo/binary/Makefile
588    examples/zoo/boolean/Makefile
589    examples/zoo/choice/Makefile
590    examples/zoo/curve/Makefile
591    examples/zoo/drawing/Makefile
592    examples/zoo/enable/Makefile
593    examples/zoo/field/Makefile
594    examples/zoo/group/Makefile
595    examples/zoo/histogram/Makefile
596    examples/zoo/image/Makefile
597    examples/zoo/image/docs/Makefile
598    examples/zoo/image/examples/Makefile
599    examples/zoo/integer/Makefile
600    examples/zoo/integer2/Makefile
601    examples/zoo/loader/Makefile
602    examples/zoo/loader/examples/Makefile
603    examples/zoo/loader2/Makefile
604    examples/zoo/loader2/examples/Makefile
605    examples/zoo/log/Makefile
606    examples/zoo/mesh/Makefile
607    examples/zoo/multichoice/Makefile
608    examples/zoo/note/Makefile
609    examples/zoo/note/docs/Makefile
610    examples/zoo/number/Makefile
611    examples/zoo/number2/Makefile
612    examples/zoo/parallelepiped/Makefile
613    examples/zoo/periodicelement/Makefile
614    examples/zoo/phase/Makefile
615    examples/zoo/sequence/Makefile
616    examples/zoo/sequence/examples/Makefile
617    examples/zoo/string/Makefile
618    examples/zoo/structure/Makefile
619    examples/zoo/structure/examples/Makefile
620    examples/zoo/table/Makefile
621    video/Makefile
622    video/pkgIndex.tcl
623    oldtest/Makefile
624    oldtest/src/Makefile
625    puq/Makefile
626    puq/puq.sh
627])
628AC_OUTPUT
629
Note: See TracBrowser for help on using the repository browser.