source: branches/uq/configure.in @ 5898

Last change on this file since 5898 was 5121, checked in by dkearney, 10 years ago

merging updates from 1.3 branch

looks like this branch originally came from the 1.3 branch and then had some
additions from the 1.4-pre branch and then a sync from the 1.3 branch. to get
this branch updated, I am reverting r4797 (additions from 1.4-pre branch),
reverting r4798 (additions from 1.3 branch), then merging in updates from 1.3
branch.

I fixed merge conflicts for the following files:

gui/scripts/gauge.tcl
gui/scripts/main.tcl
gui/scripts/tool.tcl
lang/tcl/scripts/task.tcl

File size: 17.1 KB
Line 
1
2AC_INIT([Rappture],[1.3],[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=`svn info $srcdir | 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
157AC_ARG_WITH(
158    [ffmpeg],
159    [AS_HELP_STRING([--with-ffmpeg[=DIR]],
160      [location of ffmpeg @<:@default=yes@:>@])],
161    [],
162    [with_ffmpeg=yes])
163
164AC_ARG_WITH(
165    [tclsh],
166    [AS_HELP_STRING([--with-tclsh[=DIR]],
167        [location of tclsh @<:@default=yes@:>@])],
168    [],
169    [with_tclsh=yes])
170
171TCLSH=""
172if test "${with_tclsh}" != "no" ; then
173  tclsh="tclsh${TCL_VERSION}"
174  if test "${with_tclsh}" = "yes" ; then
175    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${exec_prefix}/bin:${PATH}])
176  else
177    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${with_tclsh}/bin:${with_tclsh}])
178  fi
179  if test "x${TCLSH}" = "x" ; then
180    AC_ERROR([can't find tclsh])
181  fi
182fi
183
184
185TCL_INC_SPEC="$TCL_INCLUDE_SPEC"
186
187AC_ARG_WITH(
188    [vtk],
189    [AS_HELP_STRING([--with-vtk[=version]],
190        [VTK library version @<:@default=6.0@:>@])],
191    [],
192    [with_vtk=yes])
193
194AC_MSG_CHECKING([for vtk])
195VTK_VERSION=6.0
196VTK_TCL_DIR=""
197
198ENABLE_VTK=
199if test "$with_vtk" != "no" ; then
200  if test "$with_vtk" != "yes" ; then
201    VTK_VERSION=$with_vtk
202  fi
203  if test "x$with_vtk" != "x" ; then
204    ENABLE_VTK=yes
205    for path in \
206     $libdir/tcltk \
207     $exec_prefix/lib/tcltk \
208     $prefix/lib/tcltk \
209     $libdir \
210     $prefix/lib \
211     $exec_prefix/lib \
212     /usr/lib
213    do
214      if test -d "$path/vtk-$VTK_VERSION" ; then
215        VTK_TCL_DIR="$path/vtk-$VTK_VERSION"
216      fi
217      if test "x${VTK_TCL_DIR}" != "x" ; then
218        break
219      fi
220    done
221  fi
222else
223  if test "${ENABLE_GUI}" = "yes" ; then
224    AC_MSG_WARN([VTK missing: Rappture GUI requires VTK for some features])
225  fi
226fi
227AC_MSG_RESULT([$VTK_TCL_DIR])
228
229AC_ARG_ENABLE(
230    [vtkdicom],
231    [AS_HELP_STRING([--enable-vtkdicom],
232        [Use vtkDICOM package @<:@default=no@:>@])],
233    [],
234    [enable_vtkdicom=no])
235
236AC_MSG_CHECKING([for vtkDICOM])
237ENABLE_VTK_DICOM=
238if test "$enable_vtkdicom" != "no" ; then
239    ENABLE_VTK_DICOM="yes"
240fi
241AC_MSG_RESULT([$enable_vtkdicom])
242
243RP_LANG_MATLAB
244RP_LANG_OCTAVE
245RP_LANG_PERL
246RP_LANG_PYTHON
247RP_LANG_JAVA
248RP_LANG_R
249RP_LANG_RUBY
250
251RP_BASE=`pwd`
252
253SC_ENABLE_SHARED
254
255#--------------------------------------------------------------------
256# This macro figures out what flags to use with the compiler/linker
257# when building shared/static debug/optimized objects.  This information
258# is all taken from the tclConfig.sh file.
259#--------------------------------------------------------------------
260
261if test -f "${exec_prefix}/lib/tclConfig.sh" ; then
262  . ${exec_prefix}/lib/tclConfig.sh
263fi
264if test -f "${exec_prefix}/lib/tkConfig.sh" ; then
265  . ${exec_prefix}/lib/tkConfig.sh
266fi
267
268# -----------------------------------------------------------------------
269#
270# Compiler characteristics:
271#   Check for existence of types of size_t and pid_t
272#
273# -----------------------------------------------------------------------
274
275AC_C_BIGENDIAN
276AC_CHECK_SIZEOF(int)
277AC_CHECK_SIZEOF(long)
278AC_CHECK_SIZEOF(long long)
279AC_CHECK_SIZEOF(void *)
280
281SIZEOF_LONG="${ac_cv_sizeof_long}"
282SIZEOF_LONG_LONG="${ac_cv_sizeof_long_long}"
283SIZEOF_VOID_P="${ac_cv_sizeof_void_p}"
284SIZEOF_INT="${ac_cv_sizeof_int}"
285
286
287#--------------------------------------------------------------------
288# Set the default compiler switches based on the --enable-symbols
289# option.
290#--------------------------------------------------------------------
291
292SC_ENABLE_SYMBOLS
293
294
295#--------------------------------------------------------------------
296# search for ffmpeg libraries libavcodec, libavformat, libswscale
297#--------------------------------------------------------------------
298if test "${with_ffmpeg}" != "no" ; then
299  if test "${with_ffmpeg}" = "yes" ; then
300    AC_PATH_PROG(FFMPEG, ffmpeg, [], $PATH)
301  else
302    AC_PATH_PROG(FFMPEG, ffmpeg, [], [${with_ffmpeg}/bin:${with_ffmpeg}])
303  fi
304  if test "${FFMPEG}x" != "x" ; then
305    AC_DEFINE(HAVE_FFMPEG, 1, [Render servers can use ffmpeg])
306  fi
307fi
308
309AC_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],,,[
310#define __STDC_CONSTANT_MACROS 1
311])
312
313HAVE_FFMPEG_LIBS=""
314if test "${with_ffmpeg}" != "no"; then
315  if [[ \( "${ac_cv_header_ffmpeg_avcodec_h}" = "yes" -o \
316        "${ac_cv_header_libavcodec_avcodec_h}" = "yes" \) -a \
317     \( "${ac_cv_header_ffmpeg_avformat_h}" = "yes" -o \
318        "${ac_cv_header_libavformat_avformat_h}" = "yes" \) -a \
319     \( "${ac_cv_header_ffmpeg_avutil_h}" = "yes" -o \
320        "${ac_cv_header_libavutil_avutil_h}" = "yes" \) -a \
321     \( "${ac_cv_header_ffmpeg_swscale_h}" = "yes" -o \
322        "${ac_cv_header_libswscale_swscale_h}" = "yes" \) ]] ; then
323    HAVE_FFMPEG_LIBS="yes"
324    AC_DEFINE(BUILD_with_ffmpeg, 1, [Build rappture with ffmpeg widgets])
325  fi
326  AC_CHECK_LIB(avcodec, main,,AC_MSG_ERROR(librappture requires libavcodec))
327  AC_CHECK_LIB(avutil, main,,AC_MSG_ERROR(librappture requires libavutil))
328  AC_CHECK_LIB(avformat, main,,AC_MSG_ERROR(librappture requires libavformat))
329  AC_CHECK_LIB(swscale, main)
330  AC_CHECK_FUNCS(av_find_stream_info)
331  AC_CHECK_FUNCS(av_open_input_file)
332  AC_CHECK_FUNCS(avcodec_decode_video)
333  AC_CHECK_FUNCS(avcodec_decode_video2)
334  AC_CHECK_FUNCS(avcodec_open)
335  AC_CHECK_FUNCS(avcodec_open2)
336  AC_CHECK_FUNCS(avformat_find_stream_info)
337  AC_CHECK_FUNCS(avformat_open_input)
338  AC_CHECK_FUNCS(avio_close)
339  AC_CHECK_FUNCS(img_convert)
340  AC_CHECK_FUNCS(sws_getCachedContext)
341  AC_CHECK_FUNCS(sws_scale)
342  AC_CHECK_FUNCS(url_close)
343  AC_CHECK_FUNCS(av_close_input_file)
344  AC_CHECK_FUNCS(avformat_close_input)
345
346  AC_CHECK_FUNC(avcodec_find_decoder,,
347    AC_MSG_ERROR(oops! no av_codec_find_decoder ?!?))
348  AC_CHECK_FUNC(avcodec_alloc_frame,,
349    AC_MSG_ERROR(oops! no avcode_alloc_frame ?!?))
350  AC_CHECK_FUNC(av_rescale_q,,AC_MSG_ERROR(oops! no av_rescale_q ?!?))
351  AC_CHECK_FUNC(av_read_frame,,AC_MSG_ERROR(oops! av_read_frame ?!?))
352  AC_CHECK_FUNC(av_free,,AC_MSG_ERROR(oops! no av_frame ?!?))
353  AC_CHECK_FUNC(avcodec_default_release_buffer,,
354    AC_MSG_ERROR(oops! no avcode_default_release_buffer ?!?))
355  AC_CHECK_FUNC(avpicture_get_size,,
356    AC_MSG_ERROR(oops! no avpicture_get_size ?!?))
357  AC_CHECK_FUNC(avpicture_fill,,AC_MSG_ERROR(oops! no avpicture_fill ?!?))
358  AC_CHECK_FUNCS(sws_getCachedContext)
359  AC_CHECK_FUNCS(img_convert)
360  AC_CHECK_FUNCS(sws_scale)
361  AC_TRY_COMPILE([
362#define __STDC_CONSTANT_MACROS 1
363#include <stdlib.h>
364#ifdef HAVE_FFMPEG_AVCODEC_H
365# include <ffmpeg/avcodec.h>
366#endif
367#ifdef HAVE_LIBAVCODEC_AVCODEC_H
368# include <libavcodec/avcodec.h>
369#endif
370int x = AVMEDIA_TYPE_VIDEO;
371],, ac_avmedia_type_video="yes", ac_avmedia_type_video="no")
372  if test "$ac_avmedia_type_video" == "yes" ; then
373    AC_DEFINE(HAVE_AVMEDIA_TYPE_VIDEO,1,[Define if AVMEDIA_TYPE_VIDEO enum exists. ])
374  fi
375fi
376
377AC_SUBST(CFLAGS_DEBUG)
378AC_SUBST(CFLAGS_OPTIMIZE)
379AC_SUBST(ENABLE_LANG)
380AC_SUBST(ENABLE_GUI)
381AC_SUBST(ENABLE_VTK)
382AC_SUBST(ENABLE_VTK_DICOM)
383AC_SUBST(FFMPEG)
384AC_SUBST(HAVE_FFMPEG_LIBS)
385AC_SUBST(HAVE_INTTYPES_H)
386AC_SUBST(HAVE_RUBY_DEVEL)
387AC_SUBST(INSTALL_PREFIX)
388AC_SUBST(JAVA)
389AC_SUBST(JAVAC)
390AC_SUBST(JAVAH)
391AC_SUBST(JAVA_HOME)
392AC_SUBST(JAVA_INC_DIR)
393AC_SUBST(JAVA_INC_SPEC)
394AC_SUBST(LIB_SEARCH_DIRS)
395AC_SUBST(MAKE, ${make_command})
396AC_SUBST(MATLAB)
397AC_SUBST(MCC)
398AC_SUBST(MEX)
399AC_SUBST(MEXEXT)
400AC_SUBST(MEX_ARCH)
401AC_SUBST(MKOCTFILE2)
402AC_SUBST(MKOCTFILE3)
403AC_SUBST(SVN_VERSION)
404AC_SUBST(SVN_URL)
405AC_SUBST(OCTAVE_VERSION)
406AC_SUBST(OCTAVE_VERSION_MAJOR)
407AC_SUBST(PERL)
408AC_SUBST(PERL_ARCHLIB)
409AC_SUBST(PERL_ARCHLIBEXP)
410AC_SUBST(PERL_CCFLAGS)
411AC_SUBST(PERL_CPPFLAGS)
412AC_SUBST(PERL_INCLUDES)
413AC_SUBST(PERL_INSTALLARCHLIB)
414AC_SUBST(PERL_LIBSPEC)
415AC_SUBST(PERL_PRIVLIB)
416AC_SUBST(PERL_VENDORLIB)
417AC_SUBST(PERL_VERSION)
418AC_SUBST(PERL_VERSION_RV)
419AC_SUBST(PYTHON)
420AC_SUBST(PYTHON_CFLAGS)
421AC_SUBST(PYTHON_DISTUTILS)
422AC_SUBST(PYTHON_INCDIR)
423AC_SUBST(PYTHON_INCLUDES)
424AC_SUBST(PYTHON_LDFLAGS)
425AC_SUBST(PYTHON_LIB)
426AC_SUBST(PYTHON_LIBDIR)
427AC_SUBST(PYTHON_SITE_DIR)
428AC_SUBST(PYTHON_SITE_PACKAGES)
429AC_SUBST(PYTHON_VERSION)
430AC_SUBST(R)
431AC_SUBST(RP_BASE)
432AC_SUBST(RUBY)
433AC_SUBST(RUBY_PLATFORM)
434AC_SUBST(RUBY_VERSION_RV)
435AC_SUBST(SHLIB_CFLAGS)
436AC_SUBST(SHLIB_LD)
437AC_SUBST(SHLIB_LDFLAGS)
438AC_SUBST(SHLIB_SUFFIX)
439AC_SUBST(SIZEOF_INT)
440AC_SUBST(SIZEOF_LONG)
441AC_SUBST(SIZEOF_LONG_LONG)
442AC_SUBST(SIZEOF_VOID_P)
443AC_SUBST(STLIB_LD)
444AC_SUBST(TCLSH)
445AC_SUBST(TCL_INC_SPEC)
446AC_SUBST(TCL_LIB_SPEC)
447AC_SUBST(TCL_CFLAGS_DEBUG)
448AC_SUBST(TCL_CFLAGS_OPTIMIZE)
449AC_SUBST(TCL_SHLIB_CFLAGS)
450AC_SUBST(TCL_SHLIB_LD)
451AC_SUBST(TCL_SHLIB_LDFLAGS)
452AC_SUBST(TCL_SHLIB_SUFFIX)
453AC_SUBST(TCL_VERSION)
454AC_SUBST(TCL_VERSION)
455AC_SUBST(TK_INC_SPEC)
456AC_SUBST(TK_LIB_SPEC)
457AC_SUBST(TCL_CFLAGS_DEBUG)
458AC_SUBST(TCL_SHLIB_CFLAGS)
459AC_SUBST(TCL_SHLIB_SUFFIX)
460AC_SUBST(TCL_SHLIB_LD)
461AC_SUBST(TCL_SHLIB_LDFLAGS)
462AC_SUBST(TK_XLIBSW)
463AC_SUBST(TK_VERSION)
464AC_SUBST(VTK_TCL_DIR)
465AC_SUBST(VTK_VERSION)
466AC_SUBST(XSUBPP)
467
468ac_configure_args="--disable-threads --enable-shared"
469AC_CONFIG_SUBDIRS( [packages/optimizer/src] )
470
471dnl read Makefile.in and write Makefile
472AC_CONFIG_FILES([
473    Makefile
474    packages/Makefile
475    src/Makefile
476    src/core/Makefile
477    src/core2/Makefile
478    src/objects/Makefile
479    src/objects/RpHash.h
480    gui/Makefile
481    gui/apps/Makefile
482    gui/apps/about
483    gui/apps/copy_rappture_examples
484    gui/apps/encodedata
485    gui/apps/rappture
486    gui/apps/rappture-csh.env
487    gui/apps/rappture.env
488    gui/apps/rappture.use
489    gui/apps/rerun
490    gui/apps/simsim
491    gui/apps/xmldiff
492    gui/pkgIndex.tcl
493    gui/scripts/Makefile
494    gui/src/Makefile
495    builder/Makefile
496    builder/pkgIndex.tcl
497    builder/scripts/Makefile
498    tester/Makefile
499    tester/pkgIndex.tcl
500    tester/scripts/Makefile
501    lang/Makefile
502    lang/java/Makefile
503    lang/java/rappture/Makefile
504    lang/perl/Makefile
505    lang/perl/Makefile.PL
506    lang/python/Makefile
507    lang/python/setup.py
508    lang/matlab/Makefile
509    lang/octave/Makefile
510    lang/octave/octave2/Makefile
511    lang/octave/octave3/Makefile
512    lang/R/Makefile
513    lang/ruby/Makefile
514    lang/ruby/build.rb
515    lang/tcl/Makefile
516    lang/tcl/pkgIndex.tcl
517    lang/tcl/scripts/Makefile
518    lang/tcl/src/Makefile
519    lang/tcl/tests/Makefile
520    lib/Makefile
521    examples/3D/Makefile
522    examples/Makefile
523    examples/app-fermi/2.0/Makefile
524    examples/app-fermi/Makefile
525    examples/app-fermi/cee/Makefile
526    examples/app-fermi/fortran/Makefile
527    examples/app-fermi/java/Makefile
528    examples/app-fermi/matlab/Makefile
529    examples/app-fermi/matlab/compiled/Makefile
530    examples/app-fermi/matlab/uncompiled/Makefile
531    examples/app-fermi/octave/octave2/Makefile
532    examples/app-fermi/octave/octave3/Makefile
533    examples/app-fermi/octave/Makefile
534    examples/app-fermi/perl/Makefile
535    examples/app-fermi/python/Makefile
536    examples/app-fermi/ruby/Makefile
537    examples/app-fermi/tcl/Makefile
538    examples/app-fermi/wrapper/Makefile
539    examples/app-fermi/wrapper/cee/Makefile
540    examples/app-fermi/wrapper/perl/Makefile
541    examples/app-fermi/wrapper/python/Makefile
542    examples/app-fermi/wrapper/tcl/Makefile
543    examples/app-fermi/R/Makefile
544    examples/c-example/Makefile
545    examples/canvas/Makefile
546    examples/demo.bash
547    examples/flow/Makefile
548    examples/flow/demo1/Makefile
549    examples/flow/demo2/Makefile
550    examples/flow/demo3/Makefile
551    examples/graph/Makefile
552    examples/objects/Makefile
553    examples/objects/axis/Makefile
554    examples/objects/curve/Makefile
555    examples/objects/dxWriter/Makefile
556    examples/objects/floatBuffer/Makefile
557    examples/objects/histogram/Makefile
558    examples/objects/library/Makefile
559    examples/objects/number/Makefile
560    examples/objects/path/Makefile
561    examples/objects/plot/Makefile
562    examples/objects/scatter/Makefile
563    examples/objects/string/Makefile
564    examples/objects/tree/Makefile
565    examples/objects/xmlparser/Makefile
566    examples/zoo/Makefile
567    examples/zoo/binary/Makefile
568    examples/zoo/boolean/Makefile
569    examples/zoo/choice/Makefile
570    examples/zoo/curve/Makefile
571    examples/zoo/drawing/Makefile
572    examples/zoo/enable/Makefile
573    examples/zoo/field/Makefile
574    examples/zoo/group/Makefile
575    examples/zoo/histogram/Makefile
576    examples/zoo/image/Makefile
577    examples/zoo/image/docs/Makefile
578    examples/zoo/image/examples/Makefile
579    examples/zoo/integer/Makefile
580    examples/zoo/integer2/Makefile
581    examples/zoo/loader/Makefile
582    examples/zoo/loader/examples/Makefile
583    examples/zoo/log/Makefile
584    examples/zoo/mesh/Makefile
585    examples/zoo/note/Makefile
586    examples/zoo/note/docs/Makefile
587    examples/zoo/number/Makefile
588    examples/zoo/number2/Makefile
589    examples/zoo/parallelepiped/Makefile
590    examples/zoo/periodicelement/Makefile
591    examples/zoo/phase/Makefile
592    examples/zoo/sequence/Makefile
593    examples/zoo/sequence/examples/Makefile
594    examples/zoo/string/Makefile
595    examples/zoo/structure/Makefile
596    examples/zoo/structure/examples/Makefile
597    examples/zoo/table/Makefile
598    video/Makefile
599    video/pkgIndex.tcl
600    oldtest/Makefile
601    oldtest/src/Makefile
602    puq/Makefile
603])
604AC_OUTPUT
605
Note: See TracBrowser for help on using the repository browser.