diff options
author | mm <mm@FreeBSD.org> | 2010-05-10 15:28:44 +0000 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2010-05-10 15:28:44 +0000 |
commit | 696cb260785255c3d695ac1371cc62921a8b7d39 (patch) | |
tree | 746d4e55845e35b6cc113fa5d2a1a4db84ed8204 /rescue | |
parent | 4ca9a130c3852e200cb06a9295498674091e4145 (diff) | |
download | FreeBSD-src-696cb260785255c3d695ac1371cc62921a8b7d39.zip FreeBSD-src-696cb260785255c3d695ac1371cc62921a8b7d39.tar.gz |
Enable liblzma support in libarchive
Adjust dependencies for programs using libarchive
Add xz and linkage against liblzma to rescue system
Approved by: kientzle, delphij (mentor)
MFC after: 2 weeks
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index afb15b0..d62b6f4 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -208,6 +208,10 @@ CRUNCH_PROGS_usr.bin+= bzip2 CRUNCH_ALIAS_bzip2= bunzip2 bzcat CRUNCH_LIBS+= -lbz2 +CRUNCH_PROGS_usr.bin+= xz +CRUNCH_ALIAS_xz= unxz lzma unlzma xzcat lzcat +CRUNCH_LIBS+= -llzma + CRUNCH_PROGS_usr.bin+= tar CRUNCH_LIBS+= -larchive -lmd .if ${MK_OPENSSL} != "no" |