From 23f26f360a30d787c4788c59717807f3c8270412 Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Sun, 7 Mar 2004 20:23:38 +0000 Subject: [PATCH] Auto merged 2004/03/07 20:22:08+00:00 cantab.net!aia21 Move djgpp support stuff to above AC_PROG_CC. (Logical change 1.301) --- configure.ac | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 03f57728..c8ff0812 100644 --- a/configure.ac +++ b/configure.ac @@ -92,13 +92,7 @@ AH_VERBATIM([_GNU_SOURCE], #endif]) AC_DEFINE(_GNU_SOURCE) -# Checks for programs. -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_LN_S -AC_PROG_MAKE_SET -AC_PROG_LIBTOOL - +# For djgpp support. (Note: This needs to be before AC_PROG_CC.) case "$target" in *-*-*djgpp) if test -z "$CC"; then CC=gcc; fi @@ -107,6 +101,13 @@ case "$target" in ;; esac +# Checks for programs. +AC_PROG_CC +AC_PROG_INSTALL +AC_PROG_LN_S +AC_PROG_MAKE_SET +AC_PROG_LIBTOOL + # Enable large file support. AC_SYS_LARGEFILE