summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-11-20 23:23:10 +0000
committerAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-11-20 23:23:10 +0000
commit2ee732eaeeed10b5fab41f27f0d2e90cc2286d86 (patch)
tree99de8655ffbb7f0e8158d993b7e3153167883291 /libexec
parent9bfb32fcb85b8cd467e4de8f4df1df52ade09c8b (diff)
remove -Werror from userland builds, to give us a chance to
use more verbose warning options if desired. ok millert@, henning@, david@
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ftp-proxy/Makefile4
-rw-r--r--libexec/ld.so/Makefile4
-rw-r--r--libexec/ld.so/ldconfig/Makefile4
-rw-r--r--libexec/ld.so/ldd/Makefile4
-rw-r--r--libexec/login_krb5-or-pwd/Makefile4
-rw-r--r--libexec/login_krb5/Makefile4
6 files changed, 12 insertions, 12 deletions
diff --git a/libexec/ftp-proxy/Makefile b/libexec/ftp-proxy/Makefile
index 4a8855fb0ff..76eb9ec5a9e 100644
--- a/libexec/ftp-proxy/Makefile
+++ b/libexec/ftp-proxy/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.3 2003/01/23 23:15:16 djm Exp $
+# $OpenBSD: Makefile,v 1.4 2003/11/20 23:23:09 avsm Exp $
# @(#)Makefile 8.2 (Berkeley) 4/4/94
PROG= ftp-proxy
-CFLAGS+=-Wall -Werror
+CFLAGS+=-Wall
SRCS= ftp-proxy.c getline.c util.c
MAN= ftp-proxy.8
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile
index 4b9c2247ab1..89966ce86e7 100644
--- a/libexec/ld.so/Makefile
+++ b/libexec/ld.so/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.22 2003/07/06 20:03:57 deraadt Exp $
+# $OpenBSD: Makefile,v 1.23 2003/11/20 23:23:09 avsm Exp $
SUBDIR=ldconfig ldd
VPATH=${.CURDIR}/../../lib/libc/string
@@ -17,7 +17,7 @@ MAN= ld.so.1
.include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc"
.PATH: ${.CURDIR}/${MACHINE_ARCH}
-CFLAGS += -Werror -Wall
+CFLAGS += -Wall
CFLAGS += -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} \
-Dstrsep=_dl_strsep
INSTALL_STRIP=
diff --git a/libexec/ld.so/ldconfig/Makefile b/libexec/ld.so/ldconfig/Makefile
index 66454b75d5a..567d34f7a84 100644
--- a/libexec/ld.so/ldconfig/Makefile
+++ b/libexec/ld.so/ldconfig/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.2 2001/05/14 22:18:22 niklas Exp $
+# $OpenBSD: Makefile,v 1.3 2003/11/20 23:23:09 avsm Exp $
# $NetBSD: Makefile,v 1.10 1995/03/06 04:24:41 cgd Exp $
PROG= ldconfig
SRCS= ldconfig.c shlib.c etc.c
LDDIR?= $(.CURDIR)/..
-CFLAGS+=-Werror
+#CFLAGS+=-Werror
#CFLAGS+=-I$(.CURDIR) -I$(LDDIR)/$(MACHINE_ARCH)
LDSTATIC=-static
BINDIR= /sbin
diff --git a/libexec/ld.so/ldd/Makefile b/libexec/ld.so/ldd/Makefile
index ed14c54f7cb..bd5740fe969 100644
--- a/libexec/ld.so/ldd/Makefile
+++ b/libexec/ld.so/ldd/Makefile
@@ -1,9 +1,9 @@
-# $OpenBSD: Makefile,v 1.2 2001/05/14 22:18:22 niklas Exp $
+# $OpenBSD: Makefile,v 1.3 2003/11/20 23:23:09 avsm Exp $
PROG= ldd
SRCS= ldd.c
MAN= ldd.1
-CFLAGS+=-Werror
+#CFLAGS+=-Werror
BINDIR= /usr/bin
diff --git a/libexec/login_krb5-or-pwd/Makefile b/libexec/login_krb5-or-pwd/Makefile
index bb6e533679b..8e950b9963e 100644
--- a/libexec/login_krb5-or-pwd/Makefile
+++ b/libexec/login_krb5-or-pwd/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.11 2003/07/16 19:10:14 deraadt Exp $
+# $OpenBSD: Makefile,v 1.12 2003/11/20 23:23:09 avsm Exp $
.include <bsd.own.mk>
PROG= login_krb5-or-pwd
SRCS= login.c login_passwd.c
MAN= ${PROG}.8
-CFLAGS+=-DPASSWD -Wall -Werror -I${.CURDIR}/../login_passwd
+CFLAGS+=-DPASSWD -Wall -I${.CURDIR}/../login_passwd
.if (${KERBEROS5:L} == "yes")
SRCS+= login_krb5.c
diff --git a/libexec/login_krb5/Makefile b/libexec/login_krb5/Makefile
index 35e680db9ce..bdf5ebbfaa4 100644
--- a/libexec/login_krb5/Makefile
+++ b/libexec/login_krb5/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.15 2003/07/16 19:10:14 deraadt Exp $
+# $OpenBSD: Makefile,v 1.16 2003/11/20 23:23:09 avsm Exp $
.include <bsd.own.mk>
PROG= login_krb5
SRCS= login.c
MAN= ${PROG}.8
-CFLAGS+=-Wall -Werror -I${.CURDIR}/../login_passwd
+CFLAGS+=-Wall -I${.CURDIR}/../login_passwd
.PATH: ${.CURDIR}/../login_passwd
.if (${KERBEROS5:L} == "yes")