File: configure.ac

package info (click to toggle)
gcx 1.3-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 5,572 kB
  • ctags: 4,000
  • sloc: ansic: 42,052; sh: 3,728; perl: 1,453; makefile: 104
file content (36 lines) | stat: -rw-r--r-- 552 bytes parent folder | download
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

AC_INIT([gcx], [1.3])
AM_INIT_AUTOMAKE

AC_CONFIG_HEADERS([src/config.h])

AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_PROG_RANLIB


AC_CHECK_HEADERS(libgen.h)
AC_REPLACE_FUNCS(basename)
AC_REPLACE_FUNCS(dirname)
AC_REPLACE_FUNCS(getline)


AM_PATH_GTK_2_0(2.4.0, , AC_MSG_ERROR(Cannot find GTK: is pkg-config in path?))
AC_CHECK_HEADERS([zlib.h])
AC_CHECK_LIB(z, inflate)

AC_CHECK_HEADERS([math.h])
AC_CHECK_LIB(m, cos)

AC_CONFIG_FILES([
	makedeb
	dscupload
	Makefile
	src/Makefile
	src/ccd/Makefile
	src/gsc/Makefile
	docs/Makefile
])
AC_OUTPUT