File: configure.ac

package info (click to toggle)
leafpad 0.7.9-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,480 kB
  • ctags: 272
  • sloc: sh: 3,548; ansic: 3,464; makefile: 47; sed: 16
file content (31 lines) | stat: -rw-r--r-- 743 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
# Process this file with autoconf to produce a configure script.
AC_INIT(Leafpad, 0.7.9, tarot@sdf.lonestar.org)
AM_INIT_AUTOMAKE($PACKAGE_TARNAME, $PACKAGE_VERSION)
AC_CONFIG_SRCDIR([src/leafpad.h])
AM_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
CFLAGS="$CFLAGS -Wall"

# Checks for libraries.
AM_PATH_GTK_2_0

# Checks for header files.
#AC_HEADER_STDC
#AC_CHECK_HEADERS([libintl.h stdlib.h string.h])

# Checks for typedefs, structures, and compiler characteristics.
#AC_C_CONST

# Checks for library functions.
#AC_CHECK_FUNCS([setenv strcasecmp strncasecmp strstr])

# gettext
AM_GNU_GETTEXT([external])

AC_CONFIG_FILES([Makefile
                 po/Makefile.in
                 src/Makefile])
AC_OUTPUT