summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorLars-Dominik Braun <PromyLOPh@lavabit.com>2009-07-11 15:13:02 +0200
committerLars-Dominik Braun <PromyLOPh@lavabit.com>2009-07-11 15:13:02 +0200
commita34feb431bb9a8bef76fc1e069c73ded48b1f4cc (patch)
treecdb3a2f34e7cb680d7f4c3432fa5e9ce20126068 /src/main.c
parent7d76f4315eaa5ac7783c9cbb47c31a487904dbb2 (diff)
downloadpianobar-windows-a34feb431bb9a8bef76fc1e069c73ded48b1f4cc.tar.gz
pianobar-windows-a34feb431bb9a8bef76fc1e069c73ded48b1f4cc.tar.bz2
pianobar-windows-a34feb431bb9a8bef76fc1e069c73ded48b1f4cc.zip
piano: Switched to ezxml
Removes libxml2 bloat and (hopefully) most of the buggy/ugly xml code.
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c
index e9d0152..3617110 100644
--- a/src/main.c
+++ b/src/main.c
@@ -39,9 +39,6 @@ THE SOFTWARE.
/* last.fm scrobbling library */
#include <wardrobe.h>
-#include <libxml/parser.h>
-#include <libxml/tree.h>
-
#include <pthread.h>
/* pandora.com library */
@@ -85,7 +82,6 @@ int main (int argc, char **argv) {
BarTermSetEcho (0);
/* init some things */
- xmlInitParser ();
ao_initialize ();
PianoInit (&ph);
WardrobeInit (&wh);
@@ -310,7 +306,6 @@ int main (int argc, char **argv) {
PianoDestroy (&ph);
WardrobeDestroy (&wh);
ao_shutdown();
- xmlCleanupParser ();
BarSettingsDestroy (&settings);
/* restore terminal attributes, zsh doesn't need this, bash does... */