⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 一百个病毒的源代码 包括熊猫烧香等 极其具有研究价值
💻
字号:
Using the skeleton------------------# # ATTENTION: the shell code written below is just PSEUDO-code especially the# substitutions won't work out of the box.# You want to write a plugin for qmail-logfiles. 0. you have already installed autoconf/automake/libtool.1. copy this directory to ./src/input/qmail$ mkdir ../qmail$ cp *.c *.h *.am ../qmail2. edit the Makefile.am (replace every occurence of skeleton by qmail)$ cd ../qmail$ cat Makefile.am | sed "s/skeleton/qmail/" > Makefile.am.new$ cp Makefile.am.new Makefile.am2a. remove this file from your directory :)$ rm README3. add this directory the master Makefile.am$ cd ..$ cat Makefile.am | sed "/^SUBDIRS/s/$/ qmail/" > Makefile.am.new$ cp Makefile.am.new Makefile.am                            4. edit the configure.inadd src/input/qmail the list at the bottom (AC_OUTPUT)5. rebuild the files$ autoheader$ automake$ autoconf$ configure <options>$ config.status6. makefiles are now setup and you are ready to hack a new plugin.please remove the comments starting with C: from your new plugin.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -