source: branches/1.2/configure.in @ 4643

Last change on this file since 4643 was 3601, checked in by gah, 11 years ago

put back new ruby configure test

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