diff options
| author | Dave Love | 2002-11-07 20:26:51 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-07 20:26:51 +0000 |
| commit | b43dfebd5773b5955f7af2f11080fd673d410f86 (patch) | |
| tree | eaa736b2cfb5f8e9e1fdc6ea097d71b7ea95f88b | |
| parent | ba8972b69461ef31203517d70f1c51bcd1c01cd7 (diff) | |
| download | emacs-b43dfebd5773b5955f7af2f11080fd673d410f86.tar.gz emacs-b43dfebd5773b5955f7af2f11080fd673d410f86.zip | |
Use AC_CONFIG_LIBOBJ_DIR. Require autoconf 2.54.
| -rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 1a663406d91..7892a05bcf2 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -23,7 +23,7 @@ dnl along with GNU Emacs; see the file COPYING. If not, write to the | |||
| 23 | dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 23 | dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 24 | dnl Boston, MA 02111-1307, USA. | 24 | dnl Boston, MA 02111-1307, USA. |
| 25 | 25 | ||
| 26 | AC_PREREQ(2.53)dnl | 26 | AC_PREREQ(2.54)dnl |
| 27 | AC_INIT(src/lisp.h) | 27 | AC_INIT(src/lisp.h) |
| 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) | 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) |
| 29 | 29 | ||
| @@ -1345,6 +1345,8 @@ else | |||
| 1345 | CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" | 1345 | CPPFLAGS="$c_switch_system $c_switch_machine $CPPFLAGS" |
| 1346 | fi | 1346 | fi |
| 1347 | 1347 | ||
| 1348 | AC_CONFIG_LIBOBJ_DIR(src) | ||
| 1349 | |||
| 1348 | dnl Do this early because it can frob feature test macros for Unix-98 &c. | 1350 | dnl Do this early because it can frob feature test macros for Unix-98 &c. |
| 1349 | AC_SYS_LARGEFILE | 1351 | AC_SYS_LARGEFILE |
| 1350 | 1352 | ||