snownews.patch 843 B

123456789101112131415161718192021222324
  1. Index: Makefile
  2. --- Makefile.orig 2005-06-05 18:57:55 +0200
  3. +++ Makefile 2005-06-05 18:58:45 +0200
  4. @@ -62,7 +62,7 @@
  5. $(INSTALL) -s snownews $(DESTDIR)$(PREFIX)/bin
  6. $(INSTALL) opml2snow $(DESTDIR)$(PREFIX)/bin
  7. if [ ! -f "$(DESTDIR)$(PREFIX)/bin/snow2opml" ]; then \
  8. - ln -sf $(DESTDIR)$(PREFIX)/bin/opml2snow $(DESTDIR)$(PREFIX)/bin/snow2opml; \
  9. + ln -sf $(PREFIX)/bin/opml2snow $(DESTDIR)$(PREFIX)/bin/snow2opml; \
  10. fi;
  11. $(INSTALL) snowsync $(DESTDIR)$(PREFIX)/bin
  12. Index: conversions.c
  13. --- conversions.c.orig 2005-06-05 11:50:22 +0200
  14. +++ conversions.c 2005-06-05 18:57:55 +0200
  15. @@ -33,6 +33,7 @@
  16. #include <errno.h>
  17. #include <libxml/HTMLparser.h>
  18. #include <langinfo.h>
  19. +#include <locale.h>
  20. /* I have no idea what needs to be defined to get strptime() on glibc.
  21. * This is stolen from somewhere else and it works for me(tm).