forked from Lainports/freebsd-ports
- Added RDP version 5 support. - Cut'n'paste between RDP session and X11 applications is now possible - Can connect to console on Windows 2003 servers - Added preliminary sound support - Support 15, 16 and 24-bit color depths - While I'm here [2]: - install some documentation - slightly clarify COMMENT and pkg-descr - simplify do-install target - use DATADIR and DOCSDIR in Makefile and pkg-plist PR: 57635, 58703 [1] Submitted by: Chris Knight <chris@e-easy.com.au> [1], sergei [2]
23 lines
572 B
Text
23 lines
572 B
Text
--- configure.orig Wed Oct 29 23:49:52 2003
|
|
+++ configure Thu Oct 30 11:04:20 2003
|
|
@@ -115,7 +115,7 @@
|
|
echo "CC = $cc" >>Makeconf
|
|
|
|
if $cc -v 2>&1 |grep '^gcc' >/dev/null; then
|
|
- cflags="$cflags -Wall -O2"
|
|
+ #cflags="$cflags -Wall -O2"
|
|
else
|
|
cflags="$cflags -O"
|
|
fi
|
|
@@ -291,9 +291,9 @@
|
|
esac
|
|
|
|
|
|
-echo "CFLAGS = $cflags" >>Makeconf
|
|
-echo "LDFLAGS = $ldflags" >>Makeconf
|
|
+echo "CFLAGS += $cflags" >>Makeconf
|
|
+echo "LDFLAGS += $ldflags" >>Makeconf
|
|
echo "TARGETS = $targets" >>Makeconf
|
|
|
|
echo "configure complete - now run make"
|
|
|