From 19aecbe8b68ccfdc5a4cf0676e820742108fcf3a Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Fri, 30 May 2025 04:30:33 +0800 Subject: [PATCH 6/9] darwin.c: define BUILD_DATE --- hw/xquartz/darwin.c | 4 ++++ hw/xquartz/meson.build | 1 + 2 files changed, 5 insertions(+) diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index d72da093b..967939979 100644 --- a/hw/xquartz/darwin.c +++ b/hw/xquartz/darwin.c @@ -79,6 +79,10 @@ #include "X11Application.h" +#ifndef BUILD_DATE +#define BUILD_DATE "" +#endif + aslclient aslc; void diff --git a/hw/xquartz/meson.build b/hw/xquartz/meson.build index d269a6403..5565b8a12 100644 --- a/hw/xquartz/meson.build +++ b/hw/xquartz/meson.build @@ -24,6 +24,7 @@ bundle_id_def = '-DBUNDLE_ID_PREFIX="@0@"'.format(bundle_id_prefix) bundle_root = join_paths(apple_applications_dir, apple_application_name + '.app') xquartz_data_dir = join_paths(get_option('prefix'), get_option('datadir'),'X11', 'XQuartz') +libdir = join_paths(get_option('prefix'), 'lib') # using sparkle update framework? build_sparkle = xquartz_sparkle_feed_url != '' and xquartz_sparkle_public_edkey != '' -- 2.24.3 (Apple Git-128)