|
|
@ -98,6 +98,8 @@ all:: |
|
|
|
# Define OLD_ICONV if your library has an old iconv(), where the second |
|
|
|
# Define OLD_ICONV if your library has an old iconv(), where the second |
|
|
|
# (input buffer pointer) parameter is declared with type (const char **). |
|
|
|
# (input buffer pointer) parameter is declared with type (const char **). |
|
|
|
# |
|
|
|
# |
|
|
|
|
|
|
|
# Define NO_DEFLATE_BOUND if your zlib does not have deflateBound. |
|
|
|
|
|
|
|
# |
|
|
|
# Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib" |
|
|
|
# Define NO_R_TO_GCC_LINKER if your gcc does not like "-R/path/lib" |
|
|
|
# that tells runtime paths to dynamic libraries; |
|
|
|
# that tells runtime paths to dynamic libraries; |
|
|
|
# "-Wl,-rpath=/path/lib" is used instead. |
|
|
|
# "-Wl,-rpath=/path/lib" is used instead. |
|
|
@ -661,6 +663,10 @@ ifdef OLD_ICONV |
|
|
|
BASIC_CFLAGS += -DOLD_ICONV |
|
|
|
BASIC_CFLAGS += -DOLD_ICONV |
|
|
|
endif |
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ifdef NO_DEFLATE_BOUND |
|
|
|
|
|
|
|
BASIC_CFLAGS += -DNO_DEFLATE_BOUND |
|
|
|
|
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
ifdef PPC_SHA1 |
|
|
|
ifdef PPC_SHA1 |
|
|
|
SHA1_HEADER = "ppc/sha1.h" |
|
|
|
SHA1_HEADER = "ppc/sha1.h" |
|
|
|
LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o |
|
|
|
LIB_OBJS += ppc/sha1.o ppc/sha1ppc.o |
|
|
|