summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-10-11Remove unnecessary log messages.tizen_4.0.m2_releasetizen_4.0.m1_releasetizen_4.0.IoT.p2_releasetizen_4.0.IoT.p1_releasesubmit/tizen_base/20161013.120021submit/tizen_4.0_base/20170828.000001submit/tizen_4.0_base/20170828.000000submit/tizen_4.0_base/20170811.071500submit/tizen_3.0_base/20161028.062323submit/tizen_3.0.m2_base/20170104.073748submit/tizen_3.0.m2_base/20170104.072059accepted/tizen/base/20161016.035647accepted/tizen/4.0/base/20170828.221332accepted/tizen/4.0/base/20170811.093030accepted/tizen/3.0/base/20161028.102928accepted/tizen/3.0.m2/base/20170104.082105tizen_base_2.8.12.2tizen_4.0_tvtizen_4.0_basetizen_3.0_basetizen_3.0.m2_basesandbox/tcshin93/3.9.4_testaccepted/tizen_4.0_baseaccepted/tizen_3.0_baseaccepted/tizen_3.0.m2_baseJunghyun Kim1-2/+0
Change-Id: Ib216a5e593ddf5a7c8fe1f3f39e7a559387d0edb Signed-off-by: Junghyun Kim <jh0822.kim@samsung.com>
2016-08-05List of files are sorted when using aux_source_directory() and file(glob).submit/tizen_base/20160805.051525accepted/tizen/base/20160805.171158Junghyun Kim1-6/+12
If aux_source_directory(. SRCS) or file(glob SRCS "*.c") is used, files in SRCS are not sorted. This can cause different orders of files across machines. Even though it does not have any correctness issue, there is a problem. If we have a build infrastructure (e.g., OBS), the result binaries can be different on each machine. In this case, build results can be different on two different machines even if we have the same source files. For example, 1. ld -o liba.a a.o b.o SRCS=a.c b.c 2. ld -o libb.a b.o a.o SRCS=b.c a.c Then, liba.a and libb.a are different. REASON This is because of the system call readdir(). The system call readdir() returns a file in the directory in any order. SOLUTION Intead of readdir(), scandir() is used with alphasort(). This makes the list of files are sorted alphabetically. AMENDED 1. another free() is added to free malloc()ed objects (Reviewed by Chan Lee). 2. remove "#include <errno.h>" (Reviewed by Chan Lee). Change-Id: Id8aff23b2761ea04c1c49c91fcc511b9bc2b1228 Signed-off-by: Junghyun Kim <jh0822.kim@samsung.com>
2015-12-09Removed curl dependency by using cmake internal curlHEADsubmit/tizen_common/20160104.112601submit/tizen_common/20151229.154718submit/tizen_common/20151229.144031submit/tizen_common/20151229.142028submit/tizen_base/20151223.111112submit/tizen_base/20151223.111111submit/tizen/20151210.054632accepted/tizen/wearable/20151210.081818accepted/tizen/tv/20151210.081230accepted/tizen/mobile/20151210.081118accepted/tizen/common/20160107.114020accepted/tizen/base/20151223.052339tizenaccepted/tizen_wearableaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_commonHyungGi Lee1-3/+3
Change-Id: I71a1e4e6516702e5bf28d6702b8e588eb3e4b202 Signed-off-by: HyungGi Lee <hyunggi.lee@samsung.com>
2015-01-06packaging: Bump to version 2.8.12.2tizen_3.0_ivi_releasetizen_3.0.m2.a1_tv_releasetizen_3.0.m2.a1_mobile_releasetizen_3.0.m1_tv_releasetizen_3.0.m1_mobile_releasesubmit/tizen_wearable/20150128.000000submit/tizen_wearable/20150127.000001submit/tizen_tv/20150224.021237submit/tizen_tv/20150130.050505submit/tizen_tv/20150130.000000submit/tizen_mobile/20150224.021252submit/tizen_mobile/20150223.000000submit/tizen_mobile/20150213.000000submit/tizen_mobile/20150129.000000submit/tizen_ivi/20150108.333333submit/tizen_ivi/20150108.222222submit/tizen_ivi/20150108.111111submit/tizen_common/20150106.103200accepted/tizen/wearable/20150129.005748accepted/tizen/tv/20150224.042830accepted/tizen/mobile/20150224.042846accepted/tizen/ivi/20150113.060247accepted/tizen/common/20150107.100856tizen_3.0_ivitizen_3.0.m1_tvtizen_3.0.m1_mobiletizen_3.0.2015.q2_commontizen_3.0.2015.q1_commontizen_3.0.2014.q4_commonaccepted/tizen_iviaccepted/tizen_3.0_iviKévin THIERRY1-8/+8
Bug-Tizen: TC-2230 Change-Id: I30413dba248244c4b4c7e8544a4752e2f61555d4 Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org> Signed-off-by: Philippe Coval <philippe.coval@open.eurogiciel.org>
2015-01-06update to 2.8.11.2Anas Nashif2-1/+5
2015-01-06resetting manifest requested domain to floorAlexandru Cornea2-0/+8
2015-01-06fixed changelogAnas Nashif1-5/+0
2015-01-06add new module for Tizen related directoriesAnas Nashif3-2/+44
2015-01-06do not require pkgconfig(ncurses)Anas Nashif2-1/+4
2015-01-06Update to 2.8.10.2Anas Nashif1-0/+3
2015-01-06Update to 2.8.10.2Anas Nashif1-37/+24
2015-01-06remove patchesAnas Nashif1-12/+0
2015-01-06packaging: Initial packagingAnas Nashif3-0/+116
Change-Id: I1e253912caf690c56d827a993e2b5bee18747cf6 Signed-off-by: Philippe Coval <philippe.coval@open.eurogiciel.org>
2014-12-23Imported Upstream version 2.8.12.2upstream/2.8.12.2sandbox/kevinthierry/upstreamKévin THIERRY1120-8363/+35911
2013-08-13Imported Upstream version 2.8.11.2upstream/2.8.11.2sandbox/pcoval/previous/upstreamAnas Nashif965-7245/+22091
2013-02-13Imported Upstream version 2.8.10.2upstream/2.8.10.2Anas Nashif1401-24188/+45757
2012-10-30Imported Upstream version 2.8.9upstream/2.8.9Anas Nashif3416-0/+782279