aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2010-02-10 21:43:03 +0100
committerJon Lund Steffensen <jonlst@gmail.com>2010-02-10 21:43:03 +0100
commit7fd5cb7b99128a23301ea8ee47752334f59a5432 (patch)
tree9d550eb347626d5dd3a3246d6d46c1765fefd7ae /configure.ac
parentUse autoreconf to bootstrap package (diff)
downloadredshift-ng-7fd5cb7b99128a23301ea8ee47752334f59a5432.tar.gz
redshift-ng-7fd5cb7b99128a23301ea8ee47752334f59a5432.tar.bz2
redshift-ng-7fd5cb7b99128a23301ea8ee47752334f59a5432.tar.xz
configure.ac: Look for gettext
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 25704bf..18e2855 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,6 +11,9 @@ AM_INIT_AUTOMAKE([dist-bzip2])
AC_PROG_CC_C99
# Checks for libraries.
+AM_GNU_GETTEXT_VERSION([0.17])
+AM_GNU_GETTEXT([external])
+
PKG_CHECK_MODULES([X11], [x11], [have_x11=yes], [have_x11=no])
PKG_CHECK_MODULES([XF86VM], [xxf86vm], [have_xf86vm=yes], [have_xf86vm=no])
PKG_CHECK_MODULES([XCB], [xcb], [have_xcb=yes], [have_xcb=no])
@@ -98,6 +101,7 @@ AC_CHECK_FUNCS([setlocale strchr floor pow clock_gettime])
AC_CONFIG_FILES([
Makefile
+ po/Makefile.in
])
AC_OUTPUT