aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: 12128048c3762ed3a1e7a2facc2dbe534a321021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
AC_PREREQ(2.59)
AC_INIT(hidio,0.1)
AC_CONFIG_SRCDIR(hidio.c)
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE(1.9)

PD_PATH=../../../pd
CFLAGS="-DPD $CFLAGS -I$PD_PATH/src"

case $host in
*darwin*)
        MACOSX=yes
        EXTENSION=pd_darwin
        ;;
*linux*)
        LINUX=yes
        EXTENSION=pd_linux
        ;;
*mingw*)
        WINDOWS=yes
        MINGW=yes
        EXTENSION=dll
        ;;
*cygwin*)
        WINDOWS=yes
        CYGWIN=yes
        EXTENSION=dll
        ;;
esac
AM_CONDITIONAL(ANDROID, test x$ANDROID = xyes)
AM_CONDITIONAL(IPHONEOS, test x$IPHONEOS = xyes)
AM_CONDITIONAL(LINUX, test x$LINUX = xyes)
AM_CONDITIONAL(MACOSX, test x$MACOSX = xyes)
AM_CONDITIONAL(WINDOWS, test x$WINDOWS = xyes)
AM_CONDITIONAL(CYGWIN, test x$MINGW = xyes)
AM_CONDITIONAL(MINGW, test x$MINGW = xyes)

# Checks for programs.
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_PROG_MAKE_SET

AC_SUBST(EXTENSION)

AC_HEADER_STDC

AC_ARG_ENABLE([debug],
    [AS_HELP_STRING([--enable-debug], [use debugging support])], 
        [debug=$enableval])
if test x$debug = xyes; then
    CFLAGS="$CFLAGS -g"
fi

AC_ARG_ENABLE([universal],
    [AS_HELP_STRING([--enable-universal],
        [build universal binary on Mac OS X])], 
    [universal=$enableval], [universal=no])
AM_CONDITIONAL(UNIVERSAL, test x$universal = xyes)
if test x$universal = xyes; then
# I got this error:
# ld: absolute addressing (perhaps -mdynamic-no-pic) used in _debug_post from
# hidio.o not allowed in slidable image. Use '-read_only_relocs suppress' to
# enable text relocs for architecture ppc
   UNIVERSAL_FLAGS="-arch ppc -arch i386 -read_only_relocs suppress -mmacosx-version-min=10.4"
   CFLAGS="$CFLAGS -fast -ffast-math $UNIVERSAL_FLAGS"
   LDFLAGS="$LDFLAGS $UNIVERSAL_FLAGS"
fi

# Checks for header files.
AC_CHECK_HEADERS([malloc.h string.h sys/time.h])

# Checks for typedefs, structures, and compiler characteristics.
dnl AC_TYPE_INT16_T
dnl AC_TYPE_INT32_T
dnl AC_TYPE_OFF_T
dnl AC_TYPE_PID_T
AC_TYPE_SIZE_T

# Checks for library functions.
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_TYPE_SIGNAL

# Specify what files are to be created.
AC_CONFIG_FILES([Makefile
                HID_Utilities_Source/Makefile])

AC_OUTPUT

dnl output some messages at the end

AS_IF([test x$universal = xyes], [
	    AC_MSG_RESULT(
To build a Universal Binary on Mac OS X run it like this: 
  ./configure --enable-universal --disable-dependency-tracking)])