mirror of https://github.com/BOINC/boinc.git
removed extraneous make stuff
svn path=/trunk/boinc/; revision=537
This commit is contained in:
parent
1f39feb15d
commit
241968afec
|
@ -1,32 +0,0 @@
|
|||
AC_DEFUN([AC_PROG_APACHE],[
|
||||
AC_REQUIRE([AC_EXEEXT])dnl
|
||||
AC_PATH_PROG(APACHE, apache$EXEEXT, nocommand)
|
||||
if test "$APACHE" = nocommand; then
|
||||
AC_MSG_WARN([****************************************])
|
||||
AC_MSG_WARN([apache not found in $PATH])
|
||||
AC_MSG_WARN([The BOINC server may not function properly without apache installed.])
|
||||
AC_MSG_WARN([****************************************])
|
||||
fi
|
||||
])
|
||||
|
||||
AC_DEFUN([AC_PROG_MYSQL],[
|
||||
AC_REQUIRE([AC_EXEEXT])dnl
|
||||
AC_PATH_PROG(MYSQL, mysql$EXEEXT, nocommand)
|
||||
if test "$MYSQL" = nocommand; then
|
||||
AC_MSG_WARN([****************************************])
|
||||
AC_MSG_WARN([mysql not found in $PATH])
|
||||
AC_MSG_WARN([The BOINC server may not function properly without mysql installed.])
|
||||
AC_MSG_WARN([****************************************])
|
||||
fi
|
||||
])
|
||||
|
||||
AC_DEFUN([AC_PROG_PHP],[
|
||||
AC_REQUIRE([AC_EXEEXT])dnl
|
||||
AC_PATH_PROG(PHP, php$EXEEXT, nocommand)
|
||||
if test "$PHP" = nocommand; then
|
||||
AC_MSG_WARN([****************************************])
|
||||
AC_MSG_WARN([php not found in $PATH])
|
||||
AC_MSG_WARN([The test scripts and web utilities may not function properly without php installed.])
|
||||
AC_MSG_WARN([****************************************])
|
||||
fi
|
||||
])
|
|
@ -4,9 +4,6 @@ AC_INIT(api/api_test.C)
|
|||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_APACHE
|
||||
AC_PROG_MYSQL
|
||||
AC_PROG_PHP
|
||||
|
||||
dnl Checks for libraries.
|
||||
dnl Replace `main' with a function in -lgen:
|
||||
|
|
13
todo
13
todo
|
@ -1,3 +1,16 @@
|
|||
protection mechanism for project admin web
|
||||
|
||||
Deadline mechanism for results
|
||||
- use in result dispatching
|
||||
- use in file uploading (decide what to upload next)
|
||||
- use in deciding when to make scheduler RPC (done already?)
|
||||
|
||||
create "result adder" program that detects WUs that don't have
|
||||
a canonical result yet, and should,
|
||||
and creates more results for them.
|
||||
This should detect situations where we're getting lots
|
||||
of error results, and skip over those WUs
|
||||
|
||||
CPU benchmarking
|
||||
This should be done by a pseudo-application
|
||||
rather than by the core client.
|
||||
|
|
Loading…
Reference in New Issue