Răsfoiți Sursa

Changed the path to ser include files.

After moving the database library into lib/srdb1 subdirectory it is
necessary to update the relative paths to ser header files.
Jan Janak 16 ani în urmă
părinte
comite
35ba402ab2

+ 9 - 0
lib/srdb1/Makefile

@@ -0,0 +1,9 @@
+include ../../Makefile.defs
+auto_gen=
+NAME:=srdb1
+MAJOR_VER=1
+MINOR_VER=0
+BUGFIX_VER=0
+LIBS=
+
+include ../../Makefile.libs

+ 4 - 4
lib/srdb1/db.c

@@ -57,10 +57,10 @@
  * - \ref ../modules/db_unixodbc
  */
 
-#include "../dprint.h"
-#include "../sr_module.h"
-#include "../mem/mem.h"
-#include "../ut.h"
+#include "../../dprint.h"
+#include "../../sr_module.h"
+#include "../../mem/mem.h"
+#include "../../ut.h"
 #include "db_cap.h"
 #include "db_id.h"
 #include "db_pool.h"

+ 1 - 1
lib/srdb1/db_con.h

@@ -30,7 +30,7 @@
 #ifndef DB_CON_H
 #define DB_CON_H
 
-#include "../str.h"
+#include "../../str.h"
 
 
 /*! \brief

+ 3 - 3
lib/srdb1/db_id.c

@@ -28,9 +28,9 @@
  */
 
 #include "db_id.h"
-#include "../dprint.h"
-#include "../mem/mem.h"
-#include "../ut.h"
+#include "../../dprint.h"
+#include "../../mem/mem.h"
+#include "../../ut.h"
 #include <stdlib.h>
 #include <string.h>
 

+ 1 - 1
lib/srdb1/db_id.h

@@ -30,7 +30,7 @@
 #ifndef _DB_ID_H
 #define _DB_ID_H
 
-#include "../str.h"
+#include "../../str.h"
 
 /** Structure representing a database ID */
 struct db_id {

+ 1 - 1
lib/srdb1/db_key.h

@@ -30,7 +30,7 @@
 #ifndef DB_KEY_H
 #define DB_KEY_H
 
-#include "../ut.h"
+#include "../../ut.h"
 
 
 /**

+ 1 - 1
lib/srdb1/db_pool.c

@@ -27,7 +27,7 @@
  * \ingroup db
  */
 
-#include "../dprint.h"
+#include "../../dprint.h"
 #include "db_pool.h"
 
 

+ 1 - 1
lib/srdb1/db_query.c

@@ -33,7 +33,7 @@
 */
 
 #include <stdio.h>
-#include "../dprint.h"
+#include "../../dprint.h"
 #include "db_ut.h"
 #include "db_query.h"
 

+ 2 - 2
lib/srdb1/db_res.c

@@ -33,8 +33,8 @@
 #include "db_res.h"
 
 #include "db_row.h"
-#include "../dprint.h"
-#include "../mem/mem.h"
+#include "../../dprint.h"
+#include "../../mem/mem.h"
 
 #include <string.h>
 

+ 2 - 2
lib/srdb1/db_row.c

@@ -33,8 +33,8 @@
 #include "db_row.h"
 
 #include <string.h>
-#include "../dprint.h"
-#include "../mem/mem.h"
+#include "../../dprint.h"
+#include "../../mem/mem.h"
 
 /*
  * Release memory used by row

+ 2 - 2
lib/srdb1/db_ut.c

@@ -32,8 +32,8 @@
 
 #include "db_ut.h"
 
-#include "../mem/mem.h"
-#include "../dprint.h"
+#include "../../mem/mem.h"
+#include "../../dprint.h"
 #include <limits.h>
 #include </usr/include/limits.h>
 #include <errno.h>

+ 1 - 1
lib/srdb1/db_val.h

@@ -39,7 +39,7 @@
 
 #include "db_con.h"
 #include <time.h>
-#include "../str.h"
+#include "../../str.h"
 
 
 /**