[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-cvs: CVS update: ChangeLog
User: ahvezda
Date: 05/03/12 16:54:55
Modified: . ChangeLog configure.ac
Log:
Fixed configure script to exit when one of the required programs is missing
Revision Changes Path
1.62 +5 -0 eda/geda/devel/docs/ChangeLog
(In the diff below, changes in quantity of whitespace are not shown.)
Index: ChangeLog
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/docs/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -b -r1.61 -r1.62
--- ChangeLog 9 Mar 2005 04:17:49 -0000 1.61
+++ ChangeLog 12 Mar 2005 21:54:54 -0000 1.62
@@ -1,3 +1,8 @@
+2005-03-12 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>
+
+ * configure.ac: Changed script so that configure stops when one
+ of require programs is not found.
+
2005-03-08 Ales Hvezda <ahvezda@xxxxxxxxxxxxx>
* configure.ac: Bumped version to 20050313
1.14 +3 -3 eda/geda/devel/docs/configure.ac
(In the diff below, changes in quantity of whitespace are not shown.)
Index: configure.ac
===================================================================
RCS file: /home/cvspsrv/cvsroot/eda/geda/devel/docs/configure.ac,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- configure.ac 9 Mar 2005 04:06:03 -0000 1.13
+++ configure.ac 12 Mar 2005 21:54:54 -0000 1.14
@@ -24,19 +24,19 @@
if test $DVIPS = "no" -a $DVI2PS = "no"; then
echo "Cannot find dvips or dvi2ps -- documentation cannot be created"
- echo "Install dvips or dvi2ps or install the prepared geda-docs package"
+ AC_MSG_ERROR([Install dvips or dvi2ps or install the prepared geda-docs package])
fi
AC_PATH_PROG(LATEX2HTML, latex2html, no, ${PATH})
if test $LATEX2HTML = "no"; then
echo "Cannot find latex2html -- documentation cannot be created"
- echo "Install latex2html or install the prepared geda-docs package"
+ AC_MSG_ERROR([Install latex2html or install the prepared geda-docs package])
fi
AC_PATH_PROG(PS2PDF, ps2pdf, no, ${PATH})
if test $PS2PDF = "no"; then
echo "Cannot find pdf2ps -- documentation cannot be created"
- echo "Install pdf2ps or install the prepared geda-docs package"
+ AC_MSG_ERROR([Install pdf2ps or install the prepared geda-docs package])
fi
#