d84847
diff -up bzip2-1.0.6/Makefile.jx bzip2-1.0.6/Makefile
d84847
--- bzip2-1.0.6/Makefile.jx	2010-09-10 18:46:02.000000000 -0400
d84847
+++ bzip2-1.0.6/Makefile	2015-08-14 13:04:33.891504131 -0400
d84847
@@ -18,10 +18,6 @@ SHELL=/bin/sh
d84847
 CC=gcc
d84847
 AR=ar
d84847
 RANLIB=ranlib
d84847
-LDFLAGS=
d84847
-
d84847
-BIGFILES=-D_FILE_OFFSET_BITS=64
d84847
-CFLAGS=-Wall -Winline -O2 -g $(BIGFILES)
d84847
 
d84847
 # Where you want it installed when you do 'make install'
d84847
 PREFIX=/usr/local
d84847
diff -up bzip2-1.0.6/Makefile-libbz2_so.jx bzip2-1.0.6/Makefile-libbz2_so
d84847
--- bzip2-1.0.6/Makefile-libbz2_so.jx	2015-08-14 13:04:33.885503955 -0400
d84847
+++ bzip2-1.0.6/Makefile-libbz2_so	2015-08-14 13:06:52.554581179 -0400
d84847
@@ -24,7 +24,6 @@
d84847
 SHELL=/bin/sh
d84847
 CC=gcc
d84847
 BIGFILES=-D_FILE_OFFSET_BITS=64
d84847
-CFLAGS=-fpic -fPIC -Wall -Winline -O2 -g $(BIGFILES)
d84847
 
d84847
 OBJS= blocksort.o  \
d84847
       huffman.o    \
d84847
@@ -35,8 +34,8 @@ OBJS= blocksort.o  \
d84847
       bzlib.o
d84847
 
d84847
 all: $(OBJS)
d84847
-	$(CC) $(CFLAGS) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.8 $(OBJS)
d84847
-	$(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8
d84847
+	$(CC) $(CFLAGS) $(LDFLAGS) -shared -Wl,-soname -Wl,libbz2.so.1 -o libbz2.so.1.0.8 $(OBJS)
d84847
+	$(CC) $(CFLAGS) $(LDFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.8
d84847
 	rm -f libbz2.so.1.0
d84847
 	ln -s libbz2.so.1.0.8 libbz2.so.1.0
d84847