diff options
author | joerg <joerg@FreeBSD.org> | 2004-12-09 06:10:47 +0800 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2004-12-09 06:10:47 +0800 |
commit | 0ada8b5625131b94fb04f53dfd35d15588ad33d5 (patch) | |
tree | f1b8d58088ee8e1c08319459abd3451068aacd55 /devel | |
parent | 023e2204a2d17d20129beadc118dcd7e94c5ea43 (diff) | |
download | freebsd-ports-gnome-0ada8b5625131b94fb04f53dfd35d15588ad33d5.tar.gz freebsd-ports-gnome-0ada8b5625131b94fb04f53dfd35d15588ad33d5.tar.zst freebsd-ports-gnome-0ada8b5625131b94fb04f53dfd35d15588ad33d5.zip |
Kill -Winline and -Werror, so this port stops from failing to build in
case today's compiler won't inline this or that function where the
author believed it could inline it.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/simulavr/Makefile | 2 | ||||
-rw-r--r-- | devel/simulavr/files/patch-configure | 22 |
2 files changed, 23 insertions, 1 deletions
diff --git a/devel/simulavr/Makefile b/devel/simulavr/Makefile index bd985f5f49b2..944cc1ecfb5f 100644 --- a/devel/simulavr/Makefile +++ b/devel/simulavr/Makefile @@ -7,7 +7,7 @@ PORTNAME= simulavr PORTVERSION= 0.1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/devel/simulavr/files/patch-configure b/devel/simulavr/files/patch-configure new file mode 100644 index 000000000000..43a96c34704d --- /dev/null +++ b/devel/simulavr/files/patch-configure @@ -0,0 +1,22 @@ +--- configure.ac.orig Mon Jan 19 00:58:13 2004 ++++ configure.ac Wed Dec 8 22:58:29 2004 +@@ -441,7 +441,7 @@ + + # If we are compiling with gcc, enable all warning and make warnings errors. + if test "$GCC" = yes; then +- ENABLE_WARNINGS="-Wall -Winline -Werror" ++ ENABLE_WARNINGS="-Wall" + fi + AC_SUBST(ENABLE_WARNINGS,$ENABLE_WARNINGS) + +--- configure.orig Mon Jan 19 00:58:28 2004 ++++ configure Wed Dec 8 22:58:03 2004 +@@ -6804,7 +6804,7 @@ + + # If we are compiling with gcc, enable all warning and make warnings errors. + if test "$GCC" = yes; then +- ENABLE_WARNINGS="-Wall -Winline -Werror" ++ ENABLE_WARNINGS="-Wall" + fi + ENABLE_WARNINGS=$ENABLE_WARNINGS + |