Changeset 10487
- Timestamp:
- Dec 5, 2006, 5:07:47 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
-
ppMerge/src/ppMergeConfig.c (modified) (1 diff)
-
psLib/configure.ac (modified) (1 diff)
-
psLib/src/db/psDB.c (modified) (2 diffs)
-
psLib/src/db/psDB.h (modified) (3 diffs)
-
psLib/src/sys/psConfigure.c (modified) (2 diffs)
-
psModules/src/concepts/pmConcepts.c (modified) (1 diff)
-
psModules/src/concepts/pmConceptsRead.c (modified) (1 diff)
-
psModules/src/concepts/pmConceptsWrite.c (modified) (1 diff)
-
psModules/src/config/pmConfig.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ppMerge/src/ppMergeConfig.c
r10479 r10487 68 68 psFree(files); // Drop reference 69 69 70 #if def DONT_USE_DB71 #if ndef OMIT_PSDB70 #ifndef DONT_USE_DB 71 #ifdef HAVE_PSDB 72 72 // Define database handle, if required 73 73 config->database = pmConfigDB(config); -
trunk/psLib/configure.ac
r10309 r10487 120 120 121 121 AX_LIB_MYSQL([4.1.2], 122 [PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${MYSQL_CFLAGS} "122 [PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${MYSQL_CFLAGS} -DHAVE_PSDB" 123 123 PSLIB_LIBS="${PSLIB_LIBS=} ${MYSQL_LDFLAGS}"], 124 [PSLIB_CFLAGS="${PSLIB_CFLAGS=} -DOMIT_PSDB"]124 [PSLIB_CFLAGS="${PSLIB_CFLAGS=}"] 125 125 ) 126 126 -
trunk/psLib/src/db/psDB.c
r10241 r10487 12 12 * @author Joshua Hoblitt 13 13 * 14 * @version $Revision: 1.11 8$ $Name: not supported by cvs2svn $15 * @date $Date: 2006-1 1-28 22:41:47$14 * @version $Revision: 1.119 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2006-12-06 03:01:42 $ 16 16 * 17 17 * Copyright (C) 2005-2006 Joshua Hoblitt, University of Hawaii 18 18 */ 19 19 20 #if ndef OMIT_PSDB20 #ifdef HAVE_PSDB 21 21 22 22 #include <stdio.h> … … 2257 2257 } 2258 2258 2259 #endif // OMIT_PSDB2259 #endif // HAVE_PSDB -
trunk/psLib/src/db/psDB.h
r10044 r10487 10 10 * @author Joshua Hoblitt 11 11 * 12 * @version $Revision: 1.3 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-1 1-17 22:06:57$12 * @version $Revision: 1.32 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-12-06 03:01:42 $ 14 14 * 15 15 * Copyright 2005 Joshua Hoblitt, University of Hawaii … … 19 19 #define PS_DB_H 1 20 20 21 #if ndef OMIT_PSDB21 #ifdef HAVE_PSDB 22 22 23 23 #include "psType.h" … … 451 451 #else 452 452 typedef void psDB; 453 #endif // OMIT_PSDB453 #endif // HAVE_PSDB 454 454 455 455 #endif // PS_DB_H -
trunk/psLib/src/sys/psConfigure.c
r10291 r10487 13 13 * @author Robert DeSonia, MHPCC 14 14 * 15 * @version $Revision: 1. 19$ $Name: not supported by cvs2svn $16 * @date $Date: 2006-1 1-29 22:53:48$15 * @version $Revision: 1.20 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2006-12-06 03:01:42 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 49 49 50 50 psStringAppend(&version, " (cvs tag %s), %s, %s with" 51 #ifdef OMIT_PSDB51 #ifdef HAVE_PSDB 52 52 "out" 53 53 #endif -
trunk/psModules/src/concepts/pmConcepts.c
r9695 r10487 164 164 } 165 165 166 #if ndef OMIT_PSDB166 #ifdef HAVE_PSDB 167 167 if (source & PM_CONCEPT_SOURCE_DATABASE && !(*read & PM_CONCEPT_SOURCE_DATABASE)) { 168 168 if (p_pmConceptsReadFromDatabase(target, *specs, fpa, chip, cell, db)) { -
trunk/psModules/src/concepts/pmConceptsRead.c
r9697 r10487 353 353 PS_ASSERT_PTR_NON_NULL(target, false); 354 354 355 #if def OMIT_PSDB355 #ifndef HAVE_PSDB 356 356 357 357 return false; -
trunk/psModules/src/concepts/pmConceptsWrite.c
r9730 r10487 404 404 } 405 405 406 #if def OMIT_PSDB406 #ifndef HAVE_PSDB 407 407 return false; 408 408 #else -
trunk/psModules/src/config/pmConfig.c
r10483 r10487 4 4 * @author EAM (IfA) 5 5 * 6 * @version $Revision: 1.6 2$ $Name: not supported by cvs2svn $7 * @date $Date: 2006-12-0 5 22:04:15$6 * @version $Revision: 1.63 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2006-12-06 03:06:02 $ 8 8 * 9 9 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 681 681 PS_ASSERT_PTR_NON_NULL(config->site, NULL); 682 682 683 #if def OMIT_PSDB683 #ifndef HAVE_PSDB 684 684 685 685 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
