File:  [LON-CAPA] / loncom / homework / caparesponse / commands
Revision 1.14: download - view: text, annotated - select for diffs
Tue Jul 1 17:57:08 2003 UTC (20 years, 10 months ago) by albertel
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_X, version_2_8_99_1, version_2_8_99_0, version_2_8_2, version_2_8_1, version_2_8_0, version_2_7_X, version_2_7_99_1, version_2_7_99_0, version_2_7_1, version_2_7_0, version_2_6_X, version_2_6_99_1, version_2_6_99_0, version_2_6_3, version_2_6_2, version_2_6_1, version_2_6_0, version_2_5_X, version_2_5_99_1, version_2_5_99_0, version_2_5_2, version_2_5_1, version_2_5_0, version_2_4_X, version_2_4_99_0, version_2_4_2, version_2_4_1, version_2_4_0, version_2_3_X, version_2_3_99_0, version_2_3_2, version_2_3_1, version_2_3_0, version_2_2_X, version_2_2_99_1, version_2_2_99_0, version_2_2_2, version_2_2_1, version_2_2_0, version_2_1_X, version_2_1_99_3, version_2_1_99_2, version_2_1_99_1, version_2_1_99_0, version_2_1_3, version_2_1_2, version_2_1_1, version_2_1_0, version_2_11_0_RC3, version_2_11_0_RC2, version_2_11_0_RC1, version_2_11_0, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, version_2_0_X, version_2_0_99_1, version_2_0_2, version_2_0_1, version_2_0_0, version_1_99_3, version_1_99_2, version_1_99_1_tmcc, version_1_99_1, version_1_99_0_tmcc, version_1_99_0, version_1_3_X, version_1_3_3, version_1_3_2, version_1_3_1, version_1_3_0, version_1_2_X, version_1_2_99_1, version_1_2_99_0, version_1_2_1, version_1_2_0, version_1_1_X, version_1_1_99_5, version_1_1_99_4, version_1_1_99_3, version_1_1_99_2, version_1_1_99_1, version_1_1_99_0, version_1_1_3, version_1_1_2, version_1_1_1, version_1_1_0, version_1_0_99_3, version_1_0_99_2, version_1_0_99_1, version_1_0_99, version_1_0_3, version_1_0_2, version_1_0_1, version_1_0_0, version_0_99_5, version_0_99_4, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, bz6209-base, bz6209, bz5969, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, GCI_2, GCI_1, BZ5971-printing-apage, BZ5434-fox, BZ4492-merge, BZ4492-feature_horizontal_radioresponse, BZ4492-feature_Support_horizontal_radioresponse, BZ4492-Support_horizontal_radioresponse
- works withj RH9 now

CAPADIR=../../../CAPA

if test -f /etc/redhat-release
then
	if rpm -q swig
	then
		echo "Swig found.  Assuming it works..."
	else
		echo "ERROR ERROR: Swig must exist but doesn't!!!"
		echo "To get swig, go to"
		echo "http://install.lon-capa.org/3.1/SupplementalRPMS"
		echo "Install this RPM, swig-1.1p5-3.i386.rpm"
		exit 1
	fi
	if test -e /usr/include/asm
	then
		echo ""
	else
		echo "ERROR. You are missing a necessary symbolic link."
		echo "You should type, as superuser, a command like this:"
                echo "   ln -s /usr/src/linux/include/asm /usr/include/asm"
		exit 1
	fi
	if test -e /usr/include/linux
	then
		echo ""
	else
		echo "ERROR. You are missing a necessary symbolic link."
		echo "You should type, as superuser, a command like this:"
                echo "   ln -s /usr/src/linux/include/linux /usr/include/linux"
		exit 1
	fi
fi
if test -f Makefile
then
	make -f Makefile clean
fi
mkdir capaFunctions
path=`pwd`
cd $CAPADIR/pProj
make ARCH=LONCAPA libcapa
cd $path
cp $CAPADIR/pProj/LONCAPA/*.o capaFunctions
swig -perl5 capa.i 
dist=`perl ../../build/distprobe`
if [[ $dist == "redhat8" || $dist == "redhat9" ]] 
then
	cat capa_wrap.c | perl -pe '$_=~s-SWIGEXPORT\(void,boot_capa\)\(CV\* cv\)\;-SWIGEXPORT\(void,boot_capa\)\(pTHX_ CV\* cv\)\;-;' > capa_wrap.c.new
	mv capa_wrap.c.new capa_wrap.c
fi
cp Makefile.PL Makefile.pl
perl Makefile.PL 
make -f Makefile 
cp blib/arch/auto/capa/capa.so . 
perl capa.pm     

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>