Bump to pbzip 1.1.13 42/99242/1 accepted/tizen_4.0_unified accepted/tizen_5.0_unified accepted/tizen_5.5_unified accepted/tizen_5.5_unified_mobile_hotfix accepted/tizen_5.5_unified_wearable_hotfix accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix accepted/tizen_6.5_base accepted/tizen_6.5_base_tool accepted/tizen_7.0_base accepted/tizen_7.0_base_hotfix accepted/tizen_7.0_base_tool accepted/tizen_7.0_base_tool_hotfix accepted/tizen_8.0_base accepted/tizen_base accepted/tizen_base_tool accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_unified accepted/tizen_wearable tizen tizen_4.0 tizen_4.0_tv tizen_5.0 tizen_5.5 tizen_5.5_mobile_hotfix tizen_5.5_tv tizen_5.5_wearable_hotfix tizen_6.0 tizen_6.0_hotfix tizen_6.5_base tizen_7.0_base tizen_7.0_base_hotfix tizen_8.0_base tizen_base accepted/tizen/4.0/unified/20170816.013810 accepted/tizen/4.0/unified/20170828.221817 accepted/tizen/5.0/unified/20181102.030735 accepted/tizen/5.5/unified/20191031.013952 accepted/tizen/5.5/unified/mobile/hotfix/20201027.072739 accepted/tizen/5.5/unified/wearable/hotfix/20201027.105311 accepted/tizen/6.0/unified/20201030.112629 accepted/tizen/6.0/unified/hotfix/20201102.232122 accepted/tizen/6.5/base/20230714.002623 accepted/tizen/6.5/base/tool/20211028.034925 accepted/tizen/7.0/base/20230714.003032 accepted/tizen/7.0/base/hotfix/20230714.003844 accepted/tizen/7.0/base/tool/20221028.120534 accepted/tizen/7.0/base/tool/hotfix/20221115.085019 accepted/tizen/8.0/base/20231005.045012 accepted/tizen/base/20230714.003438 accepted/tizen/common/20170112.170620 accepted/tizen/ivi/20170112.222110 accepted/tizen/mobile/20170112.222021 accepted/tizen/tv/20170112.222036 accepted/tizen/unified/20170309.040200 accepted/tizen/wearable/20170112.222052 submit/tizen/20170112.004159 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170828.100007 submit/tizen_5.0/20181101.000007 submit/tizen_5.5/20191031.000008 submit/tizen_5.5_mobile_hotfix/20201026.185108 submit/tizen_5.5_wearable_hotfix/20201026.184308 submit/tizen_6.0/20201029.205503 submit/tizen_6.0_hotfix/20201102.192903 submit/tizen_6.0_hotfix/20201103.115103 submit/tizen_6.5_base/20211026.180901 submit/tizen_6.5_base/20211027.183101 submit/tizen_6.5_base/20211027.201001 submit/tizen_6.5_base/20211028.121101 submit/tizen_6.5_base/20211028.124201 submit/tizen_7.0_base/20221028.201101 submit/tizen_7.0_base_hotfix/20221115.161601 submit/tizen_base/20210121.051635 submit/tizen_base/20210121.051639 submit/tizen_base/20210121.064413 submit/tizen_base/20210121.070800 submit/tizen_unified/20170308.100415 tizen_4.0.IoT.p1_release tizen_4.0.IoT.p2_release tizen_4.0.m1_release tizen_4.0.m2_release tizen_5.5.m2_release tizen_6.0.m2_release tizen_6.5.m2_release tizen_7.0_m2_release tizen_8.0_m2_release
authorDongHun Kwak <dh0128.kwak@samsung.com>
Tue, 22 Nov 2016 08:10:47 +0000 (17:10 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Tue, 22 Nov 2016 08:10:47 +0000 (17:10 +0900)
[Model] ALL
[BinType] AP
[Customer] OPEN

[Issue#] N/A
[Request] N/A
[Occurrence Version] N/A

[Problem] Bump to pbzip 1.1.13
[Cause & Measure] Bump to pbzip 1.1.13
[Checking Method] N/A

[Team] Open Source Management and Setting Part
[Developer] dh0128.kwak
[Solution company] Samsung
[Change Type] N/A

Change-Id: I804f65f810028c85f443131be21d877fdfb70c7f
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Makefile
packaging/pbzip2.spec

index 26a3933..878439a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,14 +3,28 @@ SHELL = /bin/sh
 
 
 # Compiler to use
-CC = g++
-CFLAGS ?= -O2
-#CFLAGS += -g -Wall
-#CFLAGS += -ansi
-#CFLAGS += -pedantic
-#CFLAGS += -std=c++0x
-
-# Comment out CFLAGS line below for compatability mode for 32bit file sizes
+# CXX = g++
+
+
+# Thread-related flags
+# On some compilers -pthreads
+CXXFLAGS_PTHREAD = -pthread
+
+# Comment out CXXFLAGS line below to disable pthread semantics in code
+CXXFLAGS_PTHREAD += -D_POSIX_PTHREAD_SEMANTICS
+
+LDLIBS_PTHREAD = -lpthread
+
+
+# Optimization flags
+CXXFLAGS = -O2
+
+#CXXFLAGS += -g -Wall
+#CXXFLAGS += -ansi
+#CXXFLAGS += -pedantic
+#CXXFLAGS += -std=c++0x
+
+# Comment out CXXFLAGS line below for compatability mode for 32bit file sizes
 # (less than 2GB) and systems that have compilers that treat int as 64bit
 # natively (ie: modern AIX)
 CXXFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
@@ -40,8 +54,9 @@ LDFLAGS =
 
 
 # External libraries
-LDFLAGS += -lbz2
-LDFLAGS += -lpthread
+LDLIBS = -lbz2
+LDLIBS += $(LDLIBS_PTHREAD)
+
 
 # Where you want pbzip2 installed when you do 'make install'
 PREFIX = /usr
index 953bd1e..85f1925 100644 (file)
@@ -1,5 +1,5 @@
 Name:           pbzip2
-Version:        1.1.6
+Version:        1.1.13
 Release:        0
 Summary:        Parallel implementation of bzip2
 URL:            http://www.compression.ca/pbzip2/
@@ -30,7 +30,7 @@ install -Dm644 pbzip2.1 %{buildroot}%{_mandir}/man1/pbzip2.1
 ln -s pbzip2 %{buildroot}%{_bindir}/pbunzip2
 ln -s pbzip2 %{buildroot}%{_bindir}/pbzcat
 
-%docs_package
+%remove_docs
 
 %files
 %manifest %{name}.manifest