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
|
# Process this file with autoconf to produce a configure script.
AC_INIT(thinice_theme_draw.c)
THEME="thinice"
# Save this value here, since automake will set cflags later
# For automake.
VERSION=1.0.3
PACKAGE=gtk-${THEME}-theme
# Save this value here, since automake will set cflags later
cflags_set=${CFLAGS+set}
AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
# No static please
AM_ENABLE_STATIC([no])
dnl Initialize libtool
AM_PROG_LIBTOOL
dnl Initialize maintainer mode
AM_MAINTAINER_MODE
AC_CANONICAL_HOST
# Checks for programs.
AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AM_PATH_GTK(1.2.0, ,
AC_MSG_ERROR([*** GTK 1.2 not installed - please install first ***]))
# Checks for header files.
AC_HEADER_STDC
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
# Checks for library functions.
AC_TYPE_SIGNAL
AC_OUTPUT([
gtk-thinice-theme.spec
Makefile
Theme/Makefile
Theme/gtk/Makefile
])
|