You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
719 B
Diff
24 lines
719 B
Diff
2 years ago
|
--- crash-7.3.1/Makefile.orig
|
||
2 years ago
|
+++ crash-7.3.1/Makefile
|
||
2 years ago
|
@@ -230,7 +230,7 @@ all: make_configure
|
||
2 years ago
|
gdb_merge: force
|
||
|
@if [ ! -f ${GDB}/README ]; then \
|
||
|
make --no-print-directory gdb_unzip; fi
|
||
|
- @echo "${LDFLAGS} -lz -ldl -rdynamic" > ${GDB}/gdb/mergelibs
|
||
2 years ago
|
+ @echo "${LDFLAGS} -lz -llzo2 -lsnappy -lzstd -ldl -rdynamic" > ${GDB}/gdb/mergelibs
|
||
2 years ago
|
@echo "../../${PROGRAM} ../../${PROGRAM}lib.a" > ${GDB}/gdb/mergeobj
|
||
|
@rm -f ${PROGRAM}
|
||
|
@if [ ! -f ${GDB}/config.status ]; then \
|
||
2 years ago
|
--- crash-7.3.1/diskdump.c.orig
|
||
2 years ago
|
+++ crash-7.3.1/diskdump.c
|
||
2 years ago
|
@@ -23,6 +23,9 @@
|
||
2 years ago
|
* GNU General Public License for more details.
|
||
|
*/
|
||
|
|
||
|
+#define LZO
|
||
|
+#define SNAPPY
|
||
2 years ago
|
+#define ZSTD
|
||
2 years ago
|
#include "defs.h"
|
||
|
#include "diskdump.h"
|
||
|
#include "xen_dom0.h"
|