diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-08-08 03:00:31 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-08-08 03:00:31 +0000 |
commit | ba0d38fd89c19fe742bccfc8c4d82e7e8bbb3623 (patch) | |
tree | 180036df95ca0cf306a3429b3b8e4660eff9b5f2 /src | |
parent | 30c63f460abdfe51bd58a5370c8f4da60ffd34ea (diff) | |
download | postgresql-ba0d38fd89c19fe742bccfc8c4d82e7e8bbb3623.tar.gz postgresql-ba0d38fd89c19fe742bccfc8c4d82e7e8bbb3623.zip |
More thread.c cleanup.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index da9e85b2b1e..fd8354c3ee3 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.85 2003/08/08 02:55:08 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.86 2003/08/08 03:00:31 momjian Exp $ # #------------------------------------------------------------------------- @@ -49,10 +49,6 @@ backend_src = $(top_srcdir)/src/backend crypt.c getaddrinfo.c inet_aton.c snprintf.c strerror.c path.c thread.c: %.c : $(top_srcdir)/src/port/%.c rm -f $@ && $(LN_S) $< . -# compile this with thread flags -thread.o: thread.c - $(CC) $(CFLAGS) $(CPPFLAGS) $(THREAD_CFLAGS) -c thread.c - dllist.c: $(backend_src)/lib/dllist.c rm -f $@ && $(LN_S) $< . |