projects
/
platform
/
upstream
/
xwd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35230da
)
Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global configure...
93/9393/1
author
Adam Jackson
<ajax@nwnk.net>
Wed, 20 Jul 2005 19:32:05 +0000
(19:32 +0000)
committer
Sung-Jin Park
<sj76.park@samsung.com>
Tue, 3 Sep 2013 04:09:49 +0000
(
00:09
-0400)
Change-Id: I07dce2bf004eaeea1130d6bbf8b1ca08b5486277
Makefile.am
patch
|
blob
|
history
configure.ac
patch
|
blob
|
history
diff --git
a/Makefile.am
b/Makefile.am
index
e529b06
..
fdd65c0
100644
(file)
--- a/
Makefile.am
+++ b/
Makefile.am
@@
-21,8
+21,8
@@
bin_PROGRAMS = xwd
-xwd_CFLAGS = $(
DEP
_CFLAGS)
-xwd_LDADD = $(
DEP
_LIBS)
+xwd_CFLAGS = $(
XWD
_CFLAGS)
+xwd_LDADD = $(
XWD
_LIBS)
xwd_SOURCES = \
dsimple.c \
diff --git
a/configure.ac
b/configure.ac
index
fd0683b
..
46bb11e
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-32,8
+32,8
@@
AC_PROG_CC
AC_PROG_INSTALL
# Checks for pkg-config packages
-PKG_CHECK_MODULES(
DEP
, xmu x11)
-AC_SUBST(
DEP
_CFLAGS)
-AC_SUBST(
DEP
_LIBS)
+PKG_CHECK_MODULES(
XWD
, xmu x11)
+AC_SUBST(
XWD
_CFLAGS)
+AC_SUBST(
XWD
_LIBS)
AC_OUTPUT([Makefile])