forked from pool/freeglut
This commit is contained in:
parent
827fda4ac6
commit
af8c40f01a
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c66775f1b1b286151ef2fcc13bc10d9e2fb7f18d4da2a5fe789885359df4cd05
|
|
||||||
size 225512
|
|
3
freeglut-080721.tar.bz2
Normal file
3
freeglut-080721.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ade1d6c165d32b99dee2329e0c056201e3e121df7c81a80915215af9b780a2b9
|
||||||
|
size 230168
|
@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Aug 11 10:21:32 CEST 2008 - sndirsch@suse.de
|
||||||
|
|
||||||
|
- switched to current freeglut sources in SVN (2008-07-21):
|
||||||
|
* Changed "fgStructure.GameMode" to "fgStructure.GameModeWindow"
|
||||||
|
to reflect better what it is
|
||||||
|
* Added an end-of-line character to a warning message about an
|
||||||
|
unknown X event type
|
||||||
|
* Fixing a problem in which "glutGetWindow" would return a menu's
|
||||||
|
window instead of the menu's parent window
|
||||||
|
* Added some handy comments, spacing, fixed a typo in a comment
|
||||||
|
* Changed "TARGET_HOST_UNIX_X11" to "TARGET_HOST_POSIX_X11" to
|
||||||
|
avoid trademark issues, per Joe Krahn; also rationalized the
|
||||||
|
other "TARGET_HOST" definitions
|
||||||
|
* Added futher callback functionality to the CallbackMaker demo
|
||||||
|
program. Also added a prompt for user input to highlight a
|
||||||
|
difference betwen GLUT and "freeglut"
|
||||||
|
* Added multisampling support for *nix and Windows; some other
|
||||||
|
pixel format changes for Windows
|
||||||
|
* Added Markus Henschel's change (e-mail to developers' list,
|
||||||
|
June 28, 2006) to have the "glutInitDisplayString" ignore
|
||||||
|
numerical assignments to tokens as a temporary fix.
|
||||||
|
* Fixed buy #1398196 in the bug tracker to the effect that
|
||||||
|
passing the wrong argument in "fghSleepForEvents" can cause
|
||||||
|
odd delays
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
|
||||||
|
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
#
|
#
|
||||||
# spec file for package freeglut (Version 060903)
|
# spec file for package freeglut (Version 080721)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
|
||||||
# package are under the same license as the package itself.
|
|
||||||
#
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
@ -14,8 +21,8 @@
|
|||||||
Name: freeglut
|
Name: freeglut
|
||||||
BuildRequires: Mesa-devel gcc-c++ libdrm-devel pkgconfig xorg-x11-devel
|
BuildRequires: Mesa-devel gcc-c++ libdrm-devel pkgconfig xorg-x11-devel
|
||||||
Summary: Freely licensed alternative to the GLUT library
|
Summary: Freely licensed alternative to the GLUT library
|
||||||
Version: 060903
|
Version: 080721
|
||||||
Release: 122
|
Release: 1
|
||||||
Url: http://freeglut.sourceforge.net/
|
Url: http://freeglut.sourceforge.net/
|
||||||
%define USE_EXTERNAL_MESA 1
|
%define USE_EXTERNAL_MESA 1
|
||||||
Source0: freeglut-%{version}.tar.bz2
|
Source0: freeglut-%{version}.tar.bz2
|
||||||
@ -173,6 +180,29 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 11 2008 sndirsch@suse.de
|
||||||
|
- switched to current freeglut sources in SVN (2008-07-21):
|
||||||
|
* Changed "fgStructure.GameMode" to "fgStructure.GameModeWindow"
|
||||||
|
to reflect better what it is
|
||||||
|
* Added an end-of-line character to a warning message about an
|
||||||
|
unknown X event type
|
||||||
|
* Fixing a problem in which "glutGetWindow" would return a menu's
|
||||||
|
window instead of the menu's parent window
|
||||||
|
* Added some handy comments, spacing, fixed a typo in a comment
|
||||||
|
* Changed "TARGET_HOST_UNIX_X11" to "TARGET_HOST_POSIX_X11" to
|
||||||
|
avoid trademark issues, per Joe Krahn; also rationalized the
|
||||||
|
other "TARGET_HOST" definitions
|
||||||
|
* Added futher callback functionality to the CallbackMaker demo
|
||||||
|
program. Also added a prompt for user input to highlight a
|
||||||
|
difference betwen GLUT and "freeglut"
|
||||||
|
* Added multisampling support for *nix and Windows; some other
|
||||||
|
pixel format changes for Windows
|
||||||
|
* Added Markus Henschel's change (e-mail to developers' list,
|
||||||
|
June 28, 2006) to have the "glutInitDisplayString" ignore
|
||||||
|
numerical assignments to tokens as a temporary fix.
|
||||||
|
* Fixed buy #1398196 in the bug tracker to the effect that
|
||||||
|
passing the wrong argument in "fghSleepForEvents" can cause
|
||||||
|
odd delays
|
||||||
* Thu Apr 10 2008 ro@suse.de
|
* Thu Apr 10 2008 ro@suse.de
|
||||||
- added baselibs.conf file to build xxbit packages
|
- added baselibs.conf file to build xxbit packages
|
||||||
for multilib support
|
for multilib support
|
||||||
|
Loading…
x
Reference in New Issue
Block a user