From: root Date: Sun, 12 Dec 2004 06:39:20 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=976cd06bf6e67e5544dfe11456d05bc83888adc1;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/genac b/genac new file mode 100644 index 00000000..b23cadfb --- /dev/null +++ b/genac @@ -0,0 +1,5 @@ +#!/bin/sh + +autoheader autoconf/configure.in >autoconf/config.h.in +autoconf -I autoconf autoconf/configure.in >configure + diff --git a/src/gcc-Wall b/src/gcc-Wall deleted file mode 100644 index 9c5ccc13..00000000 --- a/src/gcc-Wall +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# gcc -Wall plus other important warnings not included in -Wall - -for arg -do - case $arg in - -O*) Wuninitialized=-Wuninitialized;; # only makes sense with `-O' - esac -done - -exec gcc \ - -Wall $Wuninitialized \ - -Wwrite-strings \ - -Wcast-qual \ - -Wbad-function-cast \ - -Wpointer-arith \ - -Wstrict-prototypes \ - -Wmissing-prototypes \ - -Wmissing-declarations \ - -Wnested-externs \ - -Wtraditional \ - -Wconversion \ - -Wcomment \ - -Wcast-align \ - -Winline \ - -Wshadow \ - -Wredundant-decls \ - -Wid-clash-31 \ - "$@" - -# -Wall implies: -# -Wimplicit -# -Wreturn-type -# -Wunused -# -Wswitch -# -Wformat -# -Wchar-subscripts -# -Wparentheses -# -Wmissing-braces -------------------------------------------------------------------------------