diff options
author | colin <colin@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-23 22:21:30 +0000 |
---|---|---|
committer | colin <colin@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-23 22:21:30 +0000 |
commit | 531d63b5b9af75a185dd39d02040d0eb017efef2 (patch) | |
tree | 5fc515299f890eefefcc6c92327d57efc5595a08 /Gui/mplayer/gtk | |
parent | 4ba90da0d27d1abe0f7af3e3f8b54d1cd1c92225 (diff) |
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/mplayer/gtk')
-rw-r--r-- | Gui/mplayer/gtk/opts.c | 2 |
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 |