diff -Nru verse-0.22.6/Makefile verse-0.22.7/Makefile --- verse-0.22.6/Makefile 2007-12-30 04:41:06.000000000 +0000 +++ verse-0.22.7/Makefile 2013-08-03 20:24:08.000000000 +0000 @@ -2,7 +2,9 @@ VERSE_LIB = /usr/share/verse/ VERSE_NAME = daily.verse BIN_DIR = /usr/bin -CFLAGS = -Wall -g -O2 -ansi +CFLAGS = -Wall -g -O2 -ansi $(shell dpkg-buildflags --get CFLAGS) +CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS) +LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) MAN_DIR = /usr/share/man/man1 all : verse @@ -13,7 +15,7 @@ distclean : clean verse : verse.c - gcc $(CFLAGS) -DVERSE_LIB=\"$(VERSE_LIB)$(VERSE_NAME)\" -o verse verse.c + gcc $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -DVERSE_LIB=\"$(VERSE_LIB)$(VERSE_NAME)\" -o verse verse.c strip verse install : verse $(VERSE_NAME) diff -Nru verse-0.22.6/debian/changelog verse-0.22.7/debian/changelog --- verse-0.22.6/debian/changelog 2011-09-20 19:36:23.000000000 +0000 +++ verse-0.22.7/debian/changelog 2013-08-03 20:05:54.000000000 +0000 @@ -1,3 +1,10 @@ +verse (0.22.7) unstable; urgency=low + + * Cleanup build time warnings + * Update to Standards-Version 3.9.4 (no changes) + + -- Roberto C. Sanchez Sat, 03 Aug 2013 16:05:41 -0400 + verse (0.22.6) unstable; urgency=low * Update to Standards-Version 3.9.2 (no changes) diff -Nru verse-0.22.6/debian/control verse-0.22.7/debian/control --- verse-0.22.6/debian/control 2011-09-20 19:01:47.000000000 +0000 +++ verse-0.22.7/debian/control 2013-08-03 20:05:40.000000000 +0000 @@ -2,7 +2,7 @@ Section: doc Priority: optional Maintainer: Roberto C. Sanchez -Standards-Version: 3.9.2 +Standards-Version: 3.9.4 Build-Depends: debhelper (>=5) Package: verse diff -Nru verse-0.22.6/debian/rules verse-0.22.7/debian/rules --- verse-0.22.6/debian/rules 2011-09-20 19:24:51.000000000 +0000 +++ verse-0.22.7/debian/rules 2013-08-03 20:23:33.000000000 +0000 @@ -9,8 +9,6 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -CFLAGS = -Wall -g - ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else diff -Nru verse-0.22.6/verse.c verse-0.22.7/verse.c --- verse-0.22.6/verse.c 2007-12-30 04:41:06.000000000 +0000 +++ verse-0.22.7/verse.c 2013-08-03 19:55:13.000000000 +0000 @@ -10,6 +10,7 @@ #include #include #include +#include char *file_text; /* Pointer to the verses in Memory */ char *p,*nl; /* Pointers needed for searching text */