Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 274211 | Differences between
and this patch

Collapse All | Expand All

(-)a/Makefile.am (-3 / +1 lines)
Lines 68-76 Link Here
68
		    test_io.c \
68
		    test_io.c \
69
		    svnrev.c
69
		    svnrev.c
70
70
71
AM_CFLAGS=          $(CFLAGS) $(FUSE_CFLAGS)
71
AM_CFLAGS=          $(FUSE_CFLAGS)
72
73
AM_LDFLAGS=         $(FUSE_LIBS)
74
72
75
svnrev.c:
73
svnrev.c:
76
			printf 'const int s3backer_svnrev = %u;\n' `svn info | grep -w Rev | sed -r 's/^.*Rev: //g'` > svnrev.c
74
			printf 'const int s3backer_svnrev = %u;\n' `svn info | grep -w Rev | sed -r 's/^.*Rev: //g'` > svnrev.c
(-)a/configure.ac (-1 / +3 lines)
Lines 9-15 Link Here
9
AC_PREFIX_DEFAULT(/usr)
9
AC_PREFIX_DEFAULT(/usr)
10
AC_PROG_MAKE_SET
10
AC_PROG_MAKE_SET
11
11
12
[CFLAGS='-g -O3 -pipe -Wall -Waggregate-return -Wcast-align -Wchar-subscripts -Wcomment -Wformat -Wimplicit -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wno-long-long -Wparentheses -Wpointer-arith -Wredundant-decls -Wreturn-type -Wswitch -Wtrigraphs -Wuninitialized -Wunused -Wwrite-strings -Wshadow -Wstrict-prototypes -Wcast-qual']
12
[CFLAGS="-g -O3 -pipe -Wall -Waggregate-return -Wcast-align -Wchar-subscripts -Wcomment -Wformat -Wimplicit -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wno-long-long -Wparentheses -Wpointer-arith -Wredundant-decls -Wreturn-type -Wswitch -Wtrigraphs -Wuninitialized -Wunused -Wwrite-strings -Wshadow -Wstrict-prototypes -Wcast-qual $CFLAGS"]
13
AC_SUBST(CFLAGS)
13
AC_SUBST(CFLAGS)
14
14
15
# Compile flags for Linux
15
# Compile flags for Linux
Lines 36-41 Link Here
36
	[AC_MSG_ERROR([required library libcrypto missing])])
36
	[AC_MSG_ERROR([required library libcrypto missing])])
37
AC_CHECK_LIB(expat, XML_ParserCreate,,
37
AC_CHECK_LIB(expat, XML_ParserCreate,,
38
	[AC_MSG_ERROR([required library expat missing])])
38
	[AC_MSG_ERROR([required library expat missing])])
39
AC_CHECK_LIB(fuse, fuse_version,,
40
	[AC_MSG_ERROR([required library libfuse missing])])
39
AC_CHECK_LIB(z, compressBound,,
41
AC_CHECK_LIB(z, compressBound,,
40
	[AC_MSG_ERROR([required library zlib missing])])
42
	[AC_MSG_ERROR([required library zlib missing])])
41
43

Return to bug 274211