IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 29945


Ignore:
Timestamp:
Dec 6, 2010, 9:55:36 AM (15 years ago)
Author:
heather
Message:

psvideophottool initial changes

Location:
branches/haf_branches/videophot2010/ippTools/src
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/haf_branches/videophot2010/ippTools/src/Makefile.am

    r29528 r29945  
    2828        pubtool \
    2929        diffphottool \
    30         minidvodbtool
     30        minidvodbtool \
     31        videophottool
    3132
    3233pkginclude_HEADERS = \
     
    4748        pxtoolsErrorCodes.h \
    4849        pxtree.h \
     50        pxvidephot.h \
    4951        pxwarp.h
    5052
     
    7678        pubtool.h \
    7779        diffphottool.h \
    78         minidvodbtool.h
     80        minidvodbtool.h \
     81        videophottool.h
    7982
    8083lib_LTLIBRARIES = libpxtools.la
     
    100103        pxtoolsErrorCodes.c \
    101104        pxtree.c \
     105        pxvideophot.c \
    102106        pxwarp.c
    103107
     
    284288    diffphottoolConfig.c
    285289
     290videophottool_CFLAGS = $(PSLIB_CFLAGS) $(PSMODULES_CFLAGS) $(IPPDB_CFLAGS)
     291videophottool_LDADD = $(PSLIB_LIBS) $(PSMODULES_LIBS) $(IPPDB_LIBS) libpxtools.la
     292videophottool_SOURCES = \
     293    videophottool.c \
     294    videophottoolConfig.c
     295
    286296minidvodbtool_CFLAGS = $(PSLIB_CFLAGS) $(PSMODULES_CFLAGS) $(IPPDB_CFLAGS)
    287297minidvodbtool_LDADD = $(PSLIB_LIBS) $(PSMODULES_LIBS) $(IPPDB_LIBS) libpxtools.la
  • branches/haf_branches/videophot2010/ippTools/src/pxtools.h

    r28486 r29945  
    4848#include "pxmagic.h"
    4949#include "pxspace.h"
     50#include "pxvideophot.h"
    5051
    5152# define MAX_ROWS 10e9
  • branches/haf_branches/videophot2010/ippTools/src/warptool.c

    r29717 r29945  
    994994        psString thisWhere = NULL;
    995995        if (whereStr) {
    996             psStringAppend(&thisWhere, whereStr);
     996          psStringAppend(&thisWhere, "%s", whereStr);
    997997        }
    998998        psStringAppend(&thisWhere, "\nAND warpRun.label = '%s'", label);
Note: See TracChangeset for help on using the changeset viewer.