Version 0.13.2

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@26355 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2008-03-19 03:09:12 +00:00
parent c79e980e02
commit 043756588b
5 changed files with 60 additions and 22 deletions

View file

@ -1,3 +1,9 @@
2008-03-19 Adam Fedor <fedor@gnu.org>
* Version 0.13.2
* configure.ac: Add --without-freetype option
2008-03-17 21:01-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Source/gsc/GSStreamContext.m: Add back implementation for

View file

@ -7,14 +7,26 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{0.13.2}
Added basic implementation of window levels on Windows. In general a bunch of
improvements in the Windows backend.
Experimental patch for using cairo on Windows.
More support for RTF, TIFF and selctions in the pasteboard server.
There has been change in the interaction of devices with the gui frontend. This
version or greater of the backend needs to be used with gui 0.13.2
@c ====================================================
@c Keep the next line just below the list of changes in most recent version.
@ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{0.13.1}
Minor improvements.
@c ====================================================================
@c Keep the next line just below the list of changes in most recent version.
@ifclear ANNOUNCE-ONLY
@section Noteworthy changes in version @samp{0.13.0}
Many improvements to the cairo backend. Add DPSshfill for all backends.

View file

@ -4,9 +4,9 @@
# The version number of this release.
GNUSTEP_BACK_MAJOR_VERSION=0
GNUSTEP_BACK_MINOR_VERSION=13
GNUSTEP_BACK_SUBMINOR_VERSION=1
GNUSTEP_BACK_SUBMINOR_VERSION=2
# This numeric value should match above
VERSION_NUMBER=013.1
VERSION_NUMBER=013.2
# This numeric value should match the compatible gui interface version
INTERFACE_VERSION_NUMBER=013

29
configure vendored
View file

@ -1306,6 +1306,7 @@ Optional Packages:
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-tiff-library=DIR TIFF library file are in DIR
--with-x use the X Window System
--without-freetype Do not check for or include freetype
--with-name=PREFIX Set the name of the backend (def=back)
Some influential environment variables:
@ -5437,15 +5438,26 @@ fi
#--------------------------------------------------------------------
# freetype libraries
#--------------------------------------------------------------------
# Mac OS X with macports has a freetype which includes Apple's Foundation
# which we do not want
FREETYPE_LIBS="`freetype-config --libs`"
FREETYPE_CFLAGS="`freetype-config --cflags`"
# Check whether --with-freetype was given.
if test "${with_freetype+set}" = set; then
withval=$with_freetype;
else
with_freetype=yes
fi
have_freetype=no
if test x"$FREETYPE_LIBS" != x; then
save_CPPFLAGS=${CPPFLAGS}
CPPFLAGS="${CPPFLAGS} ${FREETYPE_CFLAGS}"
if test "${ac_cv_header_ft2build_h+set}" = set; then
if test $with_freetype = yes; then
FREETYPE_LIBS="`freetype-config --libs`"
FREETYPE_CFLAGS="`freetype-config --cflags`"
have_freetype=no
if test x"$FREETYPE_LIBS" != x; then
save_CPPFLAGS=${CPPFLAGS}
CPPFLAGS="${CPPFLAGS} ${FREETYPE_CFLAGS}"
if test "${ac_cv_header_ft2build_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for ft2build.h" >&5
echo $ECHO_N "checking for ft2build.h... $ECHO_C" >&6; }
if test "${ac_cv_header_ft2build_h+set}" = set; then
@ -5577,7 +5589,8 @@ else
fi
CPPFLAGS="${save_CPPFLAGS}"
CPPFLAGS="${save_CPPFLAGS}"
fi
fi
#--------------------------------------------------------------------

View file

@ -171,16 +171,23 @@ fi
#--------------------------------------------------------------------
# freetype libraries
#--------------------------------------------------------------------
# Mac OS X with macports has a freetype which includes Apple's Foundation
# which we do not want
AC_ARG_WITH(freetype,
[ --without-freetype Do not check for or include freetype], ,
with_freetype=yes)
FREETYPE_LIBS="`freetype-config --libs`"
FREETYPE_CFLAGS="`freetype-config --cflags`"
if test $with_freetype = yes; then
FREETYPE_LIBS="`freetype-config --libs`"
FREETYPE_CFLAGS="`freetype-config --cflags`"
have_freetype=no
if test x"$FREETYPE_LIBS" != x; then
save_CPPFLAGS=${CPPFLAGS}
CPPFLAGS="${CPPFLAGS} ${FREETYPE_CFLAGS}"
AC_CHECK_HEADER(ft2build.h,have_freetype=yes, have_freetype=no)
CPPFLAGS="${save_CPPFLAGS}"
have_freetype=no
if test x"$FREETYPE_LIBS" != x; then
save_CPPFLAGS=${CPPFLAGS}
CPPFLAGS="${CPPFLAGS} ${FREETYPE_CFLAGS}"
AC_CHECK_HEADER(ft2build.h,have_freetype=yes, have_freetype=no)
CPPFLAGS="${save_CPPFLAGS}"
fi
fi
#--------------------------------------------------------------------