From c9764a5fe149ea9fa1cda7617e00827ce004e3e8 Mon Sep 17 00:00:00 2001 From: Clayton Walker Date: Sat, 14 Feb 2015 23:58:46 +0000 Subject: [PATCH] Update xhydra configure script --- hydra-gtk/configure.ac | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 hydra-gtk/configure.ac diff --git a/hydra-gtk/configure.ac b/hydra-gtk/configure.ac new file mode 100755 index 0000000..c373fb3 --- /dev/null +++ b/hydra-gtk/configure.ac @@ -0,0 +1,22 @@ +dnl Process this file with autoconf to produce a configure script. + +AC_INIT(configure.in) +AM_INIT_AUTOMAKE(xhydra, 0.1) +AM_CONFIG_HEADER(config.h) +AM_MAINTAINER_MODE + +AC_ISC_POSIX +AC_PROG_CC +AM_PROG_CC_STDC +AC_HEADER_STDC + +pkg_modules="gtk+-3.0 >= 3.0.0" +PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) +AC_SUBST(PACKAGE_CFLAGS) +AC_SUBST(PACKAGE_LIBS) + +AC_OUTPUT([ +Makefile +src/Makefile +]) +