diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2001-11-14 06:44:59 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2001-11-14 06:44:59 +0000 |
commit | ae82e3a406c73fcadc4bcf3ecf1e40adada3614b (patch) | |
tree | 108aa9df3f86a511e9a22b0f5e82ea0a797b3ec5 | |
parent | forced commit--this was supposed to be the log message for the (diff) |
Respect CFLAGS.
-rw-r--r-- | www/mdw/Makefile | 2 | ||||
-rw-r--r-- | www/mdw/files/patch-configure.in | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/www/mdw/Makefile b/www/mdw/Makefile index 3d5872028ea7..7b93bbeb55cb 100644 --- a/www/mdw/Makefile +++ b/www/mdw/Makefile @@ -12,7 +12,7 @@ MASTER_SITES= http://redbrick.dcu.ie/~colmmacc/mdw/ MAINTAINER= petef@FreeBSD.org -GNU_CONFIGURE= yes +USE_AUTOCONF= yes MAN1= mdw.1 diff --git a/www/mdw/files/patch-configure.in b/www/mdw/files/patch-configure.in new file mode 100644 index 000000000000..4402828d467c --- /dev/null +++ b/www/mdw/files/patch-configure.in @@ -0,0 +1,11 @@ +--- configure.in.orig Wed Nov 14 01:42:12 2001 ++++ configure.in Wed Nov 14 01:42:22 2001 +@@ -14,7 +14,7 @@ + dnl + + if test -n "$GCC"; then +- CFLAGS="-O2 -Wall -pedantic" ++ CFLAGS="$CFLAGS -Wall -pedantic" + else + case "$host_os" in + *hpux*) CFLAGS=" +O3" ;; |