aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-11-07 20:26:51 +0000
committerDave Love2002-11-07 20:26:51 +0000
commitb43dfebd5773b5955f7af2f11080fd673d410f86 (patch)
treeeaa736b2cfb5f8e9e1fdc6ea097d71b7ea95f88b
parentba8972b69461ef31203517d70f1c51bcd1c01cd7 (diff)
downloademacs-b43dfebd5773b5955f7af2f11080fd673d410f86.tar.gz
emacs-b43dfebd5773b5955f7af2f11080fd673d410f86.zip
Use AC_CONFIG_LIBOBJ_DIR. Require autoconf 2.54.
-rw-r--r--configure.in4
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
23dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24dnl Boston, MA 02111-1307, USA. 24dnl Boston, MA 02111-1307, USA.
25 25
26AC_PREREQ(2.53)dnl 26AC_PREREQ(2.54)dnl
27AC_INIT(src/lisp.h) 27AC_INIT(src/lisp.h)
28AC_CONFIG_HEADER(src/config.h:src/config.in) 28AC_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"
1346fi 1346fi
1347 1347
1348AC_CONFIG_LIBOBJ_DIR(src)
1349
1348dnl Do this early because it can frob feature test macros for Unix-98 &c. 1350dnl Do this early because it can frob feature test macros for Unix-98 &c.
1349AC_SYS_LARGEFILE 1351AC_SYS_LARGEFILE
1350 1352