aboutsummaryrefslogtreecommitdiff
path: root/po/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'po/configure.ac')
-rw-r--r--po/configure.ac17
1 files changed, 17 insertions, 0 deletions
diff --git a/po/configure.ac b/po/configure.ac
new file mode 100644
index 00000000..37c40c81
--- /dev/null
+++ b/po/configure.ac
@@ -0,0 +1,17 @@
1# This configure.ac.in is in the public domain
2
3# Use versions from parent configure
4AC_INIT([GNU Libmicrohttpd], [0.9.59], [libmicrohttpd@gnu.org])
5
6AC_CONFIG_SRCDIR([Makevars])
7AC_CONFIG_MACRO_DIR([../m4])
8AC_CONFIG_AUX_DIR([..])
9AM_INIT_AUTOMAKE([silent-rules])
10
11AM_GNU_GETTEXT([external])
12
13# gettext expect that 'po' files will stay in subdirectory.
14# Form './Makefile.in' is accepted by gettext as subdirectory but caused some
15# troubles with in-place build (with relative path to source files). To workaround
16# this, some hack are used in Makefile.
17AC_OUTPUT([./Makefile.in])