Unix build: build zip/unzip only if building server

This commit is contained in:
David Anderson 2013-05-28 13:51:49 -07:00
parent 439299d7b3
commit 03e2866da7
2 changed files with 8 additions and 5 deletions

View File

@ -9,7 +9,10 @@ include Makefile.incl
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4
if ENABLE_LIBRARIES if ENABLE_LIBRARIES
API_SUBDIRS = api lib zip API_SUBDIRS = api lib
if ENABLE_SERVER
API_SUBDIRS += zip
endif
endif endif
if ENABLE_SERVER if ENABLE_SERVER

View File

@ -10,10 +10,10 @@
#define BOINC_MINOR_VERSION 1 #define BOINC_MINOR_VERSION 1
/* Release part of BOINC version number */ /* Release part of BOINC version number */
#define BOINC_RELEASE 2 #define BOINC_RELEASE 1
/* String representation of BOINC version number */ /* String representation of BOINC version number */
#define BOINC_VERSION_STRING "7.1.2" #define BOINC_VERSION_STRING "7.1.1"
/* Package is a pre-release (Alpha/Beta) package */ /* Package is a pre-release (Alpha/Beta) package */
#define BOINC_PRERELEASE 1 #define BOINC_PRERELEASE 1
@ -29,13 +29,13 @@
#define PACKAGE_NAME "BOINC" #define PACKAGE_NAME "BOINC"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "BOINC 7.1.2" #define PACKAGE_STRING "BOINC 7.1.1"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "boinc" #define PACKAGE_TARNAME "boinc"
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "7.1.2" #define PACKAGE_VERSION "7.1.1"
#endif /* #if (defined(_WIN32) || defined(__APPLE__)) */ #endif /* #if (defined(_WIN32) || defined(__APPLE__)) */