Skip to content

Commit 361d6ce

Browse files
committed
Version 1.11.1.
1 parent 9c4e0c0 commit 361d6ce

File tree

5 files changed

+29
-2
lines changed

5 files changed

+29
-2
lines changed

ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
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+
117
2006-07-19 Bruno Haible <bruno@clisp.org>
218

319
* Version 1.11 released.

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
New in 1.11.1:
2+
* Portability fixes for the MSVC platform.
3+
14
New 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

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ This library can be built and installed in two variants:
141141

142142

143143
Download:
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

146146
Homepage:
147147
http://www.gnu.org/software/libiconv/

srclib/Makefile.msvc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ INCINTL = -I$(includedir)
6464
LIBINTL = $(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

6969
INCLUDES = -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
106107
progreloc.obj : progreloc.c
107108
$(CC) $(INCLUDES) $(CFLAGS) -c progreloc.c
108109

110+
width.obj : width.c
111+
$(CC) $(INCLUDES) $(CFLAGS) -c width.c
112+
109113
xmalloc.obj : xmalloc.c
110114
$(CC) $(INCLUDES) $(CFLAGS) -c xmalloc.c
111115

srclib/Makefile.vms

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
6667
progreloc.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+
6973
xmalloc.obj : xmalloc.c
7074
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xmalloc.c
7175

0 commit comments

Comments
 (0)