Commit Graph

398 Commits

Author SHA1 Message Date
David Anderson dcc3c49938 - client: on Linux, run CPU-intensive jobs with the SCHED_BATCH scheduler.
Improves interactive response of system when jobs running.
    From Clive Messer.

svn path=/trunk/boinc/; revision=19143
2009-09-23 16:51:40 +00:00
David Anderson c2c52eba79 - Unix build fix
svn path=/trunk/boinc/; revision=19114
2009-09-21 16:15:28 +00:00
David Anderson d2fba4b627 - Unix build: use autoreconf
svn path=/trunk/boinc/; revision=19094
2009-09-18 18:22:25 +00:00
Eric J. Korpela ae9f1934df Fix for static client (--enable-client-release) builds
svn path=/trunk/boinc/; revision=18975
2009-09-01 20:36:58 +00:00
Rom Walton fb8540f6b5 svn path=/trunk/boinc/; revision=18856 2009-08-18 15:58:58 +00:00
Rom Walton 34bdf155e8 - Remove boinc_zip(InfoZip) from the main BOINC tree
- Remove boinc_zip from the build system
    
    /
        configure.ac
        Makefile.am

svn path=/trunk/boinc/; revision=18620
2009-07-17 16:45:08 +00:00
David Anderson 6bc55040f0 - server: Use distutils for installing the python modules,
and move files not part of the BOINC package from py/Boinc to py/
    From Gabor Gombas.

svn path=/trunk/boinc/; revision=18375
2009-06-11 16:01:36 +00:00
David Anderson 144c106e19 - make_project and upgrade: add --srcdir option so you
can run these commands from any directory
    (mostly from Gabor Gombas; added a fix for svnversion)

svn path=/trunk/boinc/; revision=18356
2009-06-10 22:38:33 +00:00
Rom Walton 7580a01415 - Change version number to 6.9.x
/
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=18228
2009-05-29 16:02:32 +00:00
Rom Walton 792081a150 - Tag for 6.7.5 release, all platforms
boinc_core_release_6_7_5

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=18187
2009-05-22 14:18:46 +00:00
Rom Walton 385da4f3e7 Sqlite3 support for build system
svn path=/trunk/boinc/; revision=18147
2009-05-18 17:09:02 +00:00
Rom Walton 315b25f526 Add Sqlite3 support to build system
svn path=/trunk/boinc/; revision=18145
2009-05-18 15:38:07 +00:00
Eric J. Korpela 8f3abcc835 - Added checks for net/*.h, arpa/*.h, netinet/*.h and code to figure out
which of those files to include
    - Modified MAC address check to work on some non-Linux unixes.
      (mac_address.cpp)
    - Added suggested change to "already attached to project" checking.
      (ProjectInfoPage.cpp)
    - changed includes of standard c header files to their c++ equivalents
      (i.e. replaced <stdio.h> with <cstdio>) for namespace protection.
    - replaced "using namespace std;" with more explicit "using std::function" in
      several files.
    - Fixed bug in checking whether the os is OS/2 and added conditional OS_OS2
      to the build environment. (boinc_platform.m4,configure.ac)
    - Changed build environment to not use -nostandardlibs unless we are using
      G++ and static linkage is specified. (configure.ac)
    - Added makefiles and package building files for solaris CSW package manager.
    - Fixed bug with attempting to find login name using logname. (configure.ac)
    - Added ifdef HAVE_* protection around some include files commonly found in
      sys.
    - Added support for unified binary for x86_64/i686-pc-solaris.
      (cs_platforms.cpp)
    - generate_host_cpid() now uses MAC address on non-linux unix.
      (hostinfo_network.cpp)
    - Macro BOINC_SET_COMPILE_FLAGS now doesn't check gcc only flags on non-gcc
      compilers. (boinc_set_compile_flags.m4)
    - Library compiles no longer depend upon the library extension or require
      the library to be prefixed with lib.
    - More fixes for fcgi builds.
    - Added declaration of "struct ether_addr" and ether_ntoa().  Have not yet
      implemented ether_ntoa() for machines that don't have it, or where it is
      buggy.  (unix_util.h)
    - Added FCGI::perror() which calls FCGI_perror(). (boinc_fcgi.{h,cpp})
    - Fixed library Makefiles so that all required headers get installed.


svn path=/trunk/boinc/; revision=17388
2009-02-26 00:23:23 +00:00
Eric J. Korpela c50683be8d Minor changes to configure.ac to not check for FCGI when the server is not being
compiled.


svn path=/trunk/boinc/; revision=17043
2009-01-27 19:53:55 +00:00
Eric J. Korpela 40785dfe99 Fixed problems with SEA build.
svn path=/trunk/boinc/; revision=17036
2009-01-27 19:32:42 +00:00
Eric J. Korpela 3570240b53 Fix bug in recent automake distro that causes C programs to be compiled with a
fortran compiler if F77 isn't found before libtool is initialized.

svn path=/trunk/boinc/; revision=16991
2009-01-22 22:26:39 +00:00
Eric J. Korpela 9a2868e715 -Made static linkage of BOINC libraries the default for client,
manager, and server components


svn path=/trunk/boinc/; revision=16928
2009-01-16 00:24:44 +00:00
Eric J. Korpela 4e60ef3003 - STILL WORK TO BE DONE TO GET locale STUFF INSTALLED PROPERLY!!!
- Update to libtool 1.5.24
- build environment:  Major automake changes that I've been warning about
  for some time.
- Now uses libtool to build libraries.
- Builds separate boinc_fcgi and sched_fcgi libraries for use with 
  FCGI server components.
- New macro "BOINC_CHECK_LIB_WITH" that executes a "AC_CHECK_LIB" on
  a library only if --with-libname[=DIR] is specified on the configure
  command line.  This is to allow inclusion of libraries when the 
  ssl, gtk, wxWidgets, or other configuration is incorrect for static
  libraries.
- Added a lot of "--with-*" for some libraries that might be required for
  static builds.
- The sea directory has been moved to packages/generic.  Changes to sea
  and the associated scripts might be required to better make use of the
  staging mechanism and shared libraries.
- Fixed includes of boinc_fcgi.h in many files.
- Fixed places where FCGI_FILE needs to be used implicitly.
- Fixed missing define of _SC_PAGESIZE on hosts that define only
  _SC_PAGE_SIZE.
- Moved build of boinc_cmd (and source file) from lib to client



svn path=/trunk/boinc/; revision=16904
2009-01-13 23:06:02 +00:00
Rom Walton e85784f6c8 - Fix build environment so that it can build the client again
(From Nicolás Alvarez)
      
    /
        configure.ac
        Makefile.am
    sea/
        make-tar.sh
        make-tar_debug.sh

svn path=/trunk/boinc/; revision=16833
2009-01-07 15:17:23 +00:00
Rom Walton 5859c140f3 - Version Update 6.7.0
/
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16752
2008-12-30 21:01:48 +00:00
Rom Walton 0d27df1f82 boinc_core_release_6_5_0
/
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16510
2008-11-17 17:16:02 +00:00
Rom Walton d716be6117 - Tag for 6.3.23 release, all platforms
boinc_core_release_6_3_23

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16489
2008-11-13 20:58:36 +00:00
Rom Walton ab85e4977e - Tag for 6.3.22 release, all platforms
boinc_core_release_6_3_22

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16463
2008-11-10 19:52:02 +00:00
Rom Walton 00cdb4bb4f - Tag for 6.3.21 release, all platforms
boinc_core_release_6_3_21

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16374
2008-10-31 17:01:32 +00:00
Charlie Fenton 90c515c729 Tag for 6.3.20 release, all platforms boinc_core_release_6_3_20
svn path=/trunk/boinc/; revision=16349
2008-10-29 08:05:59 +00:00
Rom Walton 0d16f571ef - Tag for 6.3.19 release, all platforms
boinc_core_release_6_3_19

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16331
2008-10-28 16:20:08 +00:00
Rom Walton ecaca11f1c - Tag for 6.3.18 release, all platforms
boinc_core_release_6_3_18

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16320
2008-10-27 15:07:06 +00:00
Rom Walton 80c248fc38 - Tag for 6.3.17 release, all platforms
boinc_core_release_6_3_17

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16304
2008-10-23 20:31:52 +00:00
Rom Walton 9d973c50e1 - Tag for 6.3.16 release, all platforms
boinc_core_release_6_3_16

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16294
2008-10-23 15:39:02 +00:00
Rom Walton 1a7ac3b5e7 - Tag for 6.3.15 release, all platforms
boinc_core_release_6_3_15

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16231
2008-10-20 15:58:35 +00:00
Rom Walton 85f04ff957 - Tag for 6.3.14 release, all platforms
boinc_core_release_6_3_14

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16140
2008-10-06 15:47:12 +00:00
Rom Walton 71c6477811 - Tag for 6.3.13 release, all platforms
boinc_core_release_6_3_13

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16114
2008-10-02 19:37:22 +00:00
David Anderson 62683e4bdc - update .vcproj files accordingly
svn path=/trunk/boinc/; revision=16070
2008-09-26 18:30:19 +00:00
Rom Walton fc55f3490c - Tag for 6.3.12 release, all platforms
boinc_core_release_6_3_12

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16056
2008-09-25 18:07:58 +00:00
Rom Walton a8d2c599d0 - Tag for 6.3.11 release, all platforms
boinc_core_release_6_3_11

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=16034
2008-09-22 17:05:16 +00:00
Rom Walton ec7687af45 - Tag for 6.3.10 release, all platforms
boinc_core_release_6_3_10

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15927
2008-08-23 18:08:44 +00:00
Rom Walton 6db70de2d8 - Tag for 6.3.9 release, all platforms
boinc_core_release_6_3_9

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15917
2008-08-21 17:34:04 +00:00
Rom Walton d57938cbb7 - Tag for 6.3.8 release, all platforms
boinc_core_release_6_3_8

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15788
2008-08-08 20:11:13 +00:00
Rom Walton 1add814f05 - Tag for 6.3.7 release, all platforms
boinc_core_release_6_3_7

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15786
2008-08-08 19:40:08 +00:00
Rom Walton bd045f0083 - Tag for 6.3.6 release, all platforms
boinc_core_release_6_3_6

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15673
2008-07-25 15:59:05 +00:00
Rom Walton 37f077d5eb - Tag for 6.3.5 release, all platforms
boinc_core_release_6_3_5

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15596
2008-07-11 16:30:35 +00:00
Rom Walton 45d81bbcfc - Tag for 6.3.4 release, all platforms
boinc_core_release_6_3_4

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15490
2008-06-26 18:26:21 +00:00
Eric J. Korpela 613746c853 svn path=/trunk/boinc/; revision=15318 2008-05-28 21:14:53 +00:00
Rom Walton 4287f4a505 - Bump version to 6.3.3
/
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15313
2008-05-28 18:10:53 +00:00
Eric J. Korpela f2787de1c7 - moved icons from sea into clientgui/icons
- added Makefile to clientgui/icons to install them in $(pkgdatadir) which
      is usually $(prefix)/share/boinc.
    - Even though these icons are packaged with the sea, they don't appear
      to be referenced in any code and don't appear to ever be used.


svn path=/trunk/boinc/; revision=15305
2008-05-28 16:15:09 +00:00
Eric J. Korpela d3266f98c1 - configure:
added LIBBOINC_VERSION definition for libtool use.


svn path=/trunk/boinc/; revision=15301
2008-05-28 01:55:21 +00:00
Eric J. Korpela 1f2d65bccb - Makefiles:
added client/scripts to default client build
    removed sea from the default clientgui build
    added locale/client to the default clientgui build
    moved installed headers from $(includedir) to $(pkgincludedir) which
       is $(includedir)/boinc by default.
    removed redefinitions of $(includedir) from Makefiles.
- configure:
    added locale/client/Makefile to AC_CONFIG_FILES


svn path=/trunk/boinc/; revision=15300
2008-05-28 01:38:39 +00:00
Rom Walton 9bfb157dce - Bump version to 6.3.2
/
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15226
2008-05-15 18:53:40 +00:00
Rom Walton a3851f3874 - Bump version to 6.3.1
/
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=15205
2008-05-14 20:58:13 +00:00
Eric J. Korpela 8b72dc9370 - Added implementation of setenv() for systems without it.
- Fixed bug in x_opengl.C.  On systems where putenv() adds the string to
      the environment rather than copies it, the environment would end up
      containing a random peice of the stack where the DISPLAY variable had
      been temporarily stored.



svn path=/trunk/boinc/; revision=15134
2008-05-06 17:10:44 +00:00