mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-10-29 05:40:25 -04:00 
			
		
		
		
	 647c001321
			
		
	
	
		647c001321
		
	
	
	
	
		
			
			Install of the alsalisp binary has been disabled since 2006 (in commit8d382ccd), and building of it was disabled by default in 2018 (in commit32ceab21), so it is reasonable to assume that nobody is using it. Use within the alsa-lib project is limited to an aliases file that looks like it is intended as an example, plus some very small .alisp files associated with the SiS SI7018 PCI sound card which has not been manufactured in years. These too have not been installed since 2018 when commit32ceab21disabled building of the alsalisp binary. In preparing this change, I searched the Github issue tracker for "lisp", "alisp" and "alsalisp", and found no complaints about the above changes. I also did a Github code search for projects that might be including the `alisp.h` header and found none. Therefore I think this code can be safely deleted and nobody is likely to object. Closes: https://github.com/alsa-project/alsa-lib/pull/448 Signed-off-by: Simon Howard <fraggle@soulsphere.org> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
		
			
				
	
	
		
			97 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| bits32=
 | |
| cbits32=
 | |
| modules=
 | |
| lto=
 | |
| if [ $# -ne 0 ]; then
 | |
|   endloop=
 | |
|   while [ -z "$endloop" ]; do
 | |
|     case "$1" in
 | |
|     32)
 | |
|       bits32=yes
 | |
|       cbits32="-m32"
 | |
|       echo "Forced 32-bit library build..."
 | |
|       shift ;;
 | |
|     modules)
 | |
|       modules=yes
 | |
|       echo "Forced mixer modules build..."
 | |
|       shift ;;
 | |
|     python2)
 | |
|       python2=yes
 | |
|       echo "Forced python2 interpreter build..."
 | |
|       shift ;;
 | |
|     lto)
 | |
|       lto="-flto -flto-partition=none"
 | |
|       echo "Forced lto build..."
 | |
|       shift ;;
 | |
|     static)
 | |
|       static=yes
 | |
|       echo "Selected static build..."
 | |
|       shift ;;
 | |
|     *)
 | |
|       endloop=yes
 | |
|       ;;
 | |
|     esac
 | |
|   done
 | |
| fi
 | |
| if [ $# -ne 0 -a -z "$bit32" ]; then
 | |
|   args="$@"
 | |
| elif [ -r /etc/asound/library_args ]; then
 | |
|   args="`cat /etc/asound/library_args`"
 | |
|   if [ -z "$bits32" ]; then
 | |
|     test -r /etc/asound/library64_args && \
 | |
|       args="`cat /etc/asound/library64_args`"
 | |
|   fi
 | |
| else
 | |
|   prefix="/usr"
 | |
|   libdir="/usr/lib"
 | |
|   libdir2="/usr/lib"
 | |
|   if [ -z "$bits32" ]; then
 | |
|     test -d /usr/lib64 && libdir="/usr/lib64"
 | |
|     test -f /lib64/libasound.so.2 && libdir="/lib64"
 | |
|     test -d /usr/lib64 && libdir2="/usr/lib64"
 | |
|   else
 | |
|     test -f /lib/libasound.so.2 && libdir="/lib"
 | |
|   fi
 | |
|   args="--disable-aload --prefix=$prefix --libdir=$libdir"
 | |
|   args="$args --with-plugindir=$libdir2/alsa-lib"
 | |
|   args="$args --with-pkgconfdir=$libdir2/pkgconfig"
 | |
| fi
 | |
| 
 | |
| if [ "$modules" = "yes" ]; then
 | |
|   args="$args --enable-mixer-modules"
 | |
|   args="$args --enable-mixer-pymods"
 | |
| fi
 | |
| 
 | |
| if [ "$python2" = "yes" ]; then
 | |
|   args="$args --enable-python2"
 | |
| fi
 | |
| 
 | |
| if [ "$static" = "yes" ]; then
 | |
|   #args="$args --enable-shared=no --enable-static=yes"
 | |
|   args="$args --disable-shared"
 | |
| fi
 | |
| 
 | |
| 
 | |
| touch ltconfig
 | |
| libtoolize --force --copy --automake
 | |
| aclocal $ACLOCAL_FLAGS
 | |
| autoheader
 | |
| automake --foreign --copy --add-missing
 | |
| touch depcomp		# seems to be missing for old automake
 | |
| autoconf
 | |
| export CFLAGS="$cbits32 -O2 -Wall -W -Wunused-const-variable=0 -pipe -g $lto"
 | |
| if [ -n "$lto" ]; then
 | |
|   export AR="gcc-ar"
 | |
|   export RANLIB="gcc-ranlib"
 | |
| fi
 | |
| echo "CFLAGS=$CFLAGS"
 | |
| echo "./configure $args"
 | |
| ./configure $args || exit 1
 | |
| unset CFLAGS
 | |
| if [ -z "$GITCOMPILE_NO_MAKE" ]; then
 | |
|   make
 | |
| fi
 |