Displaying 5 results from an estimated 5 matches for "our_cflags_head".
2007 Jul 24
1
PATCH : Fix missing protoypes
Josh Coalson wrote:
> --- Erik de Castro Lopo <erikd-flac@mega-nerd.com> wrote:
>
> > Hi all,
> >
> > I added -Wmissing-prototypes -Wstrict-prototypes to the CFLAGS and
> > found that there were a number warnings generated.
> >
> > The patch below fixes those warnings and adds the two -W flags to
> > configure.in.
>
> I checked most
2007 Jul 14
2
PATCH : Fix missing protoypes
...ption if possible.
+ */
+
+int iconvert(const char *fromcode, const char *tocode,
+ const char *from, size_t fromlen,
+ char **to, size_t *tolen) ;
+
+#endif /* HAVE_ICONV */
--- configure.in 2007-07-14 08:45:49 +0000
+++ configure.in 2007-07-15 01:45:52 +0000
@@ -280,7 +280,7 @@
else
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -DNDEBUG"
if test "x$GCC" = xyes; then
- OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
+ OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -funroll-loops -finline-functions -Wall -W -...
2004 Sep 10
4
Updating flac include problems
Updating the fink flac to 1.0.4, it won't compile because finds the
headers of the previous version in /sw/include, because the
CPPFLAGS/CFLAGS are being put before the local includes:
(configure with ./configure --prefix=/sw --mandir=/sw/share/man )
gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\"
-DPACKAGE_STRING=\"\"
2005 Jan 29
2
Patch : fix configure.in and Makefile.am problems.
...(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
AC_CHECK_FUNCS(getopt_long, [], [])
-AC_CANONICAL_HOST
case "$host_cpu" in
i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
@@ -209,6 +208,9 @@
CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS"
CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS"
+AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
+AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
+
AM_CONFIG_HEADER(config.h)
AH_TEMPLATE(FLAC__AL...
2004 Sep 10
0
Updating flac include problems
Lateral to Matt,
Matt, can you refresh my memory... I vaguely remember you
mentioning that my OUR_CFLAGS_HEAD/OUR_CFLAGS_TAIL change
to configure.in messed up debianization because it put
local includes at the head... am I remembering right? Is
there a way to resolve that problem *and* Ben's?
Josh
--- Ben Hines <bhines@alumni.ucsd.edu> wrote:
> Updating the fink flac to 1.0.4, it won't...