diff options
author | Peter Eisentraut | 2000-06-30 16:11:02 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-06-30 16:11:02 +0000 |
commit | 385470f8c622ca844971b1c0a5929f80f43c9e37 (patch) | |
tree | 146093fa97fb3f7810e0d4781ab44d74b78b025a /src/bin/pgtclsh | |
parent | 3513f4d162838c5c33ae89c30eac90b95e154f69 (diff) |
Fixes for Solaris/cc suggested by <pgsql-hackers@thewrittenword.com>
Don't use DISABLE_COMPLEX_MACRO on Solaris. Don't define the
replacement function in the header file. Use -KPIC, not -K PIC.
Use CC to link C++ libraries, not ld/ar.
Eliminate file not found warnings in tcl build code.
Diffstat (limited to 'src/bin/pgtclsh')
-rw-r--r-- | src/bin/pgtclsh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pgtclsh/Makefile b/src/bin/pgtclsh/Makefile index 0aeb56a7342..08b52b4d756 100644 --- a/src/bin/pgtclsh/Makefile +++ b/src/bin/pgtclsh/Makefile @@ -5,7 +5,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.28 2000/06/27 00:31:40 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/pgtclsh/Attic/Makefile,v 1.29 2000/06/30 16:10:47 petere Exp $ # #------------------------------------------------------------------------- @@ -16,9 +16,9 @@ include ../../Makefile.global # # Include definitions from the tclConfig.sh file # -include Makefile.tcldefs +-include Makefile.tcldefs ifeq ($(USE_TK), true) -include Makefile.tkdefs +-include Makefile.tkdefs endif CFLAGS+= $(X_CFLAGS) -I$(LIBPGTCLDIR) |