Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2014-03-23 20:10:45 +0400
committerBryan Drewery <bryan@shatow.net>2014-03-23 20:10:45 +0400
commit94139a41500bb1f70bed8cd72b74980f279d282c (patch)
tree7f42c495ba5f9ead4dcee941f6afe51815efb817 /configure.ac
parentbf71dbf890b2c16b7e5b293232b3857e86097ccc (diff)
Detect strftime_l(3) and only use if available
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index ff1c624c..020afa15 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,10 +2,13 @@ AC_INIT([poudriere],[3.0.99],[https://fossil.etoilebsd.net/poudriere],[poudriere
AC_CONFIG_SRCDIR([configure.ac])
AM_INIT_AUTOMAKE([1.11 foreign -Wall -Wno-portability no-dist-gzip dist-xz])
AM_SILENT_RULES([yes])
+AC_CONFIG_HEADER(src/config.h)
AC_PROG_CC
AC_PROG_RANLIB
+AC_CHECK_FUNCS([strftime_l])
+
AC_CONFIG_FILES(Makefile)
AC_OUTPUT([src/etc/rc.d/poudriered])