Update of /cvsroot/alsa/alsa-driver In directory sc8-pr-cvs1:/tmp/cvs-serv19737
Modified Files: configure.in Makefile.conf.in Log Message: Define empty variables instead 'n' Index: configure.in =================================================================== RCS file: /cvsroot/alsa/alsa-driver/configure.in,v retrieving revision 1.135 retrieving revision 1.136 diff -u -r1.135 -r1.136 --- configure.in 22 Jan 2003 09:18:51 -0000 1.135 +++ configure.in 28 Jan 2003 10:57:13 -0000 1.136 @@ -186,7 +186,7 @@ AC_MSG_CHECKING(for $2) ac_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -I$CONFIG_SND_KERNELDIR/include" - boolchk="n" + boolchk="" AC_TRY_RUN([ #include "$CONFIG_SND_KERNELDIR/include/linux/autoconf.h" int main( void ) { @@ -217,7 +217,7 @@ dnl Check for SGI/MIPS (HAL2) support... AC_MSG_CHECKING(for SGI/MIPS (HAL2) architecture) -CONFIG_SGI="n" +CONFIG_SGI="" if test -r "$CONFIG_SND_KERNELDIR/include/asm/sgi/sgihpc.h"; then CONFIG_SGI="y" fi @@ -235,7 +235,7 @@ [ --with-moddir=/path give the path for the alsa driver kernel modules] [ [/lib/modules/<KVER>/misc]], moddir="$withval", - moddir_tree=n + moddir_tree= modsubdir="misc" # Special test for RH 5.1 if test -d /lib/modules/preferred; then @@ -314,12 +314,12 @@ dnl Check processor type... AC_MSG_CHECKING(for processor type) -CONFIG_X86=n -CONFIG_ALPHA=n -CONFIG_L3=n -CONFIG_ARM=n -CONFIG_PPC=n -CONFIG_SND_BIT32_EMUL=n +CONFIG_X86= +CONFIG_ALPHA= +CONFIG_L3= +CONFIG_ARM= +CONFIG_PPC= +CONFIG_SND_BIT32_EMUL= processor="" rm -f processor.id ac_save_CFLAGS="$CFLAGS" @@ -438,7 +438,7 @@ ;; ia64) c_opts="-Wa,-x -ffixed-r13 -mfixed-range=f10-f15,f32-f127 -funwind-tables -falign-functions=32" - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= CONFIG_IA64=y ;; alpha*) @@ -482,17 +482,17 @@ ppc) c_opts="-D__powerpc__ -fsigned-char -fno-builtin -msoft-float -ffixed-r2 -Wno-uninitialized -mmultiple -mstring" CONFIG_PPC=y - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; ppc64) c_opts="-D__powerpc__ -fsigned-char -msoft-float -pipe -Wno-uninitialized -mminimal-toc -fno-builtin" CONFIG_SND_BIT32_EMUL=m - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; mips*) c_opts="-mcpu=r4600 -G 0 -mips2 -fno-pic -mno-abicalls -mlong-calls" processor="mips" - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; sparc) IS_EGCS=n @@ -508,7 +508,7 @@ c_opts="-m32 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7" fi processor="sparc"; - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; sparc64) CC=gcc @@ -531,27 +531,27 @@ fi processor="sparc64" CONFIG_SND_BIT32_EMUL=m - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; x86_64) LD="ld -m elf_x86_64 -e stext" c_opts="-mno-red-zone -mcmodel=kernel -pipe -fno-reorder-blocks -fno-strength-reduce -finline-limit=2000" CONFIG_SND_BIT32_EMUL=m - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; sa1100) c_opts="-march=armv4 -mtune=strongarm1100 -msoft-float" CONFIG_ARM=y CONFIG_L3=y - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; parisc) c_opts="-mno-space-regs -mfast-indirect-calls -mschedule=7200 -mdisable-fpregs" - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; *) processor="unknown" - test "$CONFIG_ISA" = "probe" && CONFIG_ISA=n + test "$CONFIG_ISA" = "probe" && CONFIG_ISA= ;; esac @@ -595,7 +595,7 @@ dnl Check for ISA PnP driver in kernel... AC_MSG_CHECKING(for ISA PnP driver in kernel) -CONFIG_ISAPNP_KERNEL=n +CONFIG_ISAPNP_KERNEL= if test -r $CONFIG_SND_KERNELDIR/include/linux/isapnp.h; then AC_MSG_RESULT(yes) AC_DEFINE(CONFIG_ISAPNP_KERNEL) @@ -610,7 +610,7 @@ AC_ARG_WITH(isapnp, [ --with-isapnp=yes,no,auto driver will (not) be compiled with ISA PnP support], pnp="$withval", pnp="yes") -CONFIG_ISAPNP=n +CONFIG_ISAPNP= if test "$pnp" = "auto"; then if test -f /proc/isapnp; then CONFIG_ISAPNP=y @@ -738,7 +738,7 @@ AC_ARG_WITH(sequencer, [ --with-sequencer=yes,no driver will (not) be compiled with sequencer support], sequencer="$withval", sequencer="yes") -CONFIG_SND_SEQUENCER="n" +CONFIG_SND_SEQUENCER="" if test "$sequencer" = "yes"; then CONFIG_SND_SEQUENCER="m" fi @@ -755,7 +755,7 @@ AC_ARG_WITH(oss, [ --with-oss=no,yes driver will (not) be compiled with OSS/Free emulation], ossemul="$withval", ossemul="yes") -CONFIG_SND_OSSEMUL="n" +CONFIG_SND_OSSEMUL="" if test "$ossemul" = "yes"; then CONFIG_SND_OSSEMUL="y" fi @@ -797,8 +797,8 @@ #endif ], AC_MSG_RESULT("yes");rtcsup="m", - AC_MSG_RESULT("no");rtcsup="n", - AC_MSG_RESULT("unknown");rtcsup="n" + AC_MSG_RESULT("no");rtcsup="", + AC_MSG_RESULT("unknown");rtcsup="" ) CFLAGS="$ac_save_CFLAGS" CONFIG_SND_RTCTIMER=$rtcsup Index: Makefile.conf.in =================================================================== RCS file: /cvsroot/alsa/alsa-driver/Makefile.conf.in,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- Makefile.conf.in 22 Jan 2003 09:18:51 -0000 1.49 +++ Makefile.conf.in 28 Jan 2003 10:57:13 -0000 1.50 @@ -57,9 +57,9 @@ CONFIG_SND_SEQUENCER_OSS = y endif else - CONFIG_SND_MIXER_OSS = n - CONFIG_SND_PCM_OSS = n - CONFIG_SND_SEQUENCER_OSS = n + CONFIG_SND_MIXER_OSS = + CONFIG_SND_PCM_OSS = + CONFIG_SND_SEQUENCER_OSS = endif CONFIG_SND_RTCTIMER = @CONFIG_SND_RTCTIMER@ CONFIG_RTC = @CONFIG_RTC@ ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ Alsa-cvslog mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/alsa-cvslog