mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 15:53:13 -05:00
Subject: [PATCHES] port patch: ultrix4 ultrix4 doesn't compile without this. this also fixes a problem with dynamic loading (ultrix relocatable objects must be loaded with -G 0).
9 lines
171 B
Makefile
9 lines
171 B
Makefile
# install creates intermediate directories
|
|
NO_BEFOREINSTL= true
|
|
SHELL=/bin/sh5
|
|
|
|
#
|
|
# "-G 0" works for both DEC cc and GNU cc.
|
|
#
|
|
%.so: %.c
|
|
$(CC) -c -G 0 $(CFLAGS) -o $@ $<
|