6dcd944dee
adding shared install paths to QMAKE_{INCDIR,LIBDIR} in the spec has the tiny side effect that they are searched _first_, which is generally a really bad idea - they should be _last_. for that purpose, make QMAKE_{INCDIR,LIBDIR}_POST live up to their names (i.e., search them actually last) and migrate all affected specs to use them. Task-number: QTBUG-40825 Change-Id: Ie0de81c3cc49e193186d2fedd7d6c77590c8ef79 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
26 lines
779 B
Plaintext
26 lines
779 B
Plaintext
#
|
|
# qmake configuration for netbsd-g++
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
QMAKE_PLATFORM = netbsd
|
|
|
|
include(../common/bsd/bsd.conf)
|
|
|
|
# Addon software goes into /usr/pkg on NetBSD, by default we will look there
|
|
QMAKE_INCDIR_POST = /usr/pkg/include
|
|
QMAKE_LIBDIR_POST = /usr/pkg/lib
|
|
|
|
# System provided X11 defaults to X11R7 path on NetBSD since 5.0
|
|
QMAKE_INCDIR_X11 = /usr/X11R7/include
|
|
QMAKE_LIBDIR_X11 = /usr/X11R7/lib
|
|
QMAKE_INCDIR_OPENGL = /usr/X11R7/include
|
|
QMAKE_LIBDIR_OPENGL = /usr/X11R7/lib
|
|
|
|
# NetBSD requires rpath to be used for all lib dirs, see http://www.netbsd.org/docs/elf.html
|
|
QMAKE_RPATHDIR += $$QMAKE_LIBDIR $$QMAKE_LIBDIR_X11
|
|
|
|
include(../common/gcc-base-unix.conf)
|
|
include(../common/g++-unix.conf)
|
|
load(qt_config)
|