upgrade to snappy 1.0.3

This commit is contained in:
Taro L. Saito 2011-06-03 17:22:41 +09:00
parent ff92621e98
commit 9dda5e296f
3 changed files with 10 additions and 9 deletions

View File

@ -33,33 +33,34 @@ DLL_TIGER_MAC=$(DLL_DIR)/Mac/i386/libsnappyjava.jnilib
DLL_LINUX=$(DLL_DIR)/Linux/i386/libsnappyjava.so
DLL_AMD64=$(DLL_DIR)/Linux/amd64/libsnappyjava.so
version_file:=src/main/java/org/xerial/snappy/VERSION
$(DLL_WIN):
$(DLL_WIN): $(version_file)
ssh $(WIN64_SERVER) "source .zprofile && cd $(WORK) && $(BUILD_CMD_PREFIX) win32"
mkdir -p $(dir $(DLL_WIN))
$(RSYNC) $(WIN_SERVER):./$(WORK)/$(DLL_WIN) $(DLL_WIN)
$(DLL_WIN64):
$(DLL_WIN64): $(version_file)
ssh $(WIN64_SERVER) "source .zprofile && cd $(WORK) && $(BUILD_CMD)"
mkdir -p $(dir $(DLL_WIN64))
$(RSYNC) $(WIN64_SERVER):./$(WORK)/$(DLL_WIN64) $(DLL_WIN64)
$(DLL_MAC):
$(DLL_MAC): $(version_file)
ssh $(MAC_SERVER) "source .zprofile && cd $(WORK) && $(BUILD_CMD)"
mkdir -p $(dir $(DLL_MAC))
$(RSYNC) $(MAC_SERVER):./$(WORK)/$(DLL_MAC) $(DLL_MAC)
$(DLL_TIGER_MAC):
$(DLL_TIGER_MAC): $(version_file)
ssh $(MAC_TIGER_SERVER) "source .zprofile && cd $(WORK) && $(BUILD_CMD)"
mkdir -p $(dir $(DLL_TIGER_MAC))
$(RSYNC) $(MAC_TIGER_SERVER):./$(WORK)/$(DLL_TIGER_MAC) $(DLL_TIGER_MAC)
$(DLL_LINUX):
$(DLL_LINUX):$(version_file)
ssh $(AMD_SERVER) "source .zprofile && cd $(WORK) && $(BUILD_CMD_PREFIX) linux32"
mkdir -p $(dir $(DLL_LINUX))
$(RSYNC) $(AMD_SERVER):./$(WORK)/$(DLL_LINUX) $(DLL_LINUX)
$(DLL_AMD64):
$(DLL_AMD64):$(version_file)
ssh $(AMD_SERVER) "source .zprofile && cd $(WORK) && $(BUILD_CMD)"
mkdir -p $(dir $(DLL_AMD64))
$(RSYNC) $(AMD_SERVER):./$(WORK)/$(DLL_AMD64) $(DLL_AMD64)

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.3-SNAPSHOT</version>
<name>Snappy for Java</name>
<description>Compression/decompression library</description>
@ -16,7 +16,7 @@
<resource>
<directory>src/main/resources</directory>
<includes>
<include>org/xerial/snappy/native/**</include>
<include>org/xerial/snappy/native/**</include>g
</includes>
</resource>
<resource>

View File

@ -1 +1 @@
VERSION=1.0.2
VERSION=1.0.3