Commit 20edc4af authored by Bruce Momjian's avatar Bruce Momjian

move comment

parent be274f47
...@@ -6,7 +6,7 @@ ...@@ -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.43 2001/02/10 17:36:57 momjian Exp $ # $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.44 2001/02/10 18:46:34 momjian Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -50,6 +50,13 @@ ...@@ -50,6 +50,13 @@
# plus any additional things you want to install. Et cetera. # plus any additional things you want to install. Et cetera.
# #
# Got that? Look at src/interfaces/libpq/Makefile for an example. # Got that? Look at src/interfaces/libpq/Makefile for an example.
#
# While the linker allows creation of most shared libraries,
# -Bsymbolic requires resolution of all symbols, making the
# compiler a better choice for shared library creation on ELF platforms.
# With the linker, -Bsymbolic requires the crt1.o startup object file.
# bjm 2001-02-10
ifndef cplusplus ifndef cplusplus
COMPILER = $(CC) $(CFLAGS) COMPILER = $(CC) $(CFLAGS)
...@@ -109,12 +116,6 @@ ifeq ($(PORTNAME), darwin) ...@@ -109,12 +116,6 @@ ifeq ($(PORTNAME), darwin)
LINK.shared = $(COMPILER) $(CFLAGS_SL) LINK.shared = $(COMPILER) $(CFLAGS_SL)
endif endif
# While the linker allows creation of most shared libraries,
# -Bsymbolic requires resolution of all symbols, making the
# compiler a better choice for shared library creation on BSD platforms.
# With the linker, -Bsymbolic requires the crt1.o startup object file.
# bjm 2001-02-10
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment