search for: ax_create_stdint_h

Displaying 7 results from an estimated 7 matches for "ax_create_stdint_h".

2011 Mar 18
2
HP-UX compilation warnings
Chetan, Could you check the contents of the include/nut-stdint.h file, to see why there are compilation warnings on the HP-UX buildbot? Best regards, Arjen -- Please keep list traffic on the list (off-list replies will be rejected)
2006 Apr 17
0
[LLVMdev] OpenBSD. (Was: 1.7 Pre-Release Ready for Testing)
I just added __OpenBSD__ everywhere __FreeBSD__ was being tested (there were about a dozen places). I suspect we'll have to add one for NetBSD also one day (even DragonflyBSD?). INT8_MAX and friends ought to be declared by <stdint.h>. It is on FreeBSD. Ralph Corderoy wrote: >Hi again, > >I wrote: > > >>>I would like to test but the I modigied the
2006 Apr 17
3
[LLVMdev] OpenBSD. (Was: 1.7 Pre-Release Ready for Testing)
Hi again, I wrote: > > I would like to test but the I modigied the configure to make > > unknown = OpenBSD and Unix > > Have you looked at ./config.log. ./configure creates this as it runs > as a trace of the path it took through ./configure. Work backwards > from the end to find out what it didn't like. I remember SourceForge's compile farm has an OpenBSD x86
2007 Oct 10
0
4 commits - libswfdec/Makefile.am libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h m4/gtk-doc.m4 Makefile.am test/trace
...It seems gtk-doc.make wants the right version of gtk-doc.m4, so better readd it. diff --git a/Makefile.am b/Makefile.am index 4a20c24..a9cb6fc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,8 @@ EXTRA_DIST=depcomp \ gtk-doc.make \ swfdec.spec \ m4/as-compiler-flag.m4 \ - m4/ax_create_stdint_h.m4 + m4/ax_create_stdint_h.m4 \ + m4/gtk-doc.m4 pkgconfigdir = $(libdir)/pkgconfig if WITH_GTK diff --git a/m4/gtk-doc.m4 b/m4/gtk-doc.m4 new file mode 100644 index 0000000..bfdfa1d --- /dev/null +++ b/m4/gtk-doc.m4 @@ -0,0 +1,39 @@ +dnl -*- mode: autoconf -*- + +# serial 1 + +dnl Usage: +dnl...
2007 Oct 19
0
4 commits - configure.ac data/.gitignore data/icons data/Makefile.am data/swfdec-gtk.pc.in data/swfdec.pc.in .gitignore Makefile.am player/swfplay.c swfdec-gtk.pc.in swfdec.pc.in
...pc -swfdec.pc -swfdec.spec diff --git a/Makefile.am b/Makefile.am index 27849d7..37b2970 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,6 +17,7 @@ SUBDIRS= \ libswfdec \ $(GTK_SUBDIRS) \ $(VIVI_SUBDIRS) \ + data \ test ACLOCAL_FLAGS = -I m4 @@ -32,21 +33,6 @@ EXTRA_DIST=depcomp \ m4/ax_create_stdint_h.m4 \ m4/gtk-doc.m4 -pkgconfigdir = $(libdir)/pkgconfig -if WITH_GTK -pkgconfig_DATA = swfdec- at SWFDEC_MAJORMINOR@.pc swfdec-gtk- at SWFDEC_MAJORMINOR@.pc -else -pkgconfig_DATA = swfdec- at SWFDEC_MAJORMINOR@.pc -endif - -CLEANFILES = swfdec-$(SWFDEC_MAJORMINOR).pc swfdec-gtk-$(SWFDEC_MAJORMIN...
2007 Oct 17
0
28 commits - configure.ac debian/changelog debian/control debian/copyright debian/.gitignore debian/libswfdec0.dirs debian/libswfdec0.files debian/libswfdec0.shlibs debian/libswfdec-dev.dirs debian/libswfdec-dev.files debian/rules debian/swf-player.dirs
...t 17 20:17:07 2007 +0200 spec files deserve to die, too diff --git a/Makefile.am b/Makefile.am index a9cb6fc..27849d7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,7 +28,6 @@ EXTRA_DIST=depcomp \ ChangeLog \ autogen.sh \ gtk-doc.make \ - swfdec.spec \ m4/as-compiler-flag.m4 \ m4/ax_create_stdint_h.m4 \ m4/gtk-doc.m4 diff --git a/configure.ac b/configure.ac index 75e5a0a..fd4e7f3 100644 --- a/configure.ac +++ b/configure.ac @@ -333,7 +333,6 @@ vivified/dock/Makefile vivified/ui/Makefile swfdec.pc swfdec-gtk.pc -swfdec.spec ) AC_OUTPUT diff --git a/swfdec.spec.in b/swfdec.spec.in dele...
2007 Mar 27
0
15 commits - configure.ac doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt doc/swfdec.types libswfdec-gtk/.gitignore libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h
...2007 +0200 Add build infrastructure for a libswfdec-gtk diff --git a/Makefile.am b/Makefile.am index da1c94a..25bbed2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,6 @@ SUBDIRS= \ libswfdec \ + libswfdec-gtk \ player \ doc \ test @@ -18,13 +19,20 @@ EXTRA_DIST=depcomp \ m4/ax_create_stdint_h.m4 pkgconfigdir = $(libdir)/pkgconfig +if WITH_GTK +pkgconfig_DATA = swfdec-@SWFDEC_MAJORMINOR@.pc swfdec-gtk-@SWFDEC_MAJORMINOR@.pc +else pkgconfig_DATA = swfdec-@SWFDEC_MAJORMINOR@.pc +endif -CLEANFILES = swfdec-$(SWFDEC_MAJORMINOR).pc +CLEANFILES = swfdec-$(SWFDEC_MAJORMINOR).pc swfdec-gtk...