summaryrefslogtreecommitdiff
path: root/tikzit/configure.ac
blob: 8f791b6b5cd59ac9e22d2f93696585c5c3756cb0 (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.60])
AC_INIT([TikZiT], [1.0],
	[http://sourceforge.net/apps/trac/tikzit],
	[tikzit],
	[http://tikzit.sourceforge.net])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AM_SILENT_RULES([yes])
AC_OUTPUT(Makefile
          src/Makefile
          share/Makefile
)
AC_CONFIG_SRCDIR([src/gtk/main.m])

m4_include([m4/objc.m4])

# Checks for programs.
AC_PROG_OBJC([gcc clang objc objcc])
AC_LANG([Objective C])

AC_PROG_LEX
AM_PROG_LEX
AC_PROG_YACC

# Checks for libraries.
FOUNDATION_OBJCFLAGS=`eval "gnustep-config --objc-flags"`
AS_IF([test "x$FOUNDATION_OBJCFLAGS" = "x"],
  [AC_MSG_ERROR([GNUstep not found])])
FOUNDATION_LIBS=`eval "gnustep-config --base-libs"`
AS_IF([test "x$FOUNDATION_LIBS" = "x"],
  [AC_MSG_ERROR([GNUstep not found])])
AC_SUBST([FOUNDATION_OBJCFLAGS])
AC_SUBST([FOUNDATION_LIBS])

TZ_TEST_OBJCFLAGS="$FOUNDATION_OBJCFLAGS"
TZ_TEST_LDFLAGS="$FOUNDATION_LIBS"

TZ_OBJC_FOUNDATION
AS_IF([test "x$tz_cv_objc_foundation" != "xyes"],
  [AC_MSG_ERROR([Objective C Foundation not found -- missing gnustep-base(-devel)?])])

AC_ARG_WITH([poppler], AS_HELP_STRING([--without-poppler], [Ignore presence of poppler, disabling preview support]))

AS_IF([test "x$with_poppler" != "xno"],
  [
    AC_MSG_CHECKING([for poppler-glib])
    PKG_CHECK_EXISTS([poppler-glib >= 0.10],
                     [have_poppler=yes],
                     [have_poppler=no])
    AS_IF([test "x$have_poppler" = "xyes"],
      [
        AC_MSG_RESULT([yes])
        AC_DEFINE(HAVE_POPPLER, 1)
      ],
      [
        AC_MSG_RESULT([no])
        AS_IF([test "x$with_poppler" = "xyes"],
              [AC_MSG_ERROR([poppler requested but not found (note that poppler-glib is required)])]
             )
      ])
  ],
  [have_poppler=no])
AM_CONDITIONAL([HAVE_POPPLER],[test "x$have_poppler" = "xyes"])

# Test all the pkg-config stuff together, so that
# dependencies and duplicate flags are correctly handled
AS_IF([test "x$have_poppler" = "xyes"],
  [PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= 2.18.0 gdk-pixbuf-2.0 >= 2.16.0 pango >= 1.16 cairo >= 1.4 poppler-glib >= 0.10])],
  [PKG_CHECK_MODULES([GTK], [gtk+-2.0 >= 2.18.0 gdk-pixbuf-2.0 >= 2.16.0 pango >= 1.16 cairo >= 1.4])])

# Checks for header files.
AC_FUNC_ALLOCA
AC_CHECK_HEADERS([inttypes.h libintl.h limits.h malloc.h stddef.h stdint.h stdlib.h string.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT8_T
AC_TYPE_SIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
AC_HEADER_STDBOOL
AC_HEADER_STAT
AC_CHECK_HEADERS([stdint.h inttypes.h unistd.h sys/time.h time.h])

# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([floor gettimeofday memset mkdtemp sqrt strdup])

TZ_OBJC2_FEATURES
AS_IF([test "x$tz_cv_objc_properties$tz_cv_objc_fast_enumeration$tz_cv_objc_optional_keyword" != "xyesyesyes"],
  [AC_MSG_ERROR([Your Objective C compiler does not support the required Objective C 2 features])])

dnl ----------------------------------------------------------------------------
dnl
dnl  platform-specific stuff.

AC_CANONICAL_HOST
have_msw="no"
case $host_os in

   *mingw32*)
     have_msw="yes"
     OBJCFLAGS="$OBJCFLAGS -mwindows"
     AC_SUBST([WINDOWS])
     AC_SUBST([WIN32])
     AC_SUBST([_WIN32])
     ;;

esac

AM_CONDITIONAL([WINDOWS],[test "x$have_msw" = "xyes"])

AS_IF([test "x$with_poppler" != "xno"],
  [AS_IF([test "x$have_poppler" != "xyes"],
    AC_MSG_WARN([poppler-glib was not found; preview support will be disabled])
    )]
  )

AC_OUTPUT

# vi:sts=2:sw=2:et