[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemacs-commit] qemacs configure
From: |
Charlie Gordon |
Subject: |
[Qemacs-commit] qemacs configure |
Date: |
Thu, 06 Mar 2014 20:41:30 +0000 |
CVSROOT: /sources/qemacs
Module name: qemacs
Changes by: Charlie Gordon <chqrlie> 14/03/06 20:41:30
Modified files:
. : configure
Log message:
fix configure for FreeBSD
* use cp instead of mv for tempfiles, because /tmp typically is on
a different drive and triggers a warning
* set specific configuration flags for FreeBSD
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/configure?cvsroot=qemacs&r1=1.23&r2=1.24
Patches:
Index: configure
===================================================================
RCS file: /sources/qemacs/qemacs/configure,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -b -r1.23 -r1.24
--- configure 7 Jan 2014 00:44:16 -0000 1.23
+++ configure 6 Mar 2014 20:41:30 -0000 1.24
@@ -110,6 +110,14 @@
plugins="no"
ptsname="no"
;;
+ FreeBSD)
+ extralibs="-lm"
+ make="gmake"
+ doc="no"
+ unlockio="no"
+ plugins="no"
+ ptsname="no"
+ ;;
CYGWIN*)
cygwin="yes"
;;
@@ -665,14 +673,14 @@
diff $TMPMAK config.mak >/dev/null 2>&1
if test $? -ne 0 ; then
- mv -f $TMPMAK config.mak
+ cp -f $TMPMAK config.mak
else
echo "config.mak is unchanged"
fi
diff $TMPH config.h >/dev/null 2>&1
if test $? -ne 0 ; then
- mv -f $TMPH config.h
+ cp -f $TMPH config.h
else
echo "config.h is unchanged"
fi
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemacs-commit] qemacs configure,
Charlie Gordon <=