summaryrefslogtreecommitdiff
path: root/erasurecode.pc.in
Commit message (Collapse)AuthorAgeFilesLines
* Add dl to pkg-config metadataTim Burke2017-07-131-1/+1
| | | | | | | | | | | | | | | | | This simplifies compiling by allowing users to include CFLAGS += `pkg-config --cflags erasurecode-1` LDFLAGS += `pkg-config --libs erasurecode-1` in makefiles. Otherwise, trying to use pkg-config results in errors like /usr/local/lib/liberasurecode.so: undefined reference to `dlopen' /usr/local/lib/liberasurecode.so: undefined reference to `dlclose' /usr/local/lib/liberasurecode.so: undefined reference to `dlerror' /usr/local/lib/liberasurecode.so: undefined reference to `dlsym' collect2: error: ld returned 1 exit status Change-Id: I39fb137b1a3b6b2beda1d0b28faef3132229ec3b
* Use zlib for CRC-32Tim Burke2017-07-061-1/+1
| | | | | | | | | | | | | | | | Previously, we had our own CRC that was almost but not quite like zlib's implementation. However, * it hasn't been subjected to the same rigor with regard to error-detection properties and * it may not even get used, depending upon whether zlib happens to get loaded before or after liberasurecode. Now, we'll use zlib's CRC-32 when writing new frags, while still tolerating frags that were created with the old implementation. Change-Id: Ib5ea2a830c7c23d66bf2ca404a3eb84ad00c5bc5 Closes-Bug: 1666320
* Get version from liberasurecode version headerTushar Gohad2015-12-101-1/+1
| | | | ... (keep version in one place)
* Include major API version in pkg-config file nameTushar Gohad2015-12-101-3/+3
|
* Fix liberasurecode include path in pkgconfigTushar Gohad2015-10-201-1/+1
|
* autoconf: Add Xorcode pkgconfig, other minor fixesTushar Gohad2014-06-291-1/+1
| | | | Signed-off-by: Tushar Gohad <tushar.gohad@intel.com>
* Library directory structure skeletonTushar Gohad2014-06-291-0/+15
Signed-off-by: Tushar Gohad <tushar.gohad@intel.com>