File tree 3 files changed +4
-8
lines changed
3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 6
6
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
7
7
* Portions Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $PostgreSQL: pgsql/src/include/port.h,v 1.26 2004/04/30 04:14:05 momjian Exp $
9
+ * $PostgreSQL: pgsql/src/include/port.h,v 1.27 2004/04/30 17:52:07 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -201,7 +201,7 @@ extern int pqGethostbyname(const char *name,
201
201
202
202
203
203
extern struct tm * pg_localtime (const time_t * );
204
- extern struct tm * gg_gmtime (const time_t * );
204
+ extern struct tm * pg_gmtime (const time_t * );
205
205
extern char * pg_asctime (const struct tm * );
206
206
extern char * pg_ctime (const time_t * );
207
207
extern double pg_difftime (const time_t , const time_t );
Original file line number Diff line number Diff line change 4
4
# Makefile for the timezone library
5
5
6
6
# IDENTIFICATION
7
- # $PostgreSQL: pgsql/src/timezone/Makefile,v 1.4 2004/04/30 16:08:01 momjian Exp $
7
+ # $PostgreSQL: pgsql/src/timezone/Makefile,v 1.5 2004/04/30 17:52:07 momjian Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
@@ -30,7 +30,7 @@ zic: $(ZICOBJS)
30
30
$(CC ) $(CFLAGS ) $(ZICOBJS ) $(LDFLAGS ) $(LIBS ) -o $@ $(X )
31
31
32
32
install : zic
33
- zic -d $(datadir ) /timezone $(TZDATAFILES )
33
+ zic -d $(pkglibdir ) /.. /timezone $(TZDATAFILES )
34
34
35
35
clean distclean maintainer-clean :
36
36
rm -f SUBSYS.o $(OBJS ) $(ZICOBJS )
Original file line number Diff line number Diff line change @@ -88,11 +88,7 @@ static char privatehid[] = "@(#)private.h 7.53";
88
88
#include "errno.h"
89
89
#include "string.h"
90
90
#include "limits.h" /* for CHAR_BIT */
91
- #define _timezone timezone
92
- #undef timezone
93
91
#include "time.h"
94
- #define timezone _timezone
95
- #undef _timezone
96
92
#include "stdlib.h"
97
93
98
94
#if HAVE_GETTEXT - 0
You can’t perform that action at this time.
0 commit comments