From: adrian <> Date: Wed, 3 May 2000 23:28:07 +0000 (+0000) Subject: post MODIO_1 commit tidyup, I forgot to add this when doing the initial X-Git-Tag: SQUID_3_0_PRE1~1991 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3688071fa1c04e6ea65b9647045929baacb3253;p=thirdparty%2Fsquid.git post MODIO_1 commit tidyup, I forgot to add this when doing the initial commit . --- diff --git a/src/store_modules.sh b/src/store_modules.sh new file mode 100644 index 0000000000..8318ab0e95 --- /dev/null +++ b/src/store_modules.sh @@ -0,0 +1,15 @@ +#!/bin/sh +echo "/* automatically generated by $0 $*" +echo " * do not edit" +echo " */" +echo "#include \"squid.h\"" +echo "" +for module in "$@"; do + echo "extern STSETUP storeFsSetup_${module};" +done +echo "void storeFsSetup(void)" +echo "{" +for module in "$@"; do + echo " storeFsAdd(\"$module\", storeFsSetup_${module});" +done +echo "}"