Author: azrael
Date: 2005-03-22 18:57:14 +0100 (Tue, 22 Mar 2005)
New Revision: 406
Modified:
trunk/Doxyfile
trunk/configure.in
trunk/misc/buildtest.sh
trunk/tests/Makefile.am
Log:
Update version to 0.15
Fixed the buildtest script
Corrected the dists of the tests Makefile
Modified: trunk/Doxyfile
===================================================================
--- trunk/Doxyfile 2005-03-22 17:55:40 UTC (rev 405)
+++ trunk/Doxyfile 2005-03-22 17:57:14 UTC (rev 406)
@@ -23,7 +23,7 @@
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 0.14
+PROJECT_NUMBER = 0.15
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Modified: trunk/configure.in
===================================================================
--- trunk/configure.in 2005-03-22 17:55:40 UTC (rev 405)
+++ trunk/configure.in 2005-03-22 17:57:14 UTC (rev 406)
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.58)
-AC_INIT(OpenSync, 0.14, [], libopensync)
+AC_INIT(OpenSync, 0.15, [], libopensync)
AC_CONFIG_SRCDIR([opensync/opensync.h])
AM_INIT_AUTOMAKE(foreign)
AC_CONFIG_HEADER(config.h)
@@ -139,8 +139,6 @@
if test x$have_python = xno ; then
if test x$enable_python = xyes ; then
AC_MSG_ERROR([Building python explicitly requested, but can't build python bindings])
- else
- AC_MSG_WARN([Couldn't find either Pyrex or the Python headers, not building Python bindings])
fi
fi
fi
Modified: trunk/misc/buildtest.sh
===================================================================
--- trunk/misc/buildtest.sh 2005-03-22 17:55:40 UTC (rev 405)
+++ trunk/misc/buildtest.sh 2005-03-22 17:57:14 UTC (rev 406)
@@ -18,16 +18,6 @@
make clean > /dev/null || exit 1
echo -n "."
-cd plugins/file-sync
-
-./autogen.sh > /dev/null
-echo -n "."
-make clean > /dev/null || exit 1
-echo -n "."
-echo ""
-
-cd $TOP_SRCDIR
-
echo "Making tarball"
make dist > /dev/null || exit 1
@@ -38,7 +28,6 @@
tar zxvf opensync-0.??.tar.gz > /dev/null || exit 1
cd opensync-0.??
-BUILD_DIR=$(pwd)
echo -n "Making OpenSync"
./autogen.sh --prefix=$TOP_SRCDIR/_inst > /dev/null || exit 1
@@ -46,19 +35,8 @@
make install > /dev/null || exit 1
echo "."
-cd plugins/file-sync
+cd docs/example-plugin
-echo -n "Making file-sync plugin"
-export PKG_CONFIG_PATH=$TOP_SRCDIR/_inst/lib
-./autogen.sh --prefix=$TOP_SRCDIR/_inst --enable-error-tests=yes > /dev/null || exit 1
-echo -n "."
-make install > /dev/null || exit 1
-echo "."
-
-cd $BUILD_DIR || exit 1
-
-cd plugins/example-plugin
-
echo -n "Making example plugin"
export PKG_CONFIG_PATH=$TOP_SRCDIR/_inst/lib
./autogen.sh --prefix=$TOP_SRCDIR/_inst > /dev/null || exit 1
Modified: trunk/tests/Makefile.am
===================================================================
--- trunk/tests/Makefile.am 2005-03-22 17:55:40 UTC (rev 405)
+++ trunk/tests/Makefile.am 2005-03-22 17:57:14 UTC (rev 406)
@@ -1,11 +1,17 @@
## Process this file with automake to produce Makefile.in
-EXTRA_DIST = data support.h
-
AM_CFLAGS = @XML_CFLAGS@ -Wall -Werror @GCOV_CFLAGS@
INCLUDES = -I$(top_srcdir) @PACKAGE_CFLAGS@ -I$(top_srcdir)/osengine
+EXTRA_DIST = \
+ data \
+ support.h \
+ mock-plugin/mock_sync.h \
+ mock-plugin/mock_format.c \
+ mock-plugin/mock_sync.c \
+ mock-plugin/Makefile.am
+
if ENABLE_PROF
PROFTEST = coverage.sh
endif
|