| OLD | NEW |
| 1 dnl === configure.ac --------------------------------------------------------=== | 1 dnl === configure.ac --------------------------------------------------------=== |
| 2 dnl The LLVM Compiler Infrastructure | 2 dnl The LLVM Compiler Infrastructure |
| 3 dnl | 3 dnl |
| 4 dnl This file is distributed under the University of Illinois Open Source | 4 dnl This file is distributed under the University of Illinois Open Source |
| 5 dnl License. See LICENSE.TXT for details. | 5 dnl License. See LICENSE.TXT for details. |
| 6 dnl | 6 dnl |
| 7 dnl===-----------------------------------------------------------------------=== | 7 dnl===-----------------------------------------------------------------------=== |
| 8 dnl This is the LLVM configuration script. It is processed by the autoconf | 8 dnl This is the LLVM configuration script. It is processed by the autoconf |
| 9 dnl program to produce a script named configure. This script contains the | 9 dnl program to produce a script named configure. This script contains the |
| 10 dnl configuration checks that LLVM needs in order to support multiple platforms. | 10 dnl configuration checks that LLVM needs in order to support multiple platforms. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 dnl SECTION 9: Additional checks, variables, etc. | 24 dnl SECTION 9: Additional checks, variables, etc. |
| 25 dnl SECTION 10: Specify the output files and generate it | 25 dnl SECTION 10: Specify the output files and generate it |
| 26 dnl | 26 dnl |
| 27 dnl===-----------------------------------------------------------------------=== | 27 dnl===-----------------------------------------------------------------------=== |
| 28 dnl=== | 28 dnl=== |
| 29 dnl=== SECTION 1: Initialization & Setup | 29 dnl=== SECTION 1: Initialization & Setup |
| 30 dnl=== | 30 dnl=== |
| 31 dnl===-----------------------------------------------------------------------=== | 31 dnl===-----------------------------------------------------------------------=== |
| 32 dnl Initialize autoconf and define the package name, version number and | 32 dnl Initialize autoconf and define the package name, version number and |
| 33 dnl address for reporting bugs. | 33 dnl address for reporting bugs. |
| 34 AC_INIT([LLVM],[3.3],[http://llvm.org/bugs/]) | 34 AC_INIT([LLVM],[3.3svn],[http://llvm.org/bugs/]) |
| 35 AC_DEFINE([LLVM_VERSION_MAJOR], [3], [Major version of the LLVM API]) | 35 AC_DEFINE([LLVM_VERSION_MAJOR], [3], [Major version of the LLVM API]) |
| 36 AC_DEFINE([LLVM_VERSION_MINOR], [3], [Minor version of the LLVM API]) | 36 AC_DEFINE([LLVM_VERSION_MINOR], [3], [Minor version of the LLVM API]) |
| 37 | 37 |
| 38 dnl Provide a copyright substitution and ensure the copyright notice is included | 38 dnl Provide a copyright substitution and ensure the copyright notice is included |
| 39 dnl in the output of --version option of the generated configure script. | 39 dnl in the output of --version option of the generated configure script. |
| 40 AC_SUBST(LLVM_COPYRIGHT,["Copyright (c) 2003-2013 University of Illinois at Urba
na-Champaign."]) | 40 AC_SUBST(LLVM_COPYRIGHT,["Copyright (c) 2003-2013 University of Illinois at Urba
na-Champaign."]) |
| 41 AC_COPYRIGHT([Copyright (c) 2003-2013 University of Illinois at Urbana-Champaign
.]) | 41 AC_COPYRIGHT([Copyright (c) 2003-2013 University of Illinois at Urbana-Champaign
.]) |
| 42 | 42 |
| 43 dnl Indicate that we require autoconf 2.60 or later. | 43 dnl Indicate that we require autoconf 2.60 or later. |
| 44 AC_PREREQ(2.60) | 44 AC_PREREQ(2.60) |
| (...skipping 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1923 AC_CONFIG_MAKEFILE(test/Makefile.tests) | 1923 AC_CONFIG_MAKEFILE(test/Makefile.tests) |
| 1924 AC_CONFIG_MAKEFILE(unittests/Makefile) | 1924 AC_CONFIG_MAKEFILE(unittests/Makefile) |
| 1925 AC_CONFIG_MAKEFILE(tools/Makefile) | 1925 AC_CONFIG_MAKEFILE(tools/Makefile) |
| 1926 AC_CONFIG_MAKEFILE(utils/Makefile) | 1926 AC_CONFIG_MAKEFILE(utils/Makefile) |
| 1927 AC_CONFIG_MAKEFILE(projects/Makefile) | 1927 AC_CONFIG_MAKEFILE(projects/Makefile) |
| 1928 AC_CONFIG_MAKEFILE(bindings/Makefile) | 1928 AC_CONFIG_MAKEFILE(bindings/Makefile) |
| 1929 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) | 1929 AC_CONFIG_MAKEFILE(bindings/ocaml/Makefile.ocaml) |
| 1930 | 1930 |
| 1931 dnl Finally, crank out the output | 1931 dnl Finally, crank out the output |
| 1932 AC_OUTPUT | 1932 AC_OUTPUT |
| OLD | NEW |