diff options
author | Noriko Hosoi <nhosoi@redhat.com> | 2006-03-29 19:47:28 +0000 |
---|---|---|
committer | Noriko Hosoi <nhosoi@redhat.com> | 2006-03-29 19:47:28 +0000 |
commit | e8b95f07d9b1066e806b108d12e70986b3faa48e (patch) | |
tree | 9681289ab2a54cda8a9856616574c6b8941369af /lib | |
parent | efaa2f49914ffa64bf9cff990bb8fac72598beeb (diff) | |
download | ds-e8b95f07d9b1066e806b108d12e70986b3faa48e.tar.gz ds-e8b95f07d9b1066e806b108d12e70986b3faa48e.tar.xz ds-e8b95f07d9b1066e806b108d12e70986b3faa48e.zip |
[186642] Directory Server Makefile updates for Internal build
. removed the dependency on DBM
. Updated components' RELDATEs.
. Console jar file name adjustment: <brand>-<comp>-<dotversion>.jar
. Fix for HP-UX IPF
. Use non-branded SetupUtil; add resource file to change branding
. Updated the code to call createSIE so that the right brand is passed to SetupUtil.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libsi18n/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/libsi18n/Makefile b/lib/libsi18n/Makefile index 408ad20b..184ea578 100644 --- a/lib/libsi18n/Makefile +++ b/lib/libsi18n/Makefile @@ -74,12 +74,16 @@ else endif ifeq ($(USE_64), 1) -ifeq ($(ARCH), HPUX) - MYLDFLAG = +DA2.0W -endif -ifeq ($(ARCH), SOLARIS) + ifeq ($(ARCH), HPUX) + ifeq ($(NSOS_RELEASE),B.11.23) + MYLDFLAG += +DD64 + else + MYLDFLAG = +DA2.0W + endif + endif + ifeq ($(ARCH), SOLARIS) MYLDFLAG = -xarch=v9 -endif + endif endif ifeq ($(BUILD_MODULE), DIRECTORY) |