Remove protcol option buttons.
This commit is contained in:
parent
a4b348f48f
commit
fd866b4580
@ -6,7 +6,7 @@
|
|||||||
# Copyright (c) 1998, Regents of the University of California
|
# Copyright (c) 1998, Regents of the University of California
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# IDENTIFICATION
|
||||||
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.38 2001/02/04 14:09:33 petere Exp $
|
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.39 2001/02/10 16:25:10 momjian Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -112,7 +112,7 @@ endif
|
|||||||
ifeq ($(PORTNAME), openbsd)
|
ifeq ($(PORTNAME), openbsd)
|
||||||
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||||
ifdef ELF_SYSTEM
|
ifdef ELF_SYSTEM
|
||||||
LINK.shared = $(LD) -x -Bshareable -soname $(soname)
|
LINK.shared = $(COMPILER) -shared -Wl,-x,-soname,$(soname)
|
||||||
else
|
else
|
||||||
LINK.shared = $(LD) -x -Bshareable -Bforcearchive
|
LINK.shared = $(LD) -x -Bshareable -Bforcearchive
|
||||||
endif
|
endif
|
||||||
@ -121,7 +121,7 @@ endif
|
|||||||
ifeq ($(PORTNAME), bsdi)
|
ifeq ($(PORTNAME), bsdi)
|
||||||
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||||
ifeq ($(DLSUFFIX), .so)
|
ifeq ($(DLSUFFIX), .so)
|
||||||
LINK.shared = $(LD) -shared -soname $(soname)
|
LINK.shared = $(COMPILER) -shared -Wl,-soname,$(soname)
|
||||||
endif
|
endif
|
||||||
ifeq ($(DLSUFFIX), .o)
|
ifeq ($(DLSUFFIX), .o)
|
||||||
LINK.shared = shlicc -O $(LDREL)
|
LINK.shared = shlicc -O $(LDREL)
|
||||||
@ -131,7 +131,7 @@ endif
|
|||||||
ifeq ($(PORTNAME), freebsd)
|
ifeq ($(PORTNAME), freebsd)
|
||||||
ifdef ELF_SYSTEM
|
ifdef ELF_SYSTEM
|
||||||
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION)
|
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION)
|
||||||
LINK.shared = $(LD) -x -shared -soname $(soname)
|
LINK.shared = $(COMPILER) -shared -Wl,-x,-soname,$(soname)
|
||||||
else
|
else
|
||||||
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||||
LINK.shared = $(LD) -x -Bshareable -Bforcearchive
|
LINK.shared = $(LD) -x -Bshareable -Bforcearchive
|
||||||
@ -165,13 +165,12 @@ endif
|
|||||||
|
|
||||||
ifeq ($(PORTNAME), solaris)
|
ifeq ($(PORTNAME), solaris)
|
||||||
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
|
||||||
LINK.shared = $(COMPILER) -G
|
|
||||||
ifeq ($(with_gnu_ld), yes)
|
ifeq ($(with_gnu_ld), yes)
|
||||||
LINK.shared += -Wl,-soname,$(soname)
|
LINK.shared = $(COMPILER) -G -Wl,-soname,$(soname)
|
||||||
else
|
else
|
||||||
LINK.shared += -Wl,-h,$(soname)
|
LINK.shared = $(COMPILER) -G -Wl,-h,$(soname)
|
||||||
endif
|
endif
|
||||||
SHLIB_LINK += -lm -lc
|
SHLIB_LINK = $(COMPILER) -G -lm -lc
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(PORTNAME), osf)
|
ifeq ($(PORTNAME), osf)
|
||||||
|
@ -144,13 +144,6 @@ BEGIN
|
|||||||
BS_AUTOCHECKBOX | WS_TABSTOP,130,10,85,10
|
BS_AUTOCHECKBOX | WS_TABSTOP,130,10,85,10
|
||||||
CONTROL "Show System &Tables",DS_SHOWSYSTEMTABLES,"Button",
|
CONTROL "Show System &Tables",DS_SHOWSYSTEMTABLES,"Button",
|
||||||
BS_AUTOCHECKBOX | WS_TABSTOP,25,25,85,10
|
BS_AUTOCHECKBOX | WS_TABSTOP,25,25,85,10
|
||||||
GROUPBOX "Protocol",IDC_STATIC,15,40,180,25
|
|
||||||
CONTROL "6.4+",DS_PG64,"Button",BS_AUTORADIOBUTTON | WS_GROUP,25,
|
|
||||||
50,35,10
|
|
||||||
CONTROL "6.3",DS_PG63,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
|
|
||||||
75,50,26,10
|
|
||||||
CONTROL "6.2",DS_PG62,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,
|
|
||||||
130,50,26,10
|
|
||||||
GROUPBOX "OID Options",IDC_STATIC,15,70,180,25
|
GROUPBOX "OID Options",IDC_STATIC,15,70,180,25
|
||||||
CONTROL "Show &Column",DS_SHOWOIDCOLUMN,"Button",BS_AUTOCHECKBOX |
|
CONTROL "Show &Column",DS_SHOWOIDCOLUMN,"Button",BS_AUTOCHECKBOX |
|
||||||
WS_GROUP | WS_TABSTOP,25,81,59,10
|
WS_GROUP | WS_TABSTOP,25,81,59,10
|
||||||
|
Loading…
x
Reference in New Issue
Block a user