diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-25 15:43:14 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-25 15:43:14 +0000 |
commit | b66cb02f6528b53dc52b664ec697174d846b6514 (patch) | |
tree | e4046c77d96e2d4b42e8c95e8aa4f234e963cceb /emulators/pearpc | |
parent | - Fix fetch, project moved to Sourceforge (diff) |
- Add WITH_QT knob to enable Qt GUI
PR: ports/67174
Submitted by: Roman Bogorodskiy <bogorodskiy@inbox.ru> (maintainer)
Diffstat (limited to 'emulators/pearpc')
-rw-r--r-- | emulators/pearpc/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/emulators/pearpc/Makefile b/emulators/pearpc/Makefile index 053ae8b1c3c2..26aae716d7dc 100644 --- a/emulators/pearpc/Makefile +++ b/emulators/pearpc/Makefile @@ -21,14 +21,21 @@ CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \ LDFLAGS="-L${X11BASE}/lib" PKGMESSAGE= ${WRKDIR}/pkg-message -.include <bsd.port.pre.mk> - .if defined(WITH_OPTIMIZED_CFLAGS) CFLAGS+= -O3 -ffast-math .else CONFIGURE_ARGS+= --disable-fpo .endif +.if defined(WITH_QT) +CONFIGURE_ARGS+= --enable-gui=qt +USE_QT_VER= 3 +.else +CONFIGURE_ARGS+= --enable-gui=nogui +.endif + +.include <bsd.port.pre.mk> + # jitc_x86 is avaible only on x86 .if ${ARCH} == "i386" .if !defined(WITH_JITC) |