Around emacs, linux, etc.
Archive for July, 2006
用CPP做apache的module
Jul 15th
有三个地方要改
- 首先注释掉include/ap_config_auto.h里面的
- define AP_HAVE_DESIGNATED_INITIALIZER 1
- if (defined(__GNUC__) && !defined(__cplusplus)) \
|| (defined(__STDC_VERSION) && __STDC_VERSION__ > 199901L)
- define AP_HAVE_DESIGNATED_INITIALIZER 1
- endif
typedef const char *(*cmd_func) ();
为
- if (defined(__GNUC__) && !defined(__cplusplus)) \
|| (defined(__STDC_VERSION) && __STDC_VERSION__ > 199901L)
typedef const char *(*cmd_func) ();
- else
typedef const char *(*cmd_func) (cmd_parms*, void*, const char*);
- endif
搜狐微博
新浪微博
Recent Comments