* * patchfile of , created on Mon Jun 21 22:38:05 MET DST 1993 * diff -c postgres/src/port/386bsd/port.c.PAT postgres/src/port/386bsd/port.c *** postgres/src/port/386bsd/port.c.PAT Thu Jun 17 22:14:04 1993 --- postgres/src/port/386bsd/port.c Thu Jun 17 22:22:36 1993 *************** *** 36,41 **** --- 36,42 ---- * */ + #ifndef __386BSD__ double strtod( const char * nstr, char ** endptr ) { *************** *** 340,345 **** --- 341,347 ---- *endptr= nstr; return (double)0; } + #endif /* * diff -c postgres/newconf/install.sh.PAT postgres/newconf/install.sh *** postgres/newconf/install.sh.PAT Thu Jun 17 22:13:23 1993 --- postgres/newconf/install.sh Mon Jun 21 22:36:39 1993 *************** *** 147,152 **** --- 147,153 ---- then echo "moving file $SCRIPTDIR/$i" cp $SCRIPTDIR/$i $BINDIR + chmod +x $BINDIR/$i fi done *************** *** 284,290 **** if (test ! -d data) then $TREE/bin/initdb ! if (test ?$ -ne 0) then echo "initialization of template database failed." echo "installation aborting." --- 285,291 ---- if (test ! -d data) then $TREE/bin/initdb ! if (test $? -ne 0) then echo "initialization of template database failed." echo "installation aborting." diff -c postgres/newconf/support.mk.PAT postgres/newconf/support.mk *** postgres/newconf/support.mk.PAT Thu Jun 17 22:13:24 1993 --- postgres/newconf/support.mk Thu Jun 17 22:21:25 1993 *************** *** 33,39 **** $(OD)/support/pg_uid: $(PG_UID) @ echo linking pg_uid ! @ cc -o $(OD)/support/pg_uid $(PG_UID) # ---------------- # bkifiles --- 33,39 ---- $(OD)/support/pg_uid: $(PG_UID) @ echo linking pg_uid ! @ $(CC) $(CFLAGS) -o $(OD)/support/pg_uid $(PG_UID) # ---------------- # bkifiles diff -c postgres/newconf/depends.mk.PAT postgres/newconf/depends.mk *** postgres/newconf/depends.mk.PAT Thu Jun 17 22:13:22 1993 --- postgres/newconf/depends.mk Thu Jun 17 22:20:28 1993 *************** *** 13,19 **** .c.d: @ echo collecting dependencies for $< | sed -e 's:$(OD)/::' ; \ trap 'rm -f `basename $( $(@F) .c.o: ! cc $(DEMOCCOPTS) -I../src/lib/H -c $( $(@F) .c.o: ! $(CC) $(CFLAGS) $(DEMOCCOPTS) -I../src/lib/H -c $(