forked from pool/SDL_bgi
- Update to new upstream release 2.2.2
OBS-URL: https://build.opensuse.org/package/show/graphics/SDL_bgi?expand=0&rev=33
This commit is contained in:
parent
ac40cdf042
commit
4cf71f4926
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b71f968ff3aea306ac6d5b236a4f428299017187eaedba1b272ef00d395c7f4c
|
|
||||||
size 1145256
|
|
3
SDL_bgi-2.2.2.tar.gz
Normal file
3
SDL_bgi-2.2.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7d1d69cd01e07d553c94f8602780adaf81e856696601e69a96b2db6c8412932e
|
||||||
|
size 1149200
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 11 11:11:35 UTC 2018 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 2.2.2
|
||||||
|
* The constants TMP_FG_COL, TMP_BG_COL, and TMP_FILL_COL
|
||||||
|
were added.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 15 10:47:45 UTC 2018 - jengelh@inai.de
|
Wed Aug 15 10:47:45 UTC 2018 - jengelh@inai.de
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
Name: SDL_bgi
|
Name: SDL_bgi
|
||||||
%define lname libSDL_bgi2
|
%define lname libSDL_bgi2
|
||||||
Version: 2.2.1
|
Version: 2.2.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: BGI-compatible 2D graphics C library with SDL backend
|
Summary: BGI-compatible 2D graphics C library with SDL backend
|
||||||
License: Zlib AND GPL-2.0-or-later
|
License: Zlib AND GPL-2.0-or-later
|
||||||
|
@ -12,19 +12,19 @@ Author could not decide between "sdlbgifast" and "bgifast"
|
|||||||
test/Makefile.am | 11 +++++++++++
|
test/Makefile.am | 11 +++++++++++
|
||||||
4 files changed, 30 insertions(+)
|
4 files changed, 30 insertions(+)
|
||||||
|
|
||||||
Index: SDL_bgi-2.0.6/Makefile.am
|
Index: SDL_bgi-2.2.2/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.6/Makefile.am
|
+++ SDL_bgi-2.2.2/Makefile.am
|
||||||
@@ -0,0 +1,2 @@
|
@@ -0,0 +1,2 @@
|
||||||
+ACLOCAL_AMFLAGS = -I m4
|
+ACLOCAL_AMFLAGS = -I m4
|
||||||
+SUBDIRS = src test
|
+SUBDIRS = src test
|
||||||
Index: SDL_bgi-2.0.6/configure.ac
|
Index: SDL_bgi-2.2.2/configure.ac
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.6/configure.ac
|
+++ SDL_bgi-2.2.2/configure.ac
|
||||||
@@ -0,0 +1,9 @@
|
@@ -0,0 +1,9 @@
|
||||||
+AC_INIT([SDL_bgi], [2.2.1])
|
+AC_INIT([SDL_bgi], [2.2.2])
|
||||||
+AC_CONFIG_AUX_DIR([build-aux])
|
+AC_CONFIG_AUX_DIR([build-aux])
|
||||||
+AC_CONFIG_MACRO_DIR([m4])
|
+AC_CONFIG_MACRO_DIR([m4])
|
||||||
+AC_PROG_CC
|
+AC_PROG_CC
|
||||||
@ -33,10 +33,10 @@ Index: SDL_bgi-2.0.6/configure.ac
|
|||||||
+PKG_CHECK_MODULES([sdl2], [sdl2])
|
+PKG_CHECK_MODULES([sdl2], [sdl2])
|
||||||
+AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
|
+AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
|
||||||
+AC_OUTPUT
|
+AC_OUTPUT
|
||||||
Index: SDL_bgi-2.0.6/src/Makefile.am
|
Index: SDL_bgi-2.2.2/src/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.6/src/Makefile.am
|
+++ SDL_bgi-2.2.2/src/Makefile.am
|
||||||
@@ -0,0 +1,8 @@
|
@@ -0,0 +1,8 @@
|
||||||
+AM_CPPFLAGS = ${sdl2_CFLAGS}
|
+AM_CPPFLAGS = ${sdl2_CFLAGS}
|
||||||
+AM_CFLAGS = -Wall
|
+AM_CFLAGS = -Wall
|
||||||
@ -46,10 +46,10 @@ Index: SDL_bgi-2.0.6/src/Makefile.am
|
|||||||
+libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 2:0:0
|
+libSDL_bgi_la_LDFLAGS = -no-undefined -version-info 2:0:0
|
||||||
+pkgincludedir = ${includedir}/SDL2
|
+pkgincludedir = ${includedir}/SDL2
|
||||||
+pkginclude_HEADERS = SDL_bgi.h
|
+pkginclude_HEADERS = SDL_bgi.h
|
||||||
Index: SDL_bgi-2.0.6/test/Makefile.am
|
Index: SDL_bgi-2.2.2/test/Makefile.am
|
||||||
===================================================================
|
===================================================================
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ SDL_bgi-2.0.6/test/Makefile.am
|
+++ SDL_bgi-2.2.2/test/Makefile.am
|
||||||
@@ -0,0 +1,11 @@
|
@@ -0,0 +1,11 @@
|
||||||
+AM_CPPFLAGS = -I${top_srcdir}/src
|
+AM_CPPFLAGS = -I${top_srcdir}/src
|
||||||
+AM_CFLAGS = -Wall
|
+AM_CFLAGS = -Wall
|
||||||
|
Loading…
x
Reference in New Issue
Block a user