summaryrefslogtreecommitdiff
path: root/build
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Added 'make rpm' target"Carl Zhang2019-06-141-37/+0
| | | | | | This reverts commit ec9536c2b1c12e43ff047ecb2ec52dea6f5b90ba to 8c80b758b133a4d88fb5d6859841bcd316a016bc Signed-off-by: Carl Zhang <carl.zhang@intel.com>
* RPM build: programmatically setting number of corestroy.velius2019-06-131-1/+1
|
* RPM build: removed git dependency and hard-coded pathstroyev2019-06-131-7/+5
|
* Added 'make rpm' targettroyev2019-06-131-0/+39
|
* license header: add the missing license header to filesAustin Yuan2012-06-281-0/+22
| | | | Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
* API: fix versioning.Gwenole Beauchesne2011-10-201-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have to consider three distinct versions at this time: the VA-API version, the library package version number, and the DSO version. * VA-API version: - increment major for any ABI change (which shall not occur!) - increment minor for any interface change (e.g. new or modified function) - increment micro for any other change (e.g. new flag, new codec definitions) - reset micro version to zero when minor version is incremented - reset minor version to zero when major version is incremented * libva package version number: - major version is automatically generated from VA-API major version - minor version is automatically generated from VA-API minor version - increment micro for any library release - reset micro version to zero when VA-API major or minor version is incremented * DSO version: The SONAME shall remain to libva.so.1 for VA-API 0.x.y as long as the ABI is not changed. Thus, the library name is generated as libva.<x>.<y>.0 where <x> = VA-API major version + 1 <y> = 100 * VA-API minor version + VA-API micro version For example: VA-API 0.32.0 generates libva.so.1.3200.0 (libva 1.0.14 as of today) VA-API 0.34.1 generates libva.so.1.3401.0 (e.g. libva 1.2.1) VA-API 1.2.13 generates libva.so.2.213.0 (e.g. libva 2.2.13) Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
* Android: try to auto generate <va/version.h>Gwenole Beauchesne2010-12-211-0/+32