From: J. Ali Harlow Date: Thu, 8 Jan 2009 15:36:35 +0000 (+0000) Subject: Use gnulib with the razor binary for portability (for fnmatch in particular). X-Git-Tag: 0.1~46 X-Git-Url: http://project.juiblex.co.uk/git/?a=commitdiff_plain;h=676331cd739f0234ad8b6b26407cb1dfb0d3baee;p=razor2.git%2F.git Use gnulib with the razor binary for portability (for fnmatch in particular). --- diff --git a/src/Makefile.am b/src/Makefile.am index 19dab3f..465d27a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,6 +4,7 @@ INCLUDES = \ $(CURL_CFLAGS) \ $(EXPAT_CFLAGS) \ $(RPM_CFLAGS) \ + -I$(top_builddir)/gl -I$(top_srcdir)/gl \ -I$(top_builddir)/src -I$(top_srcdir)/src \ -I$(top_srcdir)/librazor \ -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ @@ -21,7 +22,7 @@ razor_SOURCES = main.c import-yum.c if HAVE_RPMLIB razor_SOURCES += import-rpmdb.c endif -razor_LDADD = $(RPM_LIBS) $(EXPAT_LIBS) $(CURL_LIBS) $(top_builddir)/librazor/librazor.la +razor_LDADD = $(RPM_LIBS) $(EXPAT_LIBS) $(CURL_LIBS) $(top_builddir)/librazor/librazor.la $(top_builddir)/gl/libgnu.la rpm_SOURCES = rpm.c rpm_LDADD = $(top_builddir)/librazor/librazor.la