]> git.sesse.net Git - vlc/blobdiff - configure.in
* Fixed icons location and Debian desktop menus.
[vlc] / configure.in
index 61dd05fd0a60c4868991b2258a1d515065864776..b59e7a7669ce0ecd95a8c009c2c5496b06cc4320 100644 (file)
@@ -158,8 +158,6 @@ if test x$host_os = xbeos; then
 dnl default case
 else
 
-GVLC=0
-
 AC_ARG_ENABLE(dsp,
   [  --disable-dsp           Linux /dev/dsp support (default enabled)])
 if test x$enable_dsp != xno; then
@@ -235,13 +233,12 @@ AC_ARG_ENABLE(kde,
   [if test x$enable_kde = xyes; then PLUGINS=${PLUGINS}"kde "; ALIASES=${ALIASES}"kvlc "; fi])
 AC_ARG_ENABLE(gnome,
   [  --enable-gnome          Gnome interface support (default disabled)],
-  [if test x$enable_gnome = xyes; then PLUGINS=${PLUGINS}"gnome "; GVLC=1; fi])
+  [if test x$enable_gnome = xyes; then PLUGINS=${PLUGINS}"gnome "; ALIASES=${ALIASES}"gnome-vlc "; fi])
 AC_ARG_ENABLE(gtk,
   [  --disable-gtk           Gtk+ support (default enabled)])
 if test x$enable_gtk != xno; then
   if which gtk-config; then
-    PLUGINS=${PLUGINS}"gtk "
-    GVLC=1
+    PLUGINS=${PLUGINS}"gtk "; ALIASES=${ALIASES}"gvlc "
   fi
 fi
 AC_ARG_ENABLE(x11,
@@ -257,8 +254,6 @@ AC_ARG_ENABLE(alsa,
   [  --enable-alsa           Alsa sound drivers support (Only for linux) (default disabled)],
   [if test x$enable_alsa = xyes; then AC_CHECK_HEADER(sys/asoundlib.h, AC_CHECK_LIB(asound, main, have_alsa="true", have_alsa="false"),have_alsa="false") if test $have_alsa = true; then PLUGINS=${PLUGINS}"alsa "; fi; fi])
 
-if test x$GVLC = x1 ; then ALIASES=${ALIASES}"gvlc "; fi
-
 fi
 
 AC_SUBST(SYS)