hc
2024-03-22 f63cd4c03ea42695d5f9b0e1798edd196923aae6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
From c9f5783bb2df4a19c6281daeda30e8ab905d2ca3 Mon Sep 17 00:00:00 2001
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Date: Sun, 22 Aug 2021 10:44:48 +0200
Subject: [PATCH] Don't build po files if NLS is disabled
 
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Upstream status: https://github.com/ddugovic/uShare/pull/12]
---
 Makefile  | 7 +++++--
 configure | 3 +++
 2 files changed, 8 insertions(+), 2 deletions(-)
 
diff --git a/Makefile b/Makefile
index ebd8f91..6686cfd 100644
--- a/Makefile
+++ b/Makefile
@@ -14,10 +14,13 @@ EXTRADIST = AUTHORS \
         THANKS \
         TODO \
 
-SUBDIRS = po \
-      scripts \
+SUBDIRS = scripts \
       src \
 
+ifeq ($(NLS),yes)
+SUBDIRS += po
+endif
+
 all:
     for subdir in $(SUBDIRS); do \
       $(MAKE) -C $$subdir $@; \
diff --git a/configure b/configure
index 4a3efe0..f48806a 100755
--- a/configure
+++ b/configure
@@ -414,6 +414,8 @@ for opt do
   ;;
   --with-libdlna-dir=*) libdlnadir="$optval";
   ;;
+  --enable-nls) nls="yes"
+  ;;
   --disable-nls) nls="no"
   ;;
   --enable-dlna) dlna="yes"
@@ -723,6 +725,7 @@ append_config "LDFLAGS=$LDFLAGS"
 append_config "INSTALL=$INSTALL"
 
 append_config "DEBUG=$debug"
+append_config "NLS=$nls"
 
 
 echolog "Creating $CONFIG_H ..."
-- 
2.32.0