mirror of
				https://git.yoctoproject.org/matchbox-tests
				synced 2025-11-04 13:05:39 +08:00 
			
		
		
		
	git-svn-id: https://svn.o-hand.com/repos/matchbox/trunk/matchbox-tests@656 b067294f-1dea-0310-9683-c47a78595994
		
			
				
	
	
		
			29 lines
		
	
	
		
			658 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			658 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
AC_PREREQ(2.53)
 | 
						|
AC_INIT([matchbox-tests], 0.2, [mallum@handhelds.org])
 | 
						|
AC_CONFIG_SRCDIR([winspew.c])
 | 
						|
 | 
						|
AM_INIT_AUTOMAKE()
 | 
						|
AM_MAINTAINER_MODE
 | 
						|
AM_CONFIG_HEADER([config.h])
 | 
						|
 | 
						|
AC_PROG_CC
 | 
						|
AC_HEADER_STDC
 | 
						|
 | 
						|
PKG_CHECK_MODULES(LIBMB, libmb >= 1.1,,
 | 
						|
	         AC_MSG_ERROR([*** Required Matchbox Library (libmb) not installed ***]))
 | 
						|
 | 
						|
dnl ------ GCC flags --------------------------------------------------------
 | 
						|
 | 
						|
if test "x$GCC" = "xyes"; then
 | 
						|
        GCC_WARNINGS="-g -Wall -fno-strict-aliasing"
 | 
						|
        LIBMB_CFLAGS="$GCC_WARNINGS $LIBMB_CFLAGS"
 | 
						|
fi
 | 
						|
 | 
						|
#### XXX fixme should check for xtst availability
 | 
						|
 | 
						|
AC_SUBST(LIBMB_CFLAGS)
 | 
						|
AC_SUBST(LIBMB_LIBS)
 | 
						|
 | 
						|
AC_OUTPUT([
 | 
						|
Makefile
 | 
						|
]) |