diff options
author | Federico Di Gregorio <fog@initd.org> | 2005-03-12 06:39:47 +0000 |
---|---|---|
committer | Federico Di Gregorio <fog@initd.org> | 2005-03-12 06:39:47 +0000 |
commit | 9316c6af537b17d3ecfc70b81aa9183a7023a99b (patch) | |
tree | 197c635da0a0ed590f891707572b083e71af5e6c /scripts | |
parent | c639b92bd9c277c5504fee6cc38bd8d94414e9b1 (diff) | |
download | psycopg2-9316c6af537b17d3ecfc70b81aa9183a7023a99b.tar.gz |
Optimizations to type casting (in preparation to array support.)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/maketypes.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/maketypes.sh b/scripts/maketypes.sh index e5078ae..3ce5a62 100644 --- a/scripts/maketypes.sh +++ b/scripts/maketypes.sh @@ -37,8 +37,8 @@ echo -n generating typecast_builtins.c ... awk '/#define .+OID/ {print $2 " " $3}' "$PGTYPE" | \ python $SCRIPTSDIR/buildtypes.py >$SRCDIR/typecast_builtins.c echo " done" -echo -n generating pgversion.h ... -echo "#define PG_VERSION_MAJOR $PGMAJOR" >$SRCDIR/pgversion.h -echo "#define PG_VERSION_MINOR $PGMINOR" >>$SRCDIR/pgversion.h -echo " done" +#echo -n generating pgversion.h ... +#echo "#define PG_VERSION_MAJOR $PGMAJOR" >$SRCDIR/pgversion.h +#echo "#define PG_VERSION_MINOR $PGMINOR" >>$SRCDIR/pgversion.h +#echo " done" |