Description: Change Q_OS_LINUX ifdefs to __GLIBC__
 There are a number of #ifdef clauses in the sources that are checking
 for Linux.  This means arches such as kFreeBSD fail.  The correct check
 is for __GLIBC__
Author: Craig Small <csmall@debian.org>
Bug-Debian: http://bugs.debian.org/644592
--- a/src/TCommandLine.cpp
+++ b/src/TCommandLine.cpp
@@ -34,7 +34,7 @@
 
 {
     QString path;
-#ifdef Q_OS_LINUX
+#ifdef __GLIBC__
     path = "/usr/share/hunspell/";
 #else
     path = "./";
--- a/src/dlgProfilePreferences.cpp
+++ b/src/dlgProfilePreferences.cpp
@@ -56,7 +56,7 @@
     dictList->setSelectionMode( QAbstractItemView::SingleSelection );
     enableSpellCheck->setChecked( pH->mEnableSpellCheck );
 
-#ifdef Q_OS_LINUX
+#ifdef __GLIBC__
     QDir dir( "/usr/share/hunspell/" );
 #else
     QDir dir( "./" );
--- a/src/mudlet.cpp
+++ b/src/mudlet.cpp
@@ -96,7 +96,7 @@
 , mpMusicBox2(Phonon::createPlayer(Phonon::MusicCategory) )
 , mpMusicBox3(Phonon::createPlayer(Phonon::MusicCategory) )
 , mpMusicBox4(Phonon::createPlayer(Phonon::MusicCategory) )
-#ifdef Q_OS_LINUX,
+#ifdef __GLIBC__
     , version( "Mudlet 2.0-test4 10-25-2011" )
 #endif
 #ifdef Q_OS_MAC
--- a/src/TLuaInterpreter.cpp
+++ b/src/TLuaInterpreter.cpp
@@ -3859,7 +3859,7 @@
     return 0;
 }
 
-#ifdef Q_OS_LINUX
+#ifdef __GLIBC__
     #include <phonon>
 #else
     #include <Phonon>
