Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Eliminate some warnings when compiling zlib |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 2f08383e7e93e7bf6ce32031bcfbbf1d882dcbf4 |
User & Date: | nijtmans 2013-10-01 11:53:41 |
Context
2013-10-01
| ||
13:03 | Workaround for MinGW bug #2065: "gcc --shared" links with libgcc_s_dw2-1.dll when using 64-bit division in C. (TODO: regenerate all configure scripts) check-in: 1129f03f9d user: nijtmans tags: trunk | |
11:53 | Eliminate some warnings when compiling zlib check-in: 2f08383e7e user: nijtmans tags: trunk | |
2013-09-18
| ||
20:02 | configure scripts did not produce valid version numbers for Img and base modules. Regenerated all configure scripts with autoconf 2.65. check-in: 384b3cccb5 user: obermeier tags: trunk | |
Changes
Changes to zlib/Makefile.in.
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
DEFS = @DEFS@ $(PKG_CFLAGS) CONFIG_CLEAN_FILES = Makefile CPPFLAGS = @CPPFLAGS@ LIBS = @PKG_LIBS@ @LIBS@ AR = @AR@ CFLAGS = @CFLAGS@ -DZEXTERN=MODULE_SCOPE COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) #======================================================================== # Start of user-definable TARGETS section #======================================================================== #======================================================================== |
| |
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
DEFS = @DEFS@ $(PKG_CFLAGS)
CONFIG_CLEAN_FILES = Makefile
CPPFLAGS = @CPPFLAGS@
LIBS = @PKG_LIBS@ @LIBS@
AR = @AR@
CFLAGS = @CFLAGS@ -DZEXTERN=MODULE_SCOPE -DZLIB_CONST
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
#========================================================================
# Start of user-definable TARGETS section
#========================================================================
#========================================================================
|