summaryrefslogtreecommitdiffstats
path: root/print/freetype2/files/patch-aa
blob: f18618ec8e62a9951c896ba0b6071b513a3c588a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- builds/unix/detect.mk.orig  2006-12-09 13:51:54.000000000 -0500
+++ builds/unix/detect.mk   2007-07-06 12:55:05.000000000 -0400
@@ -21,6 +21,9 @@ ifeq ($(PLATFORM),ansi)
   is_unix := $(strip $(wildcard /sbin/init) \
                      $(wildcard /usr/sbin/init) \
                      $(wildcard /hurd/auth))
+  # FreeBSD is "unix" so just mandate this to fix the build in
+  # jails that do not have init (see PR#113470).
+  is_unix := true
   ifneq ($(is_unix),)
 
     PLATFORM := unix
@@ -79,9 +82,9 @@ ifeq ($(PLATFORM),unix)
   ifdef must_configure
     ifneq ($(have_Makefile),)
       # we are building FT2 not in the src tree
-         $(TOP_DIR)/builds/unix/configure $(value CFG)
+#        $(TOP_DIR)/builds/unix/configure $(value CFG)
     else
-         cd builds/unix; ./configure $(value CFG)
+#        cd builds/unix; ./configure $(value CFG)
     endif
   endif