diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-03-20 02:40:28 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-03-20 02:40:28 +0000 |
commit | 83ebbfac75f8d673021a1f9837dc9a16506f0a0d (patch) | |
tree | b621e6be8c0bd2fc45b8ef9524094637f78ec334 /src | |
parent | 614fcbeba76d4ecdb08bf7b963f2e6449722479b (diff) | |
download | postgresql-83ebbfac75f8d673021a1f9837dc9a16506f0a0d.tar.gz postgresql-83ebbfac75f8d673021a1f9837dc9a16506f0a0d.zip |
Another change for FRONTEND snprintf.c.
Diffstat (limited to 'src')
-rw-r--r-- | src/port/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/port/Makefile b/src/port/Makefile index 85a690fbc26..40383ee7e1f 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -15,7 +15,7 @@ # for use only by the backend binaries # # IDENTIFICATION -# $PostgreSQL: pgsql/src/port/Makefile,v 1.22 2005/03/20 02:39:33 momjian Exp $ +# $PostgreSQL: pgsql/src/port/Makefile,v 1.23 2005/03/20 02:40:28 momjian Exp $ # #------------------------------------------------------------------------- @@ -67,6 +67,9 @@ exec_srv.o: exec.c getaddrinfo_srv.o: getaddrinfo.c $(CC) $(CFLAGS) $(subst -DFRONTEND,, $(CPPFLAGS)) -c $< -o $@ +snprintf_srv.o: snprintf.c + $(CC) $(CFLAGS) $(subst -DFRONTEND,, $(CPPFLAGS)) -c $< -o $@ + # No thread flags for server version thread_srv.o: thread.c $(CC) $(CFLAGS) $(subst -DFRONTEND,, $(CPPFLAGS)) -c $< -o $@ |