File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ custom_target(
15
15
command : [
16
16
pod2man,
17
17
' --name=dunst' ,
18
- ' --center=" Dunst Reference" ' ,
18
+ ' --center=Dunst Reference' ,
19
19
' --section=1' ,
20
20
pod2man_version_arg,
21
21
' @INPUT@' ,
@@ -32,7 +32,7 @@ custom_target(
32
32
command : [
33
33
pod2man,
34
34
' --name=dunst' ,
35
- ' --center=" Dunst Reference" ' ,
35
+ ' --center=Dunst Reference' ,
36
36
' --section=5' ,
37
37
pod2man_version_arg,
38
38
' @INPUT@' ,
@@ -49,7 +49,7 @@ custom_target(
49
49
command : [
50
50
pod2man,
51
51
' --name=dunstctl' ,
52
- ' --center=" Dunstctl Reference" ' ,
52
+ ' --center=Dunstctl Reference' ,
53
53
' --section=1' ,
54
54
pod2man_version_arg,
55
55
' @INPUT@' ,
@@ -66,7 +66,7 @@ custom_target(
66
66
command : [
67
67
pod2man,
68
68
' --name=dunstify' ,
69
- ' --center=" Dunstify Reference" ' ,
69
+ ' --center=Dunstify Reference' ,
70
70
' --section=1' ,
71
71
pod2man_version_arg,
72
72
' @INPUT@' ,
Original file line number Diff line number Diff line change @@ -348,14 +348,20 @@ void usage(int exit_status)
348
348
void print_version (void )
349
349
{
350
350
printf ("Dunst - A customizable and lightweight notification-daemon %s\n" , VERSION );
351
+ #ifdef _CCDATE
351
352
printf ("Compiled on %s with the following options:\n" , STR_TO (_CCDATE ));
353
+ #endif
352
354
353
355
printf ("X11 support: %s\n" , X11_SUPPORT ? "enabled" : "disabled" );
354
356
printf ("Wayland support: %s\n" , WAYLAND_SUPPORT ? "enabled" : "disabled" );
355
357
printf ("SYSCONFDIR set to: %s\n" , SYSCONFDIR );
356
358
359
+ #ifdef _CFLAGS
357
360
printf ("Compiler flags: %s\n" , STR_TO (_CFLAGS ));
361
+ #endif
362
+ #ifdef _LDFLAGS
358
363
printf ("Linker flags: %s\n" , STR_TO (_LDFLAGS ));
364
+ #endif
359
365
exit (EXIT_SUCCESS );
360
366
}
361
367
You can’t perform that action at this time.
0 commit comments