Re: [Rts-2-devel] rts2-camd-sbigusb missing
Open source observatory control software
Brought to you by:
pkubanek
|
From: Ferran C. <fer...@gm...> - 2014-10-13 21:54:21
|
Correction. configure.ac modification must be:
AC_ARG_WITH(sbig,
[ --with-sbig path to SBIG USB CCD driver, build SBIG USB CCD
driver],
SBIG="${withval}";
LIB_SBIG="-L${SBIG} -lsbigudrv $SBIG/csbigcam.o $SBIG/csbigimg.o
-L/usr/local/lib -L/data/fits/cfitsio/lib/";
INC_SBIG="-I${SBIG} -I.ls -I/usr/include/libusb-1.0/ -I/data/fits/cfitsio
-D TARGET=7 -D ENV_LINUX=7",
[SBIG=no])
Kind regards,
Ferran
2014-10-12 22:56 GMT+02:00 Ferran Casarramona <fer...@gm...>
:
> Hi,
>
> finally I could compile rts2-camd-sbigusb
>
> I will reproduce all the step here for reference:
> -Download SBIG SDK, install driver and compile test.app to get csbigcam.o
> and csbigimg.o (needed later).
> -Modify ubuntu-rts2-install to call './configure' with --with-sbig
>
> if [ $with_db == 1 ]; then
> ./configure --without-wcs
> --with-sbig=/home/ferran/LinuxDevKit/x86/c/testapp
> else
> ./configure --without-wcs --without-pgsql
> --with-sbig=/home/ferran/LinuxDevKit/x86/c/testapp
> fi
>
> - Modify cofigure.ac file (in rts2 folder) this way (it would be great
> if this change is include in future versions of rts2)
>
> AC_ARG_WITH(sbig,
> [ --with-sbig path to SBIG USB CCD driver, build SBIG USB CCD
> driver],
> SBIG="${withval}";
> LIB_SBIG="-L${SBIG} -lsbigudrv $SBIG/csbigcam.o $SBIG/csbigimg.o
> -L/usr/local/lib -L/data/fits/cfitsio/lib/";
> INC_SBIG="-I${SBIG} -I.ls -I/usr/include/libusb-1.0/ -I/data/fits/cfitsio
> -D TARGET=ENV_LINUX",
> [SBIG=no])
>
>
> Thanks,
> Ferran Casarramona
>
>
|