parent
e5d3c6e64a
commit
8698bac7f6
|
@ -68,9 +68,7 @@ CORE_SOURCES = buffers.c cfileio.c checksum.c drvrfile.c drvrmem.c \
|
|||
pliocomp.c fits_hcompress.c fits_hdecompress.c \
|
||||
simplerng.c @GSIFTP_SRC@
|
||||
|
||||
ZLIB_SOURCES = zlib/adler32.c zlib/crc32.c zlib/deflate.c zlib/infback.c \
|
||||
zlib/inffast.c zlib/inflate.c zlib/inftrees.c zlib/trees.c \
|
||||
zlib/uncompr.c zlib/zcompress.c zlib/zuncompress.c zlib/zutil.c
|
||||
ZLIB_SOURCES = zlib/zcompress.c zlib/zuncompress.c
|
||||
|
||||
SOURCES = ${CORE_SOURCES} ${ZLIB_SOURCES} @F77_WRAPPERS@
|
||||
|
||||
|
@ -103,7 +101,7 @@ lib${PACKAGE}.a: ${OBJECTS}
|
|||
shared: lib${PACKAGE}${SHLIB_SUFFIX}
|
||||
|
||||
lib${PACKAGE}${SHLIB_SUFFIX}: ${OBJECTS}
|
||||
${SHLIB_LD} ${LDFLAGS} -o ${CFITSIO_SHLIB} ${OBJECTS} -lm ${LIBS_CURL} ${LIBS}
|
||||
${SHLIB_LD} ${LDFLAGS} -o ${CFITSIO_SHLIB} ${OBJECTS} -lm -lz ${LIBS_CURL} ${LIBS}
|
||||
@if [ "x${CFITSIO_SHLIB_SONAME}" != x ]; then \
|
||||
ln -sf ${CFITSIO_SHLIB} ${CFITSIO_SHLIB_SONAME}; \
|
||||
ln -sf ${CFITSIO_SHLIB_SONAME} $@; \
|
||||
|
|
|
@ -8,5 +8,5 @@ Description: FITS File Subroutine Library
|
|||
URL: https://heasarc.gsfc.nasa.gov/fitsio/
|
||||
Version: @CFITSIO_MAJOR@.@CFITSIO_MINOR@
|
||||
Libs: -L${libdir} -lcfitsio -lpthread
|
||||
Libs.private: -lm @LIBS@
|
||||
Libs.private: -lm -lz @LIBS@
|
||||
Cflags: -I${includedir}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include "zlib.h"
|
||||
#include <zlib.h>
|
||||
|
||||
#define GZBUFSIZE 115200 /* 40 FITS blocks */
|
||||
#define BUFFINCR 28800 /* 10 FITS blocks */
|
||||
|
|
Loading…
Reference in New Issue