source: branches/r9/configure.in @ 4852

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