?? 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.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -