From d5043133e63290e0abedc34ddd1889bbd4bb953e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 21 May 2003 08:08:48 +0000 Subject: Gisle Vanem made curl build with djgpp on DOS. --- docs/examples/makefile.dj | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 docs/examples/makefile.dj (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj new file mode 100644 index 000000000..6b3cb9d39 --- /dev/null +++ b/docs/examples/makefile.dj @@ -0,0 +1,31 @@ +# +# Adapted for djgpp / Watt-32 / DOS by +# Gisle Vanem +# + +include ../../packages/DOS/common.dj + +CFLAGS += -I../../include + +LIBS = ../../lib/libcurl.a + +ifeq ($(USE_SSL),1) + LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a +endif + +LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a + +PROGRAMS = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \ + http-pos.exe httpput.exe multi-ap.exe multi-do.exe \ + multi-po.exe multi-si.exe persista.exe post-cal.exe \ + postit2.exe sepheade.exe simple.exe simpless.exe + +all: $(PROGRAMS) + +.c.exe: + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + @echo + +clean: + rm -f $(PROGRAMS) + -- cgit v1.2.1 From c81ac51e5c1063fb34c2f30ec14009a5b5d52099 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 29 Jun 2004 18:43:04 +0000 Subject: Gisle's update --- docs/examples/makefile.dj | 95 +++++++++++++++++++++++++++++++---------------- 1 file changed, 64 insertions(+), 31 deletions(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 6b3cb9d39..642a5b090 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -1,31 +1,64 @@ -# -# Adapted for djgpp / Watt-32 / DOS by -# Gisle Vanem -# - -include ../../packages/DOS/common.dj - -CFLAGS += -I../../include - -LIBS = ../../lib/libcurl.a - -ifeq ($(USE_SSL),1) - LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a -endif - -LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a - -PROGRAMS = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \ - http-pos.exe httpput.exe multi-ap.exe multi-do.exe \ - multi-po.exe multi-si.exe persista.exe post-cal.exe \ - postit2.exe sepheade.exe simple.exe simpless.exe - -all: $(PROGRAMS) - -.c.exe: - $(CC) $(CFLAGS) -o $@ $^ $(LIBS) - @echo - -clean: - rm -f $(PROGRAMS) - +# +# Adapted for djgpp / Watt-32 / DOS by +# Gisle Vanem +# + +include ../../packages/DOS/common.dj + +CFLAGS += -I../../include + +LIBS = ../../lib/libcurl.a + +ifeq ($(USE_SSL),1) + LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a +endif + +LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a + +PROGRAMS = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \ + http-pos.exe httpput.exe multi-ap.exe multi-do.exe \ + multi-po.exe multi-si.exe persista.exe post-cal.exe \ + postit2.exe sepheade.exe simple.exe simpless.exe + +all: $(PROGRAMS) + +.c.exe: + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + @echo + +clean: + rm -f $(PROGRAMS) + +- 1,32 ---- +# +# Adapted for djgpp / Watt-32 / DOS by +# Gisle Vanem +# + +include ../../packages/DOS/common.dj + +CFLAGS += -I../../include + +LIBS = ../../lib/libcurl.a + +ifeq ($(USE_SSL),1) + LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a +endif + +LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a + +PROGRAMS = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \ + http-pos.exe httpput.exe multi-ap.exe multi-do.exe \ + multi-po.exe multi-si.exe persista.exe post-cal.exe \ + postit2.exe sepheade.exe simple.exe simpless.exe https.exe \ + ftp3rdpa.exe getinfo.exe + +all: $(PROGRAMS) + +%.exe: %.c + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + @echo + +clean: + rm -f $(PROGRAMS) + -- cgit v1.2.1 From 574e91137569fda3d25fa86d19dec6c6b0580075 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 30 Jun 2004 12:34:33 +0000 Subject: Another Gisle update --- docs/examples/makefile.dj | 97 ++++++++++++++++------------------------------- 1 file changed, 33 insertions(+), 64 deletions(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 642a5b090..4200520be 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -1,64 +1,33 @@ -# -# Adapted for djgpp / Watt-32 / DOS by -# Gisle Vanem -# - -include ../../packages/DOS/common.dj - -CFLAGS += -I../../include - -LIBS = ../../lib/libcurl.a - -ifeq ($(USE_SSL),1) - LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a -endif - -LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a - -PROGRAMS = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \ - http-pos.exe httpput.exe multi-ap.exe multi-do.exe \ - multi-po.exe multi-si.exe persista.exe post-cal.exe \ - postit2.exe sepheade.exe simple.exe simpless.exe - -all: $(PROGRAMS) - -.c.exe: - $(CC) $(CFLAGS) -o $@ $^ $(LIBS) - @echo - -clean: - rm -f $(PROGRAMS) - -- 1,32 ---- -# -# Adapted for djgpp / Watt-32 / DOS by -# Gisle Vanem -# - -include ../../packages/DOS/common.dj - -CFLAGS += -I../../include - -LIBS = ../../lib/libcurl.a - -ifeq ($(USE_SSL),1) - LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a -endif - -LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a - -PROGRAMS = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \ - http-pos.exe httpput.exe multi-ap.exe multi-do.exe \ - multi-po.exe multi-si.exe persista.exe post-cal.exe \ - postit2.exe sepheade.exe simple.exe simpless.exe https.exe \ - ftp3rdpa.exe getinfo.exe - -all: $(PROGRAMS) - -%.exe: %.c - $(CC) $(CFLAGS) -o $@ $^ $(LIBS) - @echo - -clean: - rm -f $(PROGRAMS) - +# +# Adapted for djgpp / Watt-32 / DOS by +# Gisle Vanem +# + +include ../../packages/DOS/common.dj + +CFLAGS += -I../../include -DFALSE=0 -DTRUE=1 + +LIBS = ../../lib/libcurl.a + +ifeq ($(USE_SSL),1) + LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a +endif + +LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a + +PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ + getinmemory.exe http-post.exe httpput.exe multi-app.exe \ + multi-double.exe multi-post.exe multi-single.exe \ + persistant.exe post-callback.exe postit2.exe \ + sepheaders.exe simple.exe simplessl.exe https.exe \ + ftp3rdparty.exe getinfo.exe + +all: $(PROGRAMS) + +%.exe: %.c + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + @echo + +clean: + rm -f $(PROGRAMS) + -- cgit v1.2.1 From f0e66d8c76dc53ab9046f82e14ff9785b439a9da Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Fri, 26 Nov 2004 15:04:15 +0000 Subject: Added anyauthput.exe. --- docs/examples/makefile.dj | 66 +++++++++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 33 deletions(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 4200520be..35e53d381 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -1,33 +1,33 @@ -# -# Adapted for djgpp / Watt-32 / DOS by -# Gisle Vanem -# - -include ../../packages/DOS/common.dj - -CFLAGS += -I../../include -DFALSE=0 -DTRUE=1 - -LIBS = ../../lib/libcurl.a - -ifeq ($(USE_SSL),1) - LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a -endif - -LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a - -PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ - getinmemory.exe http-post.exe httpput.exe multi-app.exe \ - multi-double.exe multi-post.exe multi-single.exe \ - persistant.exe post-callback.exe postit2.exe \ - sepheaders.exe simple.exe simplessl.exe https.exe \ - ftp3rdparty.exe getinfo.exe - -all: $(PROGRAMS) - -%.exe: %.c - $(CC) $(CFLAGS) -o $@ $^ $(LIBS) - @echo - -clean: - rm -f $(PROGRAMS) - +# +# Adapted for djgpp / Watt-32 / DOS by +# Gisle Vanem +# + +include ../../packages/DOS/common.dj + +CFLAGS += -I../../include -DFALSE=0 -DTRUE=1 + +LIBS = ../../lib/libcurl.a + +ifeq ($(USE_SSL),1) + LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a +endif + +LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a + +PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ + getinmemory.exe http-post.exe httpput.exe multi-app.exe \ + multi-double.exe multi-post.exe multi-single.exe \ + persistant.exe post-callback.exe postit2.exe \ + sepheaders.exe simple.exe simplessl.exe https.exe \ + ftp3rdparty.exe getinfo.exe anyauthput.exe + +all: $(PROGRAMS) + +%.exe: %.c + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) + @echo + +clean: + rm -f $(PROGRAMS) + -- cgit v1.2.1 From 2236ba0d206fe9fef5d93889ee652feaa03fe089 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 27 Jul 2005 22:17:14 +0000 Subject: Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a simple interface to extracting and setting cookies in libcurl's internal "cookie jar". See the new cookie_interface.c example code. --- docs/examples/makefile.dj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 35e53d381..8d19ef63e 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -20,7 +20,8 @@ PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ multi-double.exe multi-post.exe multi-single.exe \ persistant.exe post-callback.exe postit2.exe \ sepheaders.exe simple.exe simplessl.exe https.exe \ - ftp3rdparty.exe getinfo.exe anyauthput.exe + ftp3rdparty.exe getinfo.exe anyauthput.exe \ + cookie_interface.exe all: $(PROGRAMS) -- cgit v1.2.1 From 9e54d4c7d29352f54aed28542f5b840e9d88c071 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Wed, 13 Sep 2006 13:51:03 +0000 Subject: Use CSOURCES as other makefiles. Add line for dependency generation. --- docs/examples/makefile.dj | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 8d19ef63e..d0d4b67f0 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -15,13 +15,13 @@ endif LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a -PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ - getinmemory.exe http-post.exe httpput.exe multi-app.exe \ - multi-double.exe multi-post.exe multi-single.exe \ - persistant.exe post-callback.exe postit2.exe \ - sepheaders.exe simple.exe simplessl.exe https.exe \ - ftp3rdparty.exe getinfo.exe anyauthput.exe \ - cookie_interface.exe +CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ + http-post.c httpput.c multi-app.c multi-double.c multi-post.c \ + multi-single.c persistant.c post-callback.c postit2.c \ + sepheaders.c simple.c simplessl.c https.c ftp3rdparty.c \ + getinfo.c anyauthput.c cookie_interface.c 10-at-a-time.c + +PROGRAMS = $(CSOURCES:.c=.exe) all: $(PROGRAMS) @@ -32,3 +32,5 @@ all: $(PROGRAMS) clean: rm -f $(PROGRAMS) +# DO NOT DELETE THIS LINE + -- cgit v1.2.1 From 605a39117810a9bb3e99e2aba8c4d5fc7afa5db8 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Sat, 17 Mar 2007 17:58:45 +0000 Subject: Added cvs id. Use TOPDIR variable. Updated CSOURCES. Dependencies are now put in external file depend.dj. --- docs/examples/makefile.dj | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index d0d4b67f0..4e33c0151 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -1,13 +1,16 @@ +# $Id$ # # Adapted for djgpp / Watt-32 / DOS by # Gisle Vanem # -include ../../packages/DOS/common.dj +TOPDIR = ../.. -CFLAGS += -I../../include -DFALSE=0 -DTRUE=1 +include $(TOPDIR)/packages/DOS/common.dj -LIBS = ../../lib/libcurl.a +CFLAGS += -DFALSE=0 -DTRUE=1 + +LIBS = $(TOPDIR)/lib/libcurl.a ifeq ($(USE_SSL),1) LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a @@ -15,22 +18,24 @@ endif LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a -CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ - http-post.c httpput.c multi-app.c multi-double.c multi-post.c \ - multi-single.c persistant.c post-callback.c postit2.c \ - sepheaders.c simple.c simplessl.c https.c ftp3rdparty.c \ - getinfo.c anyauthput.c cookie_interface.c 10-at-a-time.c +CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ + http-post.c httpput.c https.c multi-app.c multi-double.c \ + multi-post.c multi-single.c persistant.c post-callback.c \ + postit2.c sepheaders.c simple.c simplepost.c simplessl.c \ + multi-debugcallback.c fileupload.c getinfo.c anyauthput.c \ + 10-at-a-time.c # ftpuploadresume.c ftp3rdparty.c cookie_interface.c PROGRAMS = $(CSOURCES:.c=.exe) all: $(PROGRAMS) + @echo Welcome to libcurl example program %.exe: %.c $(CC) $(CFLAGS) -o $@ $^ $(LIBS) @echo -clean: - rm -f $(PROGRAMS) +clean vclean realclean: + - rm -f $(PROGRAMS) depend.dj -# DO NOT DELETE THIS LINE +-include depend.dj -- cgit v1.2.1 From 6d27647b61faf2cfc2c9ad3433d848db833534e4 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Thu, 13 Sep 2007 20:36:52 +0000 Subject: Remove remaining traces of ftp3rdparty.c and mention htmltidy.c --- docs/examples/makefile.dj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 4e33c0151..c47f003ee 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -23,7 +23,7 @@ CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ multi-post.c multi-single.c persistant.c post-callback.c \ postit2.c sepheaders.c simple.c simplepost.c simplessl.c \ multi-debugcallback.c fileupload.c getinfo.c anyauthput.c \ - 10-at-a-time.c # ftpuploadresume.c ftp3rdparty.c cookie_interface.c + 10-at-a-time.c # ftpuploadresume.c cookie_interface.c PROGRAMS = $(CSOURCES:.c=.exe) -- cgit v1.2.1 From a95e600eb0fa1fdba0d2627ff15aaf9392b6c253 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Tue, 8 Jul 2008 13:55:20 +0000 Subject: Added libidn libs as needed. Added compilation of sendrecv.c and cookie_interface.c. --- docs/examples/makefile.dj | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index c47f003ee..853b6b4ed 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -16,6 +16,10 @@ ifeq ($(USE_SSL),1) LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a endif +ifeq ($(USE_IDNA),1) + LIBS += $(LIBIDN_ROOT)/lib/dj_obj/libidn.a -liconv +endif + LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ @@ -23,7 +27,7 @@ CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ multi-post.c multi-single.c persistant.c post-callback.c \ postit2.c sepheaders.c simple.c simplepost.c simplessl.c \ multi-debugcallback.c fileupload.c getinfo.c anyauthput.c \ - 10-at-a-time.c # ftpuploadresume.c cookie_interface.c + 10-at-a-time.c sendrecv.c cookie_interface.c # ftpuploadresume.c PROGRAMS = $(CSOURCES:.c=.exe) -- cgit v1.2.1 From d8cab4c13382d70995cfa26878d697a1ff7d4556 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Sun, 17 Aug 2008 16:20:23 +0000 Subject: Pick-up programs from Makefile.inc. --- docs/examples/makefile.dj | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 853b6b4ed..6bf99d82f 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -22,14 +22,9 @@ endif LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a -CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ - http-post.c httpput.c https.c multi-app.c multi-double.c \ - multi-post.c multi-single.c persistant.c post-callback.c \ - postit2.c sepheaders.c simple.c simplepost.c simplessl.c \ - multi-debugcallback.c fileupload.c getinfo.c anyauthput.c \ - 10-at-a-time.c sendrecv.c cookie_interface.c # ftpuploadresume.c - -PROGRAMS = $(CSOURCES:.c=.exe) +include Makefile.inc + +PROGRAMS = $(patsubst %,%.exe,$(check_PROGRAMS)) all: $(PROGRAMS) @echo Welcome to libcurl example program -- cgit v1.2.1 From 2309b4e330b96bc2e1f8e36b6184015e59544037 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 24 Mar 2010 11:02:54 +0100 Subject: remove the CVSish $Id$ lines --- docs/examples/makefile.dj | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 6bf99d82f..8736e6e78 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -1,4 +1,3 @@ -# $Id$ # # Adapted for djgpp / Watt-32 / DOS by # Gisle Vanem -- cgit v1.2.1 From 029136da6054a3b2d6cb36b3b4f2ed34f83e010a Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 12 Mar 2011 00:14:32 +0100 Subject: source header: added to more files --- docs/examples/makefile.dj | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 8736e6e78..a8bdd6a4e 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -1,3 +1,24 @@ +#*************************************************************************** +# _ _ ____ _ +# Project ___| | | | _ \| | +# / __| | | | |_) | | +# | (__| |_| | _ <| |___ +# \___|\___/|_| \_\_____| +# +# Copyright (C) 1998 - 2011, Daniel Stenberg, , et al. +# +# This software is licensed as described in the file COPYING, which +# you should have received as part of this distribution. The terms +# are also available at http://curl.haxx.se/docs/copyright.html. +# +# You may opt to use, copy, modify, merge, publish, distribute and/or sell +# copies of the Software, and permit persons to whom the Software is +# furnished to do so, under the terms of the COPYING file. +# +# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY +# KIND, either express or implied. +# +########################################################################### # # Adapted for djgpp / Watt-32 / DOS by # Gisle Vanem -- cgit v1.2.1 From e9afbe2a65716a1e08677a88976f44c81704b6e8 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Thu, 7 Apr 2011 15:16:38 +0200 Subject: examples/makefile.dj: update email --- docs/examples/makefile.dj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/makefile.dj') diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index a8bdd6a4e..c18ef8a70 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -21,7 +21,7 @@ ########################################################################### # # Adapted for djgpp / Watt-32 / DOS by -# Gisle Vanem +# Gisle Vanem # TOPDIR = ../.. -- cgit v1.2.1