Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(333)

Side by Side Diff: autoconf/configure.ac

Issue 183273009: Prep for merging 3.4: Undo changes from 3.3 branch (Closed) Base URL: http://git.chromium.org/native_client/pnacl-llvm.git@master
Patch Set: Retry Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « CODE_OWNERS.TXT ('k') | configure » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « CODE_OWNERS.TXT ('k') | configure » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698