summaryrefslogtreecommitdiff
path: root/doc/examples/Makefile.am
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-02-17 10:28:55 +0100
committerSimon Josefsson <simon@josefsson.org>2010-02-17 10:28:55 +0100
commit6c409d2b8540f8338ad227d1dae94eca21b55d56 (patch)
tree21b1dd5cc8f0e63b43a98de2af061749c8d553e2 /doc/examples/Makefile.am
parentdb3a3b93e599669172d46d81c3db3eb661640996 (diff)
downloadgnutls-6c409d2b8540f8338ad227d1dae94eca21b55d56.tar.gz
Silence gnulib warning about fseek.
Diffstat (limited to 'doc/examples/Makefile.am')
-rw-r--r--doc/examples/Makefile.am5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am
index 876af72812..a8206ac13e 100644
--- a/doc/examples/Makefile.am
+++ b/doc/examples/Makefile.am
@@ -26,6 +26,11 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/libextra/includes \
-I$(top_srcdir)/gl -I$(top_builddir)/gl
+# Gnulib warns and suggests use of fseeko instead of fseek, which is
+# used in ex-cert-select.c, but certificate files will not be > 4 GB,
+# so we just silence the warning instead of fixing the code here.
+AM_CPPFLAGS += -D_GL_NO_LARGE_FILES
+
AM_LDFLAGS = -no-install
LDADD = libexamples.la \
../../lib/libgnutls.la \