You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
609 B
28 lines
609 B
dnl Process this file with autoconf to produce a configure script. |
|
AC_INIT(ipc.c) |
|
AM_INIT_AUTOMAKE(e16keyedit, 0.1.0) |
|
|
|
dnl Checks for programs. |
|
AC_PROG_CC |
|
AC_PROG_INSTALL |
|
AC_PROG_LN_S |
|
AC_PROG_MAKE_SET |
|
|
|
dnl Checks for libraries. |
|
if !(gtk-config --version >/dev/null 2>&1); then |
|
AC_MSG_ERROR([Gtk+ is required.]) |
|
else |
|
CFLAGS="$CFLAGS `gtk-config --cflags`" |
|
LIBS="$LIBS `gtk-config --libs`" |
|
fi |
|
|
|
dnl Checks for header files. |
|
AC_PATH_X |
|
AC_HEADER_STDC |
|
AC_CHECK_HEADERS(unistd.h) |
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics. |
|
|
|
dnl Checks for library functions. |
|
|
|
AC_OUTPUT(Makefile)
|
|
|