diff options
Diffstat (limited to 'devel/qmake4/files')
-rw-r--r-- | devel/qmake4/files/Makefile.bsd | 16 | ||||
-rw-r--r-- | devel/qmake4/files/qconfig.cpp | 3 |
2 files changed, 12 insertions, 7 deletions
diff --git a/devel/qmake4/files/Makefile.bsd b/devel/qmake4/files/Makefile.bsd index 08ccc6fb6d8c..9d6eac70db42 100644 --- a/devel/qmake4/files/Makefile.bsd +++ b/devel/qmake4/files/Makefile.bsd @@ -9,19 +9,20 @@ NO_MAN= true # qmake.1 anyone? .PATH: ${.CURDIR} ${.CURDIR:H}/src/corelib/tools ${.CURDIR:H}/src/corelib/io \ ${.CURDIR:H}/src/corelib/global ${.CURDIR:H}/src/corelib/plugin \ - ${.CURDIR:H}/src/corelib/kernel ${.CURDIR:H}/src/3rdparty/md5 \ - ${.CURDIR:H}/src/3rdparty/md4 ${.CURDIR:H}/src/3rdparty/sha1 \ - ${.CURDIR:H}/src/script + ${.CURDIR:H}/src/corelib/kernel ${.CURDIR:H}/src/corelib/codecs \ + ${.CURDIR:H}/src/corelib/xml ${.CURDIR:H}/src/3rdparty/md4 \ + ${.CURDIR:H}/src/3rdparty/md5 ${.CURDIR:H}/src/3rdparty/sha1 CXXFLAGS+=-I${.CURDIR:H}/mkspecs/freebsd-g++ -.for s in src/corelib/arch/generic src/global src/tools src/kernel src/codecs \ +.for s in src/corelib/arch/generic src/corelib/global src/corelib/tools \ + src/corelib/kernel src/corelib/codecs \ src/3rdparty/md5 src/3rdparty/md4 src/3rdparty/sha1 \ - src/script include/QtCore include + include/QtCore include CXXFLAGS+=-I${.CURDIR:H}/$s .endfor -.for g in /. /unix /win32 /mac +.for g in /. /unix /win32 /mac /symbian .PATH: ${.CURDIR}/generators$g CXXFLAGS+=-I${.CURDIR}/generators$g .endfor @@ -30,7 +31,8 @@ CXXFLAGS+=-I. -I"${FILESDIR}" CXXFLAGS+=-DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT \ -DQT_NO_STL -DQT_BUILD_QMAKE -DQT_NO_COMPRESS -DHAVE_QCONFIG_CPP \ - -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT -DQMAKE_OPENSOURCE_EDITION + -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT \ + -DQT_BOOTSTRAPPED -DQMAKE_OPENSOURCE_EDITION # I guess, qconfig.cpp used to be optional, but no longer is -- due to # bit-rot in Qt sources. So we still have to compile it, but, by not diff --git a/devel/qmake4/files/qconfig.cpp b/devel/qmake4/files/qconfig.cpp index d662b424fce0..bcbbe10ff17b 100644 --- a/devel/qmake4/files/qconfig.cpp +++ b/devel/qmake4/files/qconfig.cpp @@ -4,6 +4,9 @@ * The default prefix (/ usr / local) is dynamicly replaced * at configure time. */ +/* Installation date */ +static const char qt_configure_installation [12+11] = "qt_instdate=TODAY"; + #define QT_CONFIGURE_LICENSEE "Open Source"; #define QT_CONFIGURE_LICENSED_PRODUCTS "OpenSource"; #define QT_CONFIGURE_PREFIX_PATH "/usr/local"; |