Displaying 3 results from an estimated 3 matches for "am_prog_cc_stdc".
Did you mean:
ac_prog_cc_stdc
2007 Aug 24
0
2 commits - configure.ac vivified/core
...in Otte <otte at gnome.org>
Date: Fri Aug 24 14:14:10 2007 +0200
don't call AM_PROG_AS conditionally
diff --git a/configure.ac b/configure.ac
index f01272d..5210c30 100644
--- a/configure.ac
+++ b/configure.ac
@@ -52,6 +52,7 @@ dnl (This must come after AM_INIT_AUTOMA
AC_PROG_CC
AM_PROG_CC_STDC
AM_PROG_CC_C_O
+AM_PROG_AS
AC_HEADER_STDC([])
@@ -270,7 +271,6 @@ AC_ARG_ENABLE(vivified,
enable_vivi=$enableval,
enable_vivi="no")
if test "$enable_vivi" = "yes"; then
- AM_PROG_AS
MING_REQUIRED=0.4.0.beta5
VIVI_GTK_REQUIRED=2.11.6
PKG_CHECK_MODULES(V...
2007 Jun 26
1
Branch 'as' - configure.ac
...r: Benjamin Otte <otte at gnome.org>
Date: Tue Jun 26 11:31:50 2007 +0200
automake claims we need this
diff --git a/configure.ac b/configure.ac
index aac8129..e76bce0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -51,6 +51,7 @@ dnl (This must come after AM_INIT_AUTOMA
AC_PROG_CC
AM_PROG_CC_STDC
+AM_PROG_CC_C_O
AC_HEADER_STDC([])
2007 Oct 14
0
2 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_strings.c
...so we don't need to fiddle with HOSTCC vs TARGETCC.
It's probably awesome code, but I'm neither a master of shell nor awk.
Patches welcome.
diff --git a/configure.ac b/configure.ac
index 449c9c9..75e5a0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,6 +53,7 @@ AC_PROG_CC
AM_PROG_CC_STDC
AM_PROG_CC_C_O
AM_PROG_AS
+AC_PROG_AWK
AC_HEADER_STDC([])
diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am
index 07ca529..0c2e2a6 100644
--- a/libswfdec/Makefile.am
+++ b/libswfdec/Makefile.am
@@ -1,10 +1,5 @@
SUBDIRS = jpeg
-noinst_PROGRAMS = compute-strings
-
-compute_strings_...