From f9734cea4344f5da295b0a9783a66ccf841f79f4 Mon Sep 17 00:00:00 2001 From: bostic Date: Fri, 20 Dec 1996 11:18:26 +0000 Subject: [PATCH] put the math libraries at the end with the other, regular libraries --- dist/configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/configure.in b/dist/configure.in index d7e34560..bf6f3f86 100644 --- a/dist/configure.in +++ b/dist/configure.in @@ -1,4 +1,4 @@ -dnl $Id: configure.in,v 8.143 1996/12/20 11:11:46 bostic Exp $ (Berkeley) $Date: 1996/12/20 11:11:46 $ +dnl $Id: configure.in,v 8.144 1996/12/20 11:18:26 bostic Exp $ (Berkeley) $Date: 1996/12/20 11:18:26 $ dnl Process this file with autoconf to produce a configure script. AC_INIT(../common/main.c) @@ -232,7 +232,7 @@ if test "$vi_cv_motif" = "yes"; then dnl Color icons require -lXpm, which may or may not be available, dnl depending on the version of X11. - MOTIFLIBS="-lm -lXm -lXt" + MOTIFLIBS="-lXm -lXt" AC_CHECK_LIB(SM, main, [vi_cv_smlib="yes"], [vi_cv_smlib="no"], "$XLIBS") if test "$vi_cv_smlib" = "yes"; then @@ -253,7 +253,7 @@ if test "$vi_cv_motif" = "yes"; then if test "$vi_cv_xpmlib" = "yes"; then MOTIFLIBS="$MOTIFLIBS -lXpm" fi - MOTIFLIBS="$MOTIFLIBS $XLIBS $LIBS" + MOTIFLIBS="$MOTIFLIBS $XLIBS -lm $LIBS" fi dnl If the user wants a Perl interpreter in nvi, load it. -- 2.11.4.GIT