mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 20:50:44 +00:00
* configure, configure.ac, Headers/Additions/GNUstepGUI/config.h.in,
Source/NSSliderCell.m: Check for atan2f function (not present on old Solaris systems for instance). git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30254 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9f1fb9cc7c
commit
4cea0b531e
5 changed files with 1681 additions and 4029 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-04-28 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure, configure.ac, Headers/Additions/GNUstepGUI/config.h.in,
|
||||
Source/NSSliderCell.m: Check for atan2f function (not present on
|
||||
old Solaris systems for instance).
|
||||
|
||||
2010-04-24 Doug Simons <doug.simons@testplant.com>
|
||||
|
||||
* Source/NSOutlineView.m:
|
||||
|
|
|
@ -1,14 +1,23 @@
|
|||
/* Headers/Additions/GNUstepGUI/config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define to 1 if you have the <ao/ao.h> header file. */
|
||||
#undef HAVE_AO_AO_H
|
||||
|
||||
/* Define if you have the aspell header */
|
||||
#undef HAVE_ASPELL
|
||||
|
||||
/* Define to 1 if you have the <aspell.h> header file. */
|
||||
#undef HAVE_ASPELL_H
|
||||
|
||||
/* Define to 1 if you have the `atan2f' function. */
|
||||
#undef HAVE_ATAN2F
|
||||
|
||||
/* Define to 1 if you have the <cups/cups.h> header file. */
|
||||
#undef HAVE_CUPS_CUPS_H
|
||||
|
||||
/* Define to 1 if you have the <flite/flite.h> header file. */
|
||||
#undef HAVE_FLITE_FLITE_H
|
||||
|
||||
/* Define to 1 if you have the `getmntent' function. */
|
||||
#undef HAVE_GETMNTENT
|
||||
|
||||
|
@ -60,6 +69,9 @@
|
|||
/* Define to 1 if you have the `rintf' function. */
|
||||
#undef HAVE_RINTF
|
||||
|
||||
/* Define to 1 if you have the <sndfile.h> header file. */
|
||||
#undef HAVE_SNDFILE_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
|
@ -99,6 +111,9 @@
|
|||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
|
|
|
@ -44,6 +44,9 @@
|
|||
#import "AppKit/NSWindow.h"
|
||||
|
||||
DEFINE_RINT_IF_MISSING
|
||||
#ifndef HAVE_ATAN2F
|
||||
#define atan2f atan2
|
||||
#endif
|
||||
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.1415926535897932384626434
|
||||
|
|
|
@ -108,7 +108,7 @@ AC_PROG_CC
|
|||
AC_PROG_CPP
|
||||
|
||||
AC_CHECK_LIB(m, main)
|
||||
AC_CHECK_FUNCS(rint rintf)
|
||||
AC_CHECK_FUNCS(rint rintf atan2f)
|
||||
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue