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 Date: Fri, 17 Nov 2000 11:18:01 -0500 From: Jason Tishler To: Kris Thielemans Cc: Gnuwin Subject: Re: testing if it's cygwin Message-ID: <20001117111801.A252@dothill.com> References: <005a01c050aa$591a4490$460a10ac AT rpms DOT ac DOT uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <005a01c050aa$591a4490$460a10ac@rpms.ac.uk>; from kris.thielemans@csc.mrc.ac.uk on Fri, Nov 17, 2000 at 03:23:33PM -0000 Organization: Dot Hill Systems Corp. Kris, On Fri, Nov 17, 2000 at 03:23:33PM -0000, Kris Thielemans wrote: > what would be the recommended way of testing (in a shell script file, or a > Makefile) if it's being run on CYGWIN? We use constructs such as the following: bash: ==== if [[ $(uname -s) = CYGWIN_NT* ]] then # handle NT/2000 else # handle 9X/ME fi sh: == case `uname -s` in CYGWIN_NT*) # handle NT/2000 ;; *) # handle 9X/ME ;; esac make: ==== ifeq ($(findstring CYGWIN_NT, $(shell uname -s)), CYGWIN_NT) # handle NT/2000 else # handle 9X/ME endif > Also, it relies on the existence of uname of course... Which is a reasonable dependency -- at least for us. Jason -- Jason Tishler Director, Software Engineering Phone: +1 (732) 264-8770 x235 Dot Hill Systems Corporation Fax: +1 (732) 264-8798 82 Bethany Road, Suite 7 Email: Jason DOT Tishler AT dothill DOT com Hazlet, NJ 07730 USA WWW: http://www.dothill.com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com