Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fd866b4

Browse files
committed
Remove protcol option buttons.
1 parent a4b348f commit fd866b4

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed

src/Makefile.shlib

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 1998, Regents of the University of California
77
#
88
# IDENTIFICATION
9-
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.38 2001/02/04 14:09:33 petere Exp $
9+
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.39 2001/02/10 16:25:10 momjian Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -112,7 +112,7 @@ endif
112112
ifeq ($(PORTNAME), openbsd)
113113
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
114114
ifdef ELF_SYSTEM
115-
LINK.shared = $(LD) -x -Bshareable -soname $(soname)
115+
LINK.shared = $(COMPILER) -shared -Wl,-x,-soname,$(soname)
116116
else
117117
LINK.shared = $(LD) -x -Bshareable -Bforcearchive
118118
endif
@@ -121,7 +121,7 @@ endif
121121
ifeq ($(PORTNAME), bsdi)
122122
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
123123
ifeq ($(DLSUFFIX), .so)
124-
LINK.shared = $(LD) -shared -soname $(soname)
124+
LINK.shared = $(COMPILER) -shared -Wl,-soname,$(soname)
125125
endif
126126
ifeq ($(DLSUFFIX), .o)
127127
LINK.shared = shlicc -O $(LDREL)
@@ -131,7 +131,7 @@ endif
131131
ifeq ($(PORTNAME), freebsd)
132132
ifdef ELF_SYSTEM
133133
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION)
134-
LINK.shared = $(LD) -x -shared -soname $(soname)
134+
LINK.shared = $(COMPILER) -shared -Wl,-x,-soname,$(soname)
135135
else
136136
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
137137
LINK.shared = $(LD) -x -Bshareable -Bforcearchive
@@ -165,13 +165,12 @@ endif
165165

166166
ifeq ($(PORTNAME), solaris)
167167
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
168-
LINK.shared = $(COMPILER) -G
169168
ifeq ($(with_gnu_ld), yes)
170-
LINK.shared += -Wl,-soname,$(soname)
169+
LINK.shared = $(COMPILER) -G -Wl,-soname,$(soname)
171170
else
172-
LINK.shared += -Wl,-h,$(soname)
171+
LINK.shared = $(COMPILER) -G -Wl,-h,$(soname)
173172
endif
174-
SHLIB_LINK += -lm -lc
173+
SHLIB_LINK = $(COMPILER) -G -lm -lc
175174
endif
176175

177176
ifeq ($(PORTNAME), osf)

src/interfaces/odbc/psqlodbc.rc

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,6 @@ BEGIN
144144
BS_AUTOCHECKBOX | WS_TABSTOP,130,10,85,10
145145
CONTROL "Show System &Tables",DS_SHOWSYSTEMTABLES,"Button",
146146
BS_AUTOCHECKBOX | WS_TABSTOP,25,25,85,10
147-
GROUPBOX "Protocol",IDC_STATIC,15,40,180,25
148-
CONTROL "6.4+",DS_PG64,"Button",BS_AUTORADIOBUTTON | WS_GROUP,25,
149-
50,35,10
150-
CONTROL "6.3",DS_PG63,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
151-
75,50,26,10
152-
CONTROL "6.2",DS_PG62,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
153-
130,50,26,10
154147
GROUPBOX "OID Options",IDC_STATIC,15,70,180,25
155148
CONTROL "Show &Column",DS_SHOWOIDCOLUMN,"Button",BS_AUTOCHECKBOX |
156149
WS_GROUP | WS_TABSTOP,25,81,59,10

0 commit comments

Comments
 (0)