diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-11-25 18:57:36 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-11-25 18:57:36 +0000 |
commit | d1868e9f768136f3dfdea75ea43233568296b292 (patch) | |
tree | 30136870c2dc033247f9f445ace777f66c5bc4dd /comms | |
parent | 349dcec075e12840de51f63c3051d31d656293e3 (diff) | |
download | ports-d1868e9f768136f3dfdea75ea43233568296b292.tar.gz ports-d1868e9f768136f3dfdea75ea43233568296b292.zip |
- AMD64 has no APM
- Revert logic, i386 seems to be the only ARCH with APM
Submitted by: Adriaan de Groot
Approved by: portmgr (marcus)
Notes
Notes:
svn path=/head/; revision=94785
Diffstat (limited to 'comms')
-rw-r--r-- | comms/kremotecontrol/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/kremotecontrol/Makefile b/comms/kremotecontrol/Makefile index 859e72f5166a..9377ff6c1376 100644 --- a/comms/kremotecontrol/Makefile +++ b/comms/kremotecontrol/Makefile @@ -28,10 +28,10 @@ USE_REINPLACE= yes INSTALLS_SHLIB= yes LDCONFIG_DIRS+= %%PREFIX%%/lib %%PREFIX%%/lib/kde3 -#klaptop doesn't like alpha and ia64 because they don't support apm -.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "ia64") +#klaptop needs APM, which is i386 only +.if ${MACHINE_ARCH} != "i386" WITHOUT_KLAPTOP =yes -.endif # ${MACHINE_ARCH} == "alpha" +.endif .if defined(WITHOUT_KLAPTOP) DO_NOT_COMPILE+=klaptopdaemon |