summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authorcolin <colin@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-23 22:21:30 +0000
committercolin <colin@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-23 22:21:30 +0000
commit531d63b5b9af75a185dd39d02040d0eb017efef2 (patch)
tree5fc515299f890eefefcc6c92327d57efc5595a08 /Gui
parent4ba90da0d27d1abe0f7af3e3f8b54d1cd1c92225 (diff)
downloadmpv-531d63b5b9af75a185dd39d02040d0eb017efef2.tar.bz2
mpv-531d63b5b9af75a185dd39d02040d0eb017efef2.tar.xz
fix compilation error when HAVE_FREETYPE isn't defined
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9076 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui')
-rw-r--r--Gui/mplayer/gtk/opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gui/mplayer/gtk/opts.c b/Gui/mplayer/gtk/opts.c
index 6adfd79c2a..3db66192ca 100644
--- a/Gui/mplayer/gtk/opts.c
+++ b/Gui/mplayer/gtk/opts.c
@@ -164,7 +164,7 @@ static int old_video_driver = 0;
static gboolean prHScaler( GtkWidget * widget,GdkEventMotion * event,gpointer user_data );
static void prToggled( GtkToggleButton * togglebutton,gpointer user_data );
static void prCListRow( GtkCList * clist,gint row,gint column,GdkEvent * event,gpointer user_data );
-#ifdef HAVE_FREETYPE
+#if defined( HAVE_FREETYPE ) || defined( USE_ICONV )
static void prEntry( GtkContainer * container,gpointer user_data );
#endif