Update of /cvsroot/libexif/libexif
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25571
Modified Files:
Makefile.am autogen.sh configure.in
Log Message:
Create and use _stdint.h
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libexif/libexif/Makefile.am,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Makefile.am 10 Jan 2004 19:24:33 -0000 1.27
+++ Makefile.am 6 Apr 2004 19:31:53 -0000 1.28
@@ -1,3 +1,15 @@
-SUBDIRS = libexif libjpeg test po
+SUBDIRS = libexif libjpeg test po m4
EXTRA_DIST = @PACKAGE@.spec
+
+########################################################################
+# The following default options for aclocal and automake
+# are required in the top level Makefile.am for the automatic
+# re-building of the build system files (only if configured with
+# --enable-maintainer-mode).
+#
+# It is not sufficient to have these options somewhere in autogen.sh!
+
+ACLOCAL_AMFLAGS = -I m4
+AUTOMAKE_OPTIONS = gnu
+
Index: autogen.sh
===================================================================
RCS file: /cvsroot/libexif/libexif/autogen.sh,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- autogen.sh 22 Mar 2003 21:09:56 -0000 1.15
+++ autogen.sh 6 Apr 2004 19:31:53 -0000 1.16
@@ -83,6 +83,8 @@
*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
esac
+ACLOCAL_FLAGS="-I ${srcdir}/m4 ${ACLOCAL_FLAGS}"
+
gettext_version=`gettextize --version 2>&1 | sed -n 's/^.*GNU gettext.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
case $gettext_version in
0.10.*)
Index: configure.in
===================================================================
RCS file: /cvsroot/libexif/libexif/configure.in,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- configure.in 6 Apr 2004 13:16:19 -0000 1.62
+++ configure.in 6 Apr 2004 19:31:53 -0000 1.63
@@ -25,6 +25,11 @@
AM_PROG_LIBTOOL
+dnl Create a stdint.h-like file containing size-specific integer definitions
+dnl that will always be available
+AC_NEED_STDINT_H(libexif/_stdint.h)
+
+
dnl ---------------------------------------------------------------------------
dnl i18n support
dnl ---------------------------------------------------------------------------
@@ -43,6 +48,7 @@
fi
AM_GNU_GETTEXT
+
dnl ---------------------------------------------------------------------------
dnl Warnings
dnl ---------------------------------------------------------------------------
@@ -62,6 +68,7 @@
libexif/pentax/Makefile
libjpeg/Makefile
test/Makefile
+ m4/Makefile
libexif/libexif.pc
])
|