~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to extern/bFTGL/unix/configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_INIT(ftgl, 2.0.5, henryj@paradise.net.nz)
 
2
AC_CONFIG_SRCDIR([Make.conf.in])
 
3
dnl AC_CONFIG_HEADER([src/config.h])
 
4
 
 
5
FTGL_PROG_CXX
 
6
 
 
7
AC_DISABLE_SHARED
 
8
AC_PROG_LIBTOOL
 
9
 
 
10
# Checks for typedefs, structures, and compiler characteristics.
 
11
 
 
12
dnl These don't mix with C++
 
13
dnl AC_C_CONST
 
14
dnl AC_C_INLINE
 
15
 
 
16
# Checks for header files.
 
17
AC_HEADER_STDC
 
18
AC_CHECK_HEADER([stdlib.h])
 
19
 
 
20
# Checks for libraries.
 
21
 
 
22
AC_PATH_X
 
23
 
 
24
AC_CHECK_FT2([9.0.3],[],
 
25
             [AC_MSG_ERROR([FreeType2 is required to compile this library])])
 
26
 
 
27
AC_PATH_XTRA
 
28
 
 
29
FTGL_CHECK_GL
 
30
FTGL_CHECK_GLUT
 
31
 
 
32
# Checks for library functions
 
33
dnl This isn't really used at the moment
 
34
 
 
35
AC_CHECK_FUNCS([memset])
 
36
 
 
37
# Utility programs
 
38
 
 
39
AC_PROG_INSTALL
 
40
 
 
41
AC_CHECK_PROG([DOXYGEN], [doxygen], [doxygen])
 
42
if test -z "$DOXYGEN" ; then
 
43
    DOXYGEN=:
 
44
fi
 
45
 
 
46
AC_CONFIG_FILES([Make.conf ftgl.pc])
 
47
AC_OUTPUT