source: branches/uq/configure.in @ 5107

Last change on this file since 5107 was 5029, checked in by mmh, 9 years ago

puq integration snap

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