aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
-rw-r--r--po/Makefile.in.in3
2 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 42de9bde4..35f41d808 100644
--- a/configure.ac
+++ b/configure.ac
@@ -505,6 +505,10 @@ AC_HEADER_STDC
505# Check for headers that are ALWAYS required 505# Check for headers that are ALWAYS required
506AC_CHECK_HEADERS([fcntl.h math.h errno.h ctype.h limits.h stdio.h stdlib.h string.h unistd.h stdarg.h signal.h locale.h sys/stat.h sys/types.h],,AC_MSG_ERROR([Compiling GNUnet requires standard UNIX headers files])) 506AC_CHECK_HEADERS([fcntl.h math.h errno.h ctype.h limits.h stdio.h stdlib.h string.h unistd.h stdarg.h signal.h locale.h sys/stat.h sys/types.h],,AC_MSG_ERROR([Compiling GNUnet requires standard UNIX headers files]))
507 507
508
509# Check for libltdl header (#2999)
510AC_CHECK_HEADERS([ltdl.h],,AC_MSG_ERROR([Compiling GNUnet requires libltdl headers (try installing libltdl-dev)]))
511
508# Checks for headers that are only required on some systems or opional (and where we do NOT abort if they are not there) 512# Checks for headers that are only required on some systems or opional (and where we do NOT abort if they are not there)
509AC_CHECK_HEADERS([malloc.h malloc/malloc.h langinfo.h sys/param.h sys/mount.h sys/statvfs.h sys/select.h sockLib.h sys/mman.h sys/msg.h sys/vfs.h arpa/inet.h fcntl.h libintl.h netdb.h netinet/in.h netinet/in_systm.h netinet/ip.h sys/ioctl.h sys/socket.h sys/time.h unistd.h kstat.h sys/sysinfo.h kvm.h sys/file.h sys/resource.h ifaddrs.h mach/mach.h stddef.h sys/timeb.h terminos.h argz.h ucred.h endian.h sys/endian.h execinfo.h]) 513AC_CHECK_HEADERS([malloc.h malloc/malloc.h langinfo.h sys/param.h sys/mount.h sys/statvfs.h sys/select.h sockLib.h sys/mman.h sys/msg.h sys/vfs.h arpa/inet.h fcntl.h libintl.h netdb.h netinet/in.h netinet/in_systm.h netinet/ip.h sys/ioctl.h sys/socket.h sys/time.h unistd.h kstat.h sys/sysinfo.h kvm.h sys/file.h sys/resource.h ifaddrs.h mach/mach.h stddef.h sys/timeb.h terminos.h argz.h ucred.h endian.h sys/endian.h execinfo.h])
510 514
diff --git a/po/Makefile.in.in b/po/Makefile.in.in
index fef2f5ba7..5022b8b18 100644
--- a/po/Makefile.in.in
+++ b/po/Makefile.in.in
@@ -139,8 +139,7 @@ $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
139 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ 139 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
140 --files-from=$(srcdir)/POTFILES.in \ 140 --files-from=$(srcdir)/POTFILES.in \
141 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 141 --copyright-holder='$(COPYRIGHT_HOLDER)' \
142 --msgid-bugs-address="$$msgid_bugs_address" \ 142 --msgid-bugs-address="$$msgid_bugs_address"
143 --from-code=UTF-8
144 test ! -f $(DOMAIN).po || { \ 143 test ! -f $(DOMAIN).po || { \
145 if test -f $(srcdir)/$(DOMAIN).pot; then \ 144 if test -f $(srcdir)/$(DOMAIN).pot; then \
146 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ 145 sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \