source:
m4/ax_maemo.m4@
10072
Last change on this file since 10072 was 5612, checked in by , 15 years ago | |
---|---|
File size: 364 bytes |
Line | |
---|---|
1 | # SYNOPSIS |
2 | # |
3 | # AX_MAEMO() |
4 | # |
5 | # DESCRIPTION |
6 | # |
7 | # Check for Maemo and set specific flags |
8 | # |
9 | # LAST MODIFICATION |
10 | # |
11 | # 2009-06-26 |
12 | |
13 | AC_DEFUN([AX_MAEMO], |
14 | [ |
15 | AC_MSG_CHECKING([for maemo platform]) |
16 | |
17 | if test "$host" = "arm-unknown-linux-gnu" ; then |
18 | AC_MSG_RESULT(yes) |
19 | AC_DEFINE(HAVE_MAEMO, [1], "Define to 1 for the Maemo platform") |
20 | else |
21 | AC_MSG_RESULT(no) |
22 | fi |
23 | ]) |
Note:
See TracBrowser
for help on using the repository browser.