Kaydet (Commit) e5d74728 authored tarafından Rene Engelhard's avatar Rene Engelhard

fix ODK settings.mk to only set STLPORTLIB if needed

Signed-off-by: 's avatarPetr Mladek <pmladek@suse.cz>
üst b1845548
...@@ -262,14 +262,12 @@ ifeq "$(PROCTYPE)" "powerpc" ...@@ -262,14 +262,12 @@ ifeq "$(PROCTYPE)" "powerpc"
PACKAGE_LIB_DIR=linux_powerpc.plt PACKAGE_LIB_DIR=linux_powerpc.plt
UNOPKG_PLATFORM=Linux_PowerPC UNOPKG_PLATFORM=Linux_PowerPC
JAVA_PROC_TYPE=ppc JAVA_PROC_TYPE=ppc
STLPORT=yes
endif endif
ifeq "$(PROCTYPE)" "sparc" ifeq "$(PROCTYPE)" "sparc"
PACKAGE_LIB_DIR=linux_sparc.plt PACKAGE_LIB_DIR=linux_sparc.plt
UNOPKG_PLATFORM=Linux_SPARC UNOPKG_PLATFORM=Linux_SPARC
JAVA_PROC_TYPE=sparc JAVA_PROC_TYPE=sparc
STLPORT=yes
endif endif
ifeq "$(PROCTYPE)" "x86_64" ifeq "$(PROCTYPE)" "x86_64"
...@@ -503,9 +501,11 @@ PLATFORM=kfreebsd ...@@ -503,9 +501,11 @@ PLATFORM=kfreebsd
ifeq "$(PROCTYPE)" "x86_64" ifeq "$(PROCTYPE)" "x86_64"
PACKAGE_LIB_DIR=kfreebsd_x86_64.plt PACKAGE_LIB_DIR=kfreebsd_x86_64.plt
UNOPKG_PLATFORM=kFreeBSD_x86_64 UNOPKG_PLATFORM=kFreeBSD_x86_64
STLPORT=no
else else
PACKAGE_LIB_DIR=kfreebsd_x86.plt PACKAGE_LIB_DIR=kfreebsd_x86.plt
UNOPKG_PLATFORM=kFreeBSD_x86 UNOPKG_PLATFORM=kFreeBSD_x86
STLPORT=no
endif endif
else else
PLATFORM=freebsd PLATFORM=freebsd
...@@ -569,11 +569,15 @@ CPPUHELPERLIB=-luno_cppuhelper$(COMID) ...@@ -569,11 +569,15 @@ CPPUHELPERLIB=-luno_cppuhelper$(COMID)
SALHELPERLIB=-luno_salhelper$(COMID) SALHELPERLIB=-luno_salhelper$(COMID)
REGLIB=-lreg REGLIB=-lreg
STORELIB=-lstore STORELIB=-lstore
ifeq "$(STLPORT)" "yes"
ifeq "$(STLPORT_VER)" "500" ifeq "$(STLPORT_VER)" "500"
STLPORTLIB=-lstlport STLPORTLIB=-lstlport
else else
STLPORTLIB=-lstlport_gcc$(STLDEBUG) STLPORTLIB=-lstlport_gcc$(STLDEBUG)
endif endif
else
STLPORTLIB=
endif
EMPTYSTRING= EMPTYSTRING=
PATH_SEPARATOR=: PATH_SEPARATOR=:
......
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