| OLD | NEW |
| 1 ## Process this file with autoconf to produce configure. | 1 ## Process this file with autoconf to produce configure. |
| 2 ## In general, the safest way to proceed is to run ./autogen.sh | 2 ## In general, the safest way to proceed is to run ./autogen.sh |
| 3 | 3 |
| 4 # make sure we're interpreted by some minimal autoconf | 4 # make sure we're interpreted by some minimal autoconf |
| 5 AC_PREREQ(2.57) | 5 AC_PREREQ(2.57) |
| 6 | 6 |
| 7 AC_INIT(open-vcdiff, 0.1, opensource@google.com) | 7 AC_INIT(open-vcdiff, 0.1, opensource@google.com) |
| 8 AC_CONFIG_SRCDIR(README) | 8 AC_CONFIG_SRCDIR(README) |
| 9 AM_INIT_AUTOMAKE | 9 AM_INIT_AUTOMAKE |
| 10 AM_CONFIG_HEADER(src/config.h) | 10 AM_CONFIG_HEADER(src/config.h) |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 AC_CHECK_TYPES([uint16_t, u_int16_t, __int16]) | 42 AC_CHECK_TYPES([uint16_t, u_int16_t, __int16]) |
| 43 | 43 |
| 44 AX_C___ATTRIBUTE__ | 44 AX_C___ATTRIBUTE__ |
| 45 | 45 |
| 46 ACX_PTHREAD | 46 ACX_PTHREAD |
| 47 | 47 |
| 48 # End of definitions needed by gflags package | 48 # End of definitions needed by gflags package |
| 49 | 49 |
| 50 AC_CONFIG_FILES([Makefile]) | 50 AC_CONFIG_FILES([Makefile]) |
| 51 AC_OUTPUT | 51 AC_OUTPUT |
| OLD | NEW |