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