-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfigure.in
More file actions
38 lines (22 loc) · 829 Bytes
/
configure.in
File metadata and controls
38 lines (22 loc) · 829 Bytes
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
AC_PREREQ([2.65])
AC_INIT([4dtris], [0.4.3], [https://launchpad.net/4dtris])
AM_INIT_AUTOMAKE(4dtris, 0.4.3)
AC_CONFIG_SRCDIR([src])
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION(0.18)
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
AC_CHECK_LIB([fontconfig], [FcFontList])
AC_CHECK_LIB([GL], [glBegin])
AC_CHECK_LIB([GLU], [gluQuadricNormals])
AC_CHECK_LIB([SDL], [SDL_Init])
AC_CHECK_LIB([SDL_ttf], [TTF_RenderUTF8_Blended])
AC_CHECK_LIB([m], [sqrt])
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h string.h math.h stdio.h limits.h GL/gl.h GL/glu.h SDL/SDL.h SDL/SDL_ttf.h libintl.h locale.h fontconfig/fontconfig.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_FUNCS([pow setlocale sqrt])
AC_C_INLINE
AC_CONFIG_FILES([Makefile po/Makefile.in])
AC_OUTPUT