diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-16 16:50:54 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-07-16 16:50:54 +0000 |
commit | b59aa757205b2dc330d7864d88381c67beefb254 (patch) | |
tree | 382ba7b45c12d6115b828c8aaf76dac62e90120f /src/directory.c | |
parent | 210ab3b9716b2cc3fa70e06011de143114c430b6 (diff) | |
download | mpd-b59aa757205b2dc330d7864d88381c67beefb254.tar.gz mpd-b59aa757205b2dc330d7864d88381c67beefb254.tar.xz mpd-b59aa757205b2dc330d7864d88381c67beefb254.zip |
remove the glib library dependency
We never used many features from it, so there's no point in
keeping it and forcing people to install a non-standard library.
It may be standard on many GNU/Linux distributions, but there
are many other UNIXes out there. This makes life much easier
for people cross-compiling (like me :)
git-svn-id: https://svn.musicpd.org/mpd/trunk@4361 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/directory.c')
-rw-r--r-- | src/directory.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/directory.c b/src/directory.c index 16951dd30..1db1c862a 100644 --- a/src/directory.c +++ b/src/directory.c @@ -775,7 +775,6 @@ static int addToDirectory(Directory * directory, char * shortname, char * name) void closeMp3Directory() { freeDirectory(mp3rootDirectory); - destroyTagTracker(); } static Directory * findSubDirectory(Directory * directory,char * name) { |