source: trunk/configure.in @ 3719

Last change on this file since 3719 was 3717, checked in by gah, 11 years ago

fixes for R build, can now make clean, make

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