Skip to content

Commit ccad6f3

Browse files
committed
Small fixes.
1 parent 09fd2d0 commit ccad6f3

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2003-05-06 Bruno Haible <bruno@clisp.org>
2+
3+
* srclib/Makefile.am (DEFS): Fix spelling of DEPENDS_ON_LIBICONV.
4+
* srclib/Makefile.msvc (CFLAGS): Likewise.
5+
6+
* srclib/Makefile.msvc (INCLUDES): Add -I.. .
7+
Reported by Perry Rapp.
8+
9+
* Makefile.msvc (config.h): New rule.
10+
(all): Depend on it.
11+
(mostlyclean, clean, distclean, maintainer-clean): Erase config.h.
12+
Reported by Perry Rapp.
13+
114
2003-05-06 Bruno Haible <bruno@clisp.org>
215

316
* autoconf/config.guess: Update to GNU version 2003-02-22.
@@ -248,6 +261,7 @@
248261
* Makefile.devel (CLISP_DIR): Comment out.
249262
(AUTOCONF_FILES): Change to aclocal.m4.
250263
(aclocal.m4): Renamed from autoconf/aclocal.m4. Update dependencies.
264+
(configure.in): Drop --include option.
251265

252266
2003-03-17 Bruno Haible <bruno@clisp.org>
253267

Makefile.msvc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ INSTALL_DATA = copy
5959

6060
SHELL = /bin/sh
6161

62-
all : force
62+
all : config.h force
6363
cd libcharset
6464
$(MAKE) -f Makefile.msvc all
6565
cd ..
@@ -88,6 +88,10 @@ all : force
8888
$(MAKE) -f Makefile.msvc all
8989
cd ..
9090

91+
config.h : config.h.msvc
92+
-$(RM) config.h
93+
$(LN) config.h.msvc config.h
94+
9195
install : force
9296
cd libcharset
9397
$(MAKE) -f Makefile.msvc install
@@ -187,6 +191,7 @@ check : all force
187191
cd ..
188192

189193
mostlyclean : force
194+
$(RM) config.h
190195
cd libcharset
191196
$(MAKE) -f Makefile.msvc mostlyclean
192197
cd ..
@@ -212,6 +217,7 @@ mostlyclean : force
212217
cd ..
213218

214219
clean : force
220+
$(RM) config.h
215221
cd libcharset
216222
$(MAKE) -f Makefile.msvc clean
217223
cd ..
@@ -237,6 +243,7 @@ clean : force
237243
cd ..
238244

239245
distclean : force
246+
$(RM) config.h
240247
cd libcharset
241248
$(MAKE) -f Makefile.msvc distclean
242249
cd ..
@@ -262,6 +269,7 @@ distclean : force
262269
cd ..
263270

264271
maintainer-clean : force
272+
$(RM) config.h
265273
cd libcharset
266274
$(MAKE) -f Makefile.msvc maintainer-clean
267275
cd ..

srclib/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EXTRA_DIST += \
5656

5757
INCLUDES = -I. -I$(srcdir)
5858

59-
DEFS = -DDEPENDS_ON_LIBCONV=1 -DDEPENDS_ON_LIBINTL=1 @DEFS@
59+
DEFS = -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1 @DEFS@
6060

6161

6262
# >>> gnulib module stdbool.

srclib/Makefile.msvc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ INCINTL = -I$(includedir)
6464
LIBINTL = $(libdir)\intl.lib
6565
!endif
6666

67-
CFLAGS = $(MFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS) -DHAVE_CONFIG_H $(NLSFLAGS) -DDEPENDS_ON_LIBCONV=1 -DDEPENDS_ON_LIBINTL=1
67+
CFLAGS = $(MFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS) -DHAVE_CONFIG_H $(NLSFLAGS) -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1
6868

69-
INCLUDES = -I. $(INCINTL)
69+
INCLUDES = -I. -I.. $(INCINTL)
7070

7171
AR = lib
7272
AR_FLAGS = /out:

0 commit comments

Comments
 (0)