Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com Message-ID: <20010706173613.56465.qmail@web11501.mail.yahoo.com> Date: Fri, 6 Jul 2001 12:36:13 -0500 (CDT) From: =?iso-8859-1?q?Edgar=20Ruiz=20Rojas?= <_espartaco AT yahoo DOT com> Subject: Re: Problems with Apache 1.3.20 To: Stipe Tolj Cc: cygwin AT cygwin DOT com MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi Stipe I read a message in the list of cygwin mail where you responded to the following question around this: >> Apache 1.3.20 seems to _build_ OK, but I'm seeing numerous errors in the >> 'make install' like the following: >> >> cp: `./src/httpd' and `/usr/local/apache/bin/inst.1564' are the same file >> strip: /usr/local/apache/bin/inst.1564: No such file or directory >> chmod: /usr/local/apache/bin/inst.1564: No such file or directory >> mv: /usr/local/apache/bin/inst.1564: No such file or directory > > But, the 'make install' reports that it completed successfully. > >yep, the "make install" step is not supported due to the executable extensions >".exe" for the cygwin executables. A >work-around is to copy all .exe files from src/* to /usr/local/apache/bin. There is a small patch that one could add inside the file "configure", to be able to solve this problem for the case of cygwin: diff -urN apache_1.3.20/configure apache_1.3.20-cygwin/configure --- apache_1.3.20/configure Wed Feb 7 13:07:24 2001 +++ apache_1.3.20-cygwin/configure Tue Jun 5 01:09:52 2001 @@ -258,6 +258,12 @@ iflags_script="-m 755" iflags_data="-m 644" +case $PLATFORM in + *-cygwin* ) + iflags_program="$iflags_program -e .exe" + ;; +esac + # various other flags support=1 confadjust=1 Regards, Edgar Ruiz P.D.: Thank you for to have ported the Apache Server to the cygwin platform. _________________________________________________________ Do You Yahoo!? Obtenga su dirección de correo-e gratis @yahoo.com en http://correo.espanol.yahoo.com -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/