Update of /cvsroot/php-directfb/PHP-DirectFB
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1142
Modified Files:
README configure.ac
Log Message:
Fixed BUG related to preallocated sub-surfaces.
Preparing for first alpha release.
Index: README
===================================================================
RCS file: /cvsroot/php-directfb/PHP-DirectFB/README,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- README 12 Nov 2004 18:47:31 -0000 1.3
+++ README 29 Dec 2004 21:28:08 -0000 1.4
@@ -18,8 +18,8 @@
- PHP 5.0.0 or higher CLI version (get it at http://php.net).
-Installing
-----------
+Installation
+------------
See INTALL.
@@ -36,8 +36,8 @@
-------------
There is a brief reference, under the doc/ directory, that
- explains the main differencies between PHP-DirectFB APIs and
- DirectFB APIs; refer to DirectFB documentation for an extended
+ explains the main differencies between PHP-DirectFB API and
+ DirectFB API; refer to DirectFB documentation for an extended
explanation of DirectFB architecture and development.
Index: configure.ac
===================================================================
RCS file: /cvsroot/php-directfb/PHP-DirectFB/configure.ac,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- configure.ac 15 Nov 2004 15:13:16 -0000 1.2
+++ configure.ac 29 Dec 2004 21:28:08 -0000 1.3
@@ -8,15 +8,32 @@
PHP_DIRECTFB_MAJOR=0
PHP_DIRECTFB_MINOR=0
PHP_DIRECTFB_MICRO=0
+PHP_DIRECTFB_REVISION=0
+PHP_DIRECTFB_AGE=0
VERSION=$PHP_DIRECTFB_MAJOR.$PHP_DIRECTFB_MINOR.$PHP_DIRECTFB_MICRO
PACKAGE=PHP-DirectFB
+AC_DEFINE_UNQUOTED( PHP_DIRECTFB_VERSION, "$VERSION", [PHP-DirectFB Version.] )
+
+# Libtool versioning
+LT_RELEASE=$PHP_DIRECTFB_MAJOR.$PHP_DIRECTFB_MINOR
+LT_CURRENT=`expr $PHP_DIRECTFB_MICRO - $PHP_DIRECTFB_REVISION`
+LT_REVISION=$PHP_DIRECTFB_REVISION
+LT_AGE=`expr $PHP_DIRECTFB_REVISION - $PHP_DIRECTFB_AGE`
+
+AC_SUBST( LT_RELEASE )
+AC_SUBST( LT_CURRENT )
+AC_SUBST( LT_REVISION )
+AC_SUBST( LT_AGE )
+
+
AM_INIT_AUTOMAKE( $PACKAGE, $VERSION, no-define )
AM_CONFIG_HEADER( config.h )
-
+AM_MAINTAINER_MODE
AC_DISABLE_STATIC
+
AM_PROG_LIBTOOL
AM_SANITY_CHECK
AC_ISC_POSIX
@@ -27,12 +44,6 @@
#
-# Version
-#
-AC_DEFINE_UNQUOTED( PHP_DIRECTFB_VERSION, "$VERSION", [Define to the version of PHP-DirectFB.] )
-
-
-#
# Compiler Flags
#
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|