Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Pg.xs
dbivport.h
dbdimp.c
dbdimp.h
strbuf.h
strbuf.c
types.c
types.h
quote.c
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ my %opts =
NAME => 'DBD::Pg',
VERSION_FROM => 'Pg.pm',
INC => qq{-I"$POSTGRES_INCLUDE" -I"$dbi_arch_dir"},
OBJECT => 'Pg$(OBJ_EXT) dbdimp$(OBJ_EXT) quote$(OBJ_EXT) types$(OBJ_EXT)',
OBJECT => 'Pg$(OBJ_EXT) dbdimp$(OBJ_EXT) quote$(OBJ_EXT) types$(OBJ_EXT) strbuf$(OBJ_EXT)',
LIBS => ["-L\"$POSTGRES_LIB\" -lpq -lm"],
AUTHOR => 'Greg Sabino Mullane',
ABSTRACT => 'PostgreSQL database driver for the DBI module',
Expand Down
1 change: 1 addition & 0 deletions Pg.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ DBISTATE_DECLARE;
#include "types.h"
#include "dbdimp.h"
#include "quote.h"
#include "strbuf.h"

#define TLEVEL_slow (DBIS->debug & DBIc_TRACE_LEVEL_MASK)
#define TFLAGS_slow (DBIS->debug & DBIc_TRACE_FLAGS_MASK)
Expand Down
4 changes: 4 additions & 0 deletions README.dev
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@ quote.c - Various methods to help quote and dequote variables. Some of this is

quote.h - Header file for quote.c

strbuf.c - Small library for string buffer handling

strbuf.h - Header file for strbuf.c

types.c - Lists all known data types for PostgreSQL.
Can be run as a perl script to check for new types; rewrites the following:
types.h types.c Pg.xs Pg.pm t/01constants.t 99_pod.t
Expand Down
Loading