summaryrefslogtreecommitdiffstats
path: root/lib/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* minor Makefile fixesYann Collet2017-09-071-1/+2
|
* fixed FS-independent file order in /libYann Collet2017-08-291-2/+2
| | | | identified by @bmwiedemann
* build: source files sorted in a FS independent mannerYann Collet2017-08-261-2/+3
| | | | | to be more compatible with reproducible builds. patch inspired by @bmwiedemann
* better respect GNU standard Makefile conventionsYann Collet2017-08-141-17/+23
| | | | | | supports lowercase directory variables add an "Installation" section in README.md added an INSTALL file
* Fix typos preventing installation of static lib.Ido Rosen2017-08-011-1/+2
|
* updated MakefileYann Collet2017-05-101-6/+7
| | | | | to automatically build manual files with make all
* Export only those symbols that are part of public APIDmitry V. Levin2017-03-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specify -fvisibility=hidden parameter when linking the shared library using -fPIC, assuming that gcc >= 4 is used. This change results to unexporting of the following 42 functions: LZ4F_getErrorCode LZ4_XXH32 LZ4_XXH32_canonicalFromHash LZ4_XXH32_copyState LZ4_XXH32_createState LZ4_XXH32_digest LZ4_XXH32_freeState LZ4_XXH32_hashFromCanonical LZ4_XXH32_reset LZ4_XXH32_update LZ4_XXH64 LZ4_XXH64_canonicalFromHash LZ4_XXH64_copyState LZ4_XXH64_createState LZ4_XXH64_digest LZ4_XXH64_freeState LZ4_XXH64_hashFromCanonical LZ4_XXH64_reset LZ4_XXH64_update LZ4_XXH_versionNumber LZ4_compressHC LZ4_compressHC2 LZ4_compressHC2_continue LZ4_compressHC2_limitedOutput LZ4_compressHC2_limitedOutput_continue LZ4_compressHC2_limitedOutput_withStateHC LZ4_compressHC2_withStateHC LZ4_compressHC_continue LZ4_compressHC_limitedOutput LZ4_compressHC_limitedOutput_continue LZ4_compressHC_limitedOutput_withStateHC LZ4_compressHC_withStateHC LZ4_compress_fast_force LZ4_compress_forceExtDict LZ4_createHC LZ4_decompress_safe_forceExtDict LZ4_freeHC LZ4_resetStreamStateHC LZ4_sizeofStreamStateHC LZ4_slideInputBufferHC LZ4_uncompress LZ4_uncompress_unknownOutputSize
* Explicitly create $(DESTDIR)$(LIBDIR)/ at install timeEric Siegerman2017-02-151-1/+1
| | | | | This is needed on systems where it isn't the parent of $(PKGCONFIGDIR), and so doesn't get created implicitly.
* added "This Makefile is validated for"Przemyslaw Skibinski2017-01-191-0/+2
|
* changed default PREFIX and MANDIRPrzemyslaw Skibinski2016-12-281-6/+1
|
* lib\Makefile: fixed INSTALL_DATAPrzemyslaw Skibinski2016-12-271-3/+3
|
* Merge remote-tracking branch 'refs/remotes/lz4/dev' into devPrzemyslaw Skibinski2016-12-271-6/+11
|\ | | | | | | | | # Conflicts: # lib/Makefile
| * fixed lib/cleanYann Collet2016-12-211-1/+2
| |
| * minor update MakefileYann Collet2016-12-211-11/+15
| |
* | BSD: improved "make install"Przemyslaw Skibinski2016-12-231-6/+11
| |
* | Solaris: working "make install"Przemyslaw Skibinski2016-12-221-18/+35
|/
* library release build compatible with environment variableYann Collet2016-11-221-20/+21
|
* new test case with fPIEYann Collet2016-11-221-1/+1
|
* added a few datesYann Collet2016-11-211-1/+1
|
* fixed #272 (compilation fails on gcc 4.4), reported by @totaamYann Collet2016-11-191-2/+2
|
* fix 32-bits mode.Yann Collet2016-11-171-2/+8
| | | | | | Large File support for Mac OS-X in 32-bits mode Fixed potential undefined behavior Changed makefile for 32-bits mode
* DLL dependencies moved to lib/dll/Przemyslaw Skibinski2016-11-151-3/+3
|
* clang and g++ tests restricted to native only on Travis CI Ubuntu v12 ↵Yann Collet2016-11-141-2/+2
| | | | environment
* fixed make installPrzemyslaw Skibinski2016-11-091-3/+5
|
* DLL exports only functions defined in liblz4.defPrzemyslaw Skibinski2016-11-091-1/+2
|
* create DLL with MinGW/MSYSPrzemyslaw Skibinski2016-11-091-4/+10
|
* removed LZ4_DLL_EXPORT=1 (2)Przemyslaw Skibinski2016-11-091-1/+1
|
* test powerpc64Przemyslaw Skibinski2016-11-081-0/+1
|
* fixed strict warningsYann Collet2016-11-041-2/+2
|
* updated commentsYann Collet2016-11-041-1/+3
|
* Merge pull request #241 from vapier/devYann Collet2016-09-231-0/+5
|\ | | | | add a flag to disable static libs
| * add a flag to disable static libsMike Frysinger2016-09-231-0/+5
| |
* | Add LZ4LIB_APIKouhei Sutou2016-09-221-1/+1
|/ | | | | | | | | | | | It's based on Zstandard's ZSTDLIB_API. See also: https://github.com/Cyan4973/lz4/issues/216#issuecomment-226245432 Deprecated functions aren't LZ4LIB_API targets. Because we don't need to export deprecated functions from now. There are same LZ4LIB_API definitions in each header files instead of including a common header file because LZ4_DEPRECATED is defined so.
* updated uninstallYann Collet2016-09-171-9/+9
|
* lz4 version source from lz4.hYann Collet2016-09-031-9/+14
|
* use gnu c99 to get both c99 and POSIXGeorg Sauthoff2016-08-271-1/+1
| | | | | | when compiling with gcc fixes fileno() implicitly defined on Linx and compile error on Solaris 10
* Add FreeBSD to install targetsMartin Waschbüsch2016-05-171-2/+3
| | | | Add FreeBSD to install targets
* Remove whitespace from ends of linesJulius Werner2016-02-131-5/+5
| | | | | | | I'm trying to import LZ4 code into a project with strict linting requirements. This will make that easier. Signed-off-by: Julius Werner <jwerner@chromium.org>
* create link to dynamic library without using `cp -a` (#147)Yann Collet2015-09-011-5/+5
|
* Makefile : generates *.o for faster processingYann Collet2015-08-151-10/+8
|
* liblz4 : Moved XXH_NAMESPACE to CPPFLAGSYann Collet2015-07-021-4/+7
|
* Added namespace ability to xxhashYann Collet2015-06-271-1/+1
|
* Changed : static library is no longer compiled with -fPIC by default (this ↵Yann Collet2015-06-271-1/+1
| | | | option can still be added on the command line) See #53
* Fixed typoYann Collet2015-05-061-1/+1
|
* Added : LZ4_compress_destSize()Yann Collet2015-05-061-2/+2
|
* changed "make install" default install directory to /usr/localYann Collet2015-03-151-3/+2
|
* Fixed : static library (x64 binary)Yann Collet2015-03-081-1/+1
|
* NetBSD compatibility (#48)Yann Collet2015-03-071-1/+1
|
* Fix : lz4frame.h within uninstallerYann Collet2015-01-211-0/+1
|
* Added : -pedantic compilation optionYann Collet2014-12-171-1/+1
|