File: 01_remove-xdg-check.patch

package info (click to toggle)
filezilla 3.69.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,772 kB
  • sloc: cpp: 97,617; ansic: 54,984; sh: 5,225; makefile: 2,080; xml: 375
file content (15 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: Adrien Cunin <adri2000@ubuntu.com>
Description: make configure only warn if xdg-open is not present.
Index: filezilla/configure.ac
===================================================================
--- filezilla.orig/configure.ac
+++ filezilla/configure.ac
@@ -596,7 +596,7 @@
     if echo "`$WX_CONFIG_WITH_ARGS --basename`" | grep -i gtk > /dev/null 2>&1; then
       AC_PATH_PROG(xdgopen, xdg-open)
       if test -z "$xdgopen"; then
-        AC_MSG_ERROR([xdg-open not found. This program is the preferred way to launch the default browser. Please install the xdg-utils.])
+      AC_MSG_WARN([xdg-open not found. This program is the preferred way to launch the default browser. Please make sure that xdg-utils is installed at runtime.])
       fi
 
       if echo "`$WX_CONFIG_WITH_ARGS --basename`" | grep -i gtk2 > /dev/null 2>&1; then