source: tags/1.3.5/configure.in @ 5036

Last change on this file since 5036 was 4754, checked in by ldelgass, 9 years ago

merge r4668:4669 from trunk

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