From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 109f73,16173c37ff602bbd,start X-Google-Attributes: gid109f73,public X-Google-Thread: 103376,16173c37ff602bbd,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-08-28 03:19:20 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: mark_doherty@yahoo.co.uk (Mark Doherty) Newsgroups: comp.lang.ada,gnu.utils.help Subject: Problem installing XML/Ada 0.7 on GNAT 3.15p, Windows XP and Cygwin Date: 28 Aug 2003 03:19:18 -0700 Organization: http://groups.google.com/ Message-ID: <5e3e03a7.0308280219.677da312@posting.google.com> NNTP-Posting-Host: 81.132.146.193 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1062065959 8631 127.0.0.1 (28 Aug 2003 10:19:19 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 28 Aug 2003 10:19:19 GMT Xref: archiver1.google.com comp.lang.ada:41914 gnu.utils.help:2572 Date: 2003-08-28T10:19:19+00:00 List-Id: Has anybody installed XML/Ada on Windows XP (Gnat 3.15p). http://libre.act-europe.fr/xmlada/ The make file attempts to copy libxmlada_unicode-0.7.so file when it has not been created. (only libxmlada_unicode-0.7.a has been created) Do ".so" files exist in windows or are they dll's? extract from makefile.module.nt lib: ${OBJ} cd obj; ${AR} ${ARFLAGS} ${soname}.a ${OBJ} ifeq (${WIN32}, TRUE) cd obj; ${RANLIB} ${soname}.a else @if [ -f /usr/bin/$(RANLIB) -o -f /bin/$(RANLIB) ]; then \ cd obj; ${RANLIB} ${soname}.a; \ fi ## ## The next line I assume creates libxmlada_unicode-0.7.so ## (but not in a windows environment) ## cd obj; ${CC} -shared -o ${soname}.so ${OBJ} endif install: lib @${MKDIR} ${PREFIX}/lib @${MKDIR} ${PREFIX}/include/xmlada cd obj; ${CP} *.ali ${PREFIX}/include/xmlada cd ${PREFIX}/include/xmlada; ${CHMOD} -w *.ali ${CP} *.ad[bs] ${PREFIX}/include/xmlada ## ## The next line fails to find libxmlada_unicode-0.7.so ## cd obj; ${CP} ${soname}.a ${soname}.so ${PREFIX}/lib cd ${PREFIX}/lib; ${LN} ${soname}.so ${libname}.so Here is a screen shot of my problem. � cd obj; ranlib libxmlada_unicode.a cd obj; cp -p -f *.ali C:/GNAT/xmlada/include/xmlada cd C:/GNAT/xmlada/include/xmlada; chmod -w *.ali cp -p -f *.ad[bs] C:/GNAT/xmlada/include/xmlada cd obj; cp -p -f libxmlada_unicode.a libxmlada_unicode-0.7.so C:/GNAT/xmlada/lib cp: cannot stat `libxmlada_unicode-0.7.so': No such file or directory make.exe[1]: *** [install] Error 1 make.exe[1]: Leaving directory `c:/gnat/xmlada-install/xmlada-0.7.1/unicode' c:\GNAT\bin\make.exe: *** [unicode_install] Error 2