summaryrefslogtreecommitdiff
path: root/m4/assert.m4
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-08-21 07:26:38 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-08-21 07:26:38 +0000
commit0f7a044109b860443ecaa4f8a37652b1b4423057 (patch)
treeb5834ed9867213221a2636e0fa7e8da178749a76 /m4/assert.m4
parent11fd62b0080ce376b26241bd789b7e7390befef6 (diff)
downloadcoreutils-0f7a044109b860443ecaa4f8a37652b1b4423057.tar.xz
Remove from CVS, since the bootstrap script generates them automatically.
Diffstat (limited to 'm4/assert.m4')
-rw-r--r--m4/assert.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/m4/assert.m4 b/m4/assert.m4
deleted file mode 100644
index bfdc00f23..000000000
--- a/m4/assert.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-#serial 5
-
-# Copyright (C) 1998, 1999, 2001, 2004 Free Software Foundation, Inc.
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-dnl based on code from Eleftherios Gkioulekas
-
-AC_DEFUN([gl_ASSERT],
-[
- AC_MSG_CHECKING(whether to enable assertions)
- AC_ARG_ENABLE(assert,
- [ --disable-assert turn off assertions],
- [ AC_MSG_RESULT(no)
- AC_DEFINE(NDEBUG,1,[Define to 1 if assertions should be disabled.]) ],
- [ AC_MSG_RESULT(yes) ]
- )
-])