diff options
author | 2016-02-01 19:48:46 -0500 | |
---|---|---|
committer | 2016-02-01 19:48:46 -0500 | |
commit | 68bb2f28586680b19bd1edb5b37c5627d1bda9bd (patch) | |
tree | 0db4de5a564a61389bb3273f1df1f23f66b78b25 | |
parent | 4d136a0c79b8cfb4a6141b499e7e67dba5ca7b4c (diff) | |
download | textadept-68bb2f28586680b19bd1edb5b37c5627d1bda9bd.tar.gz textadept-68bb2f28586680b19bd1edb5b37c5627d1bda9bd.zip |
Use an archived CDK version instead of the latest; src/Makefile
Otherwise building Textadept from the source could break at any time.
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 3b2202fd..3aba986c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -391,7 +391,7 @@ lspawn_zip = lspawn_1.3.zip luajit_tgz = LuaJIT-2.0.3.tar.gz libluajit_tgz = libluajit_2.0.3.x86_64.tgz gtdialog_zip = gtdialog_1.2.zip -cdk_tgz = cdk.tar.gz +cdk_tgz = cdk-5.0-20150928.tgz termkey_tgz = libtermkey-0.17.tar.gz win32gtk_zip = gtk+-bundle_2.24.10-20120208_win32.zip win32iconv_bin_zip = libiconv-bin-zip.php @@ -439,7 +439,7 @@ $(libluajit_tgz): ; wget http://foicica.com/textadept/download/$@ libluajit64: | $(libluajit_tgz) ; tar xzf $| $(gtdialog_zip): ; wget $(gtdialog_url) -O $@ gtdialog: | $(gtdialog_zip) ; mkdir $@ && unzip -d $@ $| && mv $@/*/* $@ -$(cdk_tgz): ; wget http://invisible-island.net/datafiles/release/$@ +$(cdk_tgz): ; wget http://invisible-mirror.net/archives/cdk/$@ cdk: cdk.patch | $(cdk_tgz) mkdir $@ && tar xzf $| -C $@ && mv $@/*/* $@ mv $@/include/*.h $@ |