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
+
1
17
2006-07-19 Bruno Haible <bruno@clisp.org>
2
18
3
19
* 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
+
1
4
New in 1.11:
2
5
* The iconv program has new options --unicode-subst, --byte-subst,
3
6
--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:
141
141
142
142
143
143
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
145
145
146
146
Homepage:
147
147
http://www.gnu.org/software/libiconv/
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ INCINTL = -I$(includedir)
64
64
LIBINTL = $(libdir ) \intl.lib
65
65
!endif
66
66
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
68
68
69
69
INCLUDES = -I. -I.. -I..\windows $(INCINTL )
70
70
@@ -87,6 +87,7 @@ OBJECTS = \
87
87
allocsa.obj \
88
88
error.obj \
89
89
progname.obj progreloc.obj \
90
+ width.obj \
90
91
xmalloc.obj xstrdup.obj \
91
92
\
92
93
relocatable.obj \
@@ -106,6 +107,9 @@ progname.obj : progname.c
106
107
progreloc.obj : progreloc.c
107
108
$(CC ) $(INCLUDES ) $(CFLAGS ) -c progreloc.c
108
109
110
+ width.obj : width.c
111
+ $(CC ) $(INCLUDES ) $(CFLAGS ) -c width.c
112
+
109
113
xmalloc.obj : xmalloc.c
110
114
$(CC ) $(INCLUDES ) $(CFLAGS ) -c xmalloc.c
111
115
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ OBJECTS = \
42
42
allocsa.obj, \
43
43
error.obj, \
44
44
progname.obj, progreloc.obj, \
45
+ width.obj, \
45
46
xmalloc.obj, xstrdup.obj, \
46
47
xreadlink.obj, \
47
48
\
@@ -66,6 +67,9 @@ progname.obj : progname.c
66
67
progreloc.obj : progreloc.c
67
68
$(CC ) $(INCLUDES ) $(CFLAGS ) /define=($( DEFS) ) progreloc.c
68
69
70
+ width.obj : width.c
71
+ $(CC ) $(INCLUDES ) $(CFLAGS ) /define=($( DEFS) ) width.c
72
+
69
73
xmalloc.obj : xmalloc.c
70
74
$(CC ) $(INCLUDES ) $(CFLAGS ) /define=($( DEFS) ) xmalloc.c
71
75
You can’t perform that action at this time.
0 commit comments