summaryrefslogtreecommitdiff
blob: 0c51527a8b3d7c270000e80a68c5ff303b1d3386 (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
From: Julian Ospald <hasufell@gentoo.org>
Date: Tue Sep 25 13:18:57 UTC 2012
Subject: build system

fix gold linker compilation
https://bugs.gentoo.org/show_bug.cgi?id=435826

--- a/configure.in
+++ b/configure.in
@@ -44,6 +44,9 @@
 AC_PROG_INSTALL
 AC_PROG_LN_S
 AC_PROG_MAKE_SET
+AC_PATH_PROG([PKGCONFIG], [pkg-config])
+AS_IF([test "x$PKGCONFIG" = "x"],
+    [AC_MSG_ERROR([pkg-config not found!])])
 
 AC_CHECK_PROGS(BUILD_CC,gcc cc ${CC},gcc)
 AC_CHECK_PROG(AR,${AR:-ar},${AR:-ar},ar)
@@ -55,6 +58,10 @@
 dnl doesn't work if gd isn't where the compiler can find it
 dnl AC_CHECK_LIB(gd, gdImageCreateFromGif)
 
+PKG_CHECK_MODULES([X], [x11])
+PKG_CHECK_MODULES([Z], [zlib])
+PKG_CHECK_MODULES([PNG], [libpng])
+
 dnl Checks for header files.
 
 AC_PATH_XTRA
@@ -69,57 +76,6 @@
 AC_FUNC_UTIME_NULL
 AC_CHECK_FUNCS(gettimeofday mkdir strdup strstr)
 
-opt_gd=
-AC_ARG_WITH(z,[  --with-z=DIR           location of the ZLIB library],opt_z=$withval)
-AC_ARG_WITH(png,[  --with-png=DIR          location of the PNG library],opt_png=$withval)
-
-case "$with_z" in
-  yes|no) AC_MSG_ERROR([
-*** Directory must be specified for --with-z])
-    ;;
-  "")
-    Z_CFLAGS=
-    Z_LIBS=-lz
-    ;;
-  *)
-    if test -f $with_z/include/z.h
-    then
-      Z_CFLAGS=-I$with_z/include
-    else
-      Z_CFLAGS=-I$with_z
-    fi
-    if test -f $with_z/lib/libz.a
-    then
-      Z_LIBS=$with_z/lib/libz.a
-    else
-      Z_LIBS=$with_z/libz.a
-    fi
-    ;;
-esac
-
-case "$with_png" in
-  yes|no) AC_MSG_ERROR([
-*** Directory must be specified for --with-png])
-    ;;
-  "")
-    PNG_CFLAGS=
-    PNG_LIBS=
-    ;;
-  *)
-    if test -f $with_png/lib/png.h
-    then
-      PNG_CFLAGS=-I$with_png/lib
-    else
-      PNG_CFLAGS=-I$with_png/include/X11
-    fi
-    if test -f $with_png/lib/libPng.a
-    then
-      PNG_LIBS="-L$with_png/lib"
-    else
-      PNG_LIBS="-L$with_png"
-    fi
-    ;;
-esac
 
 AC_SUBST(Z_CFLAGS)
 AC_SUBST(Z_LIBS)
@@ -127,6 +83,9 @@
 AC_SUBST(PNG_CFLAGS)
 AC_SUBST(PNG_LIBS)
 
+AC_SUBST(X_LIBS)
+AC_SUBST(X_CFLAGS)
+
 AC_SUBST(PDA)
 
 AC_OUTPUT(Makefile lib/Makefile games/Makefile tests/Makefile)
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -5,18 +5,19 @@
 
 CLEANFILES = images.c images.d
 
-INCLUDES = $(X_CFLAGS) @PDA@
-AM_LDFLAGS = $(X_LIBS)
+INCLUDES = $(X_CFLAGS) $(PNG_CFLAGS) $(Z_CFLAGS) @PDA@
 
 BUILD_CC = @BUILD_CC@
 AR = @AR@
 STRIP = @STRIP@
 
-libcards_la_LDFLAGS = -version-info 1:0:0 $(AM_LDFLAGS)
+libcards_la_LDFLAGS = -version-info 1:0:0
 
 libcards_la_SOURCES = table.c help.c stack.c imagelib.c xwin.c \
 	images.c table_rn.c funcs.c
 
+libcards_la_LIBADD = $(X_LIBS) $(PNG_LIBS) $(Z_LIBS)
+
 # table_ai.c table_ck.c table_dc.c table_dg.c \
 #table_dp.c table_in.c table_ky.c table_rd.c table_rs.c
 
--- a/games/Makefile.am
+++ b/games/Makefile.am
@@ -30,8 +30,7 @@
 
 STRIP = @STRIP@
 
-INCLUDES = -I$(srcdir)/../lib $(X_CFLAGS) @PDA@
-AM_LDFLAGS = $(X_LIBS)
+INCLUDES = -I$(srcdir)/../lib @PDA@
 
 canfield_SOURCES = canfield.c canfield-img.c
 freecell_SOURCES = freecell.c freecell-help.c freecell-img.c
@@ -52,7 +51,7 @@
 	solitaire-help.c solitaire-img.c spider-help.c spider-img.c \
 	taipedit-help.c taipedit-img.c taipei-help.c taipei-img.c
 
-LDADD = ../lib/libcards.la -lpng -lz -lX11 -lm
+LDADD = ../lib/libcards.la -lm
 
 EXTRA_DIST = $(wildcard *.png) $(wildcard *.tp)