This is the mail archive of the cygwin-apps@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]

inilint patch for setup.exe (CVS)


Robert,

This is a patch to Makfile.am which helps to resolve some missing library dependancies for inilint.exe during the linking phase. Also I have removed a duplicate source file declaration, whose object file was being linked to twice. Also missing was linking to the new PackageSpecification.o, whose symbols were needed by another object file. After applying this patch and running bootstrap.sh, inilint compiles fine. Just thought you should know...

Cheers,
Nicholas

Index: Makefile.am
===================================================================
RCS file: /cvs/cygwin-apps/setup/Makefile.am,v
retrieving revision 2.18
diff -u -3 -p -u -p -r2.18 Makefile.am
--- Makefile.am 27 Jun 2002 11:20:50 -0000  2.18
+++ Makefile.am 28 Jun 2002 14:17:19 -0000
@@ -62,7 +62,6 @@ BUILT_SOURCES = setup_version.c \
 if MINGWTARGET
   inilint_extras = \
    autoload.c \
-   mklink2.cc\
    mklink2.cc
 else
   inilint_extras =
@@ -76,7 +75,7 @@ else
   rsync_source = 
 endif
 
-inilint_LDADD = libgetopt++/libgetopt++.la -lstdc++ -luser32 -lkernel32 
+inilint_LDADD = libgetopt++/libgetopt++.la -lstdc++ -luser32 -lkernel32 -lole32 -luuid
 inilint_SOURCES = \
   filemanip.cc \
   filemanip.h \
@@ -101,6 +100,8 @@ inilint_SOURCES = \
   IOStreamProvider.h \
   mkdir.cc \
   mkdir.h \
+  PackageSpecification.cc \
+  PackageSpecification.h \
   PackageTrust.h \
   rfc1738.cc \
   rfc1738.h \

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