add pc files for ddraw and sdl engines

SVN revision: 30852
This commit is contained in:
doursse 2007-07-16 08:13:40 +00:00 committed by doursse
parent 2cc91ff331
commit 64e4039663
4 changed files with 81 additions and 61 deletions

View File

@ -19,6 +19,8 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
evas-software-xcb.pc \
evas-xrender-x11.pc \
evas-xrender-xcb.pc \
evas-software-ddraw.pc \
evas-sdl.pc \
evas.pc \
evas.spec \
debian/changelog
@ -40,6 +42,8 @@ EXTRA_DIST = AUTHORS COPYING COPYING-PLAIN evas.c.in gendoc \
evas-software-xcb.pc \
evas-xrender-x11.pc \
evas-xrender-xcb.pc \
evas-software-ddraw.pc \
evas-sdl.pc \
evas.pc \
evas.spec.in evas.spec \
debian/changelog \
@ -114,8 +118,16 @@ if BUILD_ENGINE_XRENDER_XCB
pxrenderxcb = evas-xrender-xcb.pc
endif
if BUILD_ENGINE_SOFTWARE_DDRAW
psoftwareddraw = evas-software-ddraw.pc
endif
if BUILD_ENGINE_SDL
psdl = evas-sdl.pc
endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = \
evas.pc $(psoftwarex11) $(psoftwarexcb) $(pdirectfb) $(pframebuffer) \
$(psoftwarebuffer) $(psoftwareqtopia) $(popenglx11) $(pcairox11) \
$(pxrenderx11) $(pxrenderxcb) $(pglitzx11)
$(pxrenderx11) $(pxrenderxcb) $(pglitzx11) $(psoftwareddraw) $(psdl)

View File

@ -1134,7 +1134,7 @@ AC_CHECK_HEADER(pthread.h,
AC_CHECK_LIB(pthread, pthread_attr_setaffinity_np,
[
AC_CHECK_LIB(pthread, pthread_barrier_wait,
[ build_pthreads="yes" ],
[ build_pthreads="yes" ],
[ build_pthreads="no" ]
)
],
@ -1402,7 +1402,7 @@ AC_ARG_ENABLE(small-dither-mask,
[ --enable-small-dither-mask enable small dither mask code], [
if test x"$enableval" = x"yes" ; then
AC_MSG_RESULT(yes)
AC_DEFINE(BUILD_SMALL_DITHER_MASK, 1, [Small Dither Mask Support])
AC_DEFINE(BUILD_SMALL_DITHER_MASK, 1, [Small Dither Mask Support])
conv_small_dither="yes"
else
AC_MSG_RESULT(no)
@ -1425,7 +1425,7 @@ AC_ARG_ENABLE(no-dither-mask,
[ --enable-no-dither-mask enable conversion to 16bpp without dither mask], [
if test x"$enableval" = x"yes" ; then
AC_MSG_RESULT(yes)
AC_DEFINE(BUILD_NO_DITHER_MASK, 1, [No Dither Mask Support])
AC_DEFINE(BUILD_NO_DITHER_MASK, 1, [No Dither Mask Support])
conv_no_dither="yes"
else
AC_MSG_RESULT(no)
@ -2118,6 +2118,8 @@ evas-software-x11.pc
evas-software-xcb.pc
evas-xrender-x11.pc
evas-xrender-xcb.pc
evas-software-ddraw.pc
evas-sdl.pc
evas.pc
src/Makefile
src/lib/Makefile

View File

@ -0,0 +1,3 @@
Name: evas-sdl
Description: Evas SDL engine
Version: @VERSION@

View File

@ -0,0 +1,3 @@
Name: evas-software-ddraw
Description: Evas software DirectDaw engine
Version: @VERSION@