Update of /cvsroot/woc/woc
In directory usw-pr-cvs1:/tmp/cvs-serv28403
Modified Files:
configure.in
Log Message:
Server name is now setable. PhysicalRoot parameter in repository is
now autogenerated.
Index: configure.in
===================================================================
RCS file: /cvsroot/woc/woc/configure.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** configure.in 21 Jul 2002 15:47:12 -0000 1.5
--- configure.in 8 Aug 2002 11:06:48 -0000 1.6
***************
*** 10,16 ****
AC_PATH_PROGS(PATHTOGUNZIP, gunzip, no)
! dnl find Lire (http://logreport.org) tools
! AC_PATH_PROGS(PATHTOLIRERUN, lr_run, no)
! AC_PATH_PROGS(PATHTOLIREL2R, lr_log2report, no)
dnl checking for XML tools
--- 10,31 ----
AC_PATH_PROGS(PATHTOGUNZIP, gunzip, no)
! AC_ARG_WITH(hostname,
! [ --with-hostname=name URL of the server],
! [ if test -n "$withval"
! then
! SERVER_HOSTNAME="$withval"
! fi
! ]
! )
! dnl set default
! if test -z "$SERVER_HOSTNAME"
! then
! SERVER_HOSTNAME="www-woc.sci.kun.nl"
! fi
! AC_SUBST(SERVER_HOSTNAME)
!
! dnl set phys path of CVS
! PHYSPATH=`pwd`
! AC_SUBST(PHYSPATH)
dnl checking for XML tools
***************
*** 56,59 ****
--- 71,75 ----
bin/lire/Makefile
bin/lire/report.pl
+ source/wocjava/repository_def.xml
])
|