| 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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 AC_CONFIG_HEADERS(config.h) | 710 AC_CONFIG_HEADERS(config.h) |
| 711 | 711 |
| 712 ######### | 712 ######### |
| 713 # Generate the output files. | 713 # Generate the output files. |
| 714 # | 714 # |
| 715 AC_SUBST(BUILD_CFLAGS) | 715 AC_SUBST(BUILD_CFLAGS) |
| 716 AC_OUTPUT([ | 716 AC_OUTPUT([ |
| 717 Makefile | 717 Makefile |
| 718 sqlite3.pc | 718 sqlite3.pc |
| 719 ]) | 719 ]) |
| OLD | NEW |