source: branches/blt4/configure.in @ 5049

Last change on this file since 5049 was 3959, checked in by gah, 11 years ago

sync with trunk

File size: 16.2 KB
Line 
1
2AC_INIT([Rappture],[1.4],[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`
110
111make_command=""
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
115      make_command=$m; break;
116    fi
117  fi
118done
119if test "x${make_command}" = "x" ; then
120  AC_MSG_ERROR([Requires GNU make. You can specify a version with \$MAKE])
121fi
122
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
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
144
145AC_ARG_WITH(
146    [ffmpeg],
147    [AS_HELP_STRING([--with-ffmpeg[=DIR]],
148      [location of ffmpeg @<:@default=yes@:>@])],
149    [],
150    [with_ffmpeg=yes])
151
152AC_ARG_WITH(
153    [tclsh],
154    [AS_HELP_STRING([--with-tclsh[=DIR]],
155        [location of tclsh @<:@default=yes@:>@])],
156    [],
157    [with_tclsh=yes])
158
159TCLSH=""
160if test "${with_tclsh}" != "no" ; then
161  tclsh="tclsh${TCL_VERSION}"
162  if test "${with_tclsh}" = "yes" ; then
163    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${exec_prefix}/bin:${PATH}])
164  else
165    AC_PATH_PROG(TCLSH, ${tclsh}, [], [${with_tclsh}/bin:${with_tclsh}])
166  fi
167  if test "x${TCLSH}" = "x" ; then
168    AC_ERROR([can't find tclsh])
169  fi
170fi
171
172
173TCL_INC_SPEC="$TCL_INCLUDE_SPEC"
174
175AC_ARG_WITH(
176    [vtk],
177    [AS_HELP_STRING([--with-vtk[=DIR]],
178        [location of vtk library @<:@default=yes@:>@])],
179    [],
180    [with_vtk=yes])
181
182AC_MSG_CHECKING([for vtk])
183VTKDIR=""
184
185if test "$with_vtk" != "no" ; then
186  if test "$with_vtk" = "yes" ; then
187    for path in \
188     $libdir \
189     $prefix/lib/tcltk \
190     $prefix/lib \
191     $exec_prefix/lib \
192     /usr/lib
193    do
194      for vtk in $path/vtk-* ; do
195        if test -d "${vtk}" ; then
196          VTKDIR=${vtk}
197        fi
198      done
199      if test "x${VTKDIR}" != "x" ; then
200        break
201      fi
202    done
203  fi
204fi
205AC_MSG_RESULT([$VTKDIR])
206
207RP_LANG_MATLAB
208RP_LANG_OCTAVE
209RP_LANG_PERL
210RP_LANG_PYTHON
211RP_LANG_JAVA
212RP_LANG_R
213RP_LANG_RUBY
214
215RP_BASE=`pwd`
216
217SC_ENABLE_SHARED
218
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
225if test -f "${exec_prefix}/lib/tclConfig.sh" ; then
226  . ${exec_prefix}/lib/tclConfig.sh
227fi
228if test -f "${exec_prefix}/lib/tkConfig.sh" ; then
229  . ${exec_prefix}/lib/tkConfig.sh
230fi
231
232# -----------------------------------------------------------------------
233#
234# Compiler characteristics:
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
251#--------------------------------------------------------------------
252# Set the default compiler switches based on the --enable-symbols
253# option.
254#--------------------------------------------------------------------
255
256SC_ENABLE_SYMBOLS
257
258
259#--------------------------------------------------------------------
260# search for ffmpeg libraries libavcodec, libavformat, libswscale
261#--------------------------------------------------------------------
262if test "${with_ffmpeg}" != "no" ; then
263  if test "${with_ffmpeg}" = "yes" ; then
264    AC_PATH_PROG(FFMPEG, ffmpeg, [], $PATH)
265  else
266    AC_PATH_PROG(FFMPEG, ffmpeg, [], [${with_ffmpeg}/bin:${with_ffmpeg}])
267  fi
268  if test "${FFMPEG}x" != "x" ; then
269    AC_DEFINE(HAVE_FFMPEG, 1, [Render servers can use ffmpeg])
270  fi
271fi
272
273AC_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],,,[
274#define __STDC_CONSTANT_MACROS 1
275])
276
277HAVE_FFMPEG_LIBS=""
278if test "${with_ffmpeg}" != "no"; then
279  if [[ \( "${ac_cv_header_ffmpeg_avcodec_h}" = "yes" -o \
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
287    HAVE_FFMPEG_LIBS="yes"
288    AC_DEFINE(BUILD_with_ffmpeg, 1, [Build rappture with ffmpeg widgets])
289  fi
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))
293  AC_CHECK_LIB(swscale, main)
294  AC_CHECK_FUNCS(av_find_stream_info)
295  AC_CHECK_FUNCS(av_open_input_file)
296  AC_CHECK_FUNCS(avcodec_decode_video)
297  AC_CHECK_FUNCS(avcodec_decode_video2)
298  AC_CHECK_FUNCS(avcodec_open)
299  AC_CHECK_FUNCS(avcodec_open2)
300  AC_CHECK_FUNCS(avformat_find_stream_info)
301  AC_CHECK_FUNCS(avformat_open_input)
302  AC_CHECK_FUNCS(avio_close)
303  AC_CHECK_FUNCS(img_convert)
304  AC_CHECK_FUNCS(sws_getCachedContext)
305  AC_CHECK_FUNCS(sws_scale)
306  AC_CHECK_FUNCS(url_close)
307  AC_CHECK_FUNCS(av_close_input_file)
308  AC_CHECK_FUNCS(avformat_close_input)
309       
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 ?!?))
322  AC_CHECK_FUNCS(sws_getCachedContext)
323  AC_CHECK_FUNCS(img_convert)
324  AC_CHECK_FUNCS(sws_scale)
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
339fi
340
341AC_SUBST(CFLAGS_DEBUG)
342AC_SUBST(CFLAGS_OPTIMIZE)
343AC_SUBST(ENABLE_GUI)
344AC_SUBST(FFMPEG)
345AC_SUBST(HAVE_FFMPEG_LIBS)
346AC_SUBST(HAVE_INTTYPES_H)
347AC_SUBST(HAVE_RUBY_DEVEL)
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)
364AC_SUBST(SVN_VERSION)
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)
390AC_SUBST(R)
391AC_SUBST(RP_BASE)
392AC_SUBST(RUBY)
393AC_SUBST(RUBY_PLATFORM)
394AC_SUBST(RUBY_VERSION_RV)
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)
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)
413AC_SUBST(TCL_VERSION)
414AC_SUBST(TCL_VERSION)
415AC_SUBST(TK_INC_SPEC)
416AC_SUBST(TK_LIB_SPEC)
417AC_SUBST(TCL_CFLAGS_DEBUG)
418AC_SUBST(TCL_SHLIB_CFLAGS)
419AC_SUBST(TCL_SHLIB_SUFFIX)
420AC_SUBST(TCL_SHLIB_LD)
421AC_SUBST(TCL_SHLIB_LDFLAGS)
422AC_SUBST(TK_XLIBSW)
423AC_SUBST(TK_VERSION)
424AC_SUBST(VTKDIR)
425AC_SUBST(XSUBPP)
426
427ac_configure_args="--disable-threads --enable-shared"
428AC_CONFIG_SUBDIRS( [packages/optimizer/src] )
429
430dnl read Makefile.in and write Makefile
431AC_CONFIG_FILES([
432    Makefile
433    packages/Makefile
434    src/Makefile
435    src/core/Makefile
436    src/core2/Makefile
437    src/objects/Makefile
438    src/objects/RpHash.h
439    gui/Makefile
440    gui/apps/Makefile
441    gui/apps/about
442    gui/apps/copy_rappture_examples
443    gui/apps/encodedata
444    gui/apps/rappture
445    gui/apps/rappture-csh.env
446    gui/apps/rappture.env
447    gui/apps/rappture.use
448    gui/apps/rerun
449    gui/apps/simsim
450    gui/apps/xmldiff
451    gui/pkgIndex.tcl
452    gui/scripts/Makefile
453    gui/src/Makefile
454    builder/Makefile
455    builder/pkgIndex.tcl
456    builder/scripts/Makefile
457    tester/Makefile
458    tester/pkgIndex.tcl
459    tester/scripts/Makefile
460    lang/Makefile
461    lang/java/Makefile
462    lang/java/rappture/Makefile
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
469    lang/octave/octave2/Makefile
470    lang/octave/octave3/Makefile
471    lang/R/Makefile
472    lang/ruby/Makefile
473    lang/ruby/build.rb
474    lang/tcl/Makefile
475    lang/tcl/pkgIndex.tcl
476    lang/tcl/scripts/Makefile
477    lang/tcl/src/Makefile
478    lang/tcl/tests/Makefile
479    lib/Makefile
480    examples/3D/Makefile
481    examples/Makefile
482    examples/app-fermi/2.0/Makefile
483    examples/app-fermi/Makefile
484    examples/app-fermi/cee/Makefile
485    examples/app-fermi/fortran/Makefile
486    examples/app-fermi/java/Makefile
487    examples/app-fermi/matlab/Makefile
488    examples/app-fermi/matlab/compiled/Makefile
489    examples/app-fermi/matlab/uncompiled/Makefile
490    examples/app-fermi/octave/octave2/Makefile
491    examples/app-fermi/octave/octave3/Makefile
492    examples/app-fermi/octave/Makefile
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
499    examples/app-fermi/wrapper/perl/Makefile
500    examples/app-fermi/wrapper/python/Makefile
501    examples/app-fermi/wrapper/tcl/Makefile
502    examples/app-fermi/R/Makefile
503    examples/c-example/Makefile
504    examples/canvas/Makefile
505    examples/demo.bash
506    examples/flow/Makefile
507    examples/flow/demo1/Makefile
508    examples/flow/demo2/Makefile
509    examples/flow/demo3/Makefile
510    examples/graph/Makefile
511    examples/objects/Makefile
512    examples/objects/axis/Makefile
513    examples/objects/curve/Makefile
514    examples/objects/dxWriter/Makefile
515    examples/objects/floatBuffer/Makefile
516    examples/objects/histogram/Makefile
517    examples/objects/library/Makefile
518    examples/objects/number/Makefile
519    examples/objects/path/Makefile
520    examples/objects/plot/Makefile
521    examples/objects/scatter/Makefile
522    examples/objects/string/Makefile
523    examples/objects/tree/Makefile
524    examples/objects/xmlparser/Makefile
525    examples/zoo/Makefile
526    examples/zoo/binary/Makefile
527    examples/zoo/boolean/Makefile
528    examples/zoo/choice/Makefile
529    examples/zoo/curve/Makefile
530    examples/zoo/datatable/Makefile
531    examples/zoo/datatable/matlab/Makefile
532    examples/zoo/drawing/Makefile
533    examples/zoo/enable/Makefile
534    examples/zoo/field/Makefile
535    examples/zoo/filechoice/Makefile
536    examples/zoo/group/Makefile
537    examples/zoo/histogram/Makefile
538    examples/zoo/image/Makefile
539    examples/zoo/image/docs/Makefile
540    examples/zoo/image/examples/Makefile
541    examples/zoo/integer/Makefile
542    examples/zoo/integer2/Makefile
543    examples/zoo/loader/Makefile
544    examples/zoo/loader/examples/Makefile
545    examples/zoo/log/Makefile
546    examples/zoo/mesh/Makefile
547    examples/zoo/note/Makefile
548    examples/zoo/note/docs/Makefile
549    examples/zoo/number/Makefile
550    examples/zoo/number2/Makefile
551    examples/zoo/parallelepiped/Makefile
552    examples/zoo/periodicelement/Makefile
553    examples/zoo/phase/Makefile
554    examples/zoo/sequence/Makefile
555    examples/zoo/sequence/examples/Makefile
556    examples/zoo/string/Makefile
557    examples/zoo/structure/Makefile
558    examples/zoo/structure/examples/Makefile
559    examples/zoo/table/Makefile
560    video/Makefile
561    video/pkgIndex.tcl
562    oldtest/Makefile
563    oldtest/src/Makefile
564])
565AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.