Changeset 33720 for trunk/ippTools
- Timestamp:
- Apr 5, 2012, 1:00:05 PM (14 years ago)
- Location:
- trunk/ippTools
- Files:
-
- 2 added
- 3 edited
-
share/pxadmin_create_tables.sql (modified) (1 diff)
-
share/pxadmin_drop_tables.sql (modified) (1 diff)
-
src/Makefile.am (modified) (3 diffs)
-
src/sctool.c (added)
-
src/sctool.h (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/share/pxadmin_create_tables.sql
r33119 r33720 2127 2127 ) ENGINE=innodb DEFAULT CHARSET=latin1; 2128 2128 2129 CREATE TABLE skycell ( 2130 tess_id VARCHAR(64), 2131 skycell_id VARCHAR(64), 2132 radeg float, 2133 decdeg float, 2134 glong float, 2135 glat float, 2136 width float, 2137 height float, 2138 PRIMARY KEY (tess_id, skycell_id), 2139 KEY(radeg), 2140 KEY(decdeg), 2141 KEY(glong), 2142 KEY(glat) 2143 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 2144 2129 2145 2130 2146 -- This comment line is here to avoid empty query error. -
trunk/ippTools/share/pxadmin_drop_tables.sql
r32960 r33720 108 108 DROP TABLE IF EXISTS skycalRun; 109 109 DROP TABLE IF EXISTS skycalResult; 110 DROP TABLE IF EXISTS skycell; 110 111 111 112 SET FOREIGN_KEY_CHECKS=1 -
trunk/ippTools/src/Makefile.am
r33031 r33720 31 31 mergetool \ 32 32 laptool \ 33 vptool 33 vptool \ 34 sctool 34 35 35 36 pkginclude_HEADERS = \ … … 83 84 mergetool.h \ 84 85 laptool.h \ 85 vptool.h 86 vptool.h \ 87 sctool.h 86 88 87 89 lib_LTLIBRARIES = libpxtools.la … … 316 318 vptoolConfig.c 317 319 320 sctool_CFLAGS = $(PSLIB_CFLAGS) $(PSMODULES_CFLAGS) $(IPPDB_CFLAGS) 321 sctool_LDADD = $(PSLIB_LIBS) $(PSMODULES_LIBS) $(IPPDB_LIBS) libpxtools.la 322 sctool_SOURCES = \ 323 sctool.c \ 324 sctoolConfig.c 325 318 326 clean-local: 319 327 -rm -f TAGS
Note:
See TracChangeset
for help on using the changeset viewer.
