enigma2 : change vfd font (skin_user.xml)
[vuplus_openembedded] / contrib / site-conf / README
1 Unified source of autoconf tests used to generate the site results
2
3
4 Executing this on a new platform will generate the necessary results
5 to write the right site-conf.
6
7 1.) creating a configure script
8     '''use autoreconf -I m4'''
9
10
11 2.) adding a test
12     '''vim m4/yourpackage.m4'''
13     '''add the functions'''
14     '''AC_DEFUN([OE_CHECK_YOURPACKAGE],
15        [
16         CALL_YOUR_FUNCTION_ONE_BY_ONE
17        ])
18     '''
19
20     Add to
21     '''vim aclocal.m4'''
22     '''m4_include(yourpackage,m4)'''
23
24     Add to
25     '''vim configure.ac'''
26     '''OE_CHECK_YOURPACKAGE
27
28
29
30 Copy and paste the autoconf test to an approriate file