Skip to content

Commit

Permalink
Fix a build error on Tru64.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaible committed Jun 21, 2009
1 parent 9b958b9 commit 91c5079
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
12 changes: 8 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
2003-05-18 Bruno Haible <bruno@clisp.org>

* Version 1.9 released.

2003-05-18 Bruno Haible <bruno@clisp.org>

* lib/Makefile.in (libiconv_plug_osf.so): Avoid using LIBTOOL_LINK.

2003-05-18 Bruno Haible <bruno@clisp.org>

* lib/Makefile.msvc (DEBUGFLAGS): New variable.
(iconv.lib): Use it.
* src/Makefile.msvc (DEBUGFLAGS): New variable.
* tests/Makefile.msvc (DEBUGFLAGS): New variable.

2003-05-17 Bruno Haible <bruno@clisp.org>

* Version 1.9 released.

2003-05-17 Bruno Haible <bruno@clisp.org>

* src/Makefile.msvc (libdir, datadir, localedir): New variables.
Expand Down
8 changes: 6 additions & 2 deletions lib/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,12 @@ libiconv_plug_osf.so : $(SOURCES)
if test -n "@GCC@"; then \
$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -fPIC -DPIC -DLIBICONV_PLUG $(SOURCES) -shared -o libiconv_plug_osf.so; \
else \
$(LIBTOOL_LINK) $(CC) $(LDFLAGS) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -DPIC -DLIBICONV_PLUG $(SOURCES) -c -o iconv_plug.o; \
/bin/ld -shared -expect_unresolved \* -o libiconv_plug_osf.so iconv_plug.o; \
mkdir objects; \
for f in $(SOURCES); do \
$(CC) $(INCLUDES) $(CFLAGS) $(CPPFLAGS) $(DEFS) -DPIC -DLIBICONV_PLUG -c $$f -o objects/`basename $$f | sed -e 's,\.c$$,.o,'`; \
done; \
/bin/ld -shared -expect_unresolved \* -o libiconv_plug_osf.so objects/*.o; \
rm -rf objects; \
fi

iconv.lo : $(srcdir)/iconv.c $(srcdir)/converters.h $(srcdir)/encodings.def $(srcdir)/encodings_aix.def $(srcdir)/encodings_osf1.def $(srcdir)/encodings_dos.def $(srcdir)/encodings_local.def $(srcdir)/aliases.h $(srcdir)/aliases_aix.h $(srcdir)/aliases_osf1.h $(srcdir)/aliases_dos.h $(srcdir)/flags.h
Expand Down

0 comments on commit 91c5079

Please sign in to comment.