This is the mail archive of the cygwin-patches@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

A minor patch to Makefile.in


Hi all,

Due to the dependancy of gettext(libintl) and gettext, this pach is required to get a clean build with the new gettext/libiconv. Otherwise, it will fail when trying to build dumper.exe because make doesn't link against libiconv.

Cheers,
Nicholas

ChangeLog:

2002-06-26 Nicholas S. Wourms <nwourms@netscape.net>

* utils/Makefile.in: Fix so that dumper.exe will link against
the new gettext properly.



Index: utils/Makefile.in
===================================================================
RCS file: /cvs/src/src/winsup/utils/Makefile.in,v
retrieving revision 1.37
diff -u -3 -p -u -p -r1.37 Makefile.in
--- utils/Makefile.in   13 May 2002 05:13:58 -0000  1.37
+++ utils/Makefile.in   26 Jun 2002 17:00:47 -0000
@@ -60,7 +60,7 @@ ALL_LDLIBS:=${patsubst $(w32api_lib)/lib
        ${filter-out $(libcygwin), $(ALL_DEP_LDLIBS)}}}}
 
 MINGW_LIB:=$(mingw_build)/libmingw32.a
-DUMPER_LIB:=${libbfd} ${libintl} -L$(bupdir1)/libiberty -liberty
+DUMPER_LIB:=${libbfd} ${libintl} -L$(bupdir1)/libiberty -liberty -liconv
 MINGW_LDLIBS:=$(ALL_LDLIBS) $(MINGW_LIB)
 MINGW_DEP_LDLIBS:=${ALL_DEP_LDLIBS} ${MINGW_LIB}
 ALL_LDFLAGS:=-B$(newlib_build)/libc/ -B$(newlib_build)/libm/ -B$(w32api_lib)/ \

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]