Version 0.8.0

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/freeze-0_8_0@14220 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-08-01 17:26:45 +00:00
parent abdb40c9eb
commit fc9a99f7f1
7 changed files with 108 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2002-08-01 Adam Fedor <fedor@gnu.org>
* Version: 0.8.0
* configure.ac: Check for usleep.
* Source/x11/XGServerWindow.m ([XGServer -windowdevice:]):
Use alternate if no usleep.
2002-07-28 Adam Fedor <fedor@gnu.org>
* Source/xlib/XGBitmap.m (_pixmap_combine_alpha): Use

View file

@ -7,7 +7,7 @@
@include version.texi
@end ifset
@section Noteworthy changes in version @samp{0.7.9}
@section Noteworthy changes in version @samp{0.8.0}
Bug fixes.
@ -15,6 +15,10 @@ Bug fixes.
@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.7.9}
Bug fixes.
@section Noteworthy changes in version @samp{0.7.8}
Simplified backend selection using --enable-server and

View file

@ -1358,7 +1358,12 @@ NSDebugLLog(@"Frame", @"X2O %d, %@, %@", win->number,
*/
if (height != window->siz_hints.height)
{
#if HAVE_USLEEP
usleep(1);
#else
for (x=0; x<10000; x++)
;
#endif
XGetGeometry(dpy, window->ident, &window->root,
&x, &y, &width, &height,
&window->border, &window->depth);

View file

@ -3,8 +3,8 @@
# The version number of this release.
GNUSTEP_BACK_MAJOR_VERSION=0
GNUSTEP_BACK_MINOR_VERSION=7
GNUSTEP_BACK_SUBMINOR_VERSION=9
GNUSTEP_BACK_MINOR_VERSION=8
GNUSTEP_BACK_SUBMINOR_VERSION=0
GNUSTEP_BACK_VERSION=${GNUSTEP_BACK_MAJOR_VERSION}.${GNUSTEP_BACK_MINOR_VERSION}.${GNUSTEP_BACK_SUBMINOR_VERSION}
VERSION=${GNUSTEP_BACK_VERSION}

View file

@ -44,6 +44,9 @@
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* Define to 1 if you have the `usleep' function. */
#undef HAVE_USLEEP
/* Define if you have XftDrawStringUtf8 */
#undef HAVE_UTF8

80
configure vendored
View file

@ -4461,6 +4461,86 @@ _ACEOF
fi
#--------------------------------------------------------------------
# Functions
#--------------------------------------------------------------------
for ac_func in usleep
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:$LINENO: checking for $ac_func" >&5
echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
if eval "test \"\${$as_ac_var+set}\" = set"; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
cat >conftest.$ac_ext <<_ACEOF
#line $LINENO "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func (); below. */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
extern "C"
#endif
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char $ac_func ();
char (*f) ();
#ifdef F77_DUMMY_MAIN
# ifdef __cplusplus
extern "C"
# endif
int F77_DUMMY_MAIN() { return 1; }
#endif
int
main ()
{
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
f = $ac_func;
#endif
;
return 0;
}
_ACEOF
rm -f conftest.$ac_objext conftest$ac_exeext
if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
(eval $ac_link) 2>&5
ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&5
(exit $ac_status); } &&
{ ac_try='test -s conftest$ac_exeext'
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
(eval $ac_try) 2>&5
ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
eval "$as_ac_var=yes"
else
echo "$as_me: failed program was:" >&5
cat conftest.$ac_ext >&5
eval "$as_ac_var=no"
fi
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
fi
echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
if test `eval echo '${'$as_ac_var'}'` = yes; then
cat >>confdefs.h <<_ACEOF
#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
fi
done
#--------------------------------------------------------------------
# Find for JPEG
#--------------------------------------------------------------------

View file

@ -195,6 +195,11 @@ if test "x$enable_xim" = "xyes"; then
AC_DEFINE(USE_XIM,1,[Define to enable XIM support])
fi
#--------------------------------------------------------------------
# Functions
#--------------------------------------------------------------------
AC_HAVE_FUNCS(usleep)
#--------------------------------------------------------------------
# Find for JPEG
#--------------------------------------------------------------------