Commit d5043133 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Gisle Vanem made curl build with djgpp on DOS.

parent 509f69a4
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -6,6 +6,16 @@

                                  Changelog

Daniel (21 May)
- Gisle Vanem made curl build with djgpp on DOS.

- Gisle Vanem improved the mkhelp.pl script to make a nicer manual that is
  shown with curl -M.

Daniel (20 May)
- Gisle Vanem provided a fix that makes libcurl more conservative, not
  expecting h_aliases of the hostent struct to always be non-NULL.

Daniel (19 May)
- As requested by Martin Michlmayr in Debian bug report #193630, libcurl now
  supports user name and password in the proxy environment variables. Added
+4 −0
Original line number Diff line number Diff line
@@ -59,6 +59,10 @@ vc-ssl-dll:
	cd ..\src
	nmake -f Makefile.vc6

djgpp:
	make -C lib -f Makefile.dj
	make -C src -f Makefile.dj

cygwin:
	./configure
	make
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ EXTRA_DIST = README curlgtk.c sepheaders.c simple.c postit2.c \
	     multithread.c getinmemory.c ftpupload.c httpput.c		\
	     simplessl.c ftpgetresp.c http-post.c post-callback.c	\
	     multi-app.c multi-double.c multi-single.c multi-post.c	\
	     fopen.c simplepost.c
	     fopen.c simplepost.c makefile.dj

all:
	@echo "done"
+31 −0
Original line number Diff line number Diff line
#
#  Adapted for djgpp / Watt-32 / DOS by
#  Gisle Vanem <giva@bgnett.no>
#

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)
+2 −1
Original line number Diff line number Diff line
@@ -7,7 +7,8 @@ AUTOMAKE_OPTIONS = foreign nostdinc
EXTRA_DIST = getdate.y Makefile.b32 Makefile.b32.resp Makefile.m32	    \
       Makefile.vc6 Makefile.riscos libcurl.def curllib.dsp	    \
       curllib.dsw config-vms.h config-win32.h config-riscos.h config-mac.h \
       config.h.in ca-bundle.crt README.encoding README.memoryleak
       config.h.in ca-bundle.crt README.encoding README.memoryleak \
       makefile.dj config.dj

lib_LTLIBRARIES = libcurl.la

Loading