source: branches/1.3/configure.in @ 3910

Last change on this file since 3910 was 3739, checked in by gah, 11 years ago

bandaid R bindings for R 3.0.1

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