diff options
author | Santhosh Thottingal <santhosh00@gmail.com> | 2007-10-26 20:47:51 -0400 |
---|---|---|
committer | Santhosh Thottingal <santhosh00@gmail.com> | 2007-10-26 20:47:51 -0400 |
commit | 40cdac44fe89856c3f068ddd9dd911d88da97eb4 (patch) | |
tree | 93b0481fcf0734af70b4454c8d56fe03a3506d6c /input-methods/sulekha/configure.ac | |
parent | a6c9cee15bd36912c5197efde938a134dc7039cb (diff) | |
download | Rachana.git-40cdac44fe89856c3f068ddd9dd911d88da97eb4.tar.gz Rachana.git-40cdac44fe89856c3f068ddd9dd911d88da97eb4.tar.xz Rachana.git-40cdac44fe89856c3f068ddd9dd911d88da97eb4.zip |
Committing the first version of make and other configuration files
Diffstat (limited to 'input-methods/sulekha/configure.ac')
-rwxr-xr-x | input-methods/sulekha/configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/input-methods/sulekha/configure.ac b/input-methods/sulekha/configure.ac new file mode 100755 index 0000000..ef3e979 --- /dev/null +++ b/input-methods/sulekha/configure.ac @@ -0,0 +1,21 @@ +AC_INIT([Spell],[0.8],[santhosh],[Spell]) +AM_INIT_AUTOMAKE +AC_PROG_CC +CFLAGS="-g -O -Wall" +AC_PATH_PROGS(BASH, bash) +AC_PROG_INSTALL + +dnl ================================================================ +dnl Start of pkg-config checks +dnl ================================================================ + +PKG_CHECK_MODULES(SULEKHA, [ + gtk+-2.0 >= 2.10.0 +]) +GEDIT_LIBS="${SULEKHA_LIBS}" +AC_SUBST(SULEKHA_LIBS) +AC_SUBST(SULEKHA_CFLAGS) +AC_CONFIG_FILES([ +Makefile +]) +AC_OUTPUT |