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

Commit 20edc4a

Browse files
committed
move comment
1 parent be274f4 commit 20edc4a

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/Makefile.shlib

Lines changed: 8 additions & 7 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.43 2001/02/10 17:36:57 momjian Exp $
9+
# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.44 2001/02/10 18:46:34 momjian Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -50,6 +50,13 @@
5050
# plus any additional things you want to install. Et cetera.
5151
#
5252
# Got that? Look at src/interfaces/libpq/Makefile for an example.
53+
#
54+
# While the linker allows creation of most shared libraries,
55+
# -Bsymbolic requires resolution of all symbols, making the
56+
# compiler a better choice for shared library creation on ELF platforms.
57+
# With the linker, -Bsymbolic requires the crt1.o startup object file.
58+
# bjm 2001-02-10
59+
5360

5461
ifndef cplusplus
5562
COMPILER = $(CC) $(CFLAGS)
@@ -109,12 +116,6 @@ ifeq ($(PORTNAME), darwin)
109116
LINK.shared = $(COMPILER) $(CFLAGS_SL)
110117
endif
111118

112-
# While the linker allows creation of most shared libraries,
113-
# -Bsymbolic requires resolution of all symbols, making the
114-
# compiler a better choice for shared library creation on BSD platforms.
115-
# With the linker, -Bsymbolic requires the crt1.o startup object file.
116-
# bjm 2001-02-10
117-
118119
ifeq ($(PORTNAME), openbsd)
119120
shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION)
120121
ifdef ELF_SYSTEM

0 commit comments

Comments
 (0)