mirror of https://github.com/BOINC/boinc.git
- boinc_zip: fix Unix build
This commit is contained in:
parent
8a4e0d7de6
commit
678ee52458
|
@ -6837,3 +6837,15 @@ Charlie 15 Nov 2012
|
|||
(many files)
|
||||
unzip/
|
||||
(many files)
|
||||
|
||||
David 15 Nov 2012
|
||||
- boinc_zip: fix Unix build
|
||||
|
||||
zip/
|
||||
Makefile.am
|
||||
zip/
|
||||
Makefile.am (add)
|
||||
unix/
|
||||
unix.c -> z_unix.c
|
||||
unzip/
|
||||
Makefile.am (add)
|
||||
|
|
|
@ -14,7 +14,7 @@ endif
|
|||
|
||||
libboinc_zip_sources = \
|
||||
boinc_zip.cpp \
|
||||
./unzip/api.c \
|
||||
./unzip/api.c \
|
||||
./unzip/apihelp.c \
|
||||
./unzip/crc32.c \
|
||||
./unzip/explode.c \
|
||||
|
@ -26,7 +26,7 @@ boinc_zip.cpp \
|
|||
./unzip/match.c \
|
||||
./unzip/process.c \
|
||||
./unzip/ttyio.c \
|
||||
./unzip/unix/unix.c
|
||||
./unzip/unix/unix.c \
|
||||
./unzip/unreduce.c \
|
||||
./unzip/unshrink.c \
|
||||
./unzip/unzip.c \
|
||||
|
@ -39,7 +39,7 @@ boinc_zip.cpp \
|
|||
./zip/zip.c \
|
||||
./zip/zipfile.c \
|
||||
./zip/zipup.c \
|
||||
./zip/unix/unix.c \
|
||||
./zip/unix/z_unix.c
|
||||
|
||||
##noinst_PROGRAMS = test
|
||||
if ENABLE_LIBRARIES
|
||||
|
@ -49,7 +49,7 @@ libboinc_zip_la_SOURCES = $(libboinc_zip_sources)
|
|||
libboinc_zip_la_LDFLAGS = -L$(libdir) -rpath $(libdir) -version-number $(LIBBOINC_VERSION)
|
||||
libboinc_zip_la_LIBADD =
|
||||
|
||||
# Some OSs may not prefix libraries with lib.
|
||||
# Some OSs may not prefix libraries with lib.
|
||||
# For example OS2
|
||||
if OS_OS2
|
||||
LIBBOINC_ZIP_STATIC=boinc_zip.${LIBEXT}
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
## -*- mode: makefile; tab-width: 4 -*-
|
||||
## $Id: Makefile.am 15375 2008-06-08 22:18:52Z davea $
|
||||
|
||||
EXTRA_DIST = BUGS WHERE envargs.c inflate.c ttyio.h unzvers.h \
|
||||
api.c explode.c inflate.h unix win32 \
|
||||
Contents apihelp.c extract.c list.c unreduce.c zip.h \
|
||||
History.550 consts.h file_id.diz macos unshrink.c zipgrep.txt \
|
||||
INSTALL crc32.c fileio.c match.c unzip.c zipinfo.c \
|
||||
LICENSE crc_i386.S funzip.c process.c unzip.h zipinfo.txt \
|
||||
Makefile.am crctab.c funzip.txt tables.h unzip.txt \
|
||||
crypt.c gbloffs.c timezone.c unzipsfx.txt \
|
||||
README crypt.h globals.c timezone.h unzipstb.c \
|
||||
ToDo ebcdic.h globals.h ttyio.c unzpriv.h
|
||||
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
## -*- mode: makefile; tab-width: 4 -*-
|
||||
## $Id: Makefile.am 15375 2008-06-08 22:18:52Z davea $
|
||||
|
||||
EXTRA_DIST = deflate.c tailor.h z_api.h z_crypt.h z_ttyio.h ziperr.h zipup.c \
|
||||
ebcdic.h trees.c z_crc32.c z_fileio.c zip.c zipfile.c \
|
||||
mktime.c util.c z_crctab.c z_globals.c zip.h zipnote.c \
|
||||
revision.h z_api.c z_crypt.c z_ttyio.c zipcloak.c zipsplit.c \
|
||||
BUGS CHANGES README macos TODO match.S unix win32 \
|
||||
INSTALL WHATSNEW LICENSE WHERE MANUAL crc_i386.S
|
||||
|
Loading…
Reference in New Issue