Index: Makefile.am
===================================================================
RCS file: /cvsroot/curl/curl/lib/Makefile.am,v
retrieving revision 1.100
diff -u -r1.100 Makefile.am
--- Makefile.am	24 Aug 2004 11:48:02 -0000	1.100
+++ Makefile.am	11 Sep 2004 18:52:26 -0000
@@ -24,7 +24,7 @@
 
 DSP = curllib.dsp
 
-EXTRA_DIST = getdate.y Makefile.b32 Makefile.m32	\
+EXTRA_DIST = Makefile.b32 Makefile.m32	\
   Makefile.vc6 Makefile.riscos libcurl.def $(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 README.ares		\
@@ -33,7 +33,7 @@
   makefile.amiga Makefile.netware nwlib.c libcurl.imp	\
   msvcproj.head msvcproj.foot
 
-CLEANFILES = $(DSP) getdate.c
+CLEANFILES = $(DSP)
 
 lib_LTLIBRARIES = libcurl.la
 
@@ -93,12 +93,7 @@
 WIN32SOURCES = $(CSOURCES) libcurl.def
 WIN32HEADERS = $(HHEADERS) config-win32.h
 
-BUILT_SOURCES = $(srcdir)/getdate.c $(top_builddir)/lib/ca-bundle.h
-
-# Say $(srcdir), so GNU make does not report an ambiguity with the .y.c rule.
-$(srcdir)/getdate.c: getdate.y
-	cd $(srcdir) && $(YACC) $(YFLAGS) getdate.y && \
-	sed -e 's:YYSTYPE yylval;:YYSTYPE yylval = {0}; /* post-bison fix */:' < y.tab.c > getdate.c && rm -f y.tab.c
+BUILT_SOURCES = $(top_builddir)/lib/ca-bundle.h
 
 $(top_builddir)/lib/ca-bundle.h: Makefile.in Makefile
 	@if test -f $@; then \
Index: Makefile.inc
===================================================================
RCS file: /cvsroot/curl/curl/lib/Makefile.inc,v
retrieving revision 1.1
diff -u -r1.1 Makefile.inc
--- Makefile.inc	3 Jul 2004 17:49:40 -0000	1.1
+++ Makefile.inc	11 Sep 2004 18:52:27 -0000
@@ -2,21 +2,18 @@
  
 CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c	\
   cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c	\
-  getdate.c ldap.c ssluse.c version.c getenv.c escape.c mprintf.c	\
-  telnet.c netrc.c getinfo.c transfer.c strequal.c easy.c security.c	\
-  krb4.c memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c	\
-  multi.c content_encoding.c share.c http_digest.c md5.c		\
-  http_negotiate.c http_ntlm.c inet_pton.c strtoofft.c strerror.c	\
-  hostares.c hostasyn.c hostip4.c hostip6.c hostsyn.c hostthre.c	\
-  inet_ntop.c
+  ldap.c ssluse.c version.c getenv.c escape.c mprintf.c telnet.c	\
+  netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c	\
+  memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c multi.c	\
+  content_encoding.c share.c http_digest.c md5.c http_negotiate.c	\
+  http_ntlm.c inet_pton.c strtoofft.c strerror.c hostares.c hostasyn.c	\
+  hostip4.c hostip6.c hostsyn.c hostthre.c inet_ntop.c parsedate.c
 
 HHEADERS = arpa_telnet.h netrc.h file.h timeval.h base64.h hostip.h	\
   progress.h formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h	\
-  if2ip.h speedcheck.h urldata.h getdate.h ldap.h ssluse.h escape.h	\
-  telnet.h getinfo.h strequal.h security.h krb4.h memdebug.h		\
-  inet_ntoa_r.h http_chunks.h strtok.h connect.h llist.h hash.h		\
-  content_encoding.h share.h md5.h http_digest.h http_negotiate.h	\
-  http_ntlm.h ca-bundle.h inet_pton.h strtoofft.h strerror.h		\
-  inet_ntop.h curlx.h memory.h setup.h transfer.h
-
-
+  if2ip.h speedcheck.h urldata.h ldap.h ssluse.h escape.h telnet.h	\
+  getinfo.h strequal.h security.h krb4.h memdebug.h inet_ntoa_r.h	\
+  http_chunks.h strtok.h connect.h llist.h hash.h content_encoding.h	\
+  share.h md5.h http_digest.h http_negotiate.h http_ntlm.h ca-bundle.h	\
+  inet_pton.h strtoofft.h strerror.h inet_ntop.h curlx.h memory.h	\
+  setup.h transfer.h
Index: ftp.c
===================================================================
RCS file: /cvsroot/curl/curl/lib/ftp.c,v
retrieving revision 1.268
diff -u -r1.268 ftp.c
--- ftp.c	11 Sep 2004 19:19:59 -0000	1.268
+++ ftp.c	11 Sep 2004 19:20:57 -0000
@@ -903,6 +903,7 @@
   return CURLE_OK;
 }
 
+#define NEW_DATE_PARSE
 #ifdef NEW_DATE_PARSE
 extern const char *Curl_month[];
 #endif
