search for: _cflags

Displaying 10 results from an estimated 10 matches for "_cflags".

Did you mean: cflags
2009 Oct 25
1
[PATCH] Use pkg-config (if available) to detect libogg. Fall back to old method if pkg-config fails.
...ION-IF-NOT-FOUND]) +# +# This is a very slight modification to the macro PKG_CHECK_MODULES that +# is in the original pkg.m4 file. It prints the versions in the checking +# message (erikd at mega-nerd.com). + +AC_DEFUN([PKG_CHECK_MOD_VERSION], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $2 ]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternativel...
2009 Oct 25
0
[PATCH] Use pkg-config (if available) to detect libogg. Fall back to old method if pkg-config fails.
...ION-IF-NOT-FOUND]) +# +# This is a very slight modification to the macro PKG_CHECK_MODULES that +# is in the original pkg.m4 file. It prints the versions in the checking +# message (erikd at mega-nerd.com). + +AC_DEFUN([PKG_CHECK_MOD_VERSION], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_MSG_CHECKING([for $2 ]) + +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) + +m4_define([_PKG_TEXT], [Alternativel...
2007 Nov 12
11
Various FreeBSD bits...
I just drudged through a bit of the archives and see a FreeBSD bits floating in there that are of some value, but aren''t on the wiki. I posted a few bits on the wiki regarding some FreeBSD cobbling that I''ve done recently and hope that folk find it of use (and start posting their useful bits there as well). http://reductivelabs.com/trac/puppet/wiki/PuppetFreeBSD The
2014 Feb 12
2
[LLVMdev] cmake/ninja build failing
...nside the Xcode.app, but Xcode is installed at a path which includes spaces and parentheses. I see the problem in the build.ninja commands, where FLAGS includes the problematic setting of isysroot. The cause seems to come down to the line in the compiler-rt CMakeLists.txt: > set(DARWIN_iossim_CFLAGS > -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR}) where IOSSIM_SDK_DIR is the path including spaces and parens. I'm not sure why these flags are finding their way into my build since I'm not doing anything with iOS or the iOS simulator, but DARWIN_iossim_CFLAGS is gett...
2018 Mar 23
0
[ANNOUNCE] xtrap 1.0.3
...ad of _BSD_SOURCE configure: Depend on libXt Fix pointer-to-int-cast errors xtrap 1.0.3 Paulo Cesar Pereira de Andrade (2): Ansification and compile warning fixes. Janitor: Add matching prototypes to callback functions. Thomas Zimmermann (1): Bug 24530: Add $(AM_CFLAGS) to xtrap*_CFLAGS git tag: xtrap-1.0.3 https://xorg.freedesktop.org/archive/individual/app/xtrap-1.0.3.tar.bz2 MD5: ad434adab17ebc9d0a5ece33bbc55beb xtrap-1.0.3.tar.bz2 SHA1: 1f1df2c1cb6422238d4dc2708b15445d1af9bdad xtrap-1.0.3.tar.bz2 SHA256: 52c80d3f3386b70d38382a6d84b4673d280bc1518a131c49d2...
2020 Mar 27
2
directfb on CentOS 7
I have another package (baresip) that needs "directfb". from baresip make MOD := directfb $(MOD)_SRCS += directfb.c $(MOD)_LFLAGS += $(shell pkg-config --libs directfb) $(MOD)_CFLAGS += $(shell pkg-config --cflags directfb \ | sed -e 's/-I/-isystem/g') include mk/mod.mk I tried to find with: yum provides "*/directfb.pc" but nothing is returned. Where can I get/find directfb for CentOS 7 ? Thanks, Jerry
2018 Jul 31
0
[ANNOUNCE] fonttosfnt 1.0.5
...m config: update AC_PREREQ statement to 2.60 config: upgrade to util-macros 1.8 for additional man page support config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 config: remove unrequired AC_SUBST([*_CFLAGS]) config: remove unrequired AC_SUBST([*_LIBS]) config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS man: remove trailing spaces and tabs man: replace hard coded man page section with substitution strings config: move man pages into their own directory Mi...
2011 Apr 03
6
[Bug 713] New: CPPFLAGS are mishandled which breaks non-shared targets
...So at the moment, static-only systems break when the NO_SHARED_LIBS define is used in files that don't have it explicitly in the Makefile. Rather than propagate these flags to the specific files that are failing, redo the whole thing at the global level. All the cpp flags are moved out of AM_CFLAGS and into AM_CPPFLAGS, and NO_SHARED_LIBS is appended to that variable. This lets us drop the manual setting of library-specific CFLAGS in a bunch of places while making sure it shouldn't break again in the future. patch attached -- Configure bugmail: http://bugzilla.netfilter.org/userprefs...
2014 Feb 13
3
[LLVMdev] cmake/ninja build failing
...ows me that the relevant path is indeed getting added via set_target_compile_flags: the path is now part of one of these quoted strings. On Feb 12, 2014, at 11:01 AM, Brad King <brad.king at kitware.com> wrote: > On 02/12/2014 02:04 AM, Seth Cantrell wrote: >>> set(DARWIN_iossim_CFLAGS >>> -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR}) >> >> where IOSSIM_SDK_DIR is the path including spaces and parens. > > It looks like the _CFLAGS values are used in the module > cmake/Modules/CompilerRTUtils.cmake: > > function(set_target_c...
2014 Feb 07
0
Wine release 1.7.12
...ier on when it already exists. makedep: Add a helper function for computing base dir paths. configure: Build makedep at configure time. msxml3/tests: Run tests against the winehq server. urlmon/tests: Run tests against the winehq server. configure: Automatically expand _CFLAGS and _LIBS variables in all makefiles. configure: Add a pkg-config check for fontconfig. configure: Trace the results of pkg-config checks to the config.log file. configure: Merge the X_LIBS and XLIB variables. configure: Rename substituted variables to a standard _CFLAGS and...