Changeset 4872
- Timestamp:
- Dec 15, 2014 9:06:59 AM (8 years ago)
- Location:
- branches/r9
- Files:
-
- 10 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/r9/Makefile.in
r4870 r4872 68 68 69 69 targets = \ 70 blt cmake examples expat expect gui htmlwidget itcl \70 apps blt cmake examples expat expect gui htmlwidget itcl \ 71 71 itk lang lib optimizer shape sqlitetcl tcl tcllib \ 72 tdom tester tk tkimg tls video vtk zlib packages \ 73 apps p2p 72 tdom tk tkimg tls video vtk zlib packages \ 74 73 75 74 .PHONY: $(targets) … … 127 126 $(tls) $(vtk) $(zlib) $(apps) 128 127 129 if eq ("$(HAVE_VTK)", 1)128 ifneq ("$(HAVE_VTK)", ) 130 129 vtk_timestamp = $(vtk)/timestamp 131 130 cmake_timestamp = $(cmake)/timestamp -
branches/r9/configure
r4870 r4872 624 624 ac_subst_vars='LTLIBOBJS 625 625 LIBOBJS 626 HAVE_VTK 626 627 RAPPTURE_RELEASE_SERIAL 627 628 RAPPTURE_MINOR_VERSION … … 1383 1384 --with-install=DIR location of installation [default=yes] 1384 1385 --with-statsdir=DIR Write statistics in DIR 1386 --with-vtk Build VTK for rappture 1385 1387 --with-ffmpeg=DIR location of ffmpeg [default=yes] 1386 1388 --with-vtk=version VTK library version [default=6.1] … … 4973 4975 4974 4976 4977 HAVE_VTK="" 4978 4979 # Check whether --with-statsdir was given. 4980 if test "${with_statsdir+set}" = set; then : 4981 withval=$with_statsdir; HAVE_VTK=$withval 4982 else 4983 HAVE_VTK="" 4984 fi 4985 4975 4986 4976 4987 for ac_func in sysinfo … … 5573 5584 fi 5574 5585 5575 5576 SC_CONFIG_CFLAGS5577 5586 5578 5587 SVN_VERSION=`svnversion $srcdir` … … 5706 5715 RP_BASE=`pwd` 5707 5716 5708 SC_ENABLE_SHARED5709 5710 5717 #-------------------------------------------------------------------- 5711 5718 # This macro figures out what flags to use with the compiler/linker … … 6108 6115 6109 6116 MAKE=${make_command} 6117 6110 6118 6111 6119 -
branches/r9/configure.in
r4870 r4872 57 57 fi 58 58 59 HAVE_VTK="" 59 60 AC_ARG_WITH( 60 [statsdir], 61 [AS_HELP_STRING([--with-statsdir=DIR], 62 [Write statistics in DIR])], 63 [STATSDIR=$withval], 64 [STATSDIR="/var/tmp/visservers"]) 65 61 [vtk], 62 [AS_HELP_STRING([--with-vtk], 63 [Build VTK for rappture])], 64 [HAVE_VTK=$withval], 65 [HAVE_VTK=""]) 66 66 67 67 AC_CHECK_FUNCS(sysinfo) … … 113 113 fi 114 114 115 116 SC_CONFIG_CFLAGS117 115 118 116 SVN_VERSION=`svnversion $srcdir` … … 231 229 232 230 RP_BASE=`pwd` 233 234 SC_ENABLE_SHARED235 231 236 232 #-------------------------------------------------------------------- … … 323 319 AC_SUBST(RAPPTURE_MINOR_VERSION) 324 320 AC_SUBST(RAPPTURE_RELEASE_SERIAL) 321 AC_SUBST(HAVE_VTK) 325 322 326 323 dnl read Makefile.in and write Makefile … … 339 336 apps/simsim 340 337 apps/xmldiff 341 pkgs/DicomToVtk/Makefile342 pkgs/DicomToVtk/pkgIndex.tcl343 pkgs/DxToVtk/Makefile344 pkgs/DxToVtk/pkgIndex.tcl345 pkgs/Makefile346 pkgs/PdbToVtk/Makefile347 pkgs/PdbToVtk/pkgIndex.tcl348 pkgs/builder/Makefile349 pkgs/builder/pkgIndex.tcl350 pkgs/builder/scripts/Makefile351 pkgs/diffview/Makefile352 pkgs/diffview/pkgIndex.tcl353 pkgs/hotspot/Makefile354 pkgs/hotspot/pkgIndex.tcl355 pkgs/listbox/Makefile356 pkgs/listbox/pkgIndex.tcl357 pkgs/objects/Makefile358 pkgs/p2p/Makefile359 pkgs/placard/Makefile360 pkgs/placard/pkgIndex.tcl361 pkgs/readpoints/Makefile362 pkgs/readpoints/pkgIndex.tcl363 pkgs/runner/Makefile364 pkgs/runner/pkgIndex.tcl365 pkgs/runner/scripts/Makefile366 pkgs/squeezer/Makefile367 pkgs/squeezer/pkgIndex.tcl368 pkgs/system/Makefile369 pkgs/system/pkgIndex.tcl370 pkgs/tester/Makefile371 pkgs/tester/pkgIndex.tcl372 pkgs/tester/scripts/Makefile373 338 ]) 374 339 AC_OUTPUT -
branches/r9/lib/Makefile.in
r4860 r4872 45 45 $(MAKE) -C $$i install || exit 1 ;\ 46 46 done 47 $(INSTALL) -m 0444 rapptureConfig.sh $(libdir) 47 48 48 49 docs: -
branches/r9/lib/configure.in
r4866 r4872 3 3 AC_CONFIG_AUX_DIR(../cf) 4 4 AC_CONFIG_HEADER(rappture/config.h) 5 6 RAPPTURE_MAJOR_VERSION=1 7 RAPPTURE_MINOR_VERSION=4 8 RAPPTURE_RELEASE_SERIAL=0 5 9 6 10 #------------------------------------------------------------------------ … … 159 163 AC_SUBST(SIZEOF_VOID_P) 160 164 AC_SUBST(STLIB_LD) 165 AC_SUBST(RAPPTURE_MAJOR_VERSION) 166 AC_SUBST(RAPPTURE_MINOR_VERSION) 167 AC_SUBST(RAPPTURE_RELEASE_SERIAL) 161 168 162 169 dnl read Makefile.in and write Makefile 163 170 AC_CONFIG_FILES([ 164 171 Makefile 172 rapptureConfig.sh 165 173 rappture/Makefile 166 174 rappture2/Makefile -
branches/r9/pkgs/system/Makefile.in
r4852 r4872 62 62 signal.o \ 63 63 slice.o \ 64 switch.o \65 64 sysinfo.o 66 65
Note: See TracChangeset
for help on using the changeset viewer.