使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
Immanuel
/
sxiv
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
浏览代码
Removed feature test macro definitions from source files
master
Bert Münnich
9 年前
父节点
e0e96977b3
当前提交
e574a6d0dd
共有
7 个文件被更改
,包括
13 次插入
和
21 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+2
-3
commands.c
+2
-3
image.c
+2
-3
main.c
+2
-3
options.c
+2
-3
thumbs.c
+0
-2
util.c
+3
-4
window.c
+ 2
- 3
commands.c
查看文件
@@ -16,9 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#define _IMAGE_CONFIG
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
@@ -29,6 +26,8 @@
#include "options.h"
#include "thumbs.h"
#include "util.h"
#define _IMAGE_CONFIG
#include "config.h"
void cleanup(void);
+ 2
- 3
image.c
查看文件
@@ -16,9 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#define _IMAGE_CONFIG
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
@@ -27,6 +24,8 @@
#include "image.h"
#include "options.h"
#include "util.h"
#define _IMAGE_CONFIG
#include "config.h"
#if HAVE_LIBEXIF
+ 2
- 3
main.c
查看文件
@@ -16,9 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#define _MAPPINGS_CONFIG
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
@@ -41,6 +38,8 @@
#include "thumbs.h"
#include "util.h"
#include "window.h"
#define _MAPPINGS_CONFIG
#include "config.h"
enum {
+ 2
- 3
options.c
查看文件
@@ -16,9 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#define _IMAGE_CONFIG
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
@@ -26,6 +23,8 @@
#include "options.h"
#include "util.h"
#define _IMAGE_CONFIG
#include "config.h"
options_t _options;
+ 2
- 3
thumbs.c
查看文件
@@ -16,9 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#define _THUMBS_CONFIG
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -29,6 +26,8 @@
#include "thumbs.h"
#include "util.h"
#define _THUMBS_CONFIG
#include "config.h"
#if HAVE_LIBEXIF
+ 0
- 2
util.c
查看文件
@@ -16,8 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
+ 3
- 4
window.c
查看文件
@@ -16,9 +16,6 @@
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
*/
#define _POSIX_C_SOURCE 200112L
#define _WINDOW_CONFIG
#include <stdlib.h>
#include <string.h>
#include <locale.h>
@@ -28,9 +25,11 @@
#include "options.h"
#include "util.h"
#include "window.h"
#include "config.h"
#include "icon/data.h"
#define _WINDOW_CONFIG
#include "config.h"
enum {
H_TEXT_PAD = 5,
V_TEXT_PAD = 1
撰写
预览
正在加载...
取消
保存