*** Makefile.in.ORIG Fri Jun 19 15:22:37 2009 --- Makefile.in Fri Jun 19 15:24:47 2009 *************** *** 22,28 **** $(AR) -rcs $(libname).a $(lib_objs) $(libname).so.$(pkgversion) : $(sh_lib_objs) ! $(CXX) -shared -Wl,--soname=$(libname).so.$(soversion) -o $(libname).so.$(pkgversion) $(sh_lib_objs) $(progname) : $(objs) $(libname).a $(CXX) $(LDFLAGS) -o $(progname) $(objs) $(libname).a --- 22,28 ---- $(AR) -rcs $(libname).a $(lib_objs) $(libname).so.$(pkgversion) : $(sh_lib_objs) ! $(CXX) -o $(libname).so.$(pkgversion) $(sh_lib_objs) $(progname) : $(objs) $(libname).a $(CXX) $(LDFLAGS) -o $(progname) $(objs) $(libname).a *************** *** 40,52 **** $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $< sh_decoder.o : decoder.cc ! $(CXX) -fpic -fPIC $(CPPFLAGS) $(CXXFLAGS) -c -o sh_decoder.o $< sh_encoder.o : encoder.cc ! $(CXX) -fpic -fPIC $(CPPFLAGS) $(CXXFLAGS) -c -o sh_encoder.o $< sh_lzlib.o : lzlib.cc ! $(CXX) -fpic -fPIC $(CPPFLAGS) $(CXXFLAGS) -c -o sh_lzlib.o $< $(lib_objs) : Makefile lzlib.h lzip.h $(sh_lib_objs) : Makefile lzlib.h lzip.h --- 40,52 ---- $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $< sh_decoder.o : decoder.cc ! $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o sh_decoder.o $< sh_encoder.o : encoder.cc ! $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o sh_encoder.o $< sh_lzlib.o : lzlib.cc ! $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o sh_lzlib.o $< $(lib_objs) : Makefile lzlib.h lzip.h $(sh_lib_objs) : Makefile lzlib.h lzip.h *** decoder.cc.ORIG Fri Jun 19 15:19:47 2009 --- decoder.cc Fri Jun 19 15:19:36 2009 *************** *** 33,39 **** --- 33,41 ---- #include #include #include + #ifndef _AIX #include + #endif #include "lzlib.h" #include "lzip.h" *** encoder.cc.ORIG Fri Jun 19 15:20:03 2009 --- encoder.cc Fri Jun 19 15:20:20 2009 *************** *** 33,39 **** --- 33,41 ---- #include #include #include + #ifndef _AIX #include + #endif #include "lzlib.h" #include "lzip.h" *** lzlib.cc.ORIG Fri Jun 19 15:20:46 2009 --- lzlib.cc Fri Jun 19 15:20:59 2009 *************** *** 28,34 **** --- 28,36 ---- #include #include #include + #ifndef _AIX #include + #endif #include "lzlib.h" #include "lzip.h" *** main.cc.ORIG Fri Jun 19 15:21:11 2009 --- main.cc Fri Jun 19 15:21:23 2009 *************** *** 32,38 **** --- 32,40 ---- #include #include #include + #ifndef _AIX #include + #endif #include #include #include