diff options
Diffstat (limited to 'tqtinterface/qt4/mkspecs/solaris-g++-64/qmake.conf')
-rw-r--r-- | tqtinterface/qt4/mkspecs/solaris-g++-64/qmake.conf | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/tqtinterface/qt4/mkspecs/solaris-g++-64/qmake.conf b/tqtinterface/qt4/mkspecs/solaris-g++-64/qmake.conf new file mode 100644 index 0000000..c9b7fc6 --- /dev/null +++ b/tqtinterface/qt4/mkspecs/solaris-g++-64/qmake.conf @@ -0,0 +1,104 @@ +# +# +# qmake configuration for solaris-g++64 +# +# The X11 header files used to be broken on Solaris until patches were +# released in early 2001 for Solaris 2.6, 7, and 8. On Solaris 2.5.1 +# or non-patched systems -fpermissive works around the incompatibility +# between GCC 2.95 or better and Solaris - but we still get warnings +# because we don't use -isystem. +# +# From the standards(5) manual page: +# The XNS4 specification is safe for use only in ILP32 (32-bit) +# environments and should not be used for LP64 (64-bit) +# application environments. Use XNS5, which has LP64-clean +# interfaces that are portable across ILP32 and LP64 environments. +# [...] +# For platforms supporting the LP64 (64-bit) programming environment +# where the SC5.0 Compilers have been installed, SUSv2-conforming LP64 +# applications using XNS5 library calls should be built with command +# lines of the form: +# c89 $(getconf XBS5_LP64_OFF64_CFLAGS) -D_XOPEN_SOURCE=500 \ +# $(getconf XBS5_LP64_OFF64_LDFLAGS) foo.c -o foo \ +# $(getconf XBS5_LP64_OFF64_LIBS) -lxnet +# So it appears that _XOPEN_SOURCE=500 should be defined when building +# 64-bit applications (on Solaris 7 and better). But then __EXTENSIONS__ +# should be defined as well to recover all the default system interface. +# + +MAKEFILE_GENERATOR = UNIX +TEMPLATE = app +CONFIG += qt warn_on release link_prl + +TQMAKE_CC = gcc +TQMAKE_LEX = flex +TQMAKE_LEXFLAGS = +TQMAKE_YACC = yacc +TQMAKE_YACCFLAGS = -d +TQMAKE_CFLAGS = -m64 -D_XOPEN_SOURCE=500 -D__EXTENSIONS__ +TQMAKE_CFLAGS_DEPS = -M +TQMAKE_CFLAGS_WARN_ON = -Wall -W +TQMAKE_CFLAGS_WARN_OFF = -w +TQMAKE_CFLAGS_RELEASE = -O2 +TQMAKE_CFLAGS_DEBUG = -g +TQMAKE_CFLAGS_SHLIB = -fPIC +TQMAKE_CFLAGS_YACC = -Wno-unused -Wno-parentheses +TQMAKE_CFLAGS_THREAD = -D_REENTRANT + +TQMAKE_CXX = g++ +TQMAKE_CXXFLAGS = $$TQMAKE_CFLAGS +TQMAKE_CXXFLAGS_DEPS = $$TQMAKE_CFLAGS_DEPS +TQMAKE_CXXFLAGS_WARN_ON = $$TQMAKE_CFLAGS_WARN_ON +TQMAKE_CXXFLAGS_WARN_OFF = $$TQMAKE_CFLAGS_WARN_OFF +TQMAKE_CXXFLAGS_RELEASE = $$TQMAKE_CFLAGS_RELEASE +TQMAKE_CXXFLAGS_DEBUG = $$TQMAKE_CFLAGS_DEBUG +TQMAKE_CXXFLAGS_SHLIB = $$TQMAKE_CFLAGS_SHLIB +TQMAKE_CXXFLAGS_YACC = $$TQMAKE_CFLAGS_YACC +TQMAKE_CXXFLAGS_THREAD = $$TQMAKE_CFLAGS_THREAD + +TQMAKE_INCDIR = +TQMAKE_LIBDIR = +TQMAKE_INCDIR_X11 = /usr/openwin/include +TQMAKE_LIBDIR_X11 = /usr/openwin/lib/sparcv9 +TQMAKE_INCDIR_QT = $(TQTDIR)/include +TQMAKE_LIBDIR_QT = $(TQTDIR)/lib +TQMAKE_INCDIR_OPENGL = /usr/openwin/include +TQMAKE_LIBDIR_OPENGL = /usr/openwin/lib/sparcv9 + +TQMAKE_LINK = g++ +TQMAKE_LINK_SHLIB = g++ +TQMAKE_LFLAGS = -m64 +TQMAKE_LFLAGS_RELEASE = +TQMAKE_LFLAGS_DEBUG = -g +TQMAKE_LFLAGS_SHLIB = -shared +TQMAKE_LFLAGS_PLUGIN = $$TQMAKE_LFLAGS_SHLIB +TQMAKE_LFLAGS_SONAME = -h$$LITERAL_WHITESPACE +TQMAKE_LFLAGS_THREAD = +TQMAKE_RPATH = -Wl,-R, + +TQMAKE_LIBS = +TQMAKE_LIBS_DYNLOAD = -ldl +TQMAKE_LIBS_X11 = -lXext -lX11 -lresolv -lsocket -lnsl +TQMAKE_LIBS_X11SM = -lSM -lICE +TQMAKE_LIBS_NIS = +TQMAKE_LIBS_QT = -lqt +TQMAKE_LIBS_TQT_THREAD = -lqt-mt +TQMAKE_LIBS_OPENGL = -lGLU -lGL -lXmu +TQMAKE_LIBS_OPENGL_QT = -lGL -lXmu +TQMAKE_LIBS_THREAD = -lpthread -lrt + +TQMAKE_TQMOC = $(TQTDIR)/bin/tqmoc +TQMAKE_UIC = $(TQTDIR)/bin/uic + +TQMAKE_AR = ar cq +TQMAKE_RANLIB = + +TQMAKE_TAR = tar -cf +TQMAKE_GZIP = gzip -9f + +TQMAKE_COPY = cp -f +TQMAKE_MOVE = mv -f +TQMAKE_DEL_FILE = rm -f +TQMAKE_DEL_DIR = rmdir +TQMAKE_CHK_DIR_EXISTS = test -d +TQMAKE_MKDIR = mkdir -p |