OLD | NEW |
1 # | 1 # |
2 # The build process allows for using a cross-compiler. But the default | 2 # The build process allows for using a cross-compiler. But the default |
3 # action is to target the same platform that we are running on. The | 3 # action is to target the same platform that we are running on. The |
4 # configure script needs to discover the following properties of the | 4 # configure script needs to discover the following properties of the |
5 # build and target systems: | 5 # build and target systems: |
6 # | 6 # |
7 # srcdir | 7 # srcdir |
8 # | 8 # |
9 # The is the name of the directory that contains the | 9 # The is the name of the directory that contains the |
10 # "configure" shell script. All source files are | 10 # "configure" shell script. All source files are |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 AC_CONFIG_HEADERS(config.h) | 692 AC_CONFIG_HEADERS(config.h) |
693 | 693 |
694 ######### | 694 ######### |
695 # Generate the output files. | 695 # Generate the output files. |
696 # | 696 # |
697 AC_SUBST(BUILD_CFLAGS) | 697 AC_SUBST(BUILD_CFLAGS) |
698 AC_OUTPUT([ | 698 AC_OUTPUT([ |
699 Makefile | 699 Makefile |
700 sqlite3.pc | 700 sqlite3.pc |
701 ]) | 701 ]) |
OLD | NEW |