From: Dominic L?t. <ma...@us...> - 2004-05-30 10:19:30
|
Update of /cvsroot/robotflow/RobotFlow/Probes/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24933/Probes/src Modified Files: Makefile.am Log Message: updated configure scripts to compile Player blocks if requested Index: Makefile.am =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Probes/src/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile.am 27 May 2004 00:27:40 -0000 1.8 --- Makefile.am 30 May 2004 10:19:19 -0000 1.9 *************** *** 8,11 **** --- 8,15 ---- lib_LTLIBRARIES = libProbes.la + if WITH_SDL + IMAGEPROBE_SDL_SOURCE = ImageProbeSDL.cc + endif + # Sources for compilation in the library libProbes_la_SOURCES = ImageProbe.cc \ *************** *** 13,21 **** VirtualJoystick.cc \ ColorTrain.cc \ ! PTZControl.cc - if WITH_SDL - libProbes_la_SOURCES += ImageProbeSDL.cc - endif libProbes_la_LDFLAGS = -release $(LT_RELEASE) $(SDL_LIB) --- 17,22 ---- VirtualJoystick.cc \ ColorTrain.cc \ ! PTZControl.cc $(IMAGEPROBE_SDL_SOURCE) libProbes_la_LDFLAGS = -release $(LT_RELEASE) $(SDL_LIB) |