diff options
| author | Jan Djärv | 2007-12-06 07:06:50 +0000 |
|---|---|---|
| committer | Jan Djärv | 2007-12-06 07:06:50 +0000 |
| commit | 9fb1ba8090da3528de56158a79bd3527d31c7f2f (patch) | |
| tree | 2ab18e4fa4f30fb16e27bd55250c53b009488f7d | |
| parent | 417cf0b282140be1e6110ea8175a5206cd7a13cc (diff) | |
| download | emacs-9fb1ba8090da3528de56158a79bd3527d31c7f2f.tar.gz emacs-9fb1ba8090da3528de56158a79bd3527d31c7f2f.zip | |
Add AC_CONFIG_SRCDIR which was lost in the previous
change.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rwxr-xr-x | configure | 10 | ||||
| -rw-r--r-- | configure.in | 1 |
3 files changed, 12 insertions, 4 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-12-06 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * configure.in: Add AC_CONFIG_SRCDIR which was lost in the previous | ||
| 4 | change. | ||
| 5 | |||
| 1 | 2007-12-04 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 6 | 2007-12-04 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 7 | ||
| 3 | * configure.in: Give package name and verision to AC_INIT. | 8 | * configure.in: Give package name and verision to AC_INIT. |
| @@ -412,10 +412,10 @@ else | |||
| 412 | fi | 412 | fi |
| 413 | 413 | ||
| 414 | test \$exitcode = 0") || { | 414 | test \$exitcode = 0") || { |
| 415 | echo Please tell bug-autoconf@gnu.org about your system, | 415 | echo No shell found that supports shell functions. |
| 416 | echo including any error possibly output before this message. | 416 | echo Please tell autoconf@gnu.org about your system, |
| 417 | echo This can help us improve future autoconf versions. | 417 | echo including any error possibly output before this |
| 418 | echo Configuration will now proceed without shell functions. | 418 | echo message |
| 419 | } | 419 | } |
| 420 | 420 | ||
| 421 | 421 | ||
| @@ -576,6 +576,7 @@ PACKAGE_VERSION='23.0.50' | |||
| 576 | PACKAGE_STRING='emacs 23.0.50' | 576 | PACKAGE_STRING='emacs 23.0.50' |
| 577 | PACKAGE_BUGREPORT='' | 577 | PACKAGE_BUGREPORT='' |
| 578 | 578 | ||
| 579 | ac_unique_file="src/lisp.h" | ||
| 579 | ac_config_libobj_dir=src | 580 | ac_config_libobj_dir=src |
| 580 | # Factoring default headers for most tests. | 581 | # Factoring default headers for most tests. |
| 581 | ac_includes_default="\ | 582 | ac_includes_default="\ |
| @@ -1807,6 +1808,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu | |||
| 1807 | ac_config_headers="$ac_config_headers src/config.h:src/config.in" | 1808 | ac_config_headers="$ac_config_headers src/config.h:src/config.in" |
| 1808 | 1809 | ||
| 1809 | 1810 | ||
| 1811 | |||
| 1810 | test "$program_prefix" != NONE && | 1812 | test "$program_prefix" != NONE && |
| 1811 | program_transform_name="s&^&$program_prefix&;$program_transform_name" | 1813 | program_transform_name="s&^&$program_prefix&;$program_transform_name" |
| 1812 | # Use a double $ so make ignores it. | 1814 | # Use a double $ so make ignores it. |
diff --git a/configure.in b/configure.in index 32e137e0f2e..804fd5484a8 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -26,6 +26,7 @@ dnl Boston, MA 02110-1301, USA. | |||
| 26 | AC_PREREQ(2.61)dnl | 26 | AC_PREREQ(2.61)dnl |
| 27 | AC_INIT(emacs, 23.0.50) | 27 | AC_INIT(emacs, 23.0.50) |
| 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) | 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) |
| 29 | AC_CONFIG_SRCDIR(src/lisp.h) | ||
| 29 | 30 | ||
| 30 | dnl Support for --program-prefix, --program-suffix and | 31 | dnl Support for --program-prefix, --program-suffix and |
| 31 | dnl --program-transform-name options | 32 | dnl --program-transform-name options |