Changeset - 0cb24a9907a4
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 17 years ago 2009-02-28 20:27:46
ohnobinki@ohnopublishing.net
now src/client/distren links/compiles with libxml2
2 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
configure.ac
Show inline comments
 
@@ -16,24 +16,25 @@
 
# along with DistRen.  If not, see <http://www.gnu.org/licenses/>.
 

	
 
AC_PREREQ(2.61)
 
AC_INIT([distren],[0.0],[ohnobinki@ohnopublishing.net])
 
AC_CONFIG_SRCDIR([src/server/distrend.c])
 

	
 
AC_PROG_CC
 
AC_PROG_LIBTOOL
 

	
 
AM_INIT_AUTOMAKE
 
AM_PROG_CC_C_O
 
AM_PATH_CHECK
 
AM_PATH_XML2(2.7.2)
 

	
 
PKG_PROG_PKG_CONFIG(0.17.2)
 

	
 
PKG_CHECK_MODULES(DISTLIBS, libconfuse >= 2.6)
 

	
 
AC_CONFIG_FILES([Makefile
 
src/Makefile
 
src/common/Makefile
 
src/server/Makefile
 
src/client/Makefile
 
src/tests/Makefile
 
])
src/client/Makefile.am
Show inline comments
 
bin_PROGRAMS = distren
 
distren_SOURCES = distren.c
 
distren_LDADD = @DISTLIBS_LIBS@ @top_builddir@/src/common/libdistren.la
 
distren_CFLAGS = @DISTLIBS_CFLAGS@ -I@top_srcdir@/src/common
 
distren_LDADD = @DISTLIBS_LIBS@ @top_builddir@/src/common/libdistren.la @XML_LIBS@
 
distren_CFLAGS = @DISTLIBS_CFLAGS@ -I@top_srcdir@/src/common @XML_CPPFLAGS@
0 comments (0 inline, 0 general)