diff options
author | jmz <jmz@FreeBSD.org> | 2000-12-22 05:03:38 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2000-12-22 05:03:38 +0800 |
commit | 1c24817d2239d0ba571fea90de2ccdb8f211460a (patch) | |
tree | a0ce573f344030dbba24fd2cd488c94745877c3a /x11/XFree86-4 | |
parent | fe6927d59a4974aae2eb857b9378e3fc2ad18af5 (diff) | |
download | freebsd-ports-gnome-1c24817d2239d0ba571fea90de2ccdb8f211460a.tar.gz freebsd-ports-gnome-1c24817d2239d0ba571fea90de2ccdb8f211460a.tar.zst freebsd-ports-gnome-1c24817d2239d0ba571fea90de2ccdb8f211460a.zip |
One more patch is needed to ensure the X11 build uses centrally
specified CFLAGS all over. Without this, no optimization is used AT ALL
for some files (libraries).
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'x11/XFree86-4')
-rw-r--r-- | x11/XFree86-4/Makefile | 2 | ||||
-rw-r--r-- | x11/XFree86-4/files/patch-c2 | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/x11/XFree86-4/Makefile b/x11/XFree86-4/Makefile index 2f3fe98435b0..00c7368fe8a7 100644 --- a/x11/XFree86-4/Makefile +++ b/x11/XFree86-4/Makefile @@ -7,7 +7,7 @@ PORTNAME= XFree86 PORTVERSION= 4.0.2 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XFREE} MASTER_SITE_SUBDIR= ${PORTVERSION} diff --git a/x11/XFree86-4/files/patch-c2 b/x11/XFree86-4/files/patch-c2 new file mode 100644 index 000000000000..4cd2f61d841a --- /dev/null +++ b/x11/XFree86-4/files/patch-c2 @@ -0,0 +1,9 @@ + +--- config/cf/Library.tmpl Wed Oct 13 00:20:41 1999 ++++ config/cf/Library.tmpl Thu Dec 21 09:22:14 2000 +@@ -69,3 +69,3 @@ + CLIBDEBUGFLAGS = LibraryDebugOpt +- CFLAGS = $(CDEBUGFLAGS) $(CLIBDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(ALLDEFINES) ++ CFLAGS += $(CDEBUGFLAGS) $(CLIBDEBUGFLAGS) $(CCOPTIONS) $(THREADS_CFLAGS) $(ALLDEFINES) + # if defined(LargePICTable) && LargePICTable && defined(LargePositionIndependentCFlags) + |