Index: /trunk/ppMerge/src/ppMergeConfig.c
===================================================================
--- /trunk/ppMerge/src/ppMergeConfig.c	(revision 10486)
+++ /trunk/ppMerge/src/ppMergeConfig.c	(revision 10487)
@@ -68,6 +68,6 @@
     psFree(files);                      // Drop reference
 
-#ifdef DONT_USE_DB
-#ifndef OMIT_PSDB
+#ifndef DONT_USE_DB
+#ifdef HAVE_PSDB
     // Define database handle, if required
     config->database = pmConfigDB(config);
Index: /trunk/psLib/configure.ac
===================================================================
--- /trunk/psLib/configure.ac	(revision 10486)
+++ /trunk/psLib/configure.ac	(revision 10487)
@@ -120,7 +120,7 @@
 
 AX_LIB_MYSQL([4.1.2],
-  [PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${MYSQL_CFLAGS}"
+  [PSLIB_CFLAGS="${PSLIB_CFLAGS=} ${MYSQL_CFLAGS} -DHAVE_PSDB"
     PSLIB_LIBS="${PSLIB_LIBS=} ${MYSQL_LDFLAGS}"],
-  [PSLIB_CFLAGS="${PSLIB_CFLAGS=} -DOMIT_PSDB"]
+  [PSLIB_CFLAGS="${PSLIB_CFLAGS=}"]
 )
 
Index: /trunk/psLib/src/db/psDB.c
===================================================================
--- /trunk/psLib/src/db/psDB.c	(revision 10486)
+++ /trunk/psLib/src/db/psDB.c	(revision 10487)
@@ -12,11 +12,11 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.118 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-28 22:41:47 $
+ *  @version $Revision: 1.119 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-06 03:01:42 $
  *
  *  Copyright (C) 2005-2006  Joshua Hoblitt, University of Hawaii
  */
 
-#ifndef OMIT_PSDB
+#ifdef HAVE_PSDB
 
 #include <stdio.h>
@@ -2257,3 +2257,3 @@
 }
 
-#endif // OMIT_PSDB
+#endif // HAVE_PSDB
Index: /trunk/psLib/src/db/psDB.h
===================================================================
--- /trunk/psLib/src/db/psDB.h	(revision 10486)
+++ /trunk/psLib/src/db/psDB.h	(revision 10487)
@@ -10,6 +10,6 @@
  *  @author Joshua Hoblitt
  *
- *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-17 22:06:57 $
+ *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-06 03:01:42 $
  *
  *  Copyright 2005 Joshua Hoblitt, University of Hawaii
@@ -19,5 +19,5 @@
 #define PS_DB_H 1
 
-#ifndef OMIT_PSDB
+#ifdef HAVE_PSDB
 
 #include "psType.h"
@@ -451,5 +451,5 @@
 #else
 typedef void psDB;
-#endif // OMIT_PSDB
+#endif // HAVE_PSDB
 
 #endif // PS_DB_H
Index: /trunk/psLib/src/sys/psConfigure.c
===================================================================
--- /trunk/psLib/src/sys/psConfigure.c	(revision 10486)
+++ /trunk/psLib/src/sys/psConfigure.c	(revision 10487)
@@ -13,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-11-29 22:53:48 $
+ *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-06 03:01:42 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -49,5 +49,5 @@
 
     psStringAppend(&version, " (cvs tag %s), %s, %s with"
-                   #ifdef OMIT_PSDB
+                   #ifdef HAVE_PSDB
                    "out"
                    #endif
Index: /trunk/psModules/src/concepts/pmConcepts.c
===================================================================
--- /trunk/psModules/src/concepts/pmConcepts.c	(revision 10486)
+++ /trunk/psModules/src/concepts/pmConcepts.c	(revision 10487)
@@ -164,5 +164,5 @@
     }
 
-    #ifndef OMIT_PSDB
+    #ifdef HAVE_PSDB
     if (source & PM_CONCEPT_SOURCE_DATABASE && !(*read & PM_CONCEPT_SOURCE_DATABASE)) {
         if (p_pmConceptsReadFromDatabase(target, *specs, fpa, chip, cell, db)) {
Index: /trunk/psModules/src/concepts/pmConceptsRead.c
===================================================================
--- /trunk/psModules/src/concepts/pmConceptsRead.c	(revision 10486)
+++ /trunk/psModules/src/concepts/pmConceptsRead.c	(revision 10487)
@@ -353,5 +353,5 @@
     PS_ASSERT_PTR_NON_NULL(target, false);
 
-    #ifdef OMIT_PSDB
+    #ifndef HAVE_PSDB
 
     return false;
Index: /trunk/psModules/src/concepts/pmConceptsWrite.c
===================================================================
--- /trunk/psModules/src/concepts/pmConceptsWrite.c	(revision 10486)
+++ /trunk/psModules/src/concepts/pmConceptsWrite.c	(revision 10487)
@@ -404,5 +404,5 @@
     }
 
-    #ifdef OMIT_PSDB
+    #ifndef HAVE_PSDB
     return false;
     #else
Index: /trunk/psModules/src/config/pmConfig.c
===================================================================
--- /trunk/psModules/src/config/pmConfig.c	(revision 10486)
+++ /trunk/psModules/src/config/pmConfig.c	(revision 10487)
@@ -4,6 +4,6 @@
  *  @author EAM (IfA)
  *
- *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2006-12-05 22:04:15 $
+ *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2006-12-06 03:06:02 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -681,5 +681,5 @@
     PS_ASSERT_PTR_NON_NULL(config->site, NULL);
 
-    #ifdef OMIT_PSDB
+    #ifndef HAVE_PSDB
 
     return NULL;
