|
Lines 4-9
Link Here
|
| 4 |
## Copyright (c) 1999-2011 International Business Machines Corporation and |
4 |
## Copyright (c) 1999-2011 International Business Machines Corporation and |
| 5 |
## others. All Rights Reserved. |
5 |
## others. All Rights Reserved. |
| 6 |
|
6 |
|
|
|
7 |
|
| 8 |
SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO) |
| 9 |
FINAL_SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO_TARGET_VERSION).$(SO) |
| 10 |
MIDDLE_SO_TARGET = $(LIBDIR)/$(LIBICU)$(TARGET_STUBNAME)$(ICULIBSUFFIX).$(SO_TARGET_VERSION_MAJOR).$(SO) |
| 11 |
|
| 12 |
IS_DARWIN = yes |
| 13 |
|
| 7 |
## Flags for position independent code |
14 |
## Flags for position independent code |
| 8 |
SHAREDLIBCFLAGS = -dynamic |
15 |
SHAREDLIBCFLAGS = -dynamic |
| 9 |
SHAREDLIBCXXFLAGS = -dynamic |
16 |
SHAREDLIBCXXFLAGS = -dynamic |
|
Lines 28-34
Link Here
|
| 28 |
ifeq ($(ENABLE_RPATH),YES) |
35 |
ifeq ($(ENABLE_RPATH),YES) |
| 29 |
LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) |
36 |
LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) |
| 30 |
else |
37 |
else |
| 31 |
LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(notdir $(MIDDLE_SO_TARGET)) |
38 |
LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO_TARGET_VERSION) -install_name $(libdir)/$(notdir $(MIDDLE_SO_TARGET)) |
| 32 |
endif |
39 |
endif |
| 33 |
|
40 |
|
| 34 |
## Compiler switch to embed a runtime search path |
41 |
## Compiler switch to embed a runtime search path |