Skip to content

Commit

Permalink
Close #4047
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno committed Aug 19, 2013
1 parent 35153e8 commit a450cb7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,24 @@ External libraries, if used, include their own licenses:
- [7-Zip](http:https://www.7-zip.org/license.txt)
- [AMOS](http:https://www.netlib.org/slatec/guide)
- [ARPACK](http:https://www.caam.rice.edu/software/ARPACK/RiceBSD.txt#LICENSE)
- [ATLAS](http:https://math-atlas.sourceforge.net/faq.html#license)
- [D3](https://github.com/mbostock/d3/raw/master/LICENSE)
- [DOUBLE-CONVERSION](https://code.google.com/p/double-conversion/)
- [DSFMT](http:https://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT/LICENSE.txt)
- [OPENLIBM](https://github.com/JuliaLang/openlibm/blob/master/LICENSE.md)
- [FADDEEVA](http:https://ab-initio.mit.edu/Faddeeva)
- [FEMTOLISP](https://github.com/JeffBezanson/femtolisp)
- [FFTW](http:https://fftw.org/doc/License-and-Copyright.html)
- Git is licensed under GPLv3
- [GIT](http:https://git-scm.com/about/free-and-open-source)
- [GMP](http:https://gmplib.org/manual/Copying.html#Copying)
- [LAPACK](http:https://netlib.org/lapack/LICENSE.txt)
- [LIBEXPAT](http:https://expat.cvs.sourceforge.net/viewvc/expat/expat/README)
- [LIBUNWIND](http:https://git.savannah.gnu.org/gitweb/?p=libunwind.git;a=blob_plain;f=LICENSE;hb=master)
- [LIBUV](https://github.com/joyent/libuv/blob/master/LICENSE)
- [LLVM](http:https://llvm.org/releases/3.0/LICENSE.TXT)
- [MPFR](http:https://www.mpfr.org/mpfr-current/mpfr.html#Copying)
- [OPENBLAS](https://raw.github.com/xianyi/OpenBLAS/master/LICENSE)
- [PATCHELF](http:https://hydra.nixos.org/build/1524660/download/1/README)
- [PCRE](http:https://www.pcre.org/licence.txt)
- [READLINE](http:https://cnswww.cns.cwru.edu/php/chet/readline/rltop.html)
- [RMATH](http:https://www.r-project.org/Licenses/)
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,12 @@ dist:
ifneq ($(OPENBLAS_DYNAMIC_ARCH),1)
@echo OpenBLAS must be rebuilt with OPENBLAS_DYNAMIC_ARCH=1 to use dist target
@false
endif
ifneq ($(PREFIX),julia-$(JULIA_COMMIT))
$(error PREFIX must not be set for make dist)
endif
@$(MAKE) install
cp LICENSE.md julia-$(JULIA_COMMIT)
ifeq ($(OS), Darwin)
-./contrib/mac/fixup-libgfortran.sh $(PREFIX)/$(JL_PRIVATE_LIBDIR)
endif
Expand Down

3 comments on commit a450cb7

@StefanKarpinski
Copy link
Member

Choose a reason for hiding this comment

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

Man, we use a lot of stuff.

@JeffBezanson
Copy link
Member

Choose a reason for hiding this comment

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

I don't think D3 or libexpat is used in this repo any more. Also Amos is now only used via openlibm.

@Keno
Copy link
Member Author

@Keno Keno commented on a450cb7 Aug 20, 2013

Choose a reason for hiding this comment

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

we need to ship expat on windows if we want to use @vtjnash's RPMmd package. you're right about d3 though.

Please sign in to comment.