Skip to content

Commit

Permalink
Version 1.11.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaible committed Jun 21, 2009
1 parent 9c4e0c0 commit 361d6ce
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
2007-12-08 Bruno Haible <bruno@clisp.org>

* Version 1.11.1 released.

2007-12-03 Bruno Haible <bruno@clisp.org>

Portability fixes for MSVC.
* srclib/Makefile.msvc (CFLAGS): Define EXEEXT.
(OBJECTS): Add width.obj.
(width.obj): New rule.
* srclib/Makefile.vms (OBJECTS): Add width.obj.
(width.obj): New rule.
* windows/stdint.h: New file.
* windows/unistd.h: New file.
Reported by Milan Gornik <milan.gornik@dmsgroup.co.yu>.

2006-07-19 Bruno Haible <bruno@clisp.org>

* Version 1.11 released.
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
New in 1.11.1:
* Portability fixes for the MSVC platform.

New in 1.11:
* The iconv program has new options --unicode-subst, --byte-subst,
--widechar-subst that allow to specify substitutions for characters that
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ This library can be built and installed in two variants:


Download:
ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.11.tar.gz
ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.11.1.tar.gz

Homepage:
http://www.gnu.org/software/libiconv/
Expand Down
6 changes: 5 additions & 1 deletion srclib/Makefile.msvc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ INCINTL = -I$(includedir)
LIBINTL = $(libdir)\intl.lib
!endif

CFLAGS = $(MFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS) -DHAVE_CONFIG_H $(NLSFLAGS) -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1
CFLAGS = $(MFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS) -DHAVE_CONFIG_H -DEXEEXT=\".exe\" $(NLSFLAGS) -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1

INCLUDES = -I. -I.. -I..\windows $(INCINTL)

Expand All @@ -87,6 +87,7 @@ OBJECTS = \
allocsa.obj \
error.obj \
progname.obj progreloc.obj \
width.obj \
xmalloc.obj xstrdup.obj \
\
relocatable.obj \
Expand All @@ -106,6 +107,9 @@ progname.obj : progname.c
progreloc.obj : progreloc.c
$(CC) $(INCLUDES) $(CFLAGS) -c progreloc.c

width.obj : width.c
$(CC) $(INCLUDES) $(CFLAGS) -c width.c

xmalloc.obj : xmalloc.c
$(CC) $(INCLUDES) $(CFLAGS) -c xmalloc.c

Expand Down
4 changes: 4 additions & 0 deletions srclib/Makefile.vms
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ OBJECTS = \
allocsa.obj, \
error.obj, \
progname.obj, progreloc.obj, \
width.obj, \
xmalloc.obj, xstrdup.obj, \
xreadlink.obj, \
\
Expand All @@ -66,6 +67,9 @@ progname.obj : progname.c
progreloc.obj : progreloc.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) progreloc.c

width.obj : width.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) width.c

xmalloc.obj : xmalloc.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) xmalloc.c

Expand Down

0 comments on commit 361d6ce

Please sign in to comment.