File tree Expand file tree Collapse file tree 5 files changed +29
-2
lines changed Expand file tree Collapse file tree 5 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 1+ 2007-12-08 Bruno Haible <bruno@clisp.org>
2+
3+ * Version 1.11.1 released.
4+
5+ 2007-12-03 Bruno Haible <bruno@clisp.org>
6+
7+ Portability fixes for MSVC.
8+ * srclib/Makefile.msvc (CFLAGS): Define EXEEXT.
9+ (OBJECTS): Add width.obj.
10+ (width.obj): New rule.
11+ * srclib/Makefile.vms (OBJECTS): Add width.obj.
12+ (width.obj): New rule.
13+ * windows/stdint.h: New file.
14+ * windows/unistd.h: New file.
15+ Reported by Milan Gornik <milan.gornik@dmsgroup.co.yu>.
16+
1172006-07-19 Bruno Haible <bruno@clisp.org>
218
319 * Version 1.11 released.
Original file line number Diff line number Diff line change 1+ New in 1.11.1:
2+ * Portability fixes for the MSVC platform.
3+
14New in 1.11:
25* The iconv program has new options --unicode-subst, --byte-subst,
36 --widechar-subst that allow to specify substitutions for characters that
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ This library can be built and installed in two variants:
141141
142142
143143Download:
144- ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.11.tar.gz
144+ ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.11.1. tar.gz
145145
146146Homepage:
147147 http://www.gnu.org/software/libiconv/
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ INCINTL = -I$(includedir)
6464LIBINTL = $(libdir ) \intl.lib
6565!endif
6666
67- CFLAGS = $(MFLAGS ) $(WARN_CFLAGS ) $(OPTIMFLAGS ) -DHAVE_CONFIG_H $(NLSFLAGS ) -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1
67+ CFLAGS = $(MFLAGS ) $(WARN_CFLAGS ) $(OPTIMFLAGS ) -DHAVE_CONFIG_H -DEXEEXT=\".exe\" $(NLSFLAGS ) -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1
6868
6969INCLUDES = -I. -I.. -I..\windows $(INCINTL )
7070
@@ -87,6 +87,7 @@ OBJECTS = \
8787 allocsa.obj \
8888 error.obj \
8989 progname.obj progreloc.obj \
90+ width.obj \
9091 xmalloc.obj xstrdup.obj \
9192 \
9293 relocatable.obj \
@@ -106,6 +107,9 @@ progname.obj : progname.c
106107progreloc.obj : progreloc.c
107108 $(CC ) $(INCLUDES ) $(CFLAGS ) -c progreloc.c
108109
110+ width.obj : width.c
111+ $(CC ) $(INCLUDES ) $(CFLAGS ) -c width.c
112+
109113xmalloc.obj : xmalloc.c
110114 $(CC ) $(INCLUDES ) $(CFLAGS ) -c xmalloc.c
111115
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ OBJECTS = \
4242 allocsa.obj, \
4343 error.obj, \
4444 progname.obj, progreloc.obj, \
45+ width.obj, \
4546 xmalloc.obj, xstrdup.obj, \
4647 xreadlink.obj, \
4748 \
@@ -66,6 +67,9 @@ progname.obj : progname.c
6667progreloc.obj : progreloc.c
6768 $(CC ) $(INCLUDES ) $(CFLAGS ) /define=($( DEFS) ) progreloc.c
6869
70+ width.obj : width.c
71+ $(CC ) $(INCLUDES ) $(CFLAGS ) /define=($( DEFS) ) width.c
72+
6973xmalloc.obj : xmalloc.c
7074 $(CC ) $(INCLUDES ) $(CFLAGS ) /define=($( DEFS) ) xmalloc.c
7175
You can’t perform that action at this time.
0 commit comments