]> matita.cs.unibo.it Git - helm.git/commitdiff
New version 0.0.3:
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Fri, 20 Jun 2003 12:06:51 +0000 (12:06 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Fri, 20 Jun 2003 12:06:51 +0000 (12:06 +0000)
 - tml-litex.xsl was not installed
 - guiGTK.h did not include gdome.h
 - configure.ac was not correctly ported to pkg-config, since it still
   checked for the existence of the *-config executables for all the
   packages editex depends on. Fixed.

helm/DEVEL/mathml_editor/configure.ac
helm/DEVEL/mathml_editor/debian/changelog
helm/DEVEL/mathml_editor/editex.pc.in
helm/DEVEL/mathml_editor/ocaml/Makefile.am
helm/DEVEL/mathml_editor/test/guiGTK.h
helm/DEVEL/mathml_editor/xsl/Makefile.am

index 4cc45b00a4fad82dabcc03bbf3196464e1f5a339..49662e3c3646532fdbc18814e03d2b8bff79cdb4 100644 (file)
@@ -1,5 +1,5 @@
 dnl Process this file with autoconf to produce a configure script.
-AC_INIT(editex, [0.0.2])
+AC_INIT(editex, [0.0.3])
 AC_CONFIG_SRCDIR(src/TToken.hh)
 AM_INIT_AUTOMAKE($AC_PACKAGE_NAME, $AC_PACKAGE_VERSION)
 
@@ -92,96 +92,15 @@ dnl PKG_CHECK_MODULES(GLIB2, glib-2.0)
 dnl AC_SUBST(GLIB2_CFLAGS)
 dnl AC_SUBST(GLIB2_LIBS)
 
-GMETADOM_CONFIG="gmetadom-config"
-GMETADOM_MIN_VERSION=0.1.0
-AC_MSG_CHECKING([for GMetaDOM C++ library] >= $GMETADOM_MIN_VERSION) 
-if test "x$GMETADOM_PREFIX" != "x"
-then
-       if ${GMETADOM_PREFIX}/bin/$GMETADOM_CONFIG --version > /dev/null 2>&1
-       then
-               GMETADOM_CONFIG=${GMETADOM_PREFIX}/bin/$GMETADOM_CONFIG
-        elif ! $GMETADOM_CONFIG --version > /dev/null 2>&1
-        then
-               AC_MSG_ERROR([Could not find gmetadom anywhere (see config.log for details).])
-       fi
-fi
-
-dnl
-dnl test version and init our variables
-dnl
-vers=`$GMETADOM_CONFIG --version | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
-minvers=`echo $GMETADOM_MIN_VERSION | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
-if test "$vers" -ge "$minvers"
-then
-        GMETADOM_LIBS="`$GMETADOM_CONFIG --module=gdome_cpp_smart --libs`"
-        GMETADOM_CFLAGS="`$GMETADOM_CONFIG --module=gdome_cpp_smart --cflags`"
-        AC_MSG_RESULT(found)
-else
-        AC_MSG_ERROR([You need at least GMetaDOM (C++) $GMETADOM_MIN_VERSION for this version of $PACKAGE])
-fi
-
+PKG_CHECK_MODULES(GMETADOM,gdome2-cpp-smart,,AC_MSG_ERROR(can not find gmetadom))
 AC_SUBST(GMETADOM_CFLAGS)
 AC_SUBST(GMETADOM_LIBS)
 
-GDOMEXSLT_CONFIG="gdome_xslt_cpp_smart-config"
-GDOMEXSLT_MIN_VERSION=0.0.4
-AC_MSG_CHECKING([for gdome_xslt C++ library] >= $GDOMEXSLT_MIN_VERSION) 
-if test "x$GDOMEXSLT_PREFIX" != "x"
-then
-       if ${GDOMEXSLT_PREFIX}/bin/$GDOMEXSLT_CONFIG --version > /dev/null 2>&1
-       then
-               GDOMEXSLT_CONFIG=${GDOMEXSLT_PREFIX}/bin/$GDOMEXSLT_CONFIG
-        elif ! $GDOMEXSLT_CONFIG --version > /dev/null 2>&1
-        then
-               AC_MSG_ERROR([Could not find gdome_xslt anywhere (see config.log for details).])
-       fi
-fi
-
-dnl
-dnl test version and init our variables
-dnl
-vers=`$GDOMEXSLT_CONFIG --version | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
-minvers=`echo $GDOMEXSLT_MIN_VERSION | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
-if test "$vers" -ge "$minvers"
-then
-        GDOMEXSLT_LIBS="`$GDOMEXSLT_CONFIG --libs`"
-        GDOMEXSLT_CFLAGS="`$GDOMEXSLT_CONFIG --cflags`"
-        AC_MSG_RESULT(found)
-else
-        AC_MSG_ERROR([You need at least gdome_xslt (C++) $GDOMEXSLT_MIN_VERSION for this version of $PACKAGE])
-fi
-
+PKG_CHECK_MODULES(GDOMEXSLT,gdome2-xslt-cpp-smart,,AC_MSG_ERROR(can not find gdome2-xslt))
 AC_SUBST(GDOMEXSLT_CFLAGS)
 AC_SUBST(GDOMEXSLT_LIBS)
 
-GTKMATHVIEW_CONFIG="gtkmathview-config"
-GTKMATHVIEW_MIN_VERSION=0.4.0
-AC_MSG_CHECKING([for gtkmathview library] >= $GTKMATHVIEW_MIN_VERSION) 
-if test "x$GTKMATHVIEW_PREFIX" != "x"
-then
-       if ${GTKMATHVIEW_PREFIX}/bin/$GTKMATHVIEW_CONFIG --version > /dev/null 2>&1
-       then
-               GTKMATHVIEW_CONFIG=${GTKMATHVIEW_PREFIX}/bin/$GTKMATHVIEW_CONFIG
-        elif ! $GTKMATHVIEW_CONFIG --version > /dev/null 2>&1
-        then
-               AC_MSG_ERROR([Could not find gtkmathview anywhere (see config.log for details).])
-       fi
-fi
-
-dnl
-dnl test version and init our variables
-dnl
-vers=`$GTKMATHVIEW_CONFIG --version | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
-minvers=`echo $GTKMATHVIEW_MIN_VERSION | awk -F. '{ printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
-if test "$vers" -ge "$minvers"
-then
-        GTKMATHVIEW_LIBS="`$GTKMATHVIEW_CONFIG --libs`"
-        GTKMATHVIEW_CFLAGS="`$GTKMATHVIEW_CONFIG --cflags`"
-        AC_MSG_RESULT(found)
-else
-        AC_MSG_ERROR([You need at least gtkmathview $GTKMATHVIEW_MIN_VERSION for this version of $PACKAGE])
-fi
-
+PKG_CHECK_MODULES(GTKMATHVIEW,gtkmathview,,AC_MSG_ERROR(can not find gtkmathview))
 AC_SUBST(GTKMATHVIEW_CFLAGS)
 AC_SUBST(GTKMATHVIEW_LIBS)
 
index c17361844ba3c3f5f75865e090fa10c4cb430768..35c289ef2f8643394fa7fb8218e8101e3241128a 100644 (file)
@@ -1,3 +1,12 @@
+editex (0.0.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Bug fix: tml-litex.xsl was not installed
+  * Bug fix: Makefile.ac did not use pkg-config to look for the existence
+    of the required packages (that, in the meantime, started using pkg-config)
+    As a result, the required packages were no longer detected by ./configure
+
+ -- Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>  Thu, 19 Jun 2003 12:58:21 +0200
 editex (0.0.2-1) unstable; urgency=low
 
   * New upstream release.
index 0a017244977be44c4dea7975eb44263386d24b9f..9e2c91bf455aee2206f4b094054d48a4713d74c7 100644 (file)
@@ -13,7 +13,7 @@ default_tex_xsl=${pkgdatadir}/tml-tex.xsl
 Name: EdiTeX
 Description: An XML/MathML editor based on TeX/LaTeX syntax
 Version: @VERSION@
-Requires: glib-2.0
+Requires: glib
 Libs: -L${libdir} -leditex
 Cflags: -I${includedir}/editex
 
index 14cd3934cb30a70d769c1a76597bac81c808c085..cd0b51fa2a113de75ed8f5ca584f3cb2a4460c30 100644 (file)
@@ -69,8 +69,8 @@ $(ARCHIVE).cma: $(CMO_S)
 $(ARCHIVE).cmxa: $(CMX_S)
        $(OCAMLMKLIB) -o $(ARCHIVE) -L@OCAMLSTUBDIR@ $(CMX_S) $(SHARED_LIBS)
 
+# use .lo for ocamlmklib
 $(DLL) $(ARCHIVE).a: $(LO_S)
-       # use .lo for ocamlmklib
        for f in $(LO_S); do    \
                cp $$f $$f.o;   \
        done
index 861341a2e15a3d78c37495c6a9819aea055eabad..7e3e207352c359a3e8a4ec749829167bdb03ac40 100644 (file)
@@ -27,6 +27,7 @@
 #define guiGTK_h
 
 #include <glib.h>
+#include <gdome.h>
 
 #include <gtkmathview/gtkmathview.h>
 
index f3ac30ffffd4bd39ed15722eb5897a2ce4043da2..28394129894aa3c001f6bf0400e4c9d3fc3e5dad 100644 (file)
@@ -1,2 +1,2 @@
-pkgdata_DATA = d-xsl.xsl tml-mmlp.xsl tml-tex.xsl tml-texid.xsl
-EXTRA_DIST   = d-xsl.xsl tml-mmlp.xsl tml-tex.xsl tml-texid.xsl
+pkgdata_DATA = d-xsl.xsl tml-mmlp.xsl tml-tex.xsl tml-litex.xsl tml-texid.xsl
+EXTRA_DIST   = d-xsl.xsl tml-mmlp.xsl tml-tex.xsl tml-litex.xsl tml-texid.xsl