Commit 2d32e883 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Cygwin moved into the win32 drawer

parent 42a9d96f
Loading
Loading
Loading
Loading

packages/Cygwin/Makefile.am

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
EXTRA_DIST = README

packages/Cygwin/README

deleted100644 → 0
+0 −34
Original line number Diff line number Diff line
cURL (as of 7.9.1) builds completely OOTB. The Cygwin specific files
(README is the only one so far) are located in a non-standard location:
 <srctop>/packages/Cygwin/

This release (v7.9) includes the patch needed in CYGWIN-PATCHES,
however future releases should eliminate this directory.


Direct Dependencies:
  OpenSSL 0.9.6b

Canonical Homepage:
  http://curl.haxx.se/

Canonical Download:
  http://curl.haxx.se/download.html


Build Instructions:

  unpack curl-<ver>-X-src.tar.bz2
  cd curl-<ver>
  ./configure --prefix=/usr 
  make
  (optionally) make test (*)
  make install (**)

  (*) until v7.9.1, 'make test' requires Cygwin's mounts set to binmode / Unix
  (**) if you need to bootstrap, make install will require libtool 1.4.3
       (which contains a patch related to the ".exe" extension on curl.exe


Cygwin "port" maintained by: Kevin Roth <kproth at bigfoot dot com>
+1 −1
Original line number Diff line number Diff line
SUBDIRS = Win32 Linux Solaris Cygwin
SUBDIRS = Win32 Linux Solaris

EXTRA_DIST = README
+2 −0
Original line number Diff line number Diff line
SUBDIRS = cygwin

EXTRA_DIST = README
+37 −0
Original line number Diff line number Diff line
EXTRA_DIST = README

#
# Build a Cygwin binary tar ball
#
# Read the README file for details on using this Makefile
#
# NOTE: As I'm not particularly familiar with Makefiles, this was the
#  best I could come up with. It should probably be enhanced someday 
#  to actually use the correct target and pre-requisite names, etc...
#  If anyone else wants to volunteer, feel free ;-)
#

# Cygwin build number (default to "1")
# NOTE: I tried using this to default CYGBUILD to 1, but couldn't make it work)
#ifndef CYGBUILD
#  CYGBUILD = 1
#endif

# temp dir for use while building the tarball (fully-qualified)
cygwintmp := $(CURDIR)/cygwinbin-builddir

cygwinbin:
	rm -rf $(cygwintmp)
	@(echo Installing to the temporary build dir...)
	$(MAKE) -C $(top_builddir) install prefix=$(cygwintmp)/usr
	$(mkinstalldirs) $(cygwintmp)/usr/doc/Cygwin \
	                 $(cygwintmp)/usr/doc/$(PACKAGE)-$(VERSION)
	cp $(top_srcdir)/packages/Win32/cygwin/README \
	  $(cygwintmp)/usr/doc/Cygwin/$(PACKAGE)-$(VERSION)-$(CYGBUILD).README
	cd $(top_srcdir) ; \
	  cp CHANGES LEGAL MPL-1.1.txt README docs/FAQ docs/FEATURES docs/TODO \
	  $(cygwintmp)/usr/doc/$(PACKAGE)-$(VERSION)
	cd $(cygwintmp) ; \
	  tar cjf $(PACKAGE)-$(VERSION)-$(CYGBUILD).tar.bz2 usr
	mv $(cygwintmp)/$(PACKAGE)-$(VERSION)-$(CYGBUILD).tar.bz2 . \
	  && rm -rf $(cygwintmp)
Loading