summaryrefslogtreecommitdiff
path: root/devel/libbegemot/files
diff options
context:
space:
mode:
Diffstat (limited to 'devel/libbegemot/files')
-rw-r--r--devel/libbegemot/files/patch-Makefile.in25
-rw-r--r--devel/libbegemot/files/patch-configure.ac28
2 files changed, 53 insertions, 0 deletions
diff --git a/devel/libbegemot/files/patch-Makefile.in b/devel/libbegemot/files/patch-Makefile.in
new file mode 100644
index 000000000000..5bbfff7aeb08
--- /dev/null
+++ b/devel/libbegemot/files/patch-Makefile.in
@@ -0,0 +1,25 @@
+--- Makefile.in.orig Wed Jun 1 11:50:27 2005
++++ Makefile.in Sat Sep 17 21:43:49 2005
+@@ -116,17 +116,17 @@
+ $(MKINSTALLDIRS) $(DESTDIR)$(includedir)
+ $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(MSECT)
+
+- $(LIBTOOL) --mode=install $(INSTALL_DATA) $(LIB) $(DESTDIR)$(libdir)
++ $(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) $(LIB) $(DESTDIR)$(libdir)
+
+ # for file in $(HDR) ; do \
+ # $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(includedir) ;\
+ # done
+ for file in $(LHDR) ; do \
+- $(INSTALL_DATA) $$file $(DESTDIR)$(includedir) ;\
+- done
+- for file in $(MSRC) ; do \
+- $(INSTALL_DATA) $(srcdir)/$$file.man $(DESTDIR)$(mandir)/man$(MSECT)/$$file.$(MSECT) ;\
++ $(BSD_INSTALL_DATA) $$file $(DESTDIR)$(includedir) ;\
+ done
++# for file in $(MSRC) ; do \
++# $(INSTALL_DATA) $(srcdir)/$$file.man $(DESTDIR)$(mandir)/man$(MSECT)/$$file.$(MSECT) ;\
++# done
+
+ clean:
+ -rm -f *.o *.lo *.la *.core core *~ .depend polltest stattest frame verbtest
diff --git a/devel/libbegemot/files/patch-configure.ac b/devel/libbegemot/files/patch-configure.ac
new file mode 100644
index 000000000000..4ce632092c33
--- /dev/null
+++ b/devel/libbegemot/files/patch-configure.ac
@@ -0,0 +1,28 @@
+--- configure.ac.orig Thu Sep 15 14:18:10 2005
++++ configure.ac Thu Sep 15 15:34:24 2005
+@@ -232,8 +232,14 @@
+ AC_CACHE_CHECK([how to print quads],
+ ac_cv_quad_fmt,
+ [if test "$ac_have_inttypes_h" = "yes" ; then
+- ac_cv_quad_fmt=PRIu64
+- else
++ AC_EGREP_CPP(yes,
++[
++# include <inttypes.h>
++# ifdef PRIu64
++yes
++# endif
++],
++ ac_cv_quad_fmt=PRIu64,
+ AC_TRY_RUN(
+ [[
+ # include <stdio.h>
+@@ -251,7 +257,7 @@
+ ac_cv_quad_fmt='"q"',
+ ac_cv_quad_fmt='"ll"',
+ ac_cv_quad_fmt='"ll"')
+- fi ])
++ fi ]))
+ AC_DEFINE_UNQUOTED(QUADFMT, $ac_cv_quad_fmt)
+
+ # ------------------------------------------------------------