Skip to content

Commit

Permalink
Use non-sourceforge download for pcre
Browse files Browse the repository at this point in the history
sourceforge is the worst, I'd rather use ftp than deal with how often it's down

plus the backup caching server we use has been having some issues lately
  • Loading branch information
tkelman committed Jun 3, 2015
1 parent b96d8cc commit d198e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ PCRE_SRC_TARGET = pcre2-$(PCRE_VER)/.libs/libpcre2-8.$(SHLIB_EXT)
PCRE_OBJ_TARGET = $(build_shlibdir)/libpcre2-8.$(SHLIB_EXT)

pcre2-$(PCRE_VER).tar.bz2:
$(JLDOWNLOAD) $@ http://sourceforge.net/projects/pcre/files/pcre2/$(PCRE_VER)/$@/download
$(JLDOWNLOAD) $@ ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-$(PCRE_VER).tar.bz2
pcre2-$(PCRE_VER)/configure: pcre2-$(PCRE_VER).tar.bz2
$(JLCHECKSUM) $<
$(TAR) jxf $<
Expand Down

3 comments on commit d198e90

@crayxt
Copy link
Contributor

@crayxt crayxt commented on d198e90 Jun 3, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Out of curiosity - why not http? The same link is also available via http. With ftp this is the single target in deps/Makefile

@tkelman
Copy link
Contributor Author

@tkelman tkelman commented on d198e90 Jun 3, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same link is also available via http

It is? Oops I didn't look hard enough. How about https?

@tkelman
Copy link
Contributor Author

@tkelman tkelman commented on d198e90 Jun 3, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks, fixed in a031f93

Please sign in to comment.