comparison configure.ac @ 1425:504534b687c0 trunk

[svn] - better quoting
author nenolod
date Tue, 18 Jul 2006 16:28:43 -0700
parents 360ab7d8f221
children bbd5869239e5
comparison
equal deleted inserted replaced
1424:7288721a34df 1425:504534b687c0
889 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86") 889 AM_CONDITIONAL(ARCH_X86, test "x$arch_type" = "xix86")
890 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes) 890 AM_CONDITIONAL(USE_X86ASM, test "x$x86_asm" = xyes)
891 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes) 891 AM_CONDITIONAL(HAVE_SOLARIS, test "x$have_solaris" = xyes)
892 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes) 892 AM_CONDITIONAL(HAVE_SUN, test "x$have_sun" = xyes)
893 893
894 plugindir=$libdir/audacious 894 plugindir="$libdir/audacious"
895 AC_SUBST(plugindir) 895 AC_SUBST(plugindir)
896 896
897 if test "x$enable_one_plugin_dir" = "xyes"; then 897 if test "x$enable_one_plugin_dir" = "xyes"; then
898 pluginsubs="\\\"Plugins\\\"" 898 pluginsubs="\\\"Plugins\\\""
899 INPUT_PLUGIN_DIR=Plugins 899 INPUT_PLUGIN_DIR=Plugins
920 dnl XXX Work around some autoconf bugs. 920 dnl XXX Work around some autoconf bugs.
921 if test "$prefix" = "NONE"; then 921 if test "$prefix" = "NONE"; then
922 prefix="${ac_default_prefix}" 922 prefix="${ac_default_prefix}"
923 fi 923 fi
924 924
925 if test -z $datadir; then 925 if test -z "$datadir"; then
926 datadir=${prefix}/share 926 datadir="${prefix}/share"
927 fi 927 fi
928 928
929 localedir=$datadir/locale 929 localedir="$datadir/locale"
930 AC_SUBST(localedir) 930 AC_SUBST(localedir)
931 931
932 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\"" 932 BEEP_DEFINES="$CFLAGS -DDATA_DIR=\\\"$datadir/audacious\\\" -DPLUGIN_DIR=\\\"$plugindir\\\" -DPLUGINSUBS=$pluginsubs -DLOCALEDIR=\\\"$localedir\\\""
933 CFLAGS="$CFLAGS $EXTRA_CFLAGS" 933 CFLAGS="$CFLAGS $EXTRA_CFLAGS"
934 934