aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngLocale/angular-locale_or.js
diff options
context:
space:
mode:
authorMauro2014-02-25 11:45:05 +0100
committerashley williams2014-02-26 19:39:55 -0500
commit4aac37e7bebdfa597711501adba2588ff5f90604 (patch)
tree7db7db3c742e525be9e2fdf7fa02488d9fa745c2 /src/ngLocale/angular-locale_or.js
parentfd09586b08cf40cedd59fe4de944000a3ebf6a59 (diff)
downloadangular.js-4aac37e7bebdfa597711501adba2588ff5f90604.tar.bz2
docs(guide): add a new django tutorial
- add a link to a tutorial on intergrating angular and django
Diffstat (limited to 'src/ngLocale/angular-locale_or.js')
0 files changed, 0 insertions, 0 deletions
n>remove_from_cflags(/-march=\S*/) args = ["--prefix=#{prefix}", "--disable-openmp", "--without-java"] if MacOS.prefer_64_bit? args << "--build=x86_64-apple-darwin#{darwin_major_version}" end args << "--without-python" if build.without? 'python' if python # We don't want beecrypt to use get_python_lib() to install into # the global site-packages. There is no option to set it. # Fixing this in configure make the configure output printout correct. inreplace "configure", "ac_cv_python_libdir=`$PYTHON -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()'`", "ac_cv_python_libdir='#{python.site_packages}'" end system "./configure", *args system "make" system "make install" # We have to move the check after install (which is stupid, I know) but # otherwise they fail because python bindings don't yet find the libbeecrypt system "make check" end end __END__ --- include/beecrypt/c++/util/AbstractSet.h~ 2009-06-17 13:05:55.000000000 +0200 +++ include/beecrypt/c++/util/AbstractSet.h 2012-06-03 17:45:55.229399461 +0200 @@ -56,7 +56,7 @@ if (c->size() != size()) return false; - return containsAll(*c); + return this->containsAll(*c); } return false; }