source: m4/ax_maemo.m4@ 4104

Last change on this file since 4104 was 4104, checked in by Christoph Mayer, 15 years ago

-spezialbehandlung wenn auf maemo kompiliert wird
-config.h ausgeben lassen, damit dynamisch geschaut wird welche libs vorhanden sind bei optionalen

File size: 468 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-15
12
13AC_DEFUN([AX_MAEMO],
14[
15 AC_MSG_CHECKING([maemo platform])
16
17 if test "$host" = "arm-unknown-linux-gnu" ; then
18 AC_MSG_RESULT(yes)
19 LDFLAGS="$LDFLAGS -Wl,-zmuldefs",
20 else
21 AC_MSG_RESULT(no)
22 fi
23
24# ifelse([
25# $host,
26# 'arm-unknown-linux-gnu',
27# AC_MSG_RESULT(yes)
28# LDFLAGS="$LDFLAGS -Wl,-zmuldefs",
29# AC_MSG_RESULT(no)
30# ])
31
32])
Note: See TracBrowser for help on using the repository browser.